diff --git a/.npmignore b/.npmignore index f4fc5fa354..50cdee1f24 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,5 @@ */__tests__/ +*/@build/ docs/ src/ metadata/ @@ -8,6 +9,7 @@ CONTRIBUTING.md EXTENSIONS.md .env tsconfig.json +tsconfig.build.json .eslintrc.json .prettierrc .prettierignore \ No newline at end of file diff --git a/dist/commit.d.ts b/dist/@build/commit.d.ts similarity index 100% rename from dist/commit.d.ts rename to dist/@build/commit.d.ts diff --git a/dist/commit.d.ts.map b/dist/@build/commit.d.ts.map similarity index 55% rename from dist/commit.d.ts.map rename to dist/@build/commit.d.ts.map index 28cfb67cd1..3702cc8ddc 100644 --- a/dist/commit.d.ts.map +++ b/dist/@build/commit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../src/commit.ts"],"names":[],"mappings":""} \ No newline at end of file +{"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../../src/@build/commit.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/dist/commit.js b/dist/@build/commit.js similarity index 70% rename from dist/commit.js rename to dist/@build/commit.js index 9a5d0a5de5..c085e5ee11 100644 --- a/dist/commit.js +++ b/dist/@build/commit.js @@ -1,20 +1,31 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); +const process_1 = require("process"); +const readline_1 = require("readline"); const child_process_1 = require("child_process"); const fs_1 = require("fs"); -const prompt_1 = __importDefault(require("./functions/prompt")); const path_1 = require("path"); const os_1 = require("os"); +async function prompt(q) { + const itf = (0, readline_1.createInterface)(process_1.stdin, process_1.stdout); + return new Promise(r => { + itf.question(q, input => { + itf.close(); + r(input); + }); + }); +} const path = "./metadata"; if (!(0, fs_1.existsSync)(path)) (0, fs_1.mkdirSync)(path); -const version = require("../package.json").version; +const version = require("../../package.json").version; async function main() { let skip = false; - const msg = (await (0, prompt_1.default)("Please write the commit message: ")).replace(/(--?(\w+))/gim, (match) => { + const msg = (await prompt("Please write the commit message: ")).replace(/(--?(\w+))/gim, (match) => { const name = /(\w+)/.exec(match)[1].toLowerCase(); switch (name) { case "hide": { @@ -39,7 +50,7 @@ async function main() { }); (0, fs_1.writeFileSync)(fileName, JSON.stringify(json), "utf-8"); } - const branch = await (0, prompt_1.default)("Write the branch name to push to (defaults to dev): ") || "dev"; + const branch = await prompt("Write the branch name to push to (defaults to dev): ") || "dev"; let escapedMsg = msg; if ((0, os_1.platform)() === "darwin") escapedMsg = escapedMsg.replace(/\$/g, "\\$"); diff --git a/dist/@build/commit.js.map b/dist/@build/commit.js.map new file mode 100644 index 0000000000..dad5316b92 --- /dev/null +++ b/dist/@build/commit.js.map @@ -0,0 +1 @@ +{"version":3,"file":"commit.js","sourceRoot":"","sources":["../../src/@build/commit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAuC;AACvC,uCAA0C;AAC1C,iDAAwC;AACxC,2BAAuE;AACvE,+BAA2B;AAC3B,2BAA6B;AAE7B,KAAK,UAAU,MAAM,CAAC,CAAS;IAC3B,MAAM,GAAG,GAAG,IAAA,0BAAe,EAAC,eAAK,EAAE,gBAAM,CAAC,CAAA;IAC1C,OAAO,IAAI,OAAO,CAAS,CAAC,CAAC,EAAE;QAC3B,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;YACpB,GAAG,CAAC,KAAK,EAAE,CAAA;YACX,CAAC,CAAC,KAAK,CAAC,CAAA;QACZ,CAAC,CAAC,CAAA;IACN,CAAC,CAAC,CAAA;AACN,CAAC;AAED,MAAM,IAAI,GAAG,YAAY,CAAA;AACzB,IAAI,CAAC,IAAA,eAAU,EAAC,IAAI,CAAC;IAAE,IAAA,cAAS,EAAC,IAAI,CAAC,CAAA;AAEtC,MAAM,OAAO,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAA;AAErD,KAAK,UAAU,IAAI;IACf,IAAI,IAAI,GAAG,KAAK,CAAA;IAEhB,MAAM,GAAG,GAAG,CAAC,MAAM,MAAM,CAAC,mCAAmC,CAAC,CAAC,CAAC,OAAO,CACnE,eAAe,EAAE,CAAC,KAAK,EAAE,EAAE;QACvB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAE,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAA;QAElD,QAAQ,IAAI,EAAE;YACV,KAAK,MAAM,CAAC,CAAC;gBACT,IAAI,GAAG,IAAI,CAAA;gBACX,MAAK;aACR;YAED,OAAO,CAAC,CAAC;gBACL,MAAM,IAAI,KAAK,CAAC,KAAK,IAAI,uBAAuB,CAAC,CAAA;aACpD;SACJ;QAED,OAAO,EAAE,CAAA;IACb,CAAC,CACJ,CAAC,IAAI,EAAE,CAAA;IAER,MAAM,QAAQ,GAAG,IAAA,WAAI,EAAC,IAAI,EAAE,iBAAiB,CAAC,CAAA;IAC9C,MAAM,IAAI,GAA6B,IAAA,eAAU,EAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;IAC9G,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAA;IACpB,MAAM,MAAM,GAAG,IAAA,wBAAQ,EAAC,sBAAsB,CAAC,CAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAA;IACjE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC;YAClB,OAAO,EAAE,GAAG;YACZ,SAAS,EAAE,IAAI,IAAI,EAAE;YACrB,MAAM;SACT,CAAC,CAAA;QACF,IAAA,kBAAa,EAAC,QAAQ,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;KACzD;IAED,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,sDAAsD,CAAC,IAAI,KAAK,CAAA;IAC5F,IAAI,UAAU,GAAG,GAAG,CAAA;IACpB,IAAI,IAAA,aAAQ,GAAE,KAAK,QAAQ;QAAE,UAAU,GAAG,UAAU,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;IAE1E,IAAA,wBAAQ,EAAC,gBAAgB,GAAG,MAAM,GAAG,mCAAmC,GAAG,UAAU,GAAG,2BAA2B,GAAG,MAAM,EAAE;QAC1H,KAAK,EAAE,SAAS;KACnB,CAAC,CAAA;AACN,CAAC;AAED,UAAU;AACV,IAAI,EAAE,CAAA"} \ No newline at end of file diff --git a/dist/@build/license.d.ts b/dist/@build/license.d.ts new file mode 100644 index 0000000000..4fc24ff7b7 --- /dev/null +++ b/dist/@build/license.d.ts @@ -0,0 +1,2 @@ +export {}; +//# sourceMappingURL=license.d.ts.map \ No newline at end of file diff --git a/dist/@build/license.d.ts.map b/dist/@build/license.d.ts.map new file mode 100644 index 0000000000..d1e4b00800 --- /dev/null +++ b/dist/@build/license.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"license.d.ts","sourceRoot":"","sources":["../../src/@build/license.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/dist/@build/license.js b/dist/@build/license.js new file mode 100644 index 0000000000..0c32bdadd5 --- /dev/null +++ b/dist/@build/license.js @@ -0,0 +1,58 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const fs_1 = require("fs"); +const path_1 = require("path"); +const LICENSE = `/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/`; +const dir = (0, path_1.resolve)("src"); +function log(msg) { + const time = new Date().toLocaleTimeString(); + console.log(`[${time}] ${msg}`); +} +if (!(0, fs_1.existsSync)(dir)) { + console.error("src folder not found"); + process.exit(1); +} +const isTs = (file) => file.endsWith(".ts"); +function addHeaderIfMissing(filePath) { + try { + const content = (0, fs_1.readFileSync)(filePath, "utf8"); + const c = content.split("\n"); + const l = LICENSE.split("\n"); + let i = 0; + for (const line of c) { + if (line.startsWith(l[i])) + i++; + else + break; + } + if (i === l.length) + return false; + (0, fs_1.writeFileSync)(filePath, `${LICENSE}\n\n${content}`); + log(`Added license header → ${filePath}`); + return true; + } + catch { + return false; + } +} +function scanDir(dir) { + for (const entry of (0, fs_1.readdirSync)(dir)) { + const full = (0, path_1.join)(dir, entry); + const st = (0, fs_1.statSync)(full); + if (st.isDirectory()) + scanDir(full); + else if (st.isFile() && isTs(full)) + addHeaderIfMissing(full); + } +} +log("Scanning existing files for missing headers…"); +scanDir(dir); +log("Completed the scan."); +//# sourceMappingURL=license.js.map \ No newline at end of file diff --git a/dist/@build/license.js.map b/dist/@build/license.js.map new file mode 100644 index 0000000000..6c1491f45d --- /dev/null +++ b/dist/@build/license.js.map @@ -0,0 +1 @@ +{"version":3,"file":"license.js","sourceRoot":"","sources":["../../src/@build/license.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAmF;AACnF,+BAAoC;AAEpC,MAAM,OAAO,GAAG;;;GAGb,CAAA;AAEH,MAAM,GAAG,GAAG,IAAA,cAAO,EAAC,KAAK,CAAC,CAAA;AAE1B,SAAS,GAAG,CAAC,GAAW;IACpB,MAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,kBAAkB,EAAE,CAAA;IAC5C,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,KAAK,GAAG,EAAE,CAAC,CAAA;AACnC,CAAC;AAED,IAAI,CAAC,IAAA,eAAU,EAAC,GAAG,CAAC,EAAE;IAClB,OAAO,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAA;IACrC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;CAClB;AAED,MAAM,IAAI,GAAG,CAAC,IAAY,EAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;AAEpD,SAAS,kBAAkB,CAAC,QAAgB;IACxC,IAAI;QACA,MAAM,OAAO,GAAG,IAAA,iBAAY,EAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;QAC9C,MAAM,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC7B,MAAM,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC7B,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,KAAI,MAAM,IAAI,IAAI,CAAC,EAAE;YACjB,IAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAAE,CAAC,EAAE,CAAA;;gBACxB,MAAK;SACb;QACD,IAAG,CAAC,KAAK,CAAC,CAAC,MAAM;YAAE,OAAO,KAAK,CAAA;QAC/B,IAAA,kBAAa,EAAC,QAAQ,EAAE,GAAG,OAAO,OAAO,OAAO,EAAE,CAAC,CAAA;QACnD,GAAG,CAAC,0BAA0B,QAAQ,EAAE,CAAC,CAAA;QACzC,OAAO,IAAI,CAAA;KACd;IAAC,MAAM;QACJ,OAAO,KAAK,CAAA;KACf;AACL,CAAC;AAED,SAAS,OAAO,CAAC,GAAW;IACxB,KAAK,MAAM,KAAK,IAAI,IAAA,gBAAW,EAAC,GAAG,CAAC,EAAE;QAClC,MAAM,IAAI,GAAG,IAAA,WAAI,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAC7B,MAAM,EAAE,GAAG,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAA;QACzB,IAAI,EAAE,CAAC,WAAW,EAAE;YAAE,OAAO,CAAC,IAAI,CAAC,CAAA;aAC9B,IAAI,EAAE,CAAC,MAAM,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC;YAAE,kBAAkB,CAAC,IAAI,CAAC,CAAA;KAC/D;AACL,CAAC;AAED,GAAG,CAAC,8CAA8C,CAAC,CAAA;AACnD,OAAO,CAAC,GAAG,CAAC,CAAA;AACZ,GAAG,CAAC,qBAAqB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/app/ok.d.ts.map b/dist/__tests__/app/ok.d.ts.map index 3fe918789a..4180d596a3 100644 --- a/dist/__tests__/app/ok.d.ts.map +++ b/dist/__tests__/app/ok.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ok.d.ts","sourceRoot":"","sources":["../../../src/__tests__/app/ok.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAA;;AAGrD,wBA6BE"} \ No newline at end of file +{"version":3,"file":"ok.d.ts","sourceRoot":"","sources":["../../../src/__tests__/app/ok.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAA;;AAGrD,wBA6BE"} \ No newline at end of file diff --git a/dist/__tests__/app/ok.js b/dist/__tests__/app/ok.js index 38038412d5..8ed8af3975 100644 --- a/dist/__tests__/app/ok.js +++ b/dist/__tests__/app/ok.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.ApplicationCommand({ diff --git a/dist/__tests__/app/ok.js.map b/dist/__tests__/app/ok.js.map index 508fb3ee27..0d2c3e2043 100644 --- a/dist/__tests__/app/ok.js.map +++ b/dist/__tests__/app/ok.js.map @@ -1 +1 @@ -{"version":3,"file":"ok.js","sourceRoot":"","sources":["../../../src/__tests__/app/ok.ts"],"names":[],"mappings":";;AACA,iDAAqD;AAGrD,kBAAe,IAAI,+BAAkB,CAAC;IAClC,IAAI,EAAE,CAAC;IACP,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,kBAAkB,EAAE;YAChB,OAAO,EAAE,SAAS;SAErB;QACD,yBAAyB,EAAE;YACvB,OAAO,EAAE,kBAAkB;SAC9B;QACD,WAAW,EAAE,kBAAkB;QAC/B,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,MAAM;gBACZ,WAAW,EAAE,sBAAsB;gBACnC,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,WAAW;gBACjB,WAAW,EAAE,8BAA8B;aAC9C;SACJ;KACJ;IACD,IAAI,EAAE;;EAER;CACD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ok.js","sourceRoot":"","sources":["../../../src/__tests__/app/ok.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAqD;AAGrD,kBAAe,IAAI,+BAAkB,CAAC;IAClC,IAAI,EAAE,CAAC;IACP,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,kBAAkB,EAAE;YAChB,OAAO,EAAE,SAAS;SAErB;QACD,yBAAyB,EAAE;YACvB,OAAO,EAAE,kBAAkB;SAC9B;QACD,WAAW,EAAE,kBAAkB;QAC/B,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,MAAM;gBACZ,WAAW,EAAE,sBAAsB;gBACnC,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,WAAW;gBACjB,WAAW,EAAE,8BAA8B;aAC9C;SACJ;KACJ;IACD,IAAI,EAAE;;EAER;CACD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/app/ping.d.ts.map b/dist/__tests__/app/ping.d.ts.map index cfac8d2fa7..f82096d8e5 100644 --- a/dist/__tests__/app/ping.d.ts.map +++ b/dist/__tests__/app/ping.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ping.d.ts","sourceRoot":"","sources":["../../../src/__tests__/app/ping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAA;;;;;;;;;;;;;;;;AAGjF,wBAgBC"} \ No newline at end of file +{"version":3,"file":"ping.d.ts","sourceRoot":"","sources":["../../../src/__tests__/app/ping.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,4BAA4B,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAA;;;;;;;;;;;;;;;;AAGjF,wBAgBC"} \ No newline at end of file diff --git a/dist/__tests__/app/ping.js b/dist/__tests__/app/ping.js index 8664d8f6e4..680dcad1eb 100644 --- a/dist/__tests__/app/ping.js +++ b/dist/__tests__/app/ping.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); exports.default = { diff --git a/dist/__tests__/app/ping.js.map b/dist/__tests__/app/ping.js.map index b23929600a..d5f59c4532 100644 --- a/dist/__tests__/app/ping.js.map +++ b/dist/__tests__/app/ping.js.map @@ -1 +1 @@ -{"version":3,"file":"ping.js","sourceRoot":"","sources":["../../../src/__tests__/app/ping.ts"],"names":[],"mappings":";;AAAA,2CAAiF;AAGjF,kBAAe;IACX,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,wBAAwB;QACrC,IAAI,EAAE,mCAAsB,CAAC,SAAS;QACtC,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,KAAK;gBACX,YAAY,EAAE,IAAI;gBAClB,IAAI,EAAE,yCAA4B,CAAC,MAAM;gBACzC,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,SAAS;aACzB;SACJ;KACJ;IACD,IAAI,EAAE,uBAAuB;CAChC,CAAA"} \ No newline at end of file +{"version":3,"file":"ping.js","sourceRoot":"","sources":["../../../src/__tests__/app/ping.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiF;AAGjF,kBAAe;IACX,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,wBAAwB;QACrC,IAAI,EAAE,mCAAsB,CAAC,SAAS;QACtC,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,KAAK;gBACX,YAAY,EAAE,IAAI;gBAClB,IAAI,EAAE,yCAA4B,CAAC,MAAM;gBACzC,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,SAAS;aACzB;SACJ;KACJ;IACD,IAAI,EAAE,uBAAuB;CAChC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/app/test/bye.d.ts.map b/dist/__tests__/app/test/bye.d.ts.map index e7f6172640..5ebeb61706 100644 --- a/dist/__tests__/app/test/bye.d.ts.map +++ b/dist/__tests__/app/test/bye.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bye.d.ts","sourceRoot":"","sources":["../../../../src/__tests__/app/test/bye.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAA;;;;;;;;;;;;;;AAGzD,wBAcC"} \ No newline at end of file +{"version":3,"file":"bye.d.ts","sourceRoot":"","sources":["../../../../src/__tests__/app/test/bye.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAA;;;;;;;;;;;;;;AAGzD,wBAcC"} \ No newline at end of file diff --git a/dist/__tests__/app/test/bye.js b/dist/__tests__/app/test/bye.js index fe40c788d3..1c4462b9ff 100644 --- a/dist/__tests__/app/test/bye.js +++ b/dist/__tests__/app/test/bye.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); exports.default = { diff --git a/dist/__tests__/app/test/bye.js.map b/dist/__tests__/app/test/bye.js.map index 419f96d5fd..fc8f16cd95 100644 --- a/dist/__tests__/app/test/bye.js.map +++ b/dist/__tests__/app/test/bye.js.map @@ -1 +1 @@ -{"version":3,"file":"bye.js","sourceRoot":"","sources":["../../../../src/__tests__/app/test/bye.ts"],"names":[],"mappings":";;AAAA,2CAAyD;AAGzD,kBAAe;IACX,IAAI,EAAE,gCAAgC;IACtC,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,KAAK;QAClB,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,IAAI;gBACV,WAAW,EAAE,KAAK;gBAClB,IAAI,EAAE,yCAA4B,CAAC,MAAM;gBACzC,QAAQ,EAAE,KAAK;aAClB;SACJ;KACJ;CACJ,CAAA"} \ No newline at end of file +{"version":3,"file":"bye.js","sourceRoot":"","sources":["../../../../src/__tests__/app/test/bye.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyD;AAGzD,kBAAe;IACX,IAAI,EAAE,gCAAgC;IACtC,IAAI,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,KAAK;QAClB,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,IAAI;gBACV,WAAW,EAAE,KAAK;gBAClB,IAAI,EAAE,yCAA4B,CAAC,MAAM;gBACzC,QAAQ,EAAE,KAAK;aAClB;SACJ;KACJ;CACJ,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/async.d.ts.map b/dist/__tests__/async.d.ts.map index e19b62fb04..7312783b2e 100644 --- a/dist/__tests__/async.d.ts.map +++ b/dist/__tests__/async.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"async.d.ts","sourceRoot":"","sources":["../../src/__tests__/async.ts"],"names":[],"mappings":"AAAA,iBAAe,SAAS,oBAEvB;AAED,iBAAS,QAAQ,WAEhB;AAED,iBAAe,QAAQ,6BAOtB;AAED,iBAAe,OAAO,4BAOrB"} \ No newline at end of file +{"version":3,"file":"async.d.ts","sourceRoot":"","sources":["../../src/__tests__/async.ts"],"names":[],"mappings":"AAKA,iBAAe,SAAS,oBAEvB;AAED,iBAAS,QAAQ,WAEhB;AAED,iBAAe,QAAQ,6BAOtB;AAED,iBAAe,OAAO,4BAOrB"} \ No newline at end of file diff --git a/dist/__tests__/async.js b/dist/__tests__/async.js index 1d872dbd39..d7ed017965 100644 --- a/dist/__tests__/async.js +++ b/dist/__tests__/async.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ async function asyncTask() { return 0; } diff --git a/dist/__tests__/async.js.map b/dist/__tests__/async.js.map index f60c85b696..b857fbf699 100644 --- a/dist/__tests__/async.js.map +++ b/dist/__tests__/async.js.map @@ -1 +1 @@ -{"version":3,"file":"async.js","sourceRoot":"","sources":["../../src/__tests__/async.ts"],"names":[],"mappings":";AAAA,KAAK,UAAU,SAAS;IACpB,OAAO,CAAC,CAAA;AACZ,CAAC;AAED,SAAS,QAAQ;IACb,OAAO,CAAC,CAAA;AACZ,CAAC;AAED,KAAK,UAAU,QAAQ;IACnB,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAC,CAAC,GAAG,OAAO,EAAC,CAAC,EAAE,EAAE;QAC5B,MAAM,SAAS,EAAE,CAAA;KACpB;IACD,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,KAAK,EAAE,IAAI,CAAC,CAAA;IAC5C,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,KAAK,UAAU,OAAO;IAClB,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAC,CAAC,GAAG,OAAO,EAAC,CAAC,EAAE,EAAE;QAC5B,IAAI,GAAG,GAAG,QAAQ,EAAE,CAAA;KACvB;IACD,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,KAAK,EAAE,IAAI,CAAC,CAAA;IAC5C,OAAO,OAAO,CAAA;AAClB,CAAC;AAED,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;AACpB,QAAQ,EAAE;KACL,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,GAAG,EAAE;IACP,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IACnB,OAAO,EAAE;SACJ,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC,CAAA;AACtB,CAAC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"async.js","sourceRoot":"","sources":["../../src/__tests__/async.ts"],"names":[],"mappings":";AAAA;;;EAGE;AAEF,KAAK,UAAU,SAAS;IACpB,OAAO,CAAC,CAAA;AACZ,CAAC;AAED,SAAS,QAAQ;IACb,OAAO,CAAC,CAAA;AACZ,CAAC;AAED,KAAK,UAAU,QAAQ;IACnB,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAC,CAAC,GAAG,OAAO,EAAC,CAAC,EAAE,EAAE;QAC5B,MAAM,SAAS,EAAE,CAAA;KACpB;IACD,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,KAAK,EAAE,IAAI,CAAC,CAAA;IAC5C,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,KAAK,UAAU,OAAO;IAClB,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAC,CAAC,GAAG,OAAO,EAAC,CAAC,EAAE,EAAE;QAC5B,IAAI,GAAG,GAAG,QAAQ,EAAE,CAAA;KACvB;IACD,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,KAAK,EAAE,IAAI,CAAC,CAAA;IAC5C,OAAO,OAAO,CAAA;AAClB,CAAC;AAED,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;AACpB,QAAQ,EAAE;KACL,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,QAAQ,CAAC;KACd,IAAI,CAAC,GAAG,EAAE;IACP,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IACnB,OAAO,EAAE;SACJ,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC;SACb,IAAI,CAAC,OAAO,CAAC,CAAA;AACtB,CAAC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/bar.js b/dist/__tests__/bar.js index b03a4fb77a..dfc623256c 100644 --- a/dist/__tests__/bar.js +++ b/dist/__tests__/bar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const generateBar_1 = require("../functions/generateBar"); console.log((0, generateBar_1.generateAdvancedBar)(100, 100, 10, [ diff --git a/dist/__tests__/bar.js.map b/dist/__tests__/bar.js.map index 1c40c71d0b..ac792b617d 100644 --- a/dist/__tests__/bar.js.map +++ b/dist/__tests__/bar.js.map @@ -1 +1 @@ -{"version":3,"file":"bar.js","sourceRoot":"","sources":["../../src/__tests__/bar.ts"],"names":[],"mappings":";;AAAA,0DAA2E;AAE3E,OAAO,CAAC,GAAG,CACP,IAAA,iCAAmB,EACf,GAAG,EACH,GAAG,EACH,EAAE,EACF;IACI,GAAG;IACH,GAAG;IACH,GAAG;CACN,CACJ,CACJ,CAAA"} \ No newline at end of file +{"version":3,"file":"bar.js","sourceRoot":"","sources":["../../src/__tests__/bar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,0DAA2E;AAE3E,OAAO,CAAC,GAAG,CACP,IAAA,iCAAmB,EACf,GAAG,EACH,GAAG,EACH,EAAE,EACF;IACI,GAAG;IACH,GAAG;IACH,GAAG;CACN,CACJ,CACJ,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/bulk.js b/dist/__tests__/bulk.js index 864d24a937..340638bc83 100644 --- a/dist/__tests__/bulk.js +++ b/dist/__tests__/bulk.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const promises_1 = require("timers/promises"); const structures_1 = require("../structures"); diff --git a/dist/__tests__/bulk.js.map b/dist/__tests__/bulk.js.map index 3c86cfd1da..557de1893e 100644 --- a/dist/__tests__/bulk.js.map +++ b/dist/__tests__/bulk.js.map @@ -1 +1 @@ -{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../src/__tests__/bulk.ts"],"names":[],"mappings":";;AAAA,8CAA4C;AAC5C,8CAAsC;AAEtC,KAAK,UAAU,IAAI;IACf,mBAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1B,MAAM,IAAA,qBAAU,EAAC,IAAI,CAAC,CAAA;IACtB,mBAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IACxB,MAAM,IAAA,qBAAU,EAAC,IAAI,CAAC,CAAA;IACtB,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;AAC9B,CAAC;AAED,IAAI,EAAE,CAAA"} \ No newline at end of file +{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../src/__tests__/bulk.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8CAA4C;AAC5C,8CAAsC;AAEtC,KAAK,UAAU,IAAI;IACf,mBAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1B,MAAM,IAAA,qBAAU,EAAC,IAAI,CAAC,CAAA;IACtB,mBAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IACxB,MAAM,IAAA,qBAAU,EAAC,IAAI,CAAC,CAAA;IACtB,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;AAC9B,CAAC;AAED,IAAI,EAAE,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/client.js b/dist/__tests__/client.js index 096e76a365..0e77098eda 100644 --- a/dist/__tests__/client.js +++ b/dist/__tests__/client.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../core"); const dotenv_1 = require("dotenv"); diff --git a/dist/__tests__/client.js.map b/dist/__tests__/client.js.map index 547b95f4e6..2f2a0a6ce2 100644 --- a/dist/__tests__/client.js.map +++ b/dist/__tests__/client.js.map @@ -1 +1 @@ -{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/__tests__/client.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/__tests__/client.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/__tests__/custom/uwu.d.ts.map b/dist/__tests__/custom/uwu.d.ts.map index dc2fcf690e..9bdd99bf11 100644 --- a/dist/__tests__/custom/uwu.d.ts.map +++ b/dist/__tests__/custom/uwu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"uwu.d.ts","sourceRoot":"","sources":["../../../src/__tests__/custom/uwu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAG1E,wBAOE"} \ No newline at end of file +{"version":3,"file":"uwu.d.ts","sourceRoot":"","sources":["../../../src/__tests__/custom/uwu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAG1E,wBAOE"} \ No newline at end of file diff --git a/dist/__tests__/custom/uwu.js b/dist/__tests__/custom/uwu.js index 95828c6e38..1f9def01c3 100644 --- a/dist/__tests__/custom/uwu.js +++ b/dist/__tests__/custom/uwu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/__tests__/custom/uwu.js.map b/dist/__tests__/custom/uwu.js.map index 72b81074f7..cd4aaedb03 100644 --- a/dist/__tests__/custom/uwu.js.map +++ b/dist/__tests__/custom/uwu.js.map @@ -1 +1 @@ -{"version":3,"file":"uwu.js","sourceRoot":"","sources":["../../../src/__tests__/custom/uwu.ts"],"names":[],"mappings":";;AAAA,8EAA0E;AAG1E,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"uwu.js","sourceRoot":"","sources":["../../../src/__tests__/custom/uwu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAA0E;AAG1E,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/diagnostics.js b/dist/__tests__/diagnostics.js index f45be1572e..05984c06cd 100644 --- a/dist/__tests__/diagnostics.js +++ b/dist/__tests__/diagnostics.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const node_diagnostics_channel_1 = require("node:diagnostics_channel"); const ch = (0, node_diagnostics_channel_1.channel)("messaging"); diff --git a/dist/__tests__/diagnostics.js.map b/dist/__tests__/diagnostics.js.map index 086e3bfff8..76016d15b7 100644 --- a/dist/__tests__/diagnostics.js.map +++ b/dist/__tests__/diagnostics.js.map @@ -1 +1 @@ -{"version":3,"file":"diagnostics.js","sourceRoot":"","sources":["../../src/__tests__/diagnostics.ts"],"names":[],"mappings":";;AAAA,uEAA6D;AAE7D,MAAM,EAAE,GAAG,IAAA,kCAAO,EAAC,WAAW,CAAC,CAAA;AAE/B,IAAA,oCAAS,EAAC,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE;IACrB,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AACpB,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"diagnostics.js","sourceRoot":"","sources":["../../src/__tests__/diagnostics.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,uEAA6D;AAE7D,MAAM,EAAE,GAAG,IAAA,kCAAO,EAAC,WAAW,CAAC,CAAA;AAE/B,IAAA,oCAAS,EAAC,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE;IACrB,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AACpB,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/docs.js b/dist/__tests__/docs.js index 2ba1f53b97..f8a9826023 100644 --- a/dist/__tests__/docs.js +++ b/dist/__tests__/docs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/__tests__/docs.js.map b/dist/__tests__/docs.js.map index 7ed7f901ed..8a782375be 100644 --- a/dist/__tests__/docs.js.map +++ b/dist/__tests__/docs.js.map @@ -1 +1 @@ -{"version":3,"file":"docs.js","sourceRoot":"","sources":["../../src/__tests__/docs.ts"],"names":[],"mappings":";;;;;AAAA,sDAA6B;AAC7B,MAAM,GAAG,GAAG,IAAA,iBAAO,GAAE,CAAA;AACrB,GAAG,CAAC,GAAG,CAAC,iBAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAA;AACjC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"docs.js","sourceRoot":"","sources":["../../src/__tests__/docs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,sDAA6B;AAC7B,MAAM,GAAG,GAAG,IAAA,iBAAO,GAAE,CAAA;AACrB,GAAG,CAAC,GAAG,CAAC,iBAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAA;AACjC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/error.js b/dist/__tests__/error.js index 8a7c54a9f6..aeca8bcc80 100644 --- a/dist/__tests__/error.js +++ b/dist/__tests__/error.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const ForgeError_1 = require("../structures/forge/ForgeError"); console.log(new ForgeError_1.ForgeError(null, ForgeError_1.ErrorType.InvalidArgType, "cope", "id", "User")); diff --git a/dist/__tests__/error.js.map b/dist/__tests__/error.js.map index d546a4da91..5e05b4b740 100644 --- a/dist/__tests__/error.js.map +++ b/dist/__tests__/error.js.map @@ -1 +1 @@ -{"version":3,"file":"error.js","sourceRoot":"","sources":["../../src/__tests__/error.ts"],"names":[],"mappings":";;AAAA,+DAAsE;AAEtE,OAAO,CAAC,GAAG,CAAC,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,cAAc,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"error.js","sourceRoot":"","sources":["../../src/__tests__/error.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+DAAsE;AAEtE,OAAO,CAAC,GAAG,CAAC,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,cAAc,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/ext.d.ts.map b/dist/__tests__/ext.d.ts.map index 79ae978b87..71e54251ff 100644 --- a/dist/__tests__/ext.d.ts.map +++ b/dist/__tests__/ext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ext.d.ts","sourceRoot":"","sources":["../../src/__tests__/ext.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAEhD,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAA;AAEnE,qBAAa,UAAW,SAAQ,kBAAkB,CAAC,EAAE,CAAC;IAC3C,WAAW,SAAS;CAC9B;AAGD,qBAAa,WAAY,SAAQ,cAAc;IACpC,WAAW,EAAE,MAAM,CAAqB;IACxC,IAAI,EAAE,MAAM,CAAQ;IACpB,OAAO,EAAE,MAAM,CAAU;IAEzB,MAAM,EAAG,UAAU,CAAA;IAEnB,IAAI,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;CAKzC"} \ No newline at end of file +{"version":3,"file":"ext.d.ts","sourceRoot":"","sources":["../../src/__tests__/ext.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAEhD,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAA;AAEnE,qBAAa,UAAW,SAAQ,kBAAkB,CAAC,EAAE,CAAC;IAC3C,WAAW,SAAS;CAC9B;AAGD,qBAAa,WAAY,SAAQ,cAAc;IACpC,WAAW,EAAE,MAAM,CAAqB;IACxC,IAAI,EAAE,MAAM,CAAQ;IACpB,OAAO,EAAE,MAAM,CAAU;IAEzB,MAAM,EAAG,UAAU,CAAA;IAEnB,IAAI,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;CAKzC"} \ No newline at end of file diff --git a/dist/__tests__/ext.js b/dist/__tests__/ext.js index db827a58eb..c6224285f4 100644 --- a/dist/__tests__/ext.js +++ b/dist/__tests__/ext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.MyExtension = exports.RndManager = void 0; const node_path_1 = require("node:path"); diff --git a/dist/__tests__/ext.js.map b/dist/__tests__/ext.js.map index 18e9e4943b..5d3f872299 100644 --- a/dist/__tests__/ext.js.map +++ b/dist/__tests__/ext.js.map @@ -1 +1 @@ -{"version":3,"file":"ext.js","sourceRoot":"","sources":["../../src/__tests__/ext.ts"],"names":[],"mappings":";;;AAAA,yCAAgC;AAEhC,0CAAgD;AAEhD,uEAAmE;AAEnE,MAAa,UAAW,SAAQ,6BAAsB;IAC3C,WAAW,GAAG,MAAM,CAAA;CAC9B;AAFD,gCAEC;AAED,kBAAkB;AAClB,MAAa,WAAY,SAAQ,+BAAc;IACpC,WAAW,GAAW,kBAAkB,CAAA;IACxC,IAAI,GAAW,KAAK,CAAA;IACpB,OAAO,GAAW,OAAO,CAAA;IAEzB,MAAM,CAAa;IAEnB,IAAI,CAAC,MAAmB;QAC3B,oCAAoC;QACpC,IAAI,CAAC,IAAI,CAAC,IAAA,gBAAI,EAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,CAAA;QACpC,IAAI,CAAC,MAAM,GAAG,IAAI,UAAU,CAAC,MAAM,CAAC,CAAA;IACxC,CAAC;CACJ;AAZD,kCAYC"} \ No newline at end of file +{"version":3,"file":"ext.js","sourceRoot":"","sources":["../../src/__tests__/ext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,yCAAgC;AAEhC,0CAAgD;AAEhD,uEAAmE;AAEnE,MAAa,UAAW,SAAQ,6BAAsB;IAC3C,WAAW,GAAG,MAAM,CAAA;CAC9B;AAFD,gCAEC;AAED,kBAAkB;AAClB,MAAa,WAAY,SAAQ,+BAAc;IACpC,WAAW,GAAW,kBAAkB,CAAA;IACxC,IAAI,GAAW,KAAK,CAAA;IACpB,OAAO,GAAW,OAAO,CAAA;IAEzB,MAAM,CAAa;IAEnB,IAAI,CAAC,MAAmB;QAC3B,oCAAoC;QACpC,IAAI,CAAC,IAAI,CAAC,IAAA,gBAAI,EAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,CAAA;QACpC,IAAI,CAAC,MAAM,GAAG,IAAI,UAAU,CAAC,MAAM,CAAC,CAAA;IACxC,CAAC;CACJ;AAZD,kCAYC"} \ No newline at end of file diff --git a/dist/__tests__/fs.js b/dist/__tests__/fs.js index 16b4c7be53..b480efb968 100644 --- a/dist/__tests__/fs.js +++ b/dist/__tests__/fs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const FileReader_1 = require("../core/FileReader"); console.log(new FileReader_1.FileReader(`[name] diff --git a/dist/__tests__/fs.js.map b/dist/__tests__/fs.js.map index a836e13b03..d436461d77 100644 --- a/dist/__tests__/fs.js.map +++ b/dist/__tests__/fs.js.map @@ -1 +1 @@ -{"version":3,"file":"fs.js","sourceRoot":"","sources":["../../src/__tests__/fs.ts"],"names":[],"mappings":";;AAAA,mDAA+C;AAE/C,OAAO,CAAC,GAAG,CACP,IAAI,uBAAU,CACV;;;;;;;;;;CAUP,EACO,EAAE,CACL,CAAC,IAAI,EAAE,CACX,CAAA"} \ No newline at end of file +{"version":3,"file":"fs.js","sourceRoot":"","sources":["../../src/__tests__/fs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mDAA+C;AAE/C,OAAO,CAAC,GAAG,CACP,IAAI,uBAAU,CACV;;;;;;;;;;CAUP,EACO,EAAE,CACL,CAAC,IAAI,EAAE,CACX,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/read.js b/dist/__tests__/read.js index 7af4af32ad..9a7cc5eeb5 100644 --- a/dist/__tests__/read.js +++ b/dist/__tests__/read.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const util_1 = require("util"); const FunctionManager_1 = require("../managers/FunctionManager"); diff --git a/dist/__tests__/read.js.map b/dist/__tests__/read.js.map index 8d5eb7800c..7739d64d38 100644 --- a/dist/__tests__/read.js.map +++ b/dist/__tests__/read.js.map @@ -1 +1 @@ -{"version":3,"file":"read.js","sourceRoot":"","sources":["../../src/__tests__/read.ts"],"names":[],"mappings":";;AAAA,+BAA8B;AAC9B,iEAA6D;AAG7D,+CAAmE;AAEnE,iCAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,mBAAoB,CAAC,cAAc,CAAC,CAAC,iCAAe,CAAC,GAAG,CAAC,CAAA;AAEzD,MAAM,IAAI,GAAG;;CAEZ,CAAA;AAED,MAAM,GAAG,GAAG;;;0EAG8D,CAAA;AAE1E,MAAM,QAAQ,GAAG,mBAAoB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,CAAA;AAEtD,OAAO,CAAC,GAAG,CAAC,IAAA,cAAO,EAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"read.js","sourceRoot":"","sources":["../../src/__tests__/read.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+BAA8B;AAC9B,iEAA6D;AAG7D,+CAAmE;AAEnE,iCAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,mBAAoB,CAAC,cAAc,CAAC,CAAC,iCAAe,CAAC,GAAG,CAAC,CAAA;AAEzD,MAAM,IAAI,GAAG;;CAEZ,CAAA;AAED,MAAM,GAAG,GAAG;;;0EAG8D,CAAA;AAE1E,MAAM,QAAQ,GAAG,mBAAoB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,CAAA;AAEtD,OAAO,CAAC,GAAG,CAAC,IAAA,cAAO,EAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/regex.js b/dist/__tests__/regex.js index 4a5800952e..cfb1f0cccc 100644 --- a/dist/__tests__/regex.js +++ b/dist/__tests__/regex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const node_util_1 = require("node:util"); const core_1 = require("../core"); diff --git a/dist/__tests__/regex.js.map b/dist/__tests__/regex.js.map index aae7340625..be833938c7 100644 --- a/dist/__tests__/regex.js.map +++ b/dist/__tests__/regex.js.map @@ -1 +1 @@ -{"version":3,"file":"regex.js","sourceRoot":"","sources":["../../src/__tests__/regex.ts"],"names":[],"mappings":";;AAAA,yCAAmC;AACnC,kCAAkC;AAClC,0CAA6C;AAC7C,0BAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,eAAQ,CAAC,cAAc,CAAC,CAAC,0BAAe,CAAC,GAAG,CAAC,CAAA;AAC7C,OAAO,CAAC,GAAG,CACP,eAAQ,CAAC,OAAO,CAAC,CACpB,CAAA;AAED,OAAO,CAAC,GAAG,CACP,IAAA,mBAAO,EAAC,eAAQ,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAChF,CAAA"} \ No newline at end of file +{"version":3,"file":"regex.js","sourceRoot":"","sources":["../../src/__tests__/regex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,yCAAmC;AACnC,kCAAkC;AAClC,0CAA6C;AAC7C,0BAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,eAAQ,CAAC,cAAc,CAAC,CAAC,0BAAe,CAAC,GAAG,CAAC,CAAA;AAC7C,OAAO,CAAC,GAAG,CACP,eAAQ,CAAC,OAAO,CAAC,CACpB,CAAA;AAED,OAAO,CAAC,GAAG,CACP,IAAA,mBAAO,EAAC,eAAQ,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAChF,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/rgb.js b/dist/__tests__/rgb.js index ae81b653fa..27687c55c2 100644 --- a/dist/__tests__/rgb.js +++ b/dist/__tests__/rgb.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/__tests__/rgb.js.map b/dist/__tests__/rgb.js.map index ac1399248a..482606f459 100644 --- a/dist/__tests__/rgb.js.map +++ b/dist/__tests__/rgb.js.map @@ -1 +1 @@ -{"version":3,"file":"rgb.js","sourceRoot":"","sources":["../../src/__tests__/rgb.ts"],"names":[],"mappings":";;;;;AAAA,0DAA2B;AAE3B,OAAO,CAAC,GAAG,CAAC,mBAAG,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"rgb.js","sourceRoot":"","sources":["../../src/__tests__/rgb.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,0DAA2B;AAE3B,OAAO,CAAC,GAAG,CAAC,mBAAG,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/__tests__/runner.js b/dist/__tests__/runner.js index e313eab03b..af806c1d6c 100644 --- a/dist/__tests__/runner.js +++ b/dist/__tests__/runner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/__tests__/runner.js.map b/dist/__tests__/runner.js.map index e1e679d495..7423201c2a 100644 --- a/dist/__tests__/runner.js.map +++ b/dist/__tests__/runner.js.map @@ -1 +1 @@ -{"version":3,"file":"runner.js","sourceRoot":"","sources":["../../src/__tests__/runner.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qCAA8B;AAE9B,mBAAO,KAAK,cAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,wCAAC"} \ No newline at end of file +{"version":3,"file":"runner.js","sourceRoot":"","sources":["../../src/__tests__/runner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,qCAA8B;AAE9B,mBAAO,KAAK,cAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,wCAAC"} \ No newline at end of file diff --git a/dist/__tests__/validate.js b/dist/__tests__/validate.js index 3a22917ae9..ccfaddd709 100644 --- a/dist/__tests__/validate.js +++ b/dist/__tests__/validate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const managers_1 = require("../managers"); const structures_1 = require("../structures"); diff --git a/dist/__tests__/validate.js.map b/dist/__tests__/validate.js.map index 93f6702ccc..31159cb4f6 100644 --- a/dist/__tests__/validate.js.map +++ b/dist/__tests__/validate.js.map @@ -1 +1 @@ -{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../src/__tests__/validate.ts"],"names":[],"mappings":";;AAAA,0CAA6C;AAC7C,8CAAuC;AACvC,2DAAuD;AAEvD,oCAAoC;AACpC,0BAAe,CAAC,IAAI,CAAC,WAAW,EAAE,SAAS,GAAG,YAAY,CAAC,CAAA;AAE3D,KAAK,MAAM,CAAC,EAAE,EAAE,CAAC,IAAI,0BAAe,CAAC,WAAW,CAAC,EAAE;IAC/C,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE;QACtB,KAAK,MAAM,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE;YAC5B,IACI,GAAG,CAAC,OAAO,KAAK,SAAS;gBACzB,CAAC,oBAAO,CAAC,IAAI,EAAE,oBAAO,CAAC,MAAM,EAAE,oBAAO,CAAC,OAAO,EAAE,oBAAO,CAAC,UAAU,CAAC,CAAC,QAAQ,CACxE,GAAG,CAAC,IAAI,CACX,EACH;gBACE,eAAM,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,IAAI,kCAAkC,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;aACvE;SACJ;KACJ;CACJ"} \ No newline at end of file +{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../src/__tests__/validate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,0CAA6C;AAC7C,8CAAuC;AACvC,2DAAuD;AAEvD,oCAAoC;AACpC,0BAAe,CAAC,IAAI,CAAC,WAAW,EAAE,SAAS,GAAG,YAAY,CAAC,CAAA;AAE3D,KAAK,MAAM,CAAC,EAAE,EAAE,CAAC,IAAI,0BAAe,CAAC,WAAW,CAAC,EAAE;IAC/C,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE;QACtB,KAAK,MAAM,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE;YAC5B,IACI,GAAG,CAAC,OAAO,KAAK,SAAS;gBACzB,CAAC,oBAAO,CAAC,IAAI,EAAE,oBAAO,CAAC,MAAM,EAAE,oBAAO,CAAC,OAAO,EAAE,oBAAO,CAAC,UAAU,CAAC,CAAC,QAAQ,CACxE,GAAG,CAAC,IAAI,CACX,EACH;gBACE,eAAM,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,IAAI,kCAAkC,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;aACvE;SACJ;KACJ;CACJ"} \ No newline at end of file diff --git a/dist/commit.js.map b/dist/commit.js.map deleted file mode 100644 index b38769e099..0000000000 --- a/dist/commit.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"commit.js","sourceRoot":"","sources":["../src/commit.ts"],"names":[],"mappings":";;;;;AAAA,iDAAwC;AACxC,2BAAuE;AACvE,gEAAuC;AACvC,+BAA2B;AAC3B,2BAA6B;AAE7B,MAAM,IAAI,GAAG,YAAY,CAAA;AACzB,IAAI,CAAC,IAAA,eAAU,EAAC,IAAI,CAAC;IAAE,IAAA,cAAS,EAAC,IAAI,CAAC,CAAA;AAEtC,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAA;AAElD,KAAK,UAAU,IAAI;IACf,IAAI,IAAI,GAAG,KAAK,CAAA;IAEhB,MAAM,GAAG,GAAG,CAAC,MAAM,IAAA,gBAAM,EAAC,mCAAmC,CAAC,CAAC,CAAC,OAAO,CACnE,eAAe,EAAE,CAAC,KAAK,EAAE,EAAE;QACvB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAE,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAA;QAElD,QAAQ,IAAI,EAAE;YACV,KAAK,MAAM,CAAC,CAAC;gBACT,IAAI,GAAG,IAAI,CAAA;gBACX,MAAK;aACR;YAED,OAAO,CAAC,CAAC;gBACL,MAAM,IAAI,KAAK,CAAC,KAAK,IAAI,uBAAuB,CAAC,CAAA;aACpD;SACJ;QAED,OAAO,EAAE,CAAA;IACb,CAAC,CACJ,CAAC,IAAI,EAAE,CAAA;IAER,MAAM,QAAQ,GAAG,IAAA,WAAI,EAAC,IAAI,EAAE,iBAAiB,CAAC,CAAA;IAC9C,MAAM,IAAI,GAA6B,IAAA,eAAU,EAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;IAC9G,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAA;IACpB,MAAM,MAAM,GAAG,IAAA,wBAAQ,EAAC,sBAAsB,CAAC,CAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAA;IACjE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC;YAClB,OAAO,EAAE,GAAG;YACZ,SAAS,EAAE,IAAI,IAAI,EAAE;YACrB,MAAM;SACT,CAAC,CAAA;QACF,IAAA,kBAAa,EAAC,QAAQ,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;KACzD;IAED,MAAM,MAAM,GAAG,MAAM,IAAA,gBAAM,EAAC,sDAAsD,CAAC,IAAI,KAAK,CAAA;IAC5F,IAAI,UAAU,GAAG,GAAG,CAAA;IACpB,IAAI,IAAA,aAAQ,GAAE,KAAK,QAAQ;QAAE,UAAU,GAAG,UAAU,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;IAE1E,IAAA,wBAAQ,EAAC,gBAAgB,GAAG,MAAM,GAAG,mCAAmC,GAAG,UAAU,GAAG,2BAA2B,GAAG,MAAM,EAAE;QAC1H,KAAK,EAAE,SAAS;KACnB,CAAC,CAAA;AACN,CAAC;AAED,UAAU;AACV,IAAI,EAAE,CAAA"} \ No newline at end of file diff --git a/dist/constants.d.ts.map b/dist/constants.d.ts.map index a5ca296ce0..fdc442ea16 100644 --- a/dist/constants.d.ts.map +++ b/dist/constants.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,YAAY,CAAA;AAG/B,eAAO,MAAM,UAAU,QAuBrB,CAAA"} \ No newline at end of file +{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAKA,OAAO,MAAM,MAAM,YAAY,CAAA;AAG/B,eAAO,MAAM,UAAU,QAuBrB,CAAA"} \ No newline at end of file diff --git a/dist/constants.js b/dist/constants.js index 460f59dd00..66698c6980 100644 --- a/dist/constants.js +++ b/dist/constants.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/constants.js.map b/dist/constants.js.map index d50267d1d6..9b63a88dc7 100644 --- a/dist/constants.js.map +++ b/dist/constants.js.map @@ -1 +1 @@ -{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;;;;AAAA,4DAA+B;AAC/B,yDAA4D;AAE/C,QAAA,UAAU,GAAG,IAAI,oBAAM,CAAC;IACjC,GAAG,4BAAgB;IACnB;QACI,GAAG;QACH;YACI,IAAI,EAAE,MAAM;YACZ,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;SAC/B;KACJ;IACD;QACI,GAAG;QACH;YACI,IAAI,EAAE,OAAO;YACb,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;SAChC;KACJ;IACD;QACI,GAAG;QACH;YACI,IAAI,EAAE,MAAM;YACZ,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;SACrC;KACJ;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,4DAA+B;AAC/B,yDAA4D;AAE/C,QAAA,UAAU,GAAG,IAAI,oBAAM,CAAC;IACjC,GAAG,4BAAgB;IACnB;QACI,GAAG;QACH;YACI,IAAI,EAAE,MAAM;YACZ,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;SAC/B;KACJ;IACD;QACI,GAAG;QACH;YACI,IAAI,EAAE,OAAO;YACb,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;SAChC;KACJ;IACD;QACI,GAAG;QACH;YACI,IAAI,EAAE,MAAM;YACZ,EAAE,EAAE,IAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;SACrC;KACJ;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/core/Compiler.d.ts.map b/dist/core/Compiler.d.ts.map index 142d4fb81d..ba5d22b437 100644 --- a/dist/core/Compiler.d.ts.map +++ b/dist/core/Compiler.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Compiler.d.ts","sourceRoot":"","sources":["../../src/core/Compiler.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Compiler.d.ts","sourceRoot":"","sources":["../../src/core/Compiler.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/Compiler.js b/dist/core/Compiler.js index 1dcb9568bd..a3097db507 100644 --- a/dist/core/Compiler.js +++ b/dist/core/Compiler.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Compiler = exports.Conditions = exports.Operators = exports.OperatorType = void 0; const CompiledFunction_1 = require("../structures/@internal/CompiledFunction"); diff --git a/dist/core/Compiler.js.map b/dist/core/Compiler.js.map index 2cc0c3b895..1f4dc85e0f 100644 --- a/dist/core/Compiler.js.map +++ b/dist/core/Compiler.js.map @@ -1 +1 @@ -{"version":3,"file":"Compiler.js","sourceRoot":"","sources":["../../src/core/Compiler.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Compiler.js","sourceRoot":"","sources":["../../src/core/Compiler.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/FileReader.d.ts.map b/dist/core/FileReader.d.ts.map index a77e051b77..6f37da772e 100644 --- a/dist/core/FileReader.d.ts.map +++ b/dist/core/FileReader.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"FileReader.d.ts","sourceRoot":"","sources":["../../src/core/FileReader.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAyB,YAAY,EAAE,MAAM,eAAe,CAAA;AAEhF,qBAAa,UAAU;IASA,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAU,OAAO,CAAC,QAAQ,CAAC,GAAG;IARtE,gBAAuB,MAAM;;;;MAI5B;IAED,OAAO,CAAC,KAAK,CAAI;gBAEmB,IAAI,EAAE,MAAM,EAAmB,GAAG,EAAE,GAAG;WAE7D,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;IAMlD,IAAI,IAAI,IAAI,GAAG,YAAY,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC,EAAE;IAoB9F,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,SAAS;IAyBjB,OAAO,CAAC,QAAQ;IA+BhB,OAAO,CAAC,IAAI;CAGf"} \ No newline at end of file +{"version":3,"file":"FileReader.d.ts","sourceRoot":"","sources":["../../src/core/FileReader.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAyB,YAAY,EAAE,MAAM,eAAe,CAAA;AAEhF,qBAAa,UAAU;IASA,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAU,OAAO,CAAC,QAAQ,CAAC,GAAG;IARtE,gBAAuB,MAAM;;;;MAI5B;IAED,OAAO,CAAC,KAAK,CAAI;gBAEmB,IAAI,EAAE,MAAM,EAAmB,GAAG,EAAE,GAAG;WAE7D,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;IAMlD,IAAI,IAAI,IAAI,GAAG,YAAY,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC,EAAE;IAoB9F,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,SAAS;IAyBjB,OAAO,CAAC,QAAQ;IA+BhB,OAAO,CAAC,IAAI;CAGf"} \ No newline at end of file diff --git a/dist/core/FileReader.js b/dist/core/FileReader.js index 24842e2891..4b660c5331 100644 --- a/dist/core/FileReader.js +++ b/dist/core/FileReader.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.FileReader = void 0; const fs_1 = require("fs"); diff --git a/dist/core/FileReader.js.map b/dist/core/FileReader.js.map index f6d8ba6f82..5cc66333f9 100644 --- a/dist/core/FileReader.js.map +++ b/dist/core/FileReader.js.map @@ -1 +1 @@ -{"version":3,"file":"FileReader.js","sourceRoot":"","sources":["../../src/core/FileReader.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"FileReader.js","sourceRoot":"","sources":["../../src/core/FileReader.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/ForgeClient.d.ts.map b/dist/core/ForgeClient.d.ts.map index 76ee96084a..3c80057469 100644 --- a/dist/core/ForgeClient.d.ts.map +++ b/dist/core/ForgeClient.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ForgeClient.d.ts","sourceRoot":"","sources":["../../src/core/ForgeClient.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"ForgeClient.d.ts","sourceRoot":"","sources":["../../src/core/ForgeClient.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/ForgeClient.js b/dist/core/ForgeClient.js index 53dffa8942..2620b0b702 100644 --- a/dist/core/ForgeClient.js +++ b/dist/core/ForgeClient.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ForgeClient = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/core/ForgeClient.js.map b/dist/core/ForgeClient.js.map index 49260cb4b7..2d85a4a594 100644 --- a/dist/core/ForgeClient.js.map +++ b/dist/core/ForgeClient.js.map @@ -1 +1 @@ -{"version":3,"file":"ForgeClient.js","sourceRoot":"","sources":["../../src/core/ForgeClient.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"ForgeClient.js","sourceRoot":"","sources":["../../src/core/ForgeClient.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/Interpreter.d.ts b/dist/core/Interpreter.d.ts index a98369e17b..6414c28b52 100644 --- a/dist/core/Interpreter.d.ts +++ b/dist/core/Interpreter.d.ts @@ -1,6 +1,6 @@ -import { AutoModerationRule, Channel, Entitlement, Guild, GuildAuditLogsEntry, GuildBan, GuildEmoji, GuildMember, GuildScheduledEvent, Invite, Message, PartialMessage, PartialSoundboardSound, PollAnswer, Presence, Role, SoundboardSound, StageInstance, Sticker, Subscription, User, VoiceChannelEffect, VoiceState } from "discord.js"; +import { AutoModerationRule, Channel, Entitlement, Guild, GuildAuditLogsEntry, GuildBan, GuildEmoji, GuildMember, GuildScheduledEvent, Invite, Message, PartialMessage, PartialPollAnswer, PartialSoundboardSound, PollAnswer, Presence, Role, SoundboardSound, StageInstance, Sticker, Subscription, User, VoiceChannelEffect, VoiceState } from "discord.js"; import { IExtendedCompilationResult } from "."; -import { Sendable, BaseCommand, Context, Container } from "../structures"; +import { Sendable, BaseCommand, Context, Container, ILocalFunctionData } from "../structures"; import { ForgeClient } from "./ForgeClient"; export interface IStates { message: Message; @@ -14,7 +14,7 @@ export interface IStates { audit: GuildAuditLogsEntry; channel: Channel; guild: Guild; - poll: PollAnswer; + poll: PollAnswer | PartialPollAnswer; entitlement: Entitlement; ban: GuildBan; scheduledEvent: GuildScheduledEvent; @@ -73,11 +73,15 @@ export interface IRunnable { /** * The already existing variables defined with $let */ - keywords?: Record; + keywords?: Record; /** * The already existing env variables */ environment?: Record; + /** + * The already existing local functions + */ + localFunctions?: Record; /** * The args used in the message command */ diff --git a/dist/core/Interpreter.d.ts.map b/dist/core/Interpreter.d.ts.map index 4cce0e7e79..59270d4cc8 100644 --- a/dist/core/Interpreter.d.ts.map +++ b/dist/core/Interpreter.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Interpreter.d.ts","sourceRoot":"","sources":["../../src/core/Interpreter.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Interpreter.d.ts","sourceRoot":"","sources":["../../src/core/Interpreter.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/Interpreter.js b/dist/core/Interpreter.js index 2d3735c1dc..0166e7d60c 100644 --- a/dist/core/Interpreter.js +++ b/dist/core/Interpreter.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Interpreter = void 0; const structures_1 = require("../structures"); diff --git a/dist/core/Interpreter.js.map b/dist/core/Interpreter.js.map index 0a966eec4f..c36ecdd647 100644 --- a/dist/core/Interpreter.js.map +++ b/dist/core/Interpreter.js.map @@ -1 +1 @@ -{"version":3,"file":"Interpreter.js","sourceRoot":"","sources":["../../src/core/Interpreter.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Interpreter.js","sourceRoot":"","sources":["../../src/core/Interpreter.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/core/index.d.ts.map b/dist/core/index.d.ts.map index ef3f5c5877..8faecb878e 100644 --- a/dist/core/index.d.ts.map +++ b/dist/core/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAKA,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA"} \ No newline at end of file diff --git a/dist/core/index.js b/dist/core/index.js index 57edf6b5dd..750594d4a6 100644 --- a/dist/core/index.js +++ b/dist/core/index.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/core/index.js.map b/dist/core/index.js.map index 8475056f48..026008a37d 100644 --- a/dist/core/index.js.map +++ b/dist/core/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,gDAA6B;AAC7B,+CAA4B;AAC5B,gDAA6B"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;AAEF,6CAA0B;AAC1B,gDAA6B;AAC7B,+CAA4B;AAC5B,gDAA6B"} \ No newline at end of file diff --git a/dist/docgen.js b/dist/docgen.js index dc293da905..acaa459fe5 100644 --- a/dist/docgen.js +++ b/dist/docgen.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/docgen.js.map b/dist/docgen.js.map index b8907a5b4c..c694910be5 100644 --- a/dist/docgen.js.map +++ b/dist/docgen.js.map @@ -1 +1 @@ -{"version":3,"file":"docgen.js","sourceRoot":"","sources":["../src/docgen.ts"],"names":[],"mappings":";;;;;AAAA,2CAAwF;AACxF,oFAA2D;AAC3D,yCAA4C;AAE5C,+BAA2B;AAE3B,MAAM,MAAM,GAAG;IACX,iBAAiB,EAAE,8BAAiB;IACpC,iBAAiB,EAAE,8BAAiB;IACpC,aAAa,EAAE,0BAAa;CACI,CAAA;AAEpC,IAAA,0BAAgB;AACZ,oCAAoC;AACpC,IAAA,WAAI,EAAC,SAAS,EAAE,QAAQ,CAAC,EACzB,QAAQ,EACR,0BAAe,EACf,KAAK,EACL,MAAM;AACN,oCAAoC;AACpC,IAAA,WAAI,EAAC,SAAS,EAAE,UAAU,EAAE,QAAQ,CAAC,CACxC,CAAA"} \ No newline at end of file +{"version":3,"file":"docgen.js","sourceRoot":"","sources":["../src/docgen.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAwF;AACxF,oFAA2D;AAC3D,yCAA4C;AAE5C,+BAA2B;AAE3B,MAAM,MAAM,GAAG;IACX,iBAAiB,EAAE,8BAAiB;IACpC,iBAAiB,EAAE,8BAAiB;IACpC,aAAa,EAAE,0BAAa;CACI,CAAA;AAEpC,IAAA,0BAAgB;AACZ,oCAAoC;AACpC,IAAA,WAAI,EAAC,SAAS,EAAE,QAAQ,CAAC,EACzB,QAAQ,EACR,0BAAe,EACf,KAAK,EACL,MAAM;AACN,oCAAoC;AACpC,IAAA,WAAI,EAAC,SAAS,EAAE,UAAU,EAAE,QAAQ,CAAC,CACxC,CAAA"} \ No newline at end of file diff --git a/dist/experimental/threading/thread.d.ts.map b/dist/experimental/threading/thread.d.ts.map index c61aa5b342..09bf897f5a 100644 --- a/dist/experimental/threading/thread.d.ts.map +++ b/dist/experimental/threading/thread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../../src/experimental/threading/thread.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACjB"} \ No newline at end of file +{"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../../src/experimental/threading/thread.ts"],"names":[],"mappings":"AAcA,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACjB"} \ No newline at end of file diff --git a/dist/experimental/threading/thread.js b/dist/experimental/threading/thread.js index 89226d143d..325d5aadbd 100644 --- a/dist/experimental/threading/thread.js +++ b/dist/experimental/threading/thread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const worker_threads_1 = require("worker_threads"); const structures_1 = require("../../structures"); diff --git a/dist/experimental/threading/thread.js.map b/dist/experimental/threading/thread.js.map index 83d6061f10..09c47b1828 100644 --- a/dist/experimental/threading/thread.js.map +++ b/dist/experimental/threading/thread.js.map @@ -1 +1 @@ -{"version":3,"file":"thread.js","sourceRoot":"","sources":["../../../src/experimental/threading/thread.ts"],"names":[],"mappings":";;AAAA,mDAA2C;AAC3C,iDAA4D;AAC5D,qCAA6D;AAC7D,6CAAgD;AAGhD,0BAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,eAAQ,CAAC,cAAc,CAAC,CAAC,0BAAe,CAAC,GAAG,CAAC,CAAA;AAO7C,2BAAU,EAAE,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,GAAwC,EAAE,EAAE;IACzE,MAAM,GAAG,GAAG,wBAAW,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;IAEtC,MAAM,GAAG,GAAG,MAAM,kBAAW,CAAC,GAAG,CAAC;QAC9B,aAAa;QACb,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG,CAAC,QAAQ;QACtB,WAAW,EAAE,GAAG,CAAC,WAAW;QAC5B,IAAI,EAAE,GAAG,CAAC,QAAQ,CAAC,IAAI;QACvB,GAAG,EAAE,EAAE;KACV,CAAC,CAAA;IAEF,2BAAU,EAAE,WAAW,CAAC;QACpB,MAAM,EAAE,GAAG,CAAC,MAAM;QAClB,KAAK,EAAE,GAAG;KACb,CAAC,CAAA;AACN,CAAC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"thread.js","sourceRoot":"","sources":["../../../src/experimental/threading/thread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mDAA2C;AAC3C,iDAA4D;AAC5D,qCAA6D;AAC7D,6CAAgD;AAGhD,0BAAe,CAAC,UAAU,EAAE,CAAA;AAC5B,eAAQ,CAAC,cAAc,CAAC,CAAC,0BAAe,CAAC,GAAG,CAAC,CAAA;AAO7C,2BAAU,EAAE,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,GAAwC,EAAE,EAAE;IACzE,MAAM,GAAG,GAAG,wBAAW,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;IAEtC,MAAM,GAAG,GAAG,MAAM,kBAAW,CAAC,GAAG,CAAC;QAC9B,aAAa;QACb,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG,CAAC,QAAQ;QACtB,WAAW,EAAE,GAAG,CAAC,WAAW;QAC5B,IAAI,EAAE,GAAG,CAAC,QAAQ,CAAC,IAAI;QACvB,GAAG,EAAE,EAAE;KACV,CAAC,CAAA;IAEF,2BAAU,EAAE,WAAW,CAAC;QACpB,MAAM,EAAE,GAAG,CAAC,MAAM;QAClB,KAAK,EAAE,GAAG;KACb,CAAC,CAAA;AACN,CAAC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/experimental/threading/translationThread.d.ts.map b/dist/experimental/threading/translationThread.d.ts.map index 973a96f9cc..83e52afe60 100644 --- a/dist/experimental/threading/translationThread.d.ts.map +++ b/dist/experimental/threading/translationThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"translationThread.d.ts","sourceRoot":"","sources":["../../../src/experimental/threading/translationThread.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;CACjB"} \ No newline at end of file +{"version":3,"file":"translationThread.d.ts","sourceRoot":"","sources":["../../../src/experimental/threading/translationThread.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;CACjB"} \ No newline at end of file diff --git a/dist/experimental/threading/translationThread.js b/dist/experimental/threading/translationThread.js index 19a918fa2e..e15e11935e 100644 --- a/dist/experimental/threading/translationThread.js +++ b/dist/experimental/threading/translationThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/experimental/threading/translationThread.js.map b/dist/experimental/threading/translationThread.js.map index 29ac6e09cc..e1251ab180 100644 --- a/dist/experimental/threading/translationThread.js.map +++ b/dist/experimental/threading/translationThread.js.map @@ -1 +1 @@ -{"version":3,"file":"translationThread.js","sourceRoot":"","sources":["../../../src/experimental/threading/translationThread.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAA2C;AAC3C,gEAAuC;AAOvC,2BAAU,EAAE,EAAE,CAAC,SAAS,EAAE,KAAK,WAAU,GAAmB;IACxD,MAAM,SAAS,GAAG,MAAM,kDAAO,+BAA+B,IAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IACpF,SAAS;QACL,MAAM,GAAG,GAAG,MAAM,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE;YAClC,IAAI,EAAE,IAAI;YACV,EAAE,EAAE,GAAG,CAAC,MAAM;SACjB,CAAC,CAAC,KAAK,CAAC,cAAI,CAAC,CAAA;QACd,IAAI,CAAC,GAAG;YACJ,SAAQ;QACZ,2BAAU,EAAE,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjC,MAAK;KACR;AACL,CAAC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"translationThread.js","sourceRoot":"","sources":["../../../src/experimental/threading/translationThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,mDAA2C;AAC3C,gEAAuC;AAOvC,2BAAU,EAAE,EAAE,CAAC,SAAS,EAAE,KAAK,WAAU,GAAmB;IACxD,MAAM,SAAS,GAAG,MAAM,kDAAO,+BAA+B,IAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IACpF,SAAS;QACL,MAAM,GAAG,GAAG,MAAM,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE;YAClC,IAAI,EAAE,IAAI;YACV,EAAE,EAAE,GAAG,CAAC,MAAM;SACjB,CAAC,CAAC,KAAK,CAAC,cAAI,CAAC,CAAA;QACd,IAAI,CAAC,GAAG;YACJ,SAAQ;QACZ,2BAAU,EAAE,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjC,MAAK;KACR;AACL,CAAC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/functions/array.d.ts.map b/dist/functions/array.d.ts.map index b93bc3e138..215cbe29f4 100644 --- a/dist/functions/array.d.ts.map +++ b/dist/functions/array.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../src/functions/array.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,MAAM,CAAC,OAAO,WAAU,CAAC,SAAS,OAAO,EAAE,KAAK,CAAC,EAAE,GAAG,OAErD"} \ No newline at end of file +{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../src/functions/array.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,MAAM,CAAC,OAAO,WAAU,CAAC,SAAS,OAAO,EAAE,KAAK,CAAC,EAAE,GAAG,OAErD"} \ No newline at end of file diff --git a/dist/functions/array.js b/dist/functions/array.js index 1ab59fd9e5..d0dc9ea664 100644 --- a/dist/functions/array.js +++ b/dist/functions/array.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function default_1(value) { return value ?? null; diff --git a/dist/functions/array.js.map b/dist/functions/array.js.map index 7ecb75b31a..e0062ae5da 100644 --- a/dist/functions/array.js.map +++ b/dist/functions/array.js.map @@ -1 +1 @@ -{"version":3,"file":"array.js","sourceRoot":"","sources":["../../src/functions/array.ts"],"names":[],"mappings":";;AAEA,mBAA2C,KAAW;IAClD,OAAO,KAAK,IAAI,IAAI,CAAA;AACxB,CAAC;AAFD,4BAEC"} \ No newline at end of file +{"version":3,"file":"array.js","sourceRoot":"","sources":["../../src/functions/array.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAIF,mBAA2C,KAAW;IAClD,OAAO,KAAK,IAAI,IAAI,CAAA;AACxB,CAAC;AAFD,4BAEC"} \ No newline at end of file diff --git a/dist/functions/components.d.ts b/dist/functions/components.d.ts index c890ea0f7c..3449c2f0dd 100644 --- a/dist/functions/components.d.ts +++ b/dist/functions/components.d.ts @@ -3,7 +3,7 @@ import { Context } from "../structures"; /** * Checks whether the specified component type is a top level component. * @param type The component type. - * @param actionRow Whether to include action rows when checking. Defaults to true. + * @param actionRow Whether to include action rows when checking. Defaults to `true`. * @returns */ export declare function isTopLevel(type: ComponentType, actionRow?: boolean): boolean; @@ -21,9 +21,16 @@ export declare function buildActionRow(comp: any): ButtonBuilder | StringSelectM */ export declare function buildComponent(comp: any, ctx?: Context): ContainerBuilder | FileBuilder | MediaGalleryBuilder | SectionBuilder | SeparatorBuilder | TextDisplayBuilder | ActionRowBuilder; /** - * Adds an action row. This is only needed inside ComponentsV2 functions and should never be used outside this context. + * Gets the last component of the current label or action row. * @param ctx The current context. * @returns */ -export declare function addActionRow(ctx: Context): void; +export declare function getLastComponent(ctx: Context): import("@discordjs/builders").MessageActionRowComponentBuilder | import("@discordjs/builders").TextInputBuilder | import("@discordjs/builders").FileUploadBuilder | undefined; +/** + * Adds an action row to the components. This is mostly needed inside ComponentsV2 functions. + * @param ctx The current context. + * @param cv2 Whether to set the IsComponentsV2 flag. Defaults to `true`. + * @returns + */ +export declare function addActionRow(ctx: Context, cv2?: boolean): void; //# sourceMappingURL=components.d.ts.map \ No newline at end of file diff --git a/dist/functions/components.d.ts.map b/dist/functions/components.d.ts.map index f7d78451ff..e774f49542 100644 --- a/dist/functions/components.d.ts.map +++ b/dist/functions/components.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../src/functions/components.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,gBAAgB,EAChB,aAAa,EACb,wBAAwB,EACxB,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,mBAAmB,EACnB,4BAA4B,EAC5B,qBAAqB,EACrB,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACxB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAqBvC;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,aAAa,EAAE,SAAS,GAAE,OAAc,WAExE;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,GAAG,qJAGvC;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,OAAO,uLAItD;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,QAaxC"} \ No newline at end of file +{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../src/functions/components.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,gBAAgB,EAChB,aAAa,EACb,wBAAwB,EACxB,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,mBAAmB,EACnB,4BAA4B,EAC5B,qBAAqB,EACrB,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACxB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAqBvC;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,aAAa,EAAE,SAAS,GAAE,OAAc,WAExE;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,GAAG,qJAGvC;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,OAAO,uLAItD;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,iLAE5C;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,GAAE,OAAc,QAa7D"} \ No newline at end of file diff --git a/dist/functions/components.js b/dist/functions/components.js index a4ca9ac00d..c6b857ee9c 100644 --- a/dist/functions/components.js +++ b/dist/functions/components.js @@ -1,6 +1,10 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); -exports.addActionRow = exports.buildComponent = exports.buildActionRow = exports.isTopLevel = void 0; +exports.addActionRow = exports.getLastComponent = exports.buildComponent = exports.buildActionRow = exports.isTopLevel = void 0; const discord_js_1 = require("discord.js"); const MessageComponentBuilders = { [discord_js_1.ComponentType.Button]: discord_js_1.ButtonBuilder, @@ -22,7 +26,7 @@ const TopLevelComponentBuilders = { /** * Checks whether the specified component type is a top level component. * @param type The component type. - * @param actionRow Whether to include action rows when checking. Defaults to true. + * @param actionRow Whether to include action rows when checking. Defaults to `true`. * @returns */ function isTopLevel(type, actionRow = true) { @@ -53,12 +57,23 @@ function buildComponent(comp, ctx) { } exports.buildComponent = buildComponent; /** - * Adds an action row. This is only needed inside ComponentsV2 functions and should never be used outside this context. + * Gets the last component of the current label or action row. * @param ctx The current context. * @returns */ -function addActionRow(ctx) { - ctx.container.isComponentsV2 = true; +function getLastComponent(ctx) { + return (ctx.component.label?.data.component ?? ctx.container.actionRow?.components[0]); +} +exports.getLastComponent = getLastComponent; +/** + * Adds an action row to the components. This is mostly needed inside ComponentsV2 functions. + * @param ctx The current context. + * @param cv2 Whether to set the IsComponentsV2 flag. Defaults to `true`. + * @returns + */ +function addActionRow(ctx, cv2 = true) { + if (cv2) + ctx.container.isComponentsV2 = true; const row = ctx.container.actionRow; if (!row) return; diff --git a/dist/functions/components.js.map b/dist/functions/components.js.map index 05ae3e9f63..1d2a4b5695 100644 --- a/dist/functions/components.js.map +++ b/dist/functions/components.js.map @@ -1 +1 @@ -{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/functions/components.ts"],"names":[],"mappings":";;;AAAA,2CAemB;AAGnB,MAAM,wBAAwB,GAAG;IAC7B,CAAC,0BAAa,CAAC,MAAuB,CAAC,EAAE,0BAAa;IACtD,CAAC,0BAAa,CAAC,YAA6B,CAAC,EAAE,oCAAuB;IACtE,CAAC,0BAAa,CAAC,UAA2B,CAAC,EAAE,kCAAqB;IAClE,CAAC,0BAAa,CAAC,aAA8B,CAAC,EAAE,qCAAwB;IACxE,CAAC,0BAAa,CAAC,UAA2B,CAAC,EAAE,kCAAqB;IAClE,CAAC,0BAAa,CAAC,iBAAkC,CAAC,EAAE,yCAA4B;CACnF,CAAA;AAED,MAAM,yBAAyB,GAAG;IAC9B,CAAC,0BAAa,CAAC,SAA0B,CAAC,EAAE,6BAAgB;IAC5D,CAAC,0BAAa,CAAC,SAA0B,CAAC,EAAE,6BAAgB;IAC5D,CAAC,0BAAa,CAAC,WAA4B,CAAC,EAAE,+BAAkB;IAChE,CAAC,0BAAa,CAAC,SAA0B,CAAC,EAAE,6BAAgB;IAC5D,CAAC,0BAAa,CAAC,YAA6B,CAAC,EAAE,gCAAmB;IAClE,CAAC,0BAAa,CAAC,OAAwB,CAAC,EAAE,2BAAc;IACxD,CAAC,0BAAa,CAAC,IAAqB,CAAC,EAAE,wBAAW;CACrD,CAAA;AAED;;;;;GAKG;AACH,SAAgB,UAAU,CAAC,IAAmB,EAAE,YAAqB,IAAI;IACrE,OAAO,CAAC,IAAI,IAAI,yBAAyB,CAAC,IAAI,CAAC,SAAS,IAAI,IAAI,KAAK,0BAAa,CAAC,SAAS,CAAC,CAAA;AACjG,CAAC;AAFD,gCAEC;AAED;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAS;IACpC,MAAM,IAAI,GAAG,IAAI,EAAE,IAAqB,CAAA;IACxC,OAAO,IAAI,wBAAwB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,IAAI,CAAC,CAAA;AACtE,CAAC;AAHD,wCAGC;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAAC,IAAS,EAAE,GAAa;IACnD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAqB,CAAA;IACvC,IAAI,GAAG,IAAI,UAAU,CAAC,IAAI,EAAE,KAAK,CAAC;QAAE,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;IACvE,OAAO,IAAI,yBAAyB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,IAAI,CAAC,CAAA;AACvE,CAAC;AAJD,wCAIC;AAED;;;;GAIG;AACH,SAAgB,YAAY,CAAC,GAAY;IACrC,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;IAEnC,MAAM,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;IACnC,IAAI,CAAC,GAAG;QAAE,OAAM;IAEhB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IAE5C,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;QACnF,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAA;;QAC/B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAEvC,OAAO,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;AAClC,CAAC;AAbD,oCAaC"} \ No newline at end of file +{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/functions/components.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/functions/contextNoop.d.ts.map b/dist/functions/contextNoop.d.ts.map index 3fea00f0ba..21e2fc0630 100644 --- a/dist/functions/contextNoop.d.ts.map +++ b/dist/functions/contextNoop.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"contextNoop.d.ts","sourceRoot":"","sources":["../../src/functions/contextNoop.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAU,MAAM,eAAe,CAAA;AAE/C,MAAM,CAAC,OAAO,WAAU,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,QAMpD"} \ No newline at end of file +{"version":3,"file":"contextNoop.d.ts","sourceRoot":"","sources":["../../src/functions/contextNoop.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAU,MAAM,eAAe,CAAA;AAE/C,MAAM,CAAC,OAAO,WAAU,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,QAMpD"} \ No newline at end of file diff --git a/dist/functions/contextNoop.js b/dist/functions/contextNoop.js index 23a24ce1ff..dd15546ff1 100644 --- a/dist/functions/contextNoop.js +++ b/dist/functions/contextNoop.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../structures"); function default_1(...args) { diff --git a/dist/functions/contextNoop.js.map b/dist/functions/contextNoop.js.map index 6754ec2bad..ec472302bc 100644 --- a/dist/functions/contextNoop.js.map +++ b/dist/functions/contextNoop.js.map @@ -1 +1 @@ -{"version":3,"file":"contextNoop.js","sourceRoot":"","sources":["../../src/functions/contextNoop.ts"],"names":[],"mappings":";;AAAA,8CAA+C;AAE/C,mBAAuC,GAAG,IAAW;IACjD,IAAI,IAAI,CAAC,wBAAwB,EAAE,EAAE;QACjC,OAAM;KACT;IAED,mBAAM,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;AACzB,CAAC;AAND,4BAMC"} \ No newline at end of file +{"version":3,"file":"contextNoop.js","sourceRoot":"","sources":["../../src/functions/contextNoop.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8CAA+C;AAE/C,mBAAuC,GAAG,IAAW;IACjD,IAAI,IAAI,CAAC,wBAAwB,EAAE,EAAE;QACjC,OAAM;KACT;IAED,mBAAM,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;AACzB,CAAC;AAND,4BAMC"} \ No newline at end of file diff --git a/dist/functions/customImport.d.ts.map b/dist/functions/customImport.d.ts.map index f98776906f..e5c6b44e1a 100644 --- a/dist/functions/customImport.d.ts.map +++ b/dist/functions/customImport.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"customImport.d.ts","sourceRoot":"","sources":["../../src/functions/customImport.ts"],"names":[],"mappings":"AAGA,wBAAsB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAM7D"} \ No newline at end of file +{"version":3,"file":"customImport.d.ts","sourceRoot":"","sources":["../../src/functions/customImport.ts"],"names":[],"mappings":"AAQA,wBAAsB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAM7D"} \ No newline at end of file diff --git a/dist/functions/customImport.js b/dist/functions/customImport.js index ad9b69be4c..b5f15aa1d3 100644 --- a/dist/functions/customImport.js +++ b/dist/functions/customImport.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/functions/customImport.js.map b/dist/functions/customImport.js.map index dc1bec9f90..cd90c89253 100644 --- a/dist/functions/customImport.js.map +++ b/dist/functions/customImport.js.map @@ -1 +1 @@ -{"version":3,"file":"customImport.js","sourceRoot":"","sources":["../../src/functions/customImport.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iDAAwC;AACxC,8CAAsC;AAE/B,KAAK,UAAU,YAAY,CAAI,GAAW;IAC7C,OAAO,mBAAO,GAAG,wCAAE,KAAK,CAAC,KAAK,IAAI,EAAE;QAChC,mBAAM,CAAC,IAAI,CAAC,WAAW,GAAG,2BAA2B,CAAC,CAAA;QACtD,IAAA,wBAAQ,EAAC,SAAS,GAAG,EAAE,CAAC,CAAA;QACxB,OAAO,YAAY,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC,CAAC,CAAA;AACN,CAAC;AAND,oCAMC"} \ No newline at end of file +{"version":3,"file":"customImport.js","sourceRoot":"","sources":["../../src/functions/customImport.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,iDAAwC;AACxC,8CAAsC;AAE/B,KAAK,UAAU,YAAY,CAAI,GAAW;IAC7C,OAAO,mBAAO,GAAG,wCAAE,KAAK,CAAC,KAAK,IAAI,EAAE;QAChC,mBAAM,CAAC,IAAI,CAAC,WAAW,GAAG,2BAA2B,CAAC,CAAA;QACtD,IAAA,wBAAQ,EAAC,SAAS,GAAG,EAAE,CAAC,CAAA;QACxB,OAAO,YAAY,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC,CAAC,CAAA;AACN,CAAC;AAND,oCAMC"} \ No newline at end of file diff --git a/dist/functions/defineProperties.d.ts.map b/dist/functions/defineProperties.d.ts.map index 3f0bc62043..20cc4fbd6f 100644 --- a/dist/functions/defineProperties.d.ts.map +++ b/dist/functions/defineProperties.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"defineProperties.d.ts","sourceRoot":"","sources":["../../src/functions/defineProperties.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAW,MAAM,eAAe,CAAA;AAEjD,MAAM,MAAM,UAAU,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,IAAI;KACjD,CAAC,IAAI,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CACnI,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,0BAElG"} \ No newline at end of file +{"version":3,"file":"defineProperties.d.ts","sourceRoot":"","sources":["../../src/functions/defineProperties.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,QAAQ,EAAW,MAAM,eAAe,CAAA;AAEjD,MAAM,MAAM,UAAU,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,IAAI;KACjD,CAAC,IAAI,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CACnI,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,0BAElG"} \ No newline at end of file diff --git a/dist/functions/defineProperties.js b/dist/functions/defineProperties.js index 36e28f2104..6a8ccdbddd 100644 --- a/dist/functions/defineProperties.js +++ b/dist/functions/defineProperties.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function defineProperties(props) { return props; diff --git a/dist/functions/defineProperties.js.map b/dist/functions/defineProperties.js.map index 64d6805800..0c8797340f 100644 --- a/dist/functions/defineProperties.js.map +++ b/dist/functions/defineProperties.js.map @@ -1 +1 @@ -{"version":3,"file":"defineProperties.js","sourceRoot":"","sources":["../../src/functions/defineProperties.ts"],"names":[],"mappings":";;AAOA,SAAwB,gBAAgB,CAA8B,KAA6B;IAC/F,OAAO,KAAK,CAAA;AAChB,CAAC;AAFD,mCAEC"} \ No newline at end of file +{"version":3,"file":"defineProperties.js","sourceRoot":"","sources":["../../src/functions/defineProperties.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AASF,SAAwB,gBAAgB,CAA8B,KAA6B;IAC/F,OAAO,KAAK,CAAA;AAChB,CAAC;AAFD,mCAEC"} \ No newline at end of file diff --git a/dist/functions/digital.d.ts.map b/dist/functions/digital.d.ts.map index 4b2bc8180f..b1f2b7fde5 100644 --- a/dist/functions/digital.d.ts.map +++ b/dist/functions/digital.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"digital.d.ts","sourceRoot":"","sources":["../../src/functions/digital.ts"],"names":[],"mappings":"AAEA,wBAAgB,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAU/C;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAatD"} \ No newline at end of file +{"version":3,"file":"digital.d.ts","sourceRoot":"","sources":["../../src/functions/digital.ts"],"names":[],"mappings":"AAOA,wBAAgB,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAU/C;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAatD"} \ No newline at end of file diff --git a/dist/functions/digital.js b/dist/functions/digital.js index f47d687cd7..6331893a19 100644 --- a/dist/functions/digital.js +++ b/dist/functions/digital.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.unparseDigital = exports.parseDigital = void 0; const DigitalFormatRegex = /^(?:(\d+):)?([0-5]?\d):([0-5]?\d)$/; diff --git a/dist/functions/digital.js.map b/dist/functions/digital.js.map index 207167df24..c96c5c29e9 100644 --- a/dist/functions/digital.js.map +++ b/dist/functions/digital.js.map @@ -1 +1 @@ -{"version":3,"file":"digital.js","sourceRoot":"","sources":["../../src/functions/digital.ts"],"names":[],"mappings":";;;AAAA,MAAM,kBAAkB,GAAG,oCAAoC,CAAA;AAE/D,SAAgB,YAAY,CAAC,EAAU;IACnC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAA;IAC/C,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAA;IACjE,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,CAAA;IAErD,MAAM,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IACzC,MAAM,EAAE,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAC3C,MAAM,EAAE,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAE3C,OAAO,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,CAAA;AAC9B,CAAC;AAVD,oCAUC;AAED,SAAgB,cAAc,CAAC,OAAe;IAC1C,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAA;IAC/C,IAAI,CAAC,KAAK;QAAE,OAAO,CAAC,CAAA;IAEpB,MAAM,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,GAAG,KAAK,CAAA;IAEzC,MAAM,CAAC,GAAG,QAAQ,CAAC,KAAK,IAAI,GAAG,EAAE,EAAE,CAAC,CAAA;IACpC,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IAC/B,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IAE/B,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAA;IAEnD,OAAO,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;AAC7B,CAAC;AAbD,wCAaC"} \ No newline at end of file +{"version":3,"file":"digital.js","sourceRoot":"","sources":["../../src/functions/digital.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,MAAM,kBAAkB,GAAG,oCAAoC,CAAA;AAE/D,SAAgB,YAAY,CAAC,EAAU;IACnC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAA;IAC/C,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAA;IACjE,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,CAAA;IAErD,MAAM,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IACzC,MAAM,EAAE,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAC3C,MAAM,EAAE,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAE3C,OAAO,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,CAAA;AAC9B,CAAC;AAVD,oCAUC;AAED,SAAgB,cAAc,CAAC,OAAe;IAC1C,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAA;IAC/C,IAAI,CAAC,KAAK;QAAE,OAAO,CAAC,CAAA;IAEpB,MAAM,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,GAAG,KAAK,CAAA;IAEzC,MAAM,CAAC,GAAG,QAAQ,CAAC,KAAK,IAAI,GAAG,EAAE,EAAE,CAAC,CAAA;IACpC,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IAC/B,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IAE/B,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAA;IAEnD,OAAO,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;AAC7B,CAAC;AAbD,wCAaC"} \ No newline at end of file diff --git a/dist/functions/enum.d.ts.map b/dist/functions/enum.d.ts.map index 074a1ccfce..7ba8091fc7 100644 --- a/dist/functions/enum.d.ts.map +++ b/dist/functions/enum.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enum.d.ts","sourceRoot":"","sources":["../../src/functions/enum.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAExC,wBAAgB,WAAW,CAAC,CAAC,EAAE,QAAQ,YAEtC;AAED,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,OAEtE"} \ No newline at end of file +{"version":3,"file":"enum.d.ts","sourceRoot":"","sources":["../../src/functions/enum.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAExC,wBAAgB,WAAW,CAAC,CAAC,EAAE,QAAQ,YAEtC;AAED,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,OAEtE"} \ No newline at end of file diff --git a/dist/functions/enum.js b/dist/functions/enum.js index 398a3cd7c7..7cecc820c4 100644 --- a/dist/functions/enum.js +++ b/dist/functions/enum.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.resolveNumericEnum = exports.enumToArray = void 0; function enumToArray(x) { diff --git a/dist/functions/enum.js.map b/dist/functions/enum.js.map index 652eeedb89..1f1381af37 100644 --- a/dist/functions/enum.js.map +++ b/dist/functions/enum.js.map @@ -1 +1 @@ -{"version":3,"file":"enum.js","sourceRoot":"","sources":["../../src/functions/enum.ts"],"names":[],"mappings":";;;AAEA,SAAgB,WAAW,CAAC,CAAW;IACnC,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;AACzD,CAAC;AAFD,kCAEC;AAED,SAAgB,kBAAkB,CAAC,EAAY,EAAE,KAAsB;IACnE,OAAO,OAAM,CAAC,KAAK,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAwB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;AAC5E,CAAC;AAFD,gDAEC"} \ No newline at end of file +{"version":3,"file":"enum.js","sourceRoot":"","sources":["../../src/functions/enum.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAIF,SAAgB,WAAW,CAAC,CAAW;IACnC,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;AACzD,CAAC;AAFD,kCAEC;AAED,SAAgB,kBAAkB,CAAC,EAAY,EAAE,KAAsB;IACnE,OAAO,OAAM,CAAC,KAAK,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAwB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;AAC5E,CAAC;AAFD,gDAEC"} \ No newline at end of file diff --git a/dist/functions/fetchAllMessages.d.ts.map b/dist/functions/fetchAllMessages.d.ts.map index 1832d60883..454d787f92 100644 --- a/dist/functions/fetchAllMessages.d.ts.map +++ b/dist/functions/fetchAllMessages.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchAllMessages.d.ts","sourceRoot":"","sources":["../../src/functions/fetchAllMessages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAElE,yBAA+B,EAAE,EAAE,gBAAgB,+BAkBlD"} \ No newline at end of file +{"version":3,"file":"fetchAllMessages.d.ts","sourceRoot":"","sources":["../../src/functions/fetchAllMessages.ts"],"names":[],"mappings":"AAKA,OAAO,EAAc,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAElE,yBAA+B,EAAE,EAAE,gBAAgB,+BAkBlD"} \ No newline at end of file diff --git a/dist/functions/fetchAllMessages.js b/dist/functions/fetchAllMessages.js index d2d192816d..beb7e186a4 100644 --- a/dist/functions/fetchAllMessages.js +++ b/dist/functions/fetchAllMessages.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); async function default_1(ch) { const arr = new Array(); diff --git a/dist/functions/fetchAllMessages.js.map b/dist/functions/fetchAllMessages.js.map index 72d24b9d4d..cff0d4934c 100644 --- a/dist/functions/fetchAllMessages.js.map +++ b/dist/functions/fetchAllMessages.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchAllMessages.js","sourceRoot":"","sources":["../../src/functions/fetchAllMessages.ts"],"names":[],"mappings":";;AAEe,KAAK,oBAAW,EAAoB;IAC/C,MAAM,GAAG,GAAG,IAAI,KAAK,EAAW,CAAA;IAChC,IAAI,MAAM,GAAuB,SAAS,CAAA;IAE1C,SAAS;QACL,MAAM,IAAI,GAAuC,MAAM,EAAE,CAAC,QAAQ;aAC7D,KAAK,CAAC;YACH,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,MAAM;SACjB,CAAC;aACD,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;QAEtB,IAAI,CAAC,IAAI,EAAE,IAAI;YAAE,MAAK;QACtB,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;QAC1B,MAAM,GAAG,IAAI,CAAC,OAAO,EAAG,CAAA;KAC3B;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAlBD,4BAkBC"} \ No newline at end of file +{"version":3,"file":"fetchAllMessages.js","sourceRoot":"","sources":["../../src/functions/fetchAllMessages.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAIa,KAAK,oBAAW,EAAoB;IAC/C,MAAM,GAAG,GAAG,IAAI,KAAK,EAAW,CAAA;IAChC,IAAI,MAAM,GAAuB,SAAS,CAAA;IAE1C,SAAS;QACL,MAAM,IAAI,GAAuC,MAAM,EAAE,CAAC,QAAQ;aAC7D,KAAK,CAAC;YACH,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,MAAM;SACjB,CAAC;aACD,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;QAEtB,IAAI,CAAC,IAAI,EAAE,IAAI;YAAE,MAAK;QACtB,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;QAC1B,MAAM,GAAG,IAAI,CAAC,OAAO,EAAG,CAAA;KAC3B;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAlBD,4BAkBC"} \ No newline at end of file diff --git a/dist/functions/generateBar.d.ts.map b/dist/functions/generateBar.d.ts.map index d1fd6cc56c..c9c73dde74 100644 --- a/dist/functions/generateBar.d.ts.map +++ b/dist/functions/generateBar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"generateBar.d.ts","sourceRoot":"","sources":["../../src/functions/generateBar.ts"],"names":[],"mappings":"AAAA,wBAAgB,WAAW,CACvB,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,GAAG,GAAE,MAAW,EAChB,IAAI,GAAE,MAAY,EAClB,KAAK,GAAE,MAAY,EACnB,KAAK,UAAO,EACZ,SAAS,GAAE,MAAW,EACtB,OAAO,GAAE,MAAW,EACpB,UAAU,GAAE,MAAW,EACvB,QAAQ,GAAE,MAAW,GACtB,MAAM,CA0BR;AAED,wBAAgB,mBAAmB,CAC/B,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,GAAG,oBAAa,EAChB,IAAI,EAAE,MAAM,EAAE,GACf,MAAM,CAUR"} \ No newline at end of file +{"version":3,"file":"generateBar.d.ts","sourceRoot":"","sources":["../../src/functions/generateBar.ts"],"names":[],"mappings":"AAKA,wBAAgB,WAAW,CACvB,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,GAAG,GAAE,MAAW,EAChB,IAAI,GAAE,MAAY,EAClB,KAAK,GAAE,MAAY,EACnB,KAAK,UAAO,EACZ,SAAS,GAAE,MAAW,EACtB,OAAO,GAAE,MAAW,EACpB,UAAU,GAAE,MAAW,EACvB,QAAQ,GAAE,MAAW,GACtB,MAAM,CA0BR;AAED,wBAAgB,mBAAmB,CAC/B,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,GAAG,oBAAa,EAChB,IAAI,EAAE,MAAM,EAAE,GACf,MAAM,CAUR"} \ No newline at end of file diff --git a/dist/functions/generateBar.js b/dist/functions/generateBar.js index 00925c6104..cfe4fc7d2a 100644 --- a/dist/functions/generateBar.js +++ b/dist/functions/generateBar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.generateAdvancedBar = exports.generateBar = void 0; function generateBar(current, max, len = 10, fill = "█", empty = "▒", round = true, fillStart = "", fillEnd = "", emptyStart = "", emptyEnd = "") { diff --git a/dist/functions/generateBar.js.map b/dist/functions/generateBar.js.map index 41b6acea84..6dfff67a24 100644 --- a/dist/functions/generateBar.js.map +++ b/dist/functions/generateBar.js.map @@ -1 +1 @@ -{"version":3,"file":"generateBar.js","sourceRoot":"","sources":["../../src/functions/generateBar.ts"],"names":[],"mappings":";;;AAAA,SAAgB,WAAW,CACvB,OAAe,EACf,GAAW,EACX,MAAc,EAAE,EAChB,OAAe,GAAG,EAClB,QAAgB,GAAG,EACnB,KAAK,GAAG,IAAI,EACZ,YAAoB,EAAE,EACtB,UAAkB,EAAE,EACpB,aAAqB,EAAE,EACvB,WAAmB,EAAE;IAErB,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAA;IAC5F,IAAI,MAAM,GAAG,GAAG,GAAG,KAAK,CAAA;IACxB,IAAI,KAAK,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,CAAA;IAExB,IAAI,GAAG,GAAG,CAAC,EAAE;QACT,IAAI,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,EAAE;YACzB,KAAK,GAAG,SAAS,IAAI,EAAE,CAAA;YACvB,GAAG,GAAG,QAAQ,IAAI,EAAE,CAAA;YACpB,KAAK,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SACxB;aAAM,IAAI,KAAK,GAAG,CAAC,EAAE;YAClB,KAAK,GAAG,SAAS,IAAI,EAAE,CAAA;YACvB,GAAG,GAAG,OAAO,IAAI,EAAE,CAAA;YACnB,KAAK,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAC3C;aAAM,IAAI,MAAM,GAAG,CAAC,EAAE;YACnB,KAAK,GAAG,UAAU,IAAI,EAAE,CAAA;YACxB,GAAG,GAAG,QAAQ,IAAI,EAAE,CAAA;YACpB,MAAM,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAC5C;KACJ;IAED,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IAC1B,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;IAE5B,OAAO,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,GAAG,CAAA;AAClE,CAAC;AArCD,kCAqCC;AAED,SAAgB,mBAAmB,CAC/B,OAAe,EACf,GAAW,EACX,MAAc,EAAE,EAChB,IAAc;IAEd,IAAI,GAAG,GAAG,EAAE,CAAA;IACZ,MAAM,OAAO,GAAG,GAAG,GAAG,GAAG,CAAA;IAEzB,OAAO,GAAG,EAAE,EAAE;QACV,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,OAAO,CAAA;QAC3C,GAAG,IAAI,CAAC,OAAO,IAAI,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KACjG;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAfD,kDAeC"} \ No newline at end of file +{"version":3,"file":"generateBar.js","sourceRoot":"","sources":["../../src/functions/generateBar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,SAAgB,WAAW,CACvB,OAAe,EACf,GAAW,EACX,MAAc,EAAE,EAChB,OAAe,GAAG,EAClB,QAAgB,GAAG,EACnB,KAAK,GAAG,IAAI,EACZ,YAAoB,EAAE,EACtB,UAAkB,EAAE,EACpB,aAAqB,EAAE,EACvB,WAAmB,EAAE;IAErB,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAA;IAC5F,IAAI,MAAM,GAAG,GAAG,GAAG,KAAK,CAAA;IACxB,IAAI,KAAK,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,CAAA;IAExB,IAAI,GAAG,GAAG,CAAC,EAAE;QACT,IAAI,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,EAAE;YACzB,KAAK,GAAG,SAAS,IAAI,EAAE,CAAA;YACvB,GAAG,GAAG,QAAQ,IAAI,EAAE,CAAA;YACpB,KAAK,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SACxB;aAAM,IAAI,KAAK,GAAG,CAAC,EAAE;YAClB,KAAK,GAAG,SAAS,IAAI,EAAE,CAAA;YACvB,GAAG,GAAG,OAAO,IAAI,EAAE,CAAA;YACnB,KAAK,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAC3C;aAAM,IAAI,MAAM,GAAG,CAAC,EAAE;YACnB,KAAK,GAAG,UAAU,IAAI,EAAE,CAAA;YACxB,GAAG,GAAG,QAAQ,IAAI,EAAE,CAAA;YACpB,MAAM,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAC5C;KACJ;IAED,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IAC1B,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;IAE5B,OAAO,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,GAAG,CAAA;AAClE,CAAC;AArCD,kCAqCC;AAED,SAAgB,mBAAmB,CAC/B,OAAe,EACf,GAAW,EACX,MAAc,EAAE,EAChB,IAAc;IAEd,IAAI,GAAG,GAAG,EAAE,CAAA;IACZ,MAAM,OAAO,GAAG,GAAG,GAAG,GAAG,CAAA;IAEzB,OAAO,GAAG,EAAE,EAAE;QACV,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,OAAO,CAAA;QAC3C,GAAG,IAAI,CAAC,OAAO,IAAI,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KACjG;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAfD,kDAeC"} \ No newline at end of file diff --git a/dist/functions/generateMetadata.d.ts.map b/dist/functions/generateMetadata.d.ts.map index cd90499569..f95736c410 100644 --- a/dist/functions/generateMetadata.d.ts.map +++ b/dist/functions/generateMetadata.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"generateMetadata.d.ts","sourceRoot":"","sources":["../../src/functions/generateMetadata.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAyC,MAAM,eAAe,CAAA;AAG/E,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AAwDnC,yBAA8B,qBAAqB,EAAE,MAAM,EAAE,gBAAgB,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,cAAc,UAAQ,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,kBAAkB,CAAC,EAAE,MAAM,EAAE,SAAS,GAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAM,iBA+GzO"} \ No newline at end of file +{"version":3,"file":"generateMetadata.d.ts","sourceRoot":"","sources":["../../src/functions/generateMetadata.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,QAAQ,EAAyC,MAAM,eAAe,CAAA;AAG/E,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AAwDnC,yBAA8B,qBAAqB,EAAE,MAAM,EAAE,gBAAgB,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,cAAc,UAAQ,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,kBAAkB,CAAC,EAAE,MAAM,EAAE,SAAS,GAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAM,iBA+GzO"} \ No newline at end of file diff --git a/dist/functions/generateMetadata.js b/dist/functions/generateMetadata.js index 75bfa7e810..2656ba7359 100644 --- a/dist/functions/generateMetadata.js +++ b/dist/functions/generateMetadata.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const managers_1 = require("../managers"); diff --git a/dist/functions/generateMetadata.js.map b/dist/functions/generateMetadata.js.map index 633849754b..aea090a057 100644 --- a/dist/functions/generateMetadata.js.map +++ b/dist/functions/generateMetadata.js.map @@ -1 +1 @@ -{"version":3,"file":"generateMetadata.js","sourceRoot":"","sources":["../../src/functions/generateMetadata.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"generateMetadata.js","sourceRoot":"","sources":["../../src/functions/generateMetadata.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/functions/getVersionNumber.d.ts.map b/dist/functions/getVersionNumber.d.ts.map index d2b585ab8c..59bf4c9e3e 100644 --- a/dist/functions/getVersionNumber.d.ts.map +++ b/dist/functions/getVersionNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getVersionNumber.d.ts","sourceRoot":"","sources":["../../src/functions/getVersionNumber.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,WAAU,CAAC,EAAE,MAAM,UAEhC"} \ No newline at end of file +{"version":3,"file":"getVersionNumber.d.ts","sourceRoot":"","sources":["../../src/functions/getVersionNumber.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,OAAO,WAAU,CAAC,EAAE,MAAM,UAEhC"} \ No newline at end of file diff --git a/dist/functions/getVersionNumber.js b/dist/functions/getVersionNumber.js index 9865cd8330..7f9283f16b 100644 --- a/dist/functions/getVersionNumber.js +++ b/dist/functions/getVersionNumber.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function default_1(v) { return Number(v.replace(/\./g, "")); diff --git a/dist/functions/getVersionNumber.js.map b/dist/functions/getVersionNumber.js.map index 8677dcd9bb..1f4d7debb8 100644 --- a/dist/functions/getVersionNumber.js.map +++ b/dist/functions/getVersionNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"getVersionNumber.js","sourceRoot":"","sources":["../../src/functions/getVersionNumber.ts"],"names":[],"mappings":";;AAAA,mBAAwB,CAAS;IAC7B,OAAO,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAA;AACvC,CAAC;AAFD,4BAEC"} \ No newline at end of file +{"version":3,"file":"getVersionNumber.js","sourceRoot":"","sources":["../../src/functions/getVersionNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mBAAwB,CAAS;IAC7B,OAAO,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAA;AACvC,CAAC;AAFD,4BAEC"} \ No newline at end of file diff --git a/dist/functions/hex.d.ts.map b/dist/functions/hex.d.ts.map index c4838688e9..8d92127eb3 100644 --- a/dist/functions/hex.d.ts.map +++ b/dist/functions/hex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hex.d.ts","sourceRoot":"","sources":["../../src/functions/hex.ts"],"names":[],"mappings":"AAEA,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,UAElC;AAED,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,UAE3C;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,UAUlD"} \ No newline at end of file +{"version":3,"file":"hex.d.ts","sourceRoot":"","sources":["../../src/functions/hex.ts"],"names":[],"mappings":"AAOA,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,UAElC;AAED,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,UAE3C;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,UAUlD"} \ No newline at end of file diff --git a/dist/functions/hex.js b/dist/functions/hex.js index a26c1d3093..7e46fe6e09 100644 --- a/dist/functions/hex.js +++ b/dist/functions/hex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.resolveColor = exports.int2hex = exports.hex2int = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/functions/hex.js.map b/dist/functions/hex.js.map index 57df9dfd1a..6577a847d6 100644 --- a/dist/functions/hex.js.map +++ b/dist/functions/hex.js.map @@ -1 +1 @@ -{"version":3,"file":"hex.js","sourceRoot":"","sources":["../../src/functions/hex.ts"],"names":[],"mappings":";;;AAAA,2CAAmC;AAEnC,SAAgB,OAAO,CAAC,GAAW;IAC/B,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;AAC7C,CAAC;AAFD,0BAEC;AAED,SAAgB,OAAO,CAAC,GAAoB;IACxC,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;AACpD,CAAC;AAFD,0BAEC;AAED,SAAgB,YAAY,CAAC,KAAsB;IAC/C,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAClD,OAAO,MAAM,CAAC,KAAK,CAAC,CAAA;IAExB,IAAI,KAAK,KAAK,QAAQ;QAClB,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAA;SAC1C,IAAI,KAAK,IAAI,mBAAM;QACpB,OAAO,mBAAM,CAAC,KAA4B,CAAC,CAAA;;QAE3C,OAAO,OAAO,CAAC,KAAK,CAAC,CAAA;AAC7B,CAAC;AAVD,oCAUC"} \ No newline at end of file +{"version":3,"file":"hex.js","sourceRoot":"","sources":["../../src/functions/hex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAmC;AAEnC,SAAgB,OAAO,CAAC,GAAW;IAC/B,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;AAC7C,CAAC;AAFD,0BAEC;AAED,SAAgB,OAAO,CAAC,GAAoB;IACxC,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;AACpD,CAAC;AAFD,0BAEC;AAED,SAAgB,YAAY,CAAC,KAAsB;IAC/C,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAClD,OAAO,MAAM,CAAC,KAAK,CAAC,CAAA;IAExB,IAAI,KAAK,KAAK,QAAQ;QAClB,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAA;SAC1C,IAAI,KAAK,IAAI,mBAAM;QACpB,OAAO,mBAAM,CAAC,KAA4B,CAAC,CAAA;;QAE3C,OAAO,OAAO,CAAC,KAAK,CAAC,CAAA;AAC7B,CAAC;AAVD,oCAUC"} \ No newline at end of file diff --git a/dist/functions/isTrue.d.ts.map b/dist/functions/isTrue.d.ts.map index 51ddbdc173..cc5d884ef7 100644 --- a/dist/functions/isTrue.d.ts.map +++ b/dist/functions/isTrue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isTrue.d.ts","sourceRoot":"","sources":["../../src/functions/isTrue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAEtC,MAAM,CAAC,OAAO,WAAU,CAAC,EAAE,MAAM,WAEhC"} \ No newline at end of file +{"version":3,"file":"isTrue.d.ts","sourceRoot":"","sources":["../../src/functions/isTrue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAEtC,MAAM,CAAC,OAAO,WAAU,CAAC,EAAE,MAAM,WAEhC"} \ No newline at end of file diff --git a/dist/functions/isTrue.js b/dist/functions/isTrue.js index ad1e8780de..a177d3e12b 100644 --- a/dist/functions/isTrue.js +++ b/dist/functions/isTrue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function default_1(t) { return t.value === "true" || t.value === true; diff --git a/dist/functions/isTrue.js.map b/dist/functions/isTrue.js.map index 19ae959702..1d0d1266f2 100644 --- a/dist/functions/isTrue.js.map +++ b/dist/functions/isTrue.js.map @@ -1 +1 @@ -{"version":3,"file":"isTrue.js","sourceRoot":"","sources":["../../src/functions/isTrue.ts"],"names":[],"mappings":";;AAEA,mBAAwB,CAAS;IAC7B,OAAO,CAAC,CAAC,KAAK,KAAK,MAAM,IAAI,CAAC,CAAC,KAAK,KAAK,IAAI,CAAA;AACjD,CAAC;AAFD,4BAEC"} \ No newline at end of file +{"version":3,"file":"isTrue.js","sourceRoot":"","sources":["../../src/functions/isTrue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAIF,mBAAwB,CAAS;IAC7B,OAAO,CAAC,CAAC,KAAK,KAAK,MAAM,IAAI,CAAC,CAAC,KAAK,KAAK,IAAI,CAAA;AACjD,CAAC;AAFD,4BAEC"} \ No newline at end of file diff --git a/dist/functions/noop.d.ts.map b/dist/functions/noop.d.ts.map index fd48b4d3c6..911b965312 100644 --- a/dist/functions/noop.d.ts.map +++ b/dist/functions/noop.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"noop.d.ts","sourceRoot":"","sources":["../../src/functions/noop.ts"],"names":[],"mappings":"kCAIyB,GAAG,EAAE;AAA9B,wBAEC"} \ No newline at end of file +{"version":3,"file":"noop.d.ts","sourceRoot":"","sources":["../../src/functions/noop.ts"],"names":[],"mappings":"kCASyB,GAAG,EAAE;AAA9B,wBAEC"} \ No newline at end of file diff --git a/dist/functions/noop.js b/dist/functions/noop.js index 697a4fa4c6..395d1cbc6d 100644 --- a/dist/functions/noop.js +++ b/dist/functions/noop.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const Logger_1 = require("../structures/@internal/Logger"); exports.default = (...args) => { diff --git a/dist/functions/noop.js.map b/dist/functions/noop.js.map index 5fea4e2c10..69c7deac84 100644 --- a/dist/functions/noop.js.map +++ b/dist/functions/noop.js.map @@ -1 +1 @@ -{"version":3,"file":"noop.js","sourceRoot":"","sources":["../../src/functions/noop.ts"],"names":[],"mappings":";;AAEA,2DAAuD;AAEvD,kBAAe,CAAC,GAAG,IAAW,EAAE,EAAE;IAC9B,eAAM,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;AACzB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"noop.js","sourceRoot":"","sources":["../../src/functions/noop.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAIF,2DAAuD;AAEvD,kBAAe,CAAC,GAAG,IAAW,EAAE,EAAE;IAC9B,eAAM,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;AACzB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/functions/ordinal.d.ts.map b/dist/functions/ordinal.d.ts.map index b515375ec3..89834d7132 100644 --- a/dist/functions/ordinal.d.ts.map +++ b/dist/functions/ordinal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ordinal.d.ts","sourceRoot":"","sources":["../../src/functions/ordinal.ts"],"names":[],"mappings":"AAAA,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,UAahC"} \ No newline at end of file +{"version":3,"file":"ordinal.d.ts","sourceRoot":"","sources":["../../src/functions/ordinal.ts"],"names":[],"mappings":"AAKA,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,UAahC"} \ No newline at end of file diff --git a/dist/functions/ordinal.js b/dist/functions/ordinal.js index 2011adb763..fddfddcd43 100644 --- a/dist/functions/ordinal.js +++ b/dist/functions/ordinal.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ordinal = void 0; function ordinal(i) { diff --git a/dist/functions/ordinal.js.map b/dist/functions/ordinal.js.map index 175634817e..6fb39a1297 100644 --- a/dist/functions/ordinal.js.map +++ b/dist/functions/ordinal.js.map @@ -1 +1 @@ -{"version":3,"file":"ordinal.js","sourceRoot":"","sources":["../../src/functions/ordinal.ts"],"names":[],"mappings":";;;AAAA,SAAgB,OAAO,CAAC,CAAS;IAC7B,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,EACZ,CAAC,GAAG,CAAC,GAAG,GAAG,CAAA;IACf,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,OAAO,CAAC,GAAG,IAAI,CAAA;AACnB,CAAC;AAbD,0BAaC"} \ No newline at end of file +{"version":3,"file":"ordinal.js","sourceRoot":"","sources":["../../src/functions/ordinal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,SAAgB,OAAO,CAAC,CAAS;IAC7B,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,EACZ,CAAC,GAAG,CAAC,GAAG,GAAG,CAAA;IACf,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE;QACpB,OAAO,CAAC,GAAG,IAAI,CAAA;KAClB;IACD,OAAO,CAAC,GAAG,IAAI,CAAA;AACnB,CAAC;AAbD,0BAaC"} \ No newline at end of file diff --git a/dist/functions/overwritePermissionsArrayToObject.d.ts b/dist/functions/overwritePermissionsArrayToObject.d.ts index d9e5783e6b..0425f4f876 100644 --- a/dist/functions/overwritePermissionsArrayToObject.d.ts +++ b/dist/functions/overwritePermissionsArrayToObject.d.ts @@ -1,3 +1,3 @@ import { OverwritePermission } from "../structures"; -export default function (arr: OverwritePermission[]): Partial>; +export default function (arr: OverwritePermission[]): Partial>; //# sourceMappingURL=overwritePermissionsArrayToObject.d.ts.map \ No newline at end of file diff --git a/dist/functions/overwritePermissionsArrayToObject.d.ts.map b/dist/functions/overwritePermissionsArrayToObject.d.ts.map index 9851d9aa29..2f9b7821ea 100644 --- a/dist/functions/overwritePermissionsArrayToObject.d.ts.map +++ b/dist/functions/overwritePermissionsArrayToObject.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"overwritePermissionsArrayToObject.d.ts","sourceRoot":"","sources":["../../src/functions/overwritePermissionsArrayToObject.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAEnD,MAAM,CAAC,OAAO,WAAU,GAAG,EAAE,mBAAmB,EAAE,ogCAQjD"} \ No newline at end of file +{"version":3,"file":"overwritePermissionsArrayToObject.d.ts","sourceRoot":"","sources":["../../src/functions/overwritePermissionsArrayToObject.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAEnD,MAAM,CAAC,OAAO,WAAU,GAAG,EAAE,mBAAmB,EAAE,uhCAQjD"} \ No newline at end of file diff --git a/dist/functions/overwritePermissionsArrayToObject.js b/dist/functions/overwritePermissionsArrayToObject.js index e71e5885b6..4f7bbfcbbc 100644 --- a/dist/functions/overwritePermissionsArrayToObject.js +++ b/dist/functions/overwritePermissionsArrayToObject.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function default_1(arr) { const obj = {}; diff --git a/dist/functions/overwritePermissionsArrayToObject.js.map b/dist/functions/overwritePermissionsArrayToObject.js.map index b6dacefc30..034ac1c242 100644 --- a/dist/functions/overwritePermissionsArrayToObject.js.map +++ b/dist/functions/overwritePermissionsArrayToObject.js.map @@ -1 +1 @@ -{"version":3,"file":"overwritePermissionsArrayToObject.js","sourceRoot":"","sources":["../../src/functions/overwritePermissionsArrayToObject.ts"],"names":[],"mappings":";;AAGA,mBAAwB,GAA0B;IAC9C,MAAM,GAAG,GAAqF,EAAE,CAAA;IAChG,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;QAC1C,MAAM,IAAI,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;QACnB,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,KAAK,CAAA;KACpC;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AARD,4BAQC"} \ No newline at end of file +{"version":3,"file":"overwritePermissionsArrayToObject.js","sourceRoot":"","sources":["../../src/functions/overwritePermissionsArrayToObject.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAKF,mBAAwB,GAA0B;IAC9C,MAAM,GAAG,GAAqF,EAAE,CAAA;IAChG,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;QAC1C,MAAM,IAAI,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;QACnB,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,KAAK,CAAA;KACpC;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AARD,4BAQC"} \ No newline at end of file diff --git a/dist/functions/parseJSON.d.ts.map b/dist/functions/parseJSON.d.ts.map index e8c63902be..411678878b 100644 --- a/dist/functions/parseJSON.d.ts.map +++ b/dist/functions/parseJSON.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseJSON.d.ts","sourceRoot":"","sources":["../../src/functions/parseJSON.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,QAAU,CAAA;AACrC,eAAO,MAAM,YAAY,QAAW,CAAA;AACpC,eAAO,MAAM,eAAe,QAAU,CAAA;AAEtC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,GAAG,EAAE,OAAO,OAS7C"} \ No newline at end of file +{"version":3,"file":"parseJSON.d.ts","sourceRoot":"","sources":["../../src/functions/parseJSON.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,cAAc,QAAU,CAAA;AACrC,eAAO,MAAM,YAAY,QAAW,CAAA;AACpC,eAAO,MAAM,eAAe,QAAU,CAAA;AAEtC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,GAAG,EAAE,OAAO,OAS7C"} \ No newline at end of file diff --git a/dist/functions/parseJSON.js b/dist/functions/parseJSON.js index 1f53edb7da..9c2d6d1281 100644 --- a/dist/functions/parseJSON.js +++ b/dist/functions/parseJSON.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.JSONNumberRegex = exports.JSONEndRegex = exports.JSONStartRegex = void 0; exports.JSONStartRegex = /^[[{]/; diff --git a/dist/functions/parseJSON.js.map b/dist/functions/parseJSON.js.map index c44e81975a..b439db42c1 100644 --- a/dist/functions/parseJSON.js.map +++ b/dist/functions/parseJSON.js.map @@ -1 +1 @@ -{"version":3,"file":"parseJSON.js","sourceRoot":"","sources":["../../src/functions/parseJSON.ts"],"names":[],"mappings":";;;AAAa,QAAA,cAAc,GAAG,OAAO,CAAA;AACxB,QAAA,YAAY,GAAG,QAAQ,CAAA;AACvB,QAAA,eAAe,GAAG,OAAO,CAAA;AAEtC,SAAwB,SAAS,CAAC,GAAY;IAC1C,IAAI,OAAO,GAAG,KAAK,QAAQ;QACvB,OAAO,GAAG,CAAA;IAEd,IAAI;QACA,OAAO,uBAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;KAC3D;IAAC,OAAO,KAAK,EAAE;QACZ,OAAO,GAAG,CAAA;KACb;AACL,CAAC;AATD,4BASC"} \ No newline at end of file +{"version":3,"file":"parseJSON.js","sourceRoot":"","sources":["../../src/functions/parseJSON.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEW,QAAA,cAAc,GAAG,OAAO,CAAA;AACxB,QAAA,YAAY,GAAG,QAAQ,CAAA;AACvB,QAAA,eAAe,GAAG,OAAO,CAAA;AAEtC,SAAwB,SAAS,CAAC,GAAY;IAC1C,IAAI,OAAO,GAAG,KAAK,QAAQ;QACvB,OAAO,GAAG,CAAA;IAEd,IAAI;QACA,OAAO,uBAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;KAC3D;IAAC,OAAO,KAAK,EAAE;QACZ,OAAO,GAAG,CAAA;KACb;AACL,CAAC;AATD,4BASC"} \ No newline at end of file diff --git a/dist/functions/parseSingleEmoji.d.ts.map b/dist/functions/parseSingleEmoji.d.ts.map index bca3f481f4..373ad2c6b9 100644 --- a/dist/functions/parseSingleEmoji.d.ts.map +++ b/dist/functions/parseSingleEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseSingleEmoji.d.ts","sourceRoot":"","sources":["../../src/functions/parseSingleEmoji.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,OAAO,EAAE,MAAM,eAAe,CAAA;AAEzD,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;;;SAQhE"} \ No newline at end of file +{"version":3,"file":"parseSingleEmoji.d.ts","sourceRoot":"","sources":["../../src/functions/parseSingleEmoji.ts"],"names":[],"mappings":"AAMA,OAAO,EAAoB,OAAO,EAAE,MAAM,eAAe,CAAA;AAEzD,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;;;SAQhE"} \ No newline at end of file diff --git a/dist/functions/parseSingleEmoji.js b/dist/functions/parseSingleEmoji.js index 8527529111..b170d137a1 100644 --- a/dist/functions/parseSingleEmoji.js +++ b/dist/functions/parseSingleEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.parseSingleEmoji = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/functions/parseSingleEmoji.js.map b/dist/functions/parseSingleEmoji.js.map index f09d82ba11..48bb8c4bd9 100644 --- a/dist/functions/parseSingleEmoji.js.map +++ b/dist/functions/parseSingleEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"parseSingleEmoji.js","sourceRoot":"","sources":["../../src/functions/parseSingleEmoji.ts"],"names":[],"mappings":";;;AAAA,2CAAuC;AACvC,8CAAyD;AAEzD,SAAgB,gBAAgB,CAAC,GAAY,EAAE,GAAkB;IAC7D,IAAI,CAAC,GAAG;QAAE,OAAO,IAAI,CAAA;IAErB,MAAM,MAAM,GAAG,IAAA,uBAAU,EAAC,GAAG,CAAC,CAAA;IAC9B,MAAM,EAAE,GAAG,6BAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,EAAE,CAAA;IACnE,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,IAAI,MAAM,CAAA;IAE9D,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAA;AACtF,CAAC;AARD,4CAQC"} \ No newline at end of file +{"version":3,"file":"parseSingleEmoji.js","sourceRoot":"","sources":["../../src/functions/parseSingleEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAuC;AACvC,8CAAyD;AAEzD,SAAgB,gBAAgB,CAAC,GAAY,EAAE,GAAkB;IAC7D,IAAI,CAAC,GAAG;QAAE,OAAO,IAAI,CAAA;IAErB,MAAM,MAAM,GAAG,IAAA,uBAAU,EAAC,GAAG,CAAC,CAAA;IAC9B,MAAM,EAAE,GAAG,6BAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,EAAE,CAAA;IACnE,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,IAAI,MAAM,CAAA;IAE9D,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAA;AACtF,CAAC;AARD,4CAQC"} \ No newline at end of file diff --git a/dist/functions/prompt.d.ts.map b/dist/functions/prompt.d.ts.map index 4401cf7900..aa2d0a9e1c 100644 --- a/dist/functions/prompt.d.ts.map +++ b/dist/functions/prompt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../src/functions/prompt.ts"],"names":[],"mappings":"AAGA,yBAA8B,CAAC,EAAE,MAAM,mBAQtC"} \ No newline at end of file +{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../src/functions/prompt.ts"],"names":[],"mappings":"AAQA,yBAA8B,CAAC,EAAE,MAAM,mBAQtC"} \ No newline at end of file diff --git a/dist/functions/prompt.js b/dist/functions/prompt.js index 0f658cc01a..156d9d285d 100644 --- a/dist/functions/prompt.js +++ b/dist/functions/prompt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const process_1 = require("process"); const readline_1 = require("readline"); diff --git a/dist/functions/prompt.js.map b/dist/functions/prompt.js.map index 04f26ea1c5..34994a1231 100644 --- a/dist/functions/prompt.js.map +++ b/dist/functions/prompt.js.map @@ -1 +1 @@ -{"version":3,"file":"prompt.js","sourceRoot":"","sources":["../../src/functions/prompt.ts"],"names":[],"mappings":";;AAAA,qCAAuC;AACvC,uCAA0C;AAE3B,KAAK,oBAAU,CAAS;IACnC,MAAM,GAAG,GAAG,IAAA,0BAAe,EAAC,eAAK,EAAE,gBAAM,CAAC,CAAA;IAC1C,OAAO,IAAI,OAAO,CAAS,CAAC,CAAC,EAAE;QAC3B,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;YACpB,GAAG,CAAC,KAAK,EAAE,CAAA;YACX,CAAC,CAAC,KAAK,CAAC,CAAA;QACZ,CAAC,CAAC,CAAA;IACN,CAAC,CAAC,CAAA;AACN,CAAC;AARD,4BAQC"} \ No newline at end of file +{"version":3,"file":"prompt.js","sourceRoot":"","sources":["../../src/functions/prompt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAuC;AACvC,uCAA0C;AAE3B,KAAK,oBAAU,CAAS;IACnC,MAAM,GAAG,GAAG,IAAA,0BAAe,EAAC,eAAK,EAAE,gBAAM,CAAC,CAAA;IAC1C,OAAO,IAAI,OAAO,CAAS,CAAC,CAAC,EAAE;QAC3B,GAAG,CAAC,QAAQ,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;YACpB,GAAG,CAAC,KAAK,EAAE,CAAA;YACX,CAAC,CAAC,KAAK,CAAC,CAAA;QACZ,CAAC,CAAC,CAAA;IACN,CAAC,CAAC,CAAA;AACN,CAAC;AARD,4BAQC"} \ No newline at end of file diff --git a/dist/functions/recursiveReaddirSync.d.ts.map b/dist/functions/recursiveReaddirSync.d.ts.map index 07d8721123..ef743b59f7 100644 --- a/dist/functions/recursiveReaddirSync.d.ts.map +++ b/dist/functions/recursiveReaddirSync.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"recursiveReaddirSync.d.ts","sourceRoot":"","sources":["../../src/functions/recursiveReaddirSync.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAcnE"} \ No newline at end of file +{"version":3,"file":"recursiveReaddirSync.d.ts","sourceRoot":"","sources":["../../src/functions/recursiveReaddirSync.ts"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAcnE"} \ No newline at end of file diff --git a/dist/functions/recursiveReaddirSync.js b/dist/functions/recursiveReaddirSync.js index da08a0249a..069c480b94 100644 --- a/dist/functions/recursiveReaddirSync.js +++ b/dist/functions/recursiveReaddirSync.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const path_1 = require("path"); diff --git a/dist/functions/recursiveReaddirSync.js.map b/dist/functions/recursiveReaddirSync.js.map index a407f991f6..e661b286b9 100644 --- a/dist/functions/recursiveReaddirSync.js.map +++ b/dist/functions/recursiveReaddirSync.js.map @@ -1 +1 @@ -{"version":3,"file":"recursiveReaddirSync.js","sourceRoot":"","sources":["../../src/functions/recursiveReaddirSync.ts"],"names":[],"mappings":";;AAAA,2BAAmD;AACnD,+BAA2B;AAE3B,SAAwB,oBAAoB,CAAC,IAAY;IACrD,MAAM,GAAG,GAAG,IAAI,KAAK,EAAU,CAAA;IAE/B,KAAK,MAAM,IAAI,IAAI,IAAA,gBAAW,EAAC,IAAI,CAAC,EAAE;QAClC,MAAM,CAAC,GAAG,IAAA,WAAI,EAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAC1B,MAAM,KAAK,GAAG,IAAA,cAAS,EAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE;YACrB,GAAG,CAAC,IAAI,CAAC,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAA;SACvC;aAAM;YACH,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SACd;KACJ;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAdD,uCAcC"} \ No newline at end of file +{"version":3,"file":"recursiveReaddirSync.js","sourceRoot":"","sources":["../../src/functions/recursiveReaddirSync.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAmD;AACnD,+BAA2B;AAE3B,SAAwB,oBAAoB,CAAC,IAAY;IACrD,MAAM,GAAG,GAAG,IAAI,KAAK,EAAU,CAAA;IAE/B,KAAK,MAAM,IAAI,IAAI,IAAA,gBAAW,EAAC,IAAI,CAAC,EAAE;QAClC,MAAM,CAAC,GAAG,IAAA,WAAI,EAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAC1B,MAAM,KAAK,GAAG,IAAA,cAAS,EAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE;YACrB,GAAG,CAAC,IAAI,CAAC,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAA;SACvC;aAAM;YACH,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SACd;KACJ;IAED,OAAO,GAAG,CAAA;AACd,CAAC;AAdD,uCAcC"} \ No newline at end of file diff --git a/dist/functions/splitNumber.d.ts.map b/dist/functions/splitNumber.d.ts.map index 44f6dc6b65..b25f125694 100644 --- a/dist/functions/splitNumber.d.ts.map +++ b/dist/functions/splitNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"splitNumber.d.ts","sourceRoot":"","sources":["../../src/functions/splitNumber.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,WAAW,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAO9D"} \ No newline at end of file +{"version":3,"file":"splitNumber.d.ts","sourceRoot":"","sources":["../../src/functions/splitNumber.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,OAAO,WAAW,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAO9D"} \ No newline at end of file diff --git a/dist/functions/splitNumber.js b/dist/functions/splitNumber.js index 00c1240c2e..ad05a1b1bc 100644 --- a/dist/functions/splitNumber.js +++ b/dist/functions/splitNumber.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); function default_1(n, max) { const splitTimes = n % max === 0 ? Math.floor(n / max) : Math.floor(n / max) + 1; diff --git a/dist/functions/splitNumber.js.map b/dist/functions/splitNumber.js.map index f82e45140e..30d9ace8c8 100644 --- a/dist/functions/splitNumber.js.map +++ b/dist/functions/splitNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"splitNumber.js","sourceRoot":"","sources":["../../src/functions/splitNumber.ts"],"names":[],"mappings":";;AAAA,mBAAyB,CAAS,EAAE,GAAW;IAC3C,MAAM,UAAU,GAAG,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;IAChF,MAAM,GAAG,GAAG,IAAI,KAAK,CAAS,UAAU,CAAC,CAAA;IACzC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IACb,MAAM,IAAI,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,CAAA;IACvC,IAAI,IAAI,KAAK,CAAC;QAAE,GAAG,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,CAAA;IAC1C,OAAO,GAAG,CAAA;AACd,CAAC;AAPD,4BAOC"} \ No newline at end of file +{"version":3,"file":"splitNumber.js","sourceRoot":"","sources":["../../src/functions/splitNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mBAAyB,CAAS,EAAE,GAAW;IAC3C,MAAM,UAAU,GAAG,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;IAChF,MAAM,GAAG,GAAG,IAAI,KAAK,CAAS,UAAU,CAAC,CAAA;IACzC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IACb,MAAM,IAAI,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,CAAA;IACvC,IAAI,IAAI,KAAK,CAAC;QAAE,GAAG,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,CAAA;IAC1C,OAAO,GAAG,CAAA;AACd,CAAC;AAPD,4BAOC"} \ No newline at end of file diff --git a/dist/functions/thread.d.ts.map b/dist/functions/thread.d.ts.map index eb7e852579..c994a3f1d6 100644 --- a/dist/functions/thread.d.ts.map +++ b/dist/functions/thread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../src/functions/thread.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAEvC,wBAAsB,KAAK,CAAC,IAAI,EAAE,MAAM,mBAKvC;AAED,wBAAsB,WAAW,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,CAIzE;AAED,wBAAsB,SAAS,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,iBAKnD"} \ No newline at end of file +{"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../src/functions/thread.ts"],"names":[],"mappings":";AAOA,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAEvC,wBAAsB,KAAK,CAAC,IAAI,EAAE,MAAM,mBAKvC;AAED,wBAAsB,WAAW,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,CAIzE;AAED,wBAAsB,SAAS,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,iBAKnD"} \ No newline at end of file diff --git a/dist/functions/thread.js b/dist/functions/thread.js index 232ad59695..3c8ec2c59c 100644 --- a/dist/functions/thread.js +++ b/dist/functions/thread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.terminate = exports.postMessage = exports.spawn = void 0; const events_1 = require("events"); diff --git a/dist/functions/thread.js.map b/dist/functions/thread.js.map index af16e88083..8ba846de08 100644 --- a/dist/functions/thread.js.map +++ b/dist/functions/thread.js.map @@ -1 +1 @@ -{"version":3,"file":"thread.js","sourceRoot":"","sources":["../../src/functions/thread.ts"],"names":[],"mappings":";;;AAAA,mCAA6B;AAC7B,+BAA2B;AAC3B,mDAAuC;AAEhC,KAAK,UAAU,KAAK,CAAC,IAAY;IACpC,oCAAoC;IACpC,MAAM,MAAM,GAAG,IAAI,uBAAM,CAAC,IAAA,WAAI,EAAC,SAAS,EAAE,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,GAAG,IAAI,KAAK,CAAC,CAAC,CAAA;IAC3F,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IAC5B,OAAO,MAAM,CAAA;AACjB,CAAC;AALD,sBAKC;AAEM,KAAK,UAAU,WAAW,CAAI,MAAc,EAAE,GAAQ;IACzD,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IACvB,MAAM,MAAM,GAAG,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5D,OAAO,MAAM,CAAA;AACjB,CAAC;AAJD,kCAIC;AAEM,KAAK,UAAU,SAAS,CAAC,GAAG,OAAiB;IAChD,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;QAC1B,MAAM,CAAC,SAAS,EAAE,CAAA;QAClB,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAC7B;AACL,CAAC;AALD,8BAKC"} \ No newline at end of file +{"version":3,"file":"thread.js","sourceRoot":"","sources":["../../src/functions/thread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,mCAA6B;AAC7B,+BAA2B;AAC3B,mDAAuC;AAEhC,KAAK,UAAU,KAAK,CAAC,IAAY;IACpC,oCAAoC;IACpC,MAAM,MAAM,GAAG,IAAI,uBAAM,CAAC,IAAA,WAAI,EAAC,SAAS,EAAE,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,GAAG,IAAI,KAAK,CAAC,CAAC,CAAA;IAC3F,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IAC5B,OAAO,MAAM,CAAA;AACjB,CAAC;AALD,sBAKC;AAEM,KAAK,UAAU,WAAW,CAAI,MAAc,EAAE,GAAQ;IACzD,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IACvB,MAAM,MAAM,GAAG,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5D,OAAO,MAAM,CAAA;AACjB,CAAC;AAJD,kCAIC;AAEM,KAAK,UAAU,SAAS,CAAC,GAAG,OAAiB;IAChD,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;QAC1B,MAAM,CAAC,SAAS,EAAE,CAAA;QAClB,MAAM,IAAA,aAAI,EAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAC7B;AACL,CAAC;AALD,8BAKC"} \ No newline at end of file diff --git a/dist/functions/translate.d.ts.map b/dist/functions/translate.d.ts.map index 84287bf31e..bf3236098b 100644 --- a/dist/functions/translate.d.ts.map +++ b/dist/functions/translate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"translate.d.ts","sourceRoot":"","sources":["../../src/functions/translate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAiB,MAAM,YAAY,CAAA;AAClD,OAAO,EAAW,IAAI,EAAE,MAAM,EAAE,eAAe,EAAU,MAAM,eAAe,CAAA;AAoB9E,MAAM,WAAW,qBAAqB;IAClC,SAAS,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IAC9B,SAAS,EAAE,eAAe,CAAC,IAAI,EAAE,CAAC,EAAE,CAAA;IACpC,MAAM,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,OAAO,CAAC,EAAE,CAAA;CAC3C;AAED,MAAM,WAAW,qBAAqB;IAClC,WAAW,EAAE,MAAM,CAAA;IACnB,eAAe,EAAE,MAAM,CAAA;CAC1B;AAED,MAAM,WAAW,wBAAwB;IACrC,WAAW,EAAE,MAAM,CAAA;IACnB,eAAe,EAAE,MAAM,CAAA;IAEvB,MAAM,EAAE;QACJ,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAEhB,WAAW,EAAE,MAAM,CAAA;QACnB,eAAe,EAAE,MAAM,CAAA;KAC1B,EAAE,CAAA;CACN;AAED,MAAM,WAAW,gBAAgB;IAC7B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAA;IACnD,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAA;CAChD;AAuFD,wBAAsB,aAAa,CAAC,OAAO,EAAE,qBAAqB,iBA8EjE"} \ No newline at end of file +{"version":3,"file":"translate.d.ts","sourceRoot":"","sources":["../../src/functions/translate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAiB,MAAM,YAAY,CAAA;AAClD,OAAO,EAAW,IAAI,EAAE,MAAM,EAAE,eAAe,EAAU,MAAM,eAAe,CAAA;AAoB9E,MAAM,WAAW,qBAAqB;IAClC,SAAS,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IAC9B,SAAS,EAAE,eAAe,CAAC,IAAI,EAAE,CAAC,EAAE,CAAA;IACpC,MAAM,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,OAAO,CAAC,EAAE,CAAA;CAC3C;AAED,MAAM,WAAW,qBAAqB;IAClC,WAAW,EAAE,MAAM,CAAA;IACnB,eAAe,EAAE,MAAM,CAAA;CAC1B;AAED,MAAM,WAAW,wBAAwB;IACrC,WAAW,EAAE,MAAM,CAAA;IACnB,eAAe,EAAE,MAAM,CAAA;IAEvB,MAAM,EAAE;QACJ,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAEhB,WAAW,EAAE,MAAM,CAAA;QACnB,eAAe,EAAE,MAAM,CAAA;KAC1B,EAAE,CAAA;CACN;AAED,MAAM,WAAW,gBAAgB;IAC7B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAA;IACnD,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAA;CAChD;AAuFD,wBAAsB,aAAa,CAAC,OAAO,EAAE,qBAAqB,iBA8EjE"} \ No newline at end of file diff --git a/dist/functions/translate.js b/dist/functions/translate.js index e8f3c39653..2648f32617 100644 --- a/dist/functions/translate.js +++ b/dist/functions/translate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.translateData = void 0; const structures_1 = require("../structures"); diff --git a/dist/functions/translate.js.map b/dist/functions/translate.js.map index 0380a6a412..b6b4232c7e 100644 --- a/dist/functions/translate.js.map +++ b/dist/functions/translate.js.map @@ -1 +1 @@ -{"version":3,"file":"translate.js","sourceRoot":"","sources":["../../src/functions/translate.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"translate.js","sourceRoot":"","sources":["../../src/functions/translate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,8CAA8E;AAC9E,2BAAuE;AACvE,mCAAmC;AAGnC,4CAAyC;AACzC,+CAA2C;AAC3C,+BAA2B;AAC3B,qCAAwD;AAExD,2BAAsC;AAEtC,MAAM,UAAU,GAAG;IACf,CAAE,OAAO,EAAE,QAAQ,CAAE;IACrB,CAAE,MAAM,EAAE,SAAS,CAAE;IACrB,CAAE,KAAK,EAAE,aAAa,CAAE;IACxB,CAAE,OAAO,EAAE,WAAW,CAAC;IACvB,CAAE,MAAM,EAAE,YAAY,CAAE;CACE,CAAA;AA+B9B,SAAS,IAAI,CAAC,GAAW;IACrB,OAAO,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;AACpE,CAAC;AAED,KAAK,UAAU,iBAAiB,CAAC,MAAc,EAAE,GAAQ,EAAE,EAAmB,EAAE,WAAgB,EAAE;IAC9F,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;QAChC,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;QACtB,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,MAAM,OAAO,GAAG,GAAG,GAAG,MAAM,CAAA;YAC5B,MAAM,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAA;YACjC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAA;YAC3B,IAAI,OAAO,KAAK,OAAO,EAAE;gBACrB,QAAQ,CAAC,OAAO,CAAC,GAAG,OAAO,CAAA;gBAC3B,QAAQ,CAAC,GAAG,CAAC,GAAG,MAAM,SAAS,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC,CAAA;aACrD;SACJ;aAAM;YACH,QAAQ,CAAC,GAAG,CAAC,GAAG,MAAM,iBAAiB,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAA;SAC5E;KACJ;IAED,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,KAAK,UAAU,SAAS,CAAC,MAAc,EAAE,GAAW,EAAE,EAAmB;IACrE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC9G,OAAO,IAAA,oBAAW,EAAS,MAAM,EAAE;QAC/B,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,GAAG;KACZ,CAAC,CAAA;AACN,CAAC;AAED,KAAK,UAAU,gBAAgB,CAAC,MAAc,EAAE,KAAqC,EAAE,IAAqB,EAAE,WAA2C,EAAE;IACvJ,MAAM,kBAAkB,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;IAClD,IAAI,kBAAkB,KAAK,QAAQ,CAAC,eAAe,EAAE;QACjD,QAAQ,CAAC,eAAe,GAAG,kBAAkB,CAAA;QAC7C,QAAQ,CAAC,WAAW,GAAG,MAAM,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,EAAE,IAAI,CAAC,CAAA;KAC1E;IAED,OAAO,QAAiC,CAAA;AAC5C,CAAC;AAED,KAAK,UAAU,mBAAmB,CAAC,MAAc,EAAE,EAA2B,EAAE,IAAqB,EAAE,WAA8C,EAAE;IACnJ,MAAM,kBAAkB,GAAG,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,CAAA;IAC/C,IAAI,kBAAkB,KAAK,QAAQ,CAAC,eAAe,EAAE;QACjD,QAAQ,CAAC,eAAe,GAAG,kBAAkB,CAAA;QAC7C,QAAQ,CAAC,WAAW,GAAG,MAAM,SAAS,CAAC,MAAM,EAAE,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC,CAAA;KACvE;IAED,QAAQ,CAAC,MAAM,KAAK,EAAE,CAAA;IAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,IAAI,CAAC,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;QACpD,MAAM,KAAK,GAAG,EAAE,CAAC,IAAK,CAAC,CAAC,CAAC,CAAA;QACzB,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EAAE,CAAA;QAEvC,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QACpC,MAAM,kBAAkB,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;QAElD,IAAI,WAAW,KAAK,MAAM,CAAC,QAAQ,EAAE;YACjC,MAAM,CAAC,QAAQ,GAAG,WAAW,CAAA;YAC7B,MAAM,CAAC,IAAI,GAAG,MAAM,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;SAC1D;QAED,IAAI,kBAAkB,KAAK,MAAM,CAAC,eAAe,EAAE;YAC/C,MAAM,CAAC,eAAe,GAAG,kBAAkB,CAAA;YAC3C,MAAM,CAAC,WAAW,GAAG,MAAM,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,EAAE,IAAI,CAAC,CAAA;SACxE;QAED,QAAQ,CAAC,MAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAA;KAC/B;IAED,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC;QAC5B,OAAO,QAAQ,CAAC,MAAM,CAAA;IAE1B,OAAO,QAAoC,CAAA;AAC/C,CAAC;AAED,MAAM,QAAQ,GAAG,IAAA,WAAI,EAAC,UAAU,EAAE,cAAc,CAAC,CAAA;AACjD,MAAM,QAAQ,GAAG,IAAA,WAAI,EAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;AACvC,MAAM,UAAU,GAAG,IAAA,WAAI,EAAC,QAAQ,EAAE,SAAS,CAAC,CAAA;AAE5C,MAAM,IAAI,GAA4B,IAAA,eAAU,EAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;AAEnH,uCAAuC;AACvC,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAA,aAAQ,GAAE,GAAG,IAAA,YAAO,GAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,CAAA;AAE5E,KAAK,UAAU,aAAa,CAAC,OAA8B;IAC9D,MAAM,OAAO,GAAG,IAAI,KAAK,EAAU,CAAA;IAEnC,mBAAM,CAAC,IAAI,CAAC,WAAW,GAAG,WAAW,GAAG,aAAa,CAAC,CAAA;IACtD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAC,CAAC,GAAG,WAAW,EAAC,CAAC,EAAE,EAAE;QAChC,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,IAAA,cAAK,EAAC,mBAAmB,CAAC,CAAA;KAChD;IACD,mBAAM,CAAC,IAAI,CAAC,+BAA+B,CAAC,CAAA;IAE5C,IAAI,CAAC,IAAA,eAAU,EAAC,QAAQ,CAAC;QACrB,IAAA,cAAS,EAAC,QAAQ,CAAC,CAAA;IAEvB,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE;QAClC,IAAI,IAAI,EAAE;YACN,MAAM,UAAU,GAAG,IAAA,WAAI,EAAC,QAAQ,EAAE,GAAG,IAAI,OAAO,CAAC,CAAA;YACjD,MAAM,MAAM,GAA4B,IAAA,eAAU,EAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;YAEnH,mBAAM,CAAC,UAAU,CAAC,uBAAuB,IAAI,KAAK,CAAC,CAAA;YACnD,KAAK,MAAM,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC,CAAA;YAC5D,IAAA,kBAAa,EAAC,UAAU,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,CAAA;SAC7D;QAED,MAAM,UAAU,GAAG,IAAA,WAAI,EAAC,QAAQ,EAAE,GAAG,IAAI,OAAO,CAAC,CAAA;QACjD,MAAM,MAAM,GAA8B,IAAA,eAAU,EAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;QACrH,MAAM,CAAC,MAAM,KAAK,EAAE,CAAA;QACpB,MAAM,CAAC,SAAS,KAAK,EAAE,CAAA;QAEvB,MAAM,kBAAkB,GAAG,IAAI,CAAC,GAAG,EAAE,CAAA;QAErC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,SAAS,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,OAAO,CAAC,MAAM,EAAE;YACxE,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAiB,CAAA;YAC3C,KAAK,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,MAAM,EAAC,CAAC,GAAG,CAAC,EAAC,CAAC,EAAE,EAAE;gBACvC,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;gBAC1C,MAAM,EAAE,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;gBAC/B,IAAI,CAAC,EAAE;oBACH,MAAK;gBACT,MAAM,QAAQ,GAAG,CAAC,MAAM,CAAC,SAAU,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAsC,CAAA;gBAExF,qDAAqD;gBACrD,QAAQ,CAAC,IAAI,CAAC,IAAI,OAAO,CAAC,KAAK,EAAC,OAAO,EAAC,EAAE;oBACtC,MAAM,CAAC,SAAU,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,MAAM,mBAAmB,CAAC,MAAM,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;oBAClF,OAAO,EAAE,CAAA;gBACb,CAAC,CAAC,CAAC,CAAA;aACN;YAED,MAAM,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;YAC3B,MAAM,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,kBAAkB,CAAA;YAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACtD,mBAAM,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,WAAW,EAAE,4BAA4B,IAAA,yBAAW,EAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,sBAAU,CAAC,aAAa,CAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAA;SAC5L;QAED,MAAM,eAAe,GAAG,IAAI,CAAC,GAAG,EAAE,CAAA;QAElC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,OAAO,CAAC,MAAM,EAAE;YACrE,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAiB,CAAA;YAC3C,KAAK,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,MAAM,EAAC,CAAC,GAAG,CAAC,EAAC,CAAC,EAAE,EAAE;gBACvC,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;gBAC1C,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;gBAC5B,IAAI,CAAC,EAAE;oBACH,MAAK;gBACT,MAAM,QAAQ,GAAG,CAAC,MAAM,CAAC,MAAO,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAmC,CAAA;gBAClF,qDAAqD;gBACrD,QAAQ,CAAC,IAAI,CAAC,IAAI,OAAO,CAAC,KAAK,EAAC,OAAO,EAAC,EAAE;oBACtC,MAAM,CAAC,MAAO,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,MAAM,gBAAgB,CAAC,MAAM,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;oBAC5E,OAAO,EAAE,CAAA;gBACb,CAAC,CAAC,CAAC,CAAA;aACN;YAED,MAAM,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;YAC3B,MAAM,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,eAAe,CAAA;YAC5C,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACtD,mBAAM,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,WAAW,EAAE,yBAAyB,IAAA,yBAAW,EAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,sBAAU,CAAC,aAAa,CAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAA;SACzL;QAED,IAAA,kBAAa,EAAC,UAAU,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,CAAA;QAC1D,mBAAM,CAAC,UAAU,CAAC,gDAAgD,CAAC,CAAA;QACnE,MAAM,IAAA,kBAAS,EAAC,GAAG,OAAO,CAAC,CAAA;KAC9B;AACL,CAAC;AA9ED,sCA8EC"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationActionExecution.d.ts.map b/dist/handlers/events/autoModerationActionExecution.d.ts.map index fcaf88f7a1..e033acfdf3 100644 --- a/dist/handlers/events/autoModerationActionExecution.d.ts.map +++ b/dist/handlers/events/autoModerationActionExecution.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationActionExecution.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationActionExecution.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"autoModerationActionExecution.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationActionExecution.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationActionExecution.js b/dist/handlers/events/autoModerationActionExecution.js index 019d65885c..8ba00c6854 100644 --- a/dist/handlers/events/autoModerationActionExecution.js +++ b/dist/handlers/events/autoModerationActionExecution.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/autoModerationActionExecution.js.map b/dist/handlers/events/autoModerationActionExecution.js.map index 625769d5a9..f8abab2af2 100644 --- a/dist/handlers/events/autoModerationActionExecution.js.map +++ b/dist/handlers/events/autoModerationActionExecution.js.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationActionExecution.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationActionExecution.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA;QAEnE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,yBAAyB,CAAC;CACjD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"autoModerationActionExecution.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationActionExecution.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA;QAEnE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,yBAAyB,CAAC;CACjD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleCreate.d.ts.map b/dist/handlers/events/autoModerationRuleCreate.d.ts.map index 2665cde9f5..7344d3ff79 100644 --- a/dist/handlers/events/autoModerationRuleCreate.d.ts.map +++ b/dist/handlers/events/autoModerationRuleCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleCreate.js b/dist/handlers/events/autoModerationRuleCreate.js index 328c562b66..a61349c4a7 100644 --- a/dist/handlers/events/autoModerationRuleCreate.js +++ b/dist/handlers/events/autoModerationRuleCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/autoModerationRuleCreate.js.map b/dist/handlers/events/autoModerationRuleCreate.js.map index 80c6a40312..0063b9f084 100644 --- a/dist/handlers/events/autoModerationRuleCreate.js.map +++ b/dist/handlers/events/autoModerationRuleCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleDelete.d.ts.map b/dist/handlers/events/autoModerationRuleDelete.d.ts.map index 736a86253c..81a0f95540 100644 --- a/dist/handlers/events/autoModerationRuleDelete.d.ts.map +++ b/dist/handlers/events/autoModerationRuleDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleDelete.js b/dist/handlers/events/autoModerationRuleDelete.js index 7e6da7b593..251f32d04b 100644 --- a/dist/handlers/events/autoModerationRuleDelete.js +++ b/dist/handlers/events/autoModerationRuleDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/autoModerationRuleDelete.js.map b/dist/handlers/events/autoModerationRuleDelete.js.map index 59f664ef48..40a62e065a 100644 --- a/dist/handlers/events/autoModerationRuleDelete.js.map +++ b/dist/handlers/events/autoModerationRuleDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleUpdate.d.ts.map b/dist/handlers/events/autoModerationRuleUpdate.d.ts.map index e8f9d49fa9..440a2d9b5f 100644 --- a/dist/handlers/events/autoModerationRuleUpdate.d.ts.map +++ b/dist/handlers/events/autoModerationRuleUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/autoModerationRuleUpdate.js b/dist/handlers/events/autoModerationRuleUpdate.js index 9a2b50b8e3..3187ba3bde 100644 --- a/dist/handlers/events/autoModerationRuleUpdate.js +++ b/dist/handlers/events/autoModerationRuleUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/autoModerationRuleUpdate.js.map b/dist/handlers/events/autoModerationRuleUpdate.js.map index 21caf1cc01..6f57b7ea40 100644 --- a/dist/handlers/events/autoModerationRuleUpdate.js.map +++ b/dist/handlers/events/autoModerationRuleUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"autoModerationRuleUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"autoModerationRuleUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/autoModerationRuleUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,6BAA6B,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/channelCreate.d.ts.map b/dist/handlers/events/channelCreate.d.ts.map index 372026ba75..075c0e6d80 100644 --- a/dist/handlers/events/channelCreate.d.ts.map +++ b/dist/handlers/events/channelCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"channelCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/channelCreate.js b/dist/handlers/events/channelCreate.js index ced35e7357..0d185d7860 100644 --- a/dist/handlers/events/channelCreate.js +++ b/dist/handlers/events/channelCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/channelCreate.js.map b/dist/handlers/events/channelCreate.js.map index c727e7b7b4..31135ab198 100644 --- a/dist/handlers/events/channelCreate.js.map +++ b/dist/handlers/events/channelCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"channelCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/channelDelete.d.ts.map b/dist/handlers/events/channelDelete.d.ts.map index efabc13986..3ed86cb3e7 100644 --- a/dist/handlers/events/channelDelete.d.ts.map +++ b/dist/handlers/events/channelDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"channelDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/channelDelete.js b/dist/handlers/events/channelDelete.js index e075e3f198..2d354358f7 100644 --- a/dist/handlers/events/channelDelete.js +++ b/dist/handlers/events/channelDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/channelDelete.js.map b/dist/handlers/events/channelDelete.js.map index 8ba79e10f0..1850ec7329 100644 --- a/dist/handlers/events/channelDelete.js.map +++ b/dist/handlers/events/channelDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"channelDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/channelDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/channelDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/channelPinsUpdate.d.ts.map b/dist/handlers/events/channelPinsUpdate.d.ts.map index a9ee77a917..222a55249f 100644 --- a/dist/handlers/events/channelPinsUpdate.d.ts.map +++ b/dist/handlers/events/channelPinsUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPinsUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelPinsUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"channelPinsUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelPinsUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/channelPinsUpdate.js b/dist/handlers/events/channelPinsUpdate.js index d97a4265b3..2d91755463 100644 --- a/dist/handlers/events/channelPinsUpdate.js +++ b/dist/handlers/events/channelPinsUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/channelPinsUpdate.js.map b/dist/handlers/events/channelPinsUpdate.js.map index 557c480e74..3a7226545f 100644 --- a/dist/handlers/events/channelPinsUpdate.js.map +++ b/dist/handlers/events/channelPinsUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPinsUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelPinsUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,gBAAgB,CAAC;CACxC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPinsUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelPinsUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,gBAAgB,CAAC;CACxC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/channelUpdate.d.ts.map b/dist/handlers/events/channelUpdate.d.ts.map index e17bd44423..f9cc373177 100644 --- a/dist/handlers/events/channelUpdate.d.ts.map +++ b/dist/handlers/events/channelUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"channelUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/channelUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/channelUpdate.js b/dist/handlers/events/channelUpdate.js index b4cb9de6f6..0b0b252042 100644 --- a/dist/handlers/events/channelUpdate.js +++ b/dist/handlers/events/channelUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/channelUpdate.js.map b/dist/handlers/events/channelUpdate.js.map index 0adb5b0029..be3db4920f 100644 --- a/dist/handlers/events/channelUpdate.js.map +++ b/dist/handlers/events/channelUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"channelUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/channelUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/clientReady.d.ts.map b/dist/handlers/events/clientReady.d.ts.map index 72d7a865b9..6a4a5415b4 100644 --- a/dist/handlers/events/clientReady.d.ts.map +++ b/dist/handlers/events/clientReady.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clientReady.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/clientReady.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"clientReady.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/clientReady.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/clientReady.js b/dist/handlers/events/clientReady.js index 9789a39e2c..e4f19322b1 100644 --- a/dist/handlers/events/clientReady.js +++ b/dist/handlers/events/clientReady.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const structures_1 = require("../../structures"); diff --git a/dist/handlers/events/clientReady.js.map b/dist/handlers/events/clientReady.js.map index f8ca36b371..8210e0a9a2 100644 --- a/dist/handlers/events/clientReady.js.map +++ b/dist/handlers/events/clientReady.js.map @@ -1 +1 @@ -{"version":3,"file":"clientReady.js","sourceRoot":"","sources":["../../../src/handlers/events/clientReady.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,iDAAyC;AACzC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;QACX,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QACjD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;aAAM;YACH,mBAAM,CAAC,IAAI,CAAC,mBAAmB,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAA;SAC1D;QAED,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE;YAChC,MAAM,6BAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;SACrC;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clientReady.js","sourceRoot":"","sources":["../../../src/handlers/events/clientReady.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,iDAAyC;AACzC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;QACX,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QACjD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;aAAM;YACH,mBAAM,CAAC,IAAI,CAAC,mBAAmB,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAA;SAC1D;QAED,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE;YAChC,MAAM,6BAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;SACrC;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/debug.d.ts.map b/dist/handlers/events/debug.d.ts.map index 1d1e0213be..fa47023b5a 100644 --- a/dist/handlers/events/debug.d.ts.map +++ b/dist/handlers/events/debug.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/debug.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/debug.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/debug.js b/dist/handlers/events/debug.js index 727f8b63c6..c0930d117d 100644 --- a/dist/handlers/events/debug.js +++ b/dist/handlers/events/debug.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/debug.js.map b/dist/handlers/events/debug.js.map index 7e0027359d..e298c4a0f3 100644 --- a/dist/handlers/events/debug.js.map +++ b/dist/handlers/events/debug.js.map @@ -1 +1 @@ -{"version":3,"file":"debug.js","sourceRoot":"","sources":["../../../src/handlers/events/debug.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,UAAU,KAAK;QACrB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC3C,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;oBACP,MAAM,EAAE,KAAK;iBAChB,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"debug.js","sourceRoot":"","sources":["../../../src/handlers/events/debug.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,UAAU,KAAK;QACrB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC3C,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;oBACP,MAAM,EAAE,KAAK;iBAChB,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/emojiCreate.d.ts.map b/dist/handlers/events/emojiCreate.d.ts.map index 68a3b57e7f..f984f28cd3 100644 --- a/dist/handlers/events/emojiCreate.d.ts.map +++ b/dist/handlers/events/emojiCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"emojiCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/emojiCreate.js b/dist/handlers/events/emojiCreate.js index 9757352d10..b2e809676b 100644 --- a/dist/handlers/events/emojiCreate.js +++ b/dist/handlers/events/emojiCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/emojiCreate.js.map b/dist/handlers/events/emojiCreate.js.map index 4fe2d4465a..8aed62ea37 100644 --- a/dist/handlers/events/emojiCreate.js.map +++ b/dist/handlers/events/emojiCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/emojiDelete.d.ts.map b/dist/handlers/events/emojiDelete.d.ts.map index 122eb6f6c5..e1a1391366 100644 --- a/dist/handlers/events/emojiDelete.d.ts.map +++ b/dist/handlers/events/emojiDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"emojiDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/emojiDelete.js b/dist/handlers/events/emojiDelete.js index 2c45a61304..51ad9a7c19 100644 --- a/dist/handlers/events/emojiDelete.js +++ b/dist/handlers/events/emojiDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/emojiDelete.js.map b/dist/handlers/events/emojiDelete.js.map index 3c2a234acb..2a7c2d8155 100644 --- a/dist/handlers/events/emojiDelete.js.map +++ b/dist/handlers/events/emojiDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/emojiUpdate.d.ts.map b/dist/handlers/events/emojiUpdate.d.ts.map index 3e51022af5..ed205bc8e0 100644 --- a/dist/handlers/events/emojiUpdate.d.ts.map +++ b/dist/handlers/events/emojiUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"emojiUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/emojiUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/emojiUpdate.js b/dist/handlers/events/emojiUpdate.js index a475b1dc5b..f977413900 100644 --- a/dist/handlers/events/emojiUpdate.js +++ b/dist/handlers/events/emojiUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/emojiUpdate.js.map b/dist/handlers/events/emojiUpdate.js.map index ea9cbd7385..bf0b97dceb 100644 --- a/dist/handlers/events/emojiUpdate.js.map +++ b/dist/handlers/events/emojiUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/emojiUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementCreate.d.ts.map b/dist/handlers/events/entitlementCreate.d.ts.map index 95f8b1f26a..c5acae91da 100644 --- a/dist/handlers/events/entitlementCreate.d.ts.map +++ b/dist/handlers/events/entitlementCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAsBE"} \ No newline at end of file +{"version":3,"file":"entitlementCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAsBE"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementCreate.js b/dist/handlers/events/entitlementCreate.js index d616b97e27..492ff5f08a 100644 --- a/dist/handlers/events/entitlementCreate.js +++ b/dist/handlers/events/entitlementCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/entitlementCreate.js.map b/dist/handlers/events/entitlementCreate.js.map index f0d2df211a..3ef9440e4e 100644 --- a/dist/handlers/events/entitlementCreate.js.map +++ b/dist/handlers/events/entitlementCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementDelete.d.ts.map b/dist/handlers/events/entitlementDelete.d.ts.map index e699166293..03fb66d5a8 100644 --- a/dist/handlers/events/entitlementDelete.d.ts.map +++ b/dist/handlers/events/entitlementDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"entitlementDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementDelete.js b/dist/handlers/events/entitlementDelete.js index 506f16c78d..d847fa2c3d 100644 --- a/dist/handlers/events/entitlementDelete.js +++ b/dist/handlers/events/entitlementDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/entitlementDelete.js.map b/dist/handlers/events/entitlementDelete.js.map index 92b3f47e62..806308dfd1 100644 --- a/dist/handlers/events/entitlementDelete.js.map +++ b/dist/handlers/events/entitlementDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementUpdate.d.ts.map b/dist/handlers/events/entitlementUpdate.d.ts.map index 73bef47be6..a4214b8677 100644 --- a/dist/handlers/events/entitlementUpdate.d.ts.map +++ b/dist/handlers/events/entitlementUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"entitlementUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/entitlementUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/entitlementUpdate.js b/dist/handlers/events/entitlementUpdate.js index 3ae2718035..bf99a30f02 100644 --- a/dist/handlers/events/entitlementUpdate.js +++ b/dist/handlers/events/entitlementUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/entitlementUpdate.js.map b/dist/handlers/events/entitlementUpdate.js.map index f3f7d44318..6cc43e379d 100644 --- a/dist/handlers/events/entitlementUpdate.js.map +++ b/dist/handlers/events/entitlementUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,GAAG;wBACR,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/entitlementUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,GAAG;wBACR,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/error.d.ts.map b/dist/handlers/events/error.d.ts.map index 63eb7fdc5b..5d4e482a7c 100644 --- a/dist/handlers/events/error.d.ts.map +++ b/dist/handlers/events/error.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/error.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/error.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/error.js b/dist/handlers/events/error.js index d7fa3156a4..fa000afe68 100644 --- a/dist/handlers/events/error.js +++ b/dist/handlers/events/error.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/error.js.map b/dist/handlers/events/error.js.map index 444adef62b..c4c38dcbf0 100644 --- a/dist/handlers/events/error.js.map +++ b/dist/handlers/events/error.js.map @@ -1 +1 @@ -{"version":3,"file":"error.js","sourceRoot":"","sources":["../../../src/handlers/events/error.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,UAAU,GAAG;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC3C,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;oBACP,MAAM,EAAE,GAAG,CAAC,OAAO;iBACtB,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"error.js","sourceRoot":"","sources":["../../../src/handlers/events/error.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,UAAU,GAAG;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC3C,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;oBACP,MAAM,EAAE,GAAG,CAAC,OAAO;iBACtB,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildAuditLogEntryCreate.d.ts.map b/dist/handlers/events/guildAuditLogEntryCreate.d.ts.map index 6814010e58..1cdad4441f 100644 --- a/dist/handlers/events/guildAuditLogEntryCreate.d.ts.map +++ b/dist/handlers/events/guildAuditLogEntryCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAuditLogEntryCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildAuditLogEntryCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildAuditLogEntryCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildAuditLogEntryCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildAuditLogEntryCreate.js b/dist/handlers/events/guildAuditLogEntryCreate.js index 0636dd3805..775334d41e 100644 --- a/dist/handlers/events/guildAuditLogEntryCreate.js +++ b/dist/handlers/events/guildAuditLogEntryCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildAuditLogEntryCreate.js.map b/dist/handlers/events/guildAuditLogEntryCreate.js.map index 800413bb8c..9bf1a6544e 100644 --- a/dist/handlers/events/guildAuditLogEntryCreate.js.map +++ b/dist/handlers/events/guildAuditLogEntryCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAuditLogEntryCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildAuditLogEntryCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,KAAK;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,iBAAiB,CAAC;CACzC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAuditLogEntryCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildAuditLogEntryCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,KAAK;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,iBAAiB,CAAC;CACzC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildAvailable.d.ts.map b/dist/handlers/events/guildAvailable.d.ts.map index 5ab5038ae0..f45c5284ec 100644 --- a/dist/handlers/events/guildAvailable.d.ts.map +++ b/dist/handlers/events/guildAvailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAvailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildAvailable.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildAvailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildAvailable.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildAvailable.js b/dist/handlers/events/guildAvailable.js index b9041a36df..24b89121eb 100644 --- a/dist/handlers/events/guildAvailable.js +++ b/dist/handlers/events/guildAvailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildAvailable.js.map b/dist/handlers/events/guildAvailable.js.map index 0a2d665b1f..24d6ef5d44 100644 --- a/dist/handlers/events/guildAvailable.js.map +++ b/dist/handlers/events/guildAvailable.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAvailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildAvailable.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAvailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildAvailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildBanAdd.d.ts.map b/dist/handlers/events/guildBanAdd.d.ts.map index 9e55f31c85..ab8ba544b7 100644 --- a/dist/handlers/events/guildBanAdd.d.ts.map +++ b/dist/handlers/events/guildBanAdd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBanAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildBanAdd.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"guildBanAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildBanAdd.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/guildBanAdd.js b/dist/handlers/events/guildBanAdd.js index eedbe29c25..c75b9ae917 100644 --- a/dist/handlers/events/guildBanAdd.js +++ b/dist/handlers/events/guildBanAdd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildBanAdd.js.map b/dist/handlers/events/guildBanAdd.js.map index 4fd5ae1350..978a8f245d 100644 --- a/dist/handlers/events/guildBanAdd.js.map +++ b/dist/handlers/events/guildBanAdd.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBanAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildBanAdd.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE;oBACD,KAAK,EAAE,CAAC,CAAC,KAAK;oBACd,IAAI,EAAE,CAAC,CAAC,IAAI;iBACf;gBACD,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,GAAG,EAAE;wBACD,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBanAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildBanAdd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE;oBACD,KAAK,EAAE,CAAC,CAAC,KAAK;oBACd,IAAI,EAAE,CAAC,CAAC,IAAI;iBACf;gBACD,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,GAAG,EAAE;wBACD,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildBanRemove.d.ts.map b/dist/handlers/events/guildBanRemove.d.ts.map index ceccfd4a39..47909f92af 100644 --- a/dist/handlers/events/guildBanRemove.d.ts.map +++ b/dist/handlers/events/guildBanRemove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBanRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildBanRemove.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"guildBanRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildBanRemove.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/guildBanRemove.js b/dist/handlers/events/guildBanRemove.js index 4a875dfc50..3576edd224 100644 --- a/dist/handlers/events/guildBanRemove.js +++ b/dist/handlers/events/guildBanRemove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildBanRemove.js.map b/dist/handlers/events/guildBanRemove.js.map index 8930be3161..5c0283bf0e 100644 --- a/dist/handlers/events/guildBanRemove.js.map +++ b/dist/handlers/events/guildBanRemove.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBanRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildBanRemove.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE;oBACD,KAAK,EAAE,CAAC,CAAC,KAAK;oBACd,IAAI,EAAE,CAAC,CAAC,IAAI;iBACf;gBACD,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,GAAG,EAAE;wBACD,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBanRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildBanRemove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE;oBACD,KAAK,EAAE,CAAC,CAAC,KAAK;oBACd,IAAI,EAAE,CAAC,CAAC,IAAI;iBACf;gBACD,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,GAAG,EAAE;wBACD,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildCreate.d.ts.map b/dist/handlers/events/guildCreate.d.ts.map index 289cb35abc..53f58013ee 100644 --- a/dist/handlers/events/guildCreate.d.ts.map +++ b/dist/handlers/events/guildCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"guildCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildCreate.js b/dist/handlers/events/guildCreate.js index ad166f4893..d67678b0f6 100644 --- a/dist/handlers/events/guildCreate.js +++ b/dist/handlers/events/guildCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildCreate.js.map b/dist/handlers/events/guildCreate.js.map index daf4c6b66f..888a0a6ddf 100644 --- a/dist/handlers/events/guildCreate.js.map +++ b/dist/handlers/events/guildCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QAEhE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QAEhE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildDelete.d.ts.map b/dist/handlers/events/guildDelete.d.ts.map index 00b94236c3..f30d5f4228 100644 --- a/dist/handlers/events/guildDelete.d.ts.map +++ b/dist/handlers/events/guildDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"guildDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/guildDelete.js b/dist/handlers/events/guildDelete.js index 47a2631f40..1e63df5e66 100644 --- a/dist/handlers/events/guildDelete.js +++ b/dist/handlers/events/guildDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildDelete.js.map b/dist/handlers/events/guildDelete.js.map index e796b6d774..639b73a9f2 100644 --- a/dist/handlers/events/guildDelete.js.map +++ b/dist/handlers/events/guildDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,6BAAa,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAE5D,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,6BAAa,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAE5D,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildIntegrationsUpdate.d.ts.map b/dist/handlers/events/guildIntegrationsUpdate.d.ts.map index 908028fce6..4fdcec8b03 100644 --- a/dist/handlers/events/guildIntegrationsUpdate.d.ts.map +++ b/dist/handlers/events/guildIntegrationsUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildIntegrationsUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildIntegrationsUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildIntegrationsUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildIntegrationsUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildIntegrationsUpdate.js b/dist/handlers/events/guildIntegrationsUpdate.js index ae92ae4564..ae31d5d0f6 100644 --- a/dist/handlers/events/guildIntegrationsUpdate.js +++ b/dist/handlers/events/guildIntegrationsUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildIntegrationsUpdate.js.map b/dist/handlers/events/guildIntegrationsUpdate.js.map index bf75aad3eb..5e9aa8b5ae 100644 --- a/dist/handlers/events/guildIntegrationsUpdate.js.map +++ b/dist/handlers/events/guildIntegrationsUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildIntegrationsUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildIntegrationsUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAA;QAE7D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;CACjC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildIntegrationsUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildIntegrationsUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAA;QAE7D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;CACjC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberAdd.d.ts.map b/dist/handlers/events/guildMemberAdd.d.ts.map index ad6dfc26d2..7819b19c71 100644 --- a/dist/handlers/events/guildMemberAdd.d.ts.map +++ b/dist/handlers/events/guildMemberAdd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAdd.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"guildMemberAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAdd.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberAdd.js b/dist/handlers/events/guildMemberAdd.js index 89dc717dd8..baa7267cb8 100644 --- a/dist/handlers/events/guildMemberAdd.js +++ b/dist/handlers/events/guildMemberAdd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildMemberAdd.js.map b/dist/handlers/events/guildMemberAdd.js.map index 3f2e650942..3bd8382c12 100644 --- a/dist/handlers/events/guildMemberAdd.js.map +++ b/dist/handlers/events/guildMemberAdd.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAdd.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAA;QAEtE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAdd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAA;QAEtE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberAvailable.d.ts.map b/dist/handlers/events/guildMemberAvailable.d.ts.map index 7f43af1c82..12678adc9a 100644 --- a/dist/handlers/events/guildMemberAvailable.d.ts.map +++ b/dist/handlers/events/guildMemberAvailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberAvailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAvailable.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"guildMemberAvailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAvailable.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberAvailable.js b/dist/handlers/events/guildMemberAvailable.js index 9b8c66f383..942c54c7cb 100644 --- a/dist/handlers/events/guildMemberAvailable.js +++ b/dist/handlers/events/guildMemberAvailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildMemberAvailable.js.map b/dist/handlers/events/guildMemberAvailable.js.map index 83b7dfde3d..cf609c9893 100644 --- a/dist/handlers/events/guildMemberAvailable.js.map +++ b/dist/handlers/events/guildMemberAvailable.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberAvailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAvailable.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAA;QAEtE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAA;QAE1D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberAvailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberAvailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAA;QAEtE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAA;QAE1D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberRemove.d.ts.map b/dist/handlers/events/guildMemberRemove.d.ts.map index 0ffea2d395..0365c40296 100644 --- a/dist/handlers/events/guildMemberRemove.d.ts.map +++ b/dist/handlers/events/guildMemberRemove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberRemove.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"guildMemberRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberRemove.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberRemove.js b/dist/handlers/events/guildMemberRemove.js index 5edae26d88..4d07d13f9f 100644 --- a/dist/handlers/events/guildMemberRemove.js +++ b/dist/handlers/events/guildMemberRemove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const InviteTracker_1 = require("../../structures/trackers/InviteTracker"); diff --git a/dist/handlers/events/guildMemberRemove.js.map b/dist/handlers/events/guildMemberRemove.js.map index 2703e04b5e..db7a7de6d5 100644 --- a/dist/handlers/events/guildMemberRemove.js.map +++ b/dist/handlers/events/guildMemberRemove.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberRemove.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,2EAAuE;AACvE,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,6BAAa,CAAC,aAAa,CAAC,CAAC,CAAC,CAAA;QAElE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAgB;gBACrB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAgB;wBACrB,GAAG,EAAE,CAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberRemove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,2EAAuE;AACvE,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,6BAAa,CAAC,aAAa,CAAC,CAAC,CAAC,CAAA;QAElE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAgB;gBACrB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,CAAgB;wBACrB,GAAG,EAAE,CAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberUpdate.d.ts.map b/dist/handlers/events/guildMemberUpdate.d.ts.map index 40dc72510c..91a7e5c98d 100644 --- a/dist/handlers/events/guildMemberUpdate.d.ts.map +++ b/dist/handlers/events/guildMemberUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberUpdate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkCE"} \ No newline at end of file +{"version":3,"file":"guildMemberUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberUpdate.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkCE"} \ No newline at end of file diff --git a/dist/handlers/events/guildMemberUpdate.js b/dist/handlers/events/guildMemberUpdate.js index 48c80c25b7..7dfea024be 100644 --- a/dist/handlers/events/guildMemberUpdate.js +++ b/dist/handlers/events/guildMemberUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const InviteTracker_1 = require("../../structures/trackers/InviteTracker"); diff --git a/dist/handlers/events/guildMemberUpdate.js.map b/dist/handlers/events/guildMemberUpdate.js.map index 71eb7bca1d..1ab420b087 100644 --- a/dist/handlers/events/guildMemberUpdate.js.map +++ b/dist/handlers/events/guildMemberUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberUpdate.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,2EAAuE;AACvE,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,IACI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAC9B,KAAK,CAAC,EAAE,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE;YACzB,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC;YACnC,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC,EACtC;YACE,yBAAyB;YACzB,MAAM,6BAAa,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACzC;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAkB;wBACvB,GAAG,EAAE,KAAoB;qBAC5B;iBACJ;gBACD,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildMemberUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,2EAAuE;AACvE,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,IACI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAC9B,KAAK,CAAC,EAAE,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE;YACzB,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC;YACnC,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC,EACtC;YACE,yBAAyB;YACzB,MAAM,6BAAa,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACzC;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QAEvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAkB;wBACvB,GAAG,EAAE,KAAoB;qBAC5B;iBACJ;gBACD,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventCreate.d.ts.map b/dist/handlers/events/guildScheduledEventCreate.d.ts.map index 20dfe30e33..6eee5d33d2 100644 --- a/dist/handlers/events/guildScheduledEventCreate.d.ts.map +++ b/dist/handlers/events/guildScheduledEventCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventCreate.js b/dist/handlers/events/guildScheduledEventCreate.js index 87be157079..382359e0d4 100644 --- a/dist/handlers/events/guildScheduledEventCreate.js +++ b/dist/handlers/events/guildScheduledEventCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildScheduledEventCreate.js.map b/dist/handlers/events/guildScheduledEventCreate.js.map index 51258a45b1..aa9b0d8cac 100644 --- a/dist/handlers/events/guildScheduledEventCreate.js.map +++ b/dist/handlers/events/guildScheduledEventCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventDelete.d.ts.map b/dist/handlers/events/guildScheduledEventDelete.d.ts.map index 1a8b6f0d20..c6bf381c97 100644 --- a/dist/handlers/events/guildScheduledEventDelete.d.ts.map +++ b/dist/handlers/events/guildScheduledEventDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventDelete.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventDelete.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventDelete.js b/dist/handlers/events/guildScheduledEventDelete.js index 6a3d29debf..e19f7d48d3 100644 --- a/dist/handlers/events/guildScheduledEventDelete.js +++ b/dist/handlers/events/guildScheduledEventDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildScheduledEventDelete.js.map b/dist/handlers/events/guildScheduledEventDelete.js.map index f1642c1e60..3647b6f3e3 100644 --- a/dist/handlers/events/guildScheduledEventDelete.js.map +++ b/dist/handlers/events/guildScheduledEventDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventDelete.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,GAAG,GAAwB,GAAG,CAAA;QACpC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,GAAG,GAAwB,GAAG,CAAA;QACpC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUpdate.d.ts.map b/dist/handlers/events/guildScheduledEventUpdate.d.ts.map index 665088c04c..21381a52e9 100644 --- a/dist/handlers/events/guildScheduledEventUpdate.d.ts.map +++ b/dist/handlers/events/guildScheduledEventUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUpdate.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUpdate.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUpdate.js b/dist/handlers/events/guildScheduledEventUpdate.js index b8a05835d6..4af90622d5 100644 --- a/dist/handlers/events/guildScheduledEventUpdate.js +++ b/dist/handlers/events/guildScheduledEventUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildScheduledEventUpdate.js.map b/dist/handlers/events/guildScheduledEventUpdate.js.map index 9ad9cf1aa7..ce4ae1bf9c 100644 --- a/dist/handlers/events/guildScheduledEventUpdate.js.map +++ b/dist/handlers/events/guildScheduledEventUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUpdate.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAA0B;qBAClC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAA;QAE/D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAA0B;qBAClC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUserAdd.d.ts.map b/dist/handlers/events/guildScheduledEventUserAdd.d.ts.map index 57a02eed83..1ea315e25b 100644 --- a/dist/handlers/events/guildScheduledEventUserAdd.d.ts.map +++ b/dist/handlers/events/guildScheduledEventUserAdd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUserAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserAdd.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUserAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserAdd.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUserAdd.js b/dist/handlers/events/guildScheduledEventUserAdd.js index 9f1d8c6c3d..4b4ea04fbd 100644 --- a/dist/handlers/events/guildScheduledEventUserAdd.js +++ b/dist/handlers/events/guildScheduledEventUserAdd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildScheduledEventUserAdd.js.map b/dist/handlers/events/guildScheduledEventUserAdd.js.map index 1fb2654b55..62e564eeb3 100644 --- a/dist/handlers/events/guildScheduledEventUserAdd.js.map +++ b/dist/handlers/events/guildScheduledEventUserAdd.js.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUserAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserAdd.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAwB;wBAC7B,GAAG,EAAE,CAAwB;qBAChC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUserAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserAdd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAwB;wBAC7B,GAAG,EAAE,CAAwB;qBAChC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUserRemove.d.ts.map b/dist/handlers/events/guildScheduledEventUserRemove.d.ts.map index 24f1109fc2..2f19db4c73 100644 --- a/dist/handlers/events/guildScheduledEventUserRemove.d.ts.map +++ b/dist/handlers/events/guildScheduledEventUserRemove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUserRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserRemove.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUserRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserRemove.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildScheduledEventUserRemove.js b/dist/handlers/events/guildScheduledEventUserRemove.js index 674d43bfd2..8c65bf24b7 100644 --- a/dist/handlers/events/guildScheduledEventUserRemove.js +++ b/dist/handlers/events/guildScheduledEventUserRemove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildScheduledEventUserRemove.js.map b/dist/handlers/events/guildScheduledEventUserRemove.js.map index d9253fef17..4436ce144c 100644 --- a/dist/handlers/events/guildScheduledEventUserRemove.js.map +++ b/dist/handlers/events/guildScheduledEventUserRemove.js.map @@ -1 +1 @@ -{"version":3,"file":"guildScheduledEventUserRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserRemove.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA;QAEnE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAwB;wBAC7B,GAAG,EAAE,CAAwB;qBAChC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildScheduledEventUserRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/guildScheduledEventUserRemove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA;QAEnE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,cAAc,EAAE;wBACZ,GAAG,EAAE,CAAwB;wBAC7B,GAAG,EAAE,CAAwB;qBAChC;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;CACpC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundCreate.d.ts.map b/dist/handlers/events/guildSoundboardSoundCreate.d.ts.map index 5bb8d81b34..cde9e5e29c 100644 --- a/dist/handlers/events/guildSoundboardSoundCreate.d.ts.map +++ b/dist/handlers/events/guildSoundboardSoundCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundCreate.js b/dist/handlers/events/guildSoundboardSoundCreate.js index 575c94b309..242283f0e7 100644 --- a/dist/handlers/events/guildSoundboardSoundCreate.js +++ b/dist/handlers/events/guildSoundboardSoundCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildSoundboardSoundCreate.js.map b/dist/handlers/events/guildSoundboardSoundCreate.js.map index 250337d970..a8078309cf 100644 --- a/dist/handlers/events/guildSoundboardSoundCreate.js.map +++ b/dist/handlers/events/guildSoundboardSoundCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundDelete.d.ts.map b/dist/handlers/events/guildSoundboardSoundDelete.d.ts.map index 6c213ec377..734962820d 100644 --- a/dist/handlers/events/guildSoundboardSoundDelete.d.ts.map +++ b/dist/handlers/events/guildSoundboardSoundDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundDelete.js b/dist/handlers/events/guildSoundboardSoundDelete.js index dc267af476..384f39dd5a 100644 --- a/dist/handlers/events/guildSoundboardSoundDelete.js +++ b/dist/handlers/events/guildSoundboardSoundDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildSoundboardSoundDelete.js.map b/dist/handlers/events/guildSoundboardSoundDelete.js.map index ff5057e840..bc229d1d05 100644 --- a/dist/handlers/events/guildSoundboardSoundDelete.js.map +++ b/dist/handlers/events/guildSoundboardSoundDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundUpdate.d.ts.map b/dist/handlers/events/guildSoundboardSoundUpdate.d.ts.map index 31fbddada5..9ed9ebde28 100644 --- a/dist/handlers/events/guildSoundboardSoundUpdate.d.ts.map +++ b/dist/handlers/events/guildSoundboardSoundUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildSoundboardSoundUpdate.js b/dist/handlers/events/guildSoundboardSoundUpdate.js index 35bd57ecd2..0ef8696a29 100644 --- a/dist/handlers/events/guildSoundboardSoundUpdate.js +++ b/dist/handlers/events/guildSoundboardSoundUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildSoundboardSoundUpdate.js.map b/dist/handlers/events/guildSoundboardSoundUpdate.js.map index 54658b4004..e2d1250b8d 100644 --- a/dist/handlers/events/guildSoundboardSoundUpdate.js.map +++ b/dist/handlers/events/guildSoundboardSoundUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSoundUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSoundUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildSoundboardSoundUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,eAAe,EAAE;wBACb,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildUnavailable.d.ts.map b/dist/handlers/events/guildUnavailable.d.ts.map index ce612c3ee2..c42afd7cf3 100644 --- a/dist/handlers/events/guildUnavailable.d.ts.map +++ b/dist/handlers/events/guildUnavailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildUnavailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildUnavailable.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildUnavailable.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildUnavailable.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildUnavailable.js b/dist/handlers/events/guildUnavailable.js index 8951a9bbeb..e23d678a80 100644 --- a/dist/handlers/events/guildUnavailable.js +++ b/dist/handlers/events/guildUnavailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildUnavailable.js.map b/dist/handlers/events/guildUnavailable.js.map index dcd2059f01..e42c8d614a 100644 --- a/dist/handlers/events/guildUnavailable.js.map +++ b/dist/handlers/events/guildUnavailable.js.map @@ -1 +1 @@ -{"version":3,"file":"guildUnavailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildUnavailable.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAA;QAEtD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildUnavailable.js","sourceRoot":"","sources":["../../../src/handlers/events/guildUnavailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAA;QAEtD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/guildUpdate.d.ts.map b/dist/handlers/events/guildUpdate.d.ts.map index 08af7b4733..94209bd877 100644 --- a/dist/handlers/events/guildUpdate.d.ts.map +++ b/dist/handlers/events/guildUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/guildUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/guildUpdate.js b/dist/handlers/events/guildUpdate.js index f5d4509579..746e061c68 100644 --- a/dist/handlers/events/guildUpdate.js +++ b/dist/handlers/events/guildUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/guildUpdate.js.map b/dist/handlers/events/guildUpdate.js.map index 53fcc3053d..def6c31a62 100644 --- a/dist/handlers/events/guildUpdate.js.map +++ b/dist/handlers/events/guildUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/guildUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/interactionCreate.d.ts.map b/dist/handlers/events/interactionCreate.d.ts.map index 1caae51f17..2c194e8d7b 100644 --- a/dist/handlers/events/interactionCreate.d.ts.map +++ b/dist/handlers/events/interactionCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/interactionCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAgCE"} \ No newline at end of file +{"version":3,"file":"interactionCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/interactionCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAgCE"} \ No newline at end of file diff --git a/dist/handlers/events/interactionCreate.js b/dist/handlers/events/interactionCreate.js index 16704c95de..f479244eb0 100644 --- a/dist/handlers/events/interactionCreate.js +++ b/dist/handlers/events/interactionCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/interactionCreate.js.map b/dist/handlers/events/interactionCreate.js.map index 58e827407f..8b61872696 100644 --- a/dist/handlers/events/interactionCreate.js.map +++ b/dist/handlers/events/interactionCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/interactionCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uFAAuF;IACpG,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,CAAC,CAAC,SAAS,EAAE,EAAE;YACf,MAAM,OAAO,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YAC/C,IAAI,OAAO,EAAE;gBACT,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO,EAAE,IAAI;oBACb,IAAI,EAAE,OAAO,CAAC,QAAQ;oBACtB,GAAG,EAAE,CAAC;iBACT,CAAC,CAAA;aACL;SACJ;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAC9B,mBAAmB,EACnB,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,CAAC,CACvC,CAAA;QAED,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/interactionCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uFAAuF;IACpG,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,IAAI,CAAC,CAAC,SAAS,EAAE,EAAE;YACf,MAAM,OAAO,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YAC/C,IAAI,OAAO,EAAE;gBACT,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO,EAAE,IAAI;oBACb,IAAI,EAAE,OAAO,CAAC,QAAQ;oBACtB,GAAG,EAAE,CAAC;iBACT,CAAC,CAAA;aACL;SACJ;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAC9B,mBAAmB,EACnB,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,CAAC,CACvC,CAAA;QAED,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/inviteCreate.d.ts.map b/dist/handlers/events/inviteCreate.d.ts.map index 5148ac49ea..3086837653 100644 --- a/dist/handlers/events/inviteCreate.d.ts.map +++ b/dist/handlers/events/inviteCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inviteCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/inviteCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"inviteCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/inviteCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/inviteCreate.js b/dist/handlers/events/inviteCreate.js index 69a40bb62a..2594f5018b 100644 --- a/dist/handlers/events/inviteCreate.js +++ b/dist/handlers/events/inviteCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/inviteCreate.js.map b/dist/handlers/events/inviteCreate.js.map index c1c142d74e..4ce3e4bead 100644 --- a/dist/handlers/events/inviteCreate.js.map +++ b/dist/handlers/events/inviteCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"inviteCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/inviteCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAA;QAEhF,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inviteCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/inviteCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAA;QAEhF,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/inviteDelete.d.ts.map b/dist/handlers/events/inviteDelete.d.ts.map index e982ad1405..68b3f0b3a1 100644 --- a/dist/handlers/events/inviteDelete.d.ts.map +++ b/dist/handlers/events/inviteDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inviteDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/inviteDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"inviteDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/inviteDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA0BE"} \ No newline at end of file diff --git a/dist/handlers/events/inviteDelete.js b/dist/handlers/events/inviteDelete.js index cb659a94c7..6b00cff8cd 100644 --- a/dist/handlers/events/inviteDelete.js +++ b/dist/handlers/events/inviteDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/inviteDelete.js.map b/dist/handlers/events/inviteDelete.js.map index bd4d79aae1..afb6cf88ce 100644 --- a/dist/handlers/events/inviteDelete.js.map +++ b/dist/handlers/events/inviteDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"inviteDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/inviteDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAA;QAEhF,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inviteDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/inviteDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AACnF,2EAAuE;AAEvE,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO;YAAE,MAAM,6BAAa,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAA;QAEhF,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageCreate.d.ts.map b/dist/handlers/events/messageCreate.d.ts.map index 99cb824f1a..9a4424dde9 100644 --- a/dist/handlers/events/messageCreate.d.ts.map +++ b/dist/handlers/events/messageCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuCE"} \ No newline at end of file +{"version":3,"file":"messageCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuCE"} \ No newline at end of file diff --git a/dist/handlers/events/messageCreate.js b/dist/handlers/events/messageCreate.js index 195bfedc92..6da2debdf2 100644 --- a/dist/handlers/events/messageCreate.js +++ b/dist/handlers/events/messageCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const Interpreter_1 = require("../../core/Interpreter"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageCreate.js.map b/dist/handlers/events/messageCreate.js.map index 0d817961ba..7e1a70668d 100644 --- a/dist/handlers/events/messageCreate.js.map +++ b/dist/handlers/events/messageCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"messageCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/messageCreate.ts"],"names":[],"mappings":";;AAAA,wDAAoD;AACpD,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,KAAK,WAAW,OAAO;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAE5C,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO;aACvB,KAAK,CAAC,MAAM,EAAE,MAAM,IAAI,CAAC,CAAC;aAC1B,IAAI,EAAE;aACN,KAAK,CAAC,KAAK,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAE3D,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,MAAM;QACtD,gCAAgC;QAChC,CAAC,GAAG,EAAE,EAAE,CACJ,CAAC,GAAG,CAAC,IAAI;YACT,EAAC,yDAAyD;YACtD,CAAC,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAK,CAAC,CAAC;gBAC1D,uCAAuC;gBACvC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CACnD,CAAA;QAED,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,yBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,OAAO;gBACZ,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,OAAO;qBACf;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI;aACP,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/messageCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,wDAAoD;AACpD,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,KAAK,WAAW,OAAO;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAE5C,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO;aACvB,KAAK,CAAC,MAAM,EAAE,MAAM,IAAI,CAAC,CAAC;aAC1B,IAAI,EAAE;aACN,KAAK,CAAC,KAAK,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAE3D,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,MAAM;QACtD,gCAAgC;QAChC,CAAC,GAAG,EAAE,EAAE,CACJ,CAAC,GAAG,CAAC,IAAI;YACT,EAAC,yDAAyD;YACtD,CAAC,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAK,CAAC,CAAC;gBAC1D,uCAAuC;gBACvC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CACnD,CAAA;QAED,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,yBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,OAAO;gBACZ,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,OAAO;qBACf;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI;aACP,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageDelete.d.ts.map b/dist/handlers/events/messageDelete.d.ts.map index ce62e31ba0..8a1aa68f07 100644 --- a/dist/handlers/events/messageDelete.d.ts.map +++ b/dist/handlers/events/messageDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageDelete.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"messageDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageDelete.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageDelete.js b/dist/handlers/events/messageDelete.js index 7df5256edc..ba4f9438c7 100644 --- a/dist/handlers/events/messageDelete.js +++ b/dist/handlers/events/messageDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageDelete.js.map b/dist/handlers/events/messageDelete.js.map index 36cdcd6532..f406ce5f05 100644 --- a/dist/handlers/events/messageDelete.js.map +++ b/dist/handlers/events/messageDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"messageDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/messageDelete.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAY;gBACjB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAY;wBACjB,GAAG,EAAE,CAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,CAAC,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC;aAC/B,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/messageDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAY;gBACjB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAY;wBACjB,GAAG,EAAE,CAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,CAAC,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC;aAC/B,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageDeleteBulk.d.ts.map b/dist/handlers/events/messageDeleteBulk.d.ts.map index 6b75ac1bae..a0bf068100 100644 --- a/dist/handlers/events/messageDeleteBulk.d.ts.map +++ b/dist/handlers/events/messageDeleteBulk.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageDeleteBulk.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageDeleteBulk.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"messageDeleteBulk.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageDeleteBulk.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageDeleteBulk.js b/dist/handlers/events/messageDeleteBulk.js index 28e50f3f3a..a4285c2dd6 100644 --- a/dist/handlers/events/messageDeleteBulk.js +++ b/dist/handlers/events/messageDeleteBulk.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const core_1 = require("../../core"); diff --git a/dist/handlers/events/messageDeleteBulk.js.map b/dist/handlers/events/messageDeleteBulk.js.map index 5ee9cff89f..0f3a303fc2 100644 --- a/dist/handlers/events/messageDeleteBulk.js.map +++ b/dist/handlers/events/messageDeleteBulk.js.map @@ -1 +1 @@ -{"version":3,"file":"messageDeleteBulk.js","sourceRoot":"","sources":["../../../src/handlers/events/messageDeleteBulk.ts"],"names":[],"mappings":";;AAAA,2CAAuC;AACvC,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK,WAAW,EAAE,EAAE,OAAO;QACjC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,EAAE,YAAY,uBAAU,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAE,CAAA;QAE3E,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,OAAO;gBACZ,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,OAAO;qBACf;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,CAAC;CAC7B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageDeleteBulk.js","sourceRoot":"","sources":["../../../src/handlers/events/messageDeleteBulk.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAuC;AACvC,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK,WAAW,EAAE,EAAE,OAAO;QACjC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,EAAE,YAAY,uBAAU,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAE,CAAA;QAE3E,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,OAAO;gBACZ,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,OAAO;qBACf;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,CAAC;CAC7B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messagePollVoteAdd.d.ts.map b/dist/handlers/events/messagePollVoteAdd.d.ts.map index 1fe20cb797..f38397dfa0 100644 --- a/dist/handlers/events/messagePollVoteAdd.d.ts.map +++ b/dist/handlers/events/messagePollVoteAdd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messagePollVoteAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteAdd.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"messagePollVoteAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteAdd.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/messagePollVoteAdd.js b/dist/handlers/events/messagePollVoteAdd.js index c9f5796b64..47afce9b04 100644 --- a/dist/handlers/events/messagePollVoteAdd.js +++ b/dist/handlers/events/messagePollVoteAdd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messagePollVoteAdd.js.map b/dist/handlers/events/messagePollVoteAdd.js.map index 6b929558b3..f51a9aed4a 100644 --- a/dist/handlers/events/messagePollVoteAdd.js.map +++ b/dist/handlers/events/messagePollVoteAdd.js.map @@ -1 +1 @@ -{"version":3,"file":"messagePollVoteAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteAdd.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,MAAM,EAAE,MAAM;QACpC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;QAE3C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;CACvD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messagePollVoteAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteAdd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,MAAM,EAAE,MAAM;QACpC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;QAE3C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;CACvD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messagePollVoteRemove.d.ts.map b/dist/handlers/events/messagePollVoteRemove.d.ts.map index 5c8417fbb8..f4fa75253e 100644 --- a/dist/handlers/events/messagePollVoteRemove.d.ts.map +++ b/dist/handlers/events/messagePollVoteRemove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messagePollVoteRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteRemove.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"messagePollVoteRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteRemove.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAyBE"} \ No newline at end of file diff --git a/dist/handlers/events/messagePollVoteRemove.js b/dist/handlers/events/messagePollVoteRemove.js index 3942af7116..cb828a4753 100644 --- a/dist/handlers/events/messagePollVoteRemove.js +++ b/dist/handlers/events/messagePollVoteRemove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messagePollVoteRemove.js.map b/dist/handlers/events/messagePollVoteRemove.js.map index 72bb74860f..64dfb205e4 100644 --- a/dist/handlers/events/messagePollVoteRemove.js.map +++ b/dist/handlers/events/messagePollVoteRemove.js.map @@ -1 +1 @@ -{"version":3,"file":"messagePollVoteRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteRemove.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,KAAK,WAAW,MAAM,EAAE,MAAM;QACpC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;QAE3C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAA;QAE3D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;CACvD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messagePollVoteRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/messagePollVoteRemove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,KAAK,WAAW,MAAM,EAAE,MAAM;QACpC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;QAE3C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAA;QAE3D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,IAAI;gBACT,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;CACvD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionAdd.d.ts.map b/dist/handlers/events/messageReactionAdd.d.ts.map index 6cb67423fb..11f25146ce 100644 --- a/dist/handlers/events/messageReactionAdd.d.ts.map +++ b/dist/handlers/events/messageReactionAdd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionAdd.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"messageReactionAdd.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionAdd.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionAdd.js b/dist/handlers/events/messageReactionAdd.js index 278e651e32..9be4522f47 100644 --- a/dist/handlers/events/messageReactionAdd.js +++ b/dist/handlers/events/messageReactionAdd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageReactionAdd.js.map b/dist/handlers/events/messageReactionAdd.js.map index 91fbeaa20f..50a91dc86b 100644 --- a/dist/handlers/events/messageReactionAdd.js.map +++ b/dist/handlers/events/messageReactionAdd.js.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionAdd.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,IAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;CAC/D,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageReactionAdd.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionAdd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,IAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;CAC/D,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemove.d.ts.map b/dist/handlers/events/messageReactionRemove.d.ts.map index 3b8b7cf940..f6d1b2d277 100644 --- a/dist/handlers/events/messageReactionRemove.d.ts.map +++ b/dist/handlers/events/messageReactionRemove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemove.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"messageReactionRemove.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemove.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemove.js b/dist/handlers/events/messageReactionRemove.js index ddce520312..61f568a103 100644 --- a/dist/handlers/events/messageReactionRemove.js +++ b/dist/handlers/events/messageReactionRemove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageReactionRemove.js.map b/dist/handlers/events/messageReactionRemove.js.map index c3ce53e8ab..2c376da90f 100644 --- a/dist/handlers/events/messageReactionRemove.js.map +++ b/dist/handlers/events/messageReactionRemove.js.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemove.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAA;QAE3D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,IAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageReactionRemove.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC,EAAE,IAAI;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAA;QAE3D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,IAAY;qBACpB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemoveAll.d.ts.map b/dist/handlers/events/messageReactionRemoveAll.d.ts.map index 807b8353ad..adbac32775 100644 --- a/dist/handlers/events/messageReactionRemoveAll.d.ts.map +++ b/dist/handlers/events/messageReactionRemoveAll.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemoveAll.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveAll.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"messageReactionRemoveAll.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveAll.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemoveAll.js b/dist/handlers/events/messageReactionRemoveAll.js index a66d8b109a..27b578bfd3 100644 --- a/dist/handlers/events/messageReactionRemoveAll.js +++ b/dist/handlers/events/messageReactionRemoveAll.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageReactionRemoveAll.js.map b/dist/handlers/events/messageReactionRemoveAll.js.map index 8926b5e8e5..509da20908 100644 --- a/dist/handlers/events/messageReactionRemoveAll.js.map +++ b/dist/handlers/events/messageReactionRemoveAll.js.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemoveAll.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveAll.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageReactionRemoveAll.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveAll.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAA;QAE9D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemoveEmoji.d.ts.map b/dist/handlers/events/messageReactionRemoveEmoji.d.ts.map index f90908847d..786894dcd6 100644 --- a/dist/handlers/events/messageReactionRemoveEmoji.d.ts.map +++ b/dist/handlers/events/messageReactionRemoveEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemoveEmoji.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveEmoji.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"messageReactionRemoveEmoji.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveEmoji.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/messageReactionRemoveEmoji.js b/dist/handlers/events/messageReactionRemoveEmoji.js index bae89cd57b..79d1fff114 100644 --- a/dist/handlers/events/messageReactionRemoveEmoji.js +++ b/dist/handlers/events/messageReactionRemoveEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/messageReactionRemoveEmoji.js.map b/dist/handlers/events/messageReactionRemoveEmoji.js.map index dfa0d78dfd..dcb2ccd387 100644 --- a/dist/handlers/events/messageReactionRemoveEmoji.js.map +++ b/dist/handlers/events/messageReactionRemoveEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"messageReactionRemoveEmoji.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveEmoji.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageReactionRemoveEmoji.js","sourceRoot":"","sources":["../../../src/handlers/events/messageReactionRemoveEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,OAAO,EAAE,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAA;QAEhE,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAoB;gBACzB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/messageUpdate.d.ts.map b/dist/handlers/events/messageUpdate.d.ts.map index 249c85fde2..2acb8dc797 100644 --- a/dist/handlers/events/messageUpdate.d.ts.map +++ b/dist/handlers/events/messageUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageUpdate.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA8BE"} \ No newline at end of file +{"version":3,"file":"messageUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/messageUpdate.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAGnF,wBA8BE"} \ No newline at end of file diff --git a/dist/handlers/events/messageUpdate.js b/dist/handlers/events/messageUpdate.js index 3338d9af05..93036cdbf5 100644 --- a/dist/handlers/events/messageUpdate.js +++ b/dist/handlers/events/messageUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/handlers/events/messageUpdate.js.map b/dist/handlers/events/messageUpdate.js.map index 53b346e31e..0b5c47e198 100644 --- a/dist/handlers/events/messageUpdate.js.map +++ b/dist/handlers/events/messageUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"messageUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/messageUpdate.ts"],"names":[],"mappings":";;;;;AAAA,2CAAoC;AACpC,qCAAwC;AACxC,uFAAmF;AACnF,oEAA2C;AAE3C,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,IAAI,KAAK,YAAY,oBAAO,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;YACxD,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,KAAK,QAAQ,IAAI,IAAI,CAAC,GAAG,EAAE,GAAG,KAAK,CAAC,gBAAgB,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;gBACrH,MAAM,uBAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAY,CAAC,CAAA;aACxD;SACJ;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAgB;gBACrB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,GAAc;wBACnB,GAAG,EAAE,KAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC;aACnC,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/messageUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAoC;AACpC,qCAAwC;AACxC,uFAAmF;AACnF,oEAA2C;AAE3C,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,IAAI,KAAK,YAAY,oBAAO,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;YACxD,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,KAAK,QAAQ,IAAI,IAAI,CAAC,GAAG,EAAE,GAAG,KAAK,CAAC,gBAAgB,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;gBACrH,MAAM,uBAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAY,CAAC,CAAA;aACxD;SACJ;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAgB;gBACrB,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,GAAc;wBACnB,GAAG,EAAE,KAAgB;qBACxB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC;aACnC,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;CAC/C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/presenceUpdate.d.ts.map b/dist/handlers/events/presenceUpdate.d.ts.map index 19912cf6aa..735b7035e1 100644 --- a/dist/handlers/events/presenceUpdate.d.ts.map +++ b/dist/handlers/events/presenceUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"presenceUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/presenceUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"presenceUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/presenceUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/presenceUpdate.js b/dist/handlers/events/presenceUpdate.js index b68f13d7d3..f8cd122930 100644 --- a/dist/handlers/events/presenceUpdate.js +++ b/dist/handlers/events/presenceUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/presenceUpdate.js.map b/dist/handlers/events/presenceUpdate.js.map index a253963ff8..a3e028156a 100644 --- a/dist/handlers/events/presenceUpdate.js.map +++ b/dist/handlers/events/presenceUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"presenceUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/presenceUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,QAAQ,EAAE;wBACN,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,gBAAgB,CAAC;CACxC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"presenceUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/presenceUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,QAAQ,EAAE;wBACN,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,gBAAgB,CAAC;CACxC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/roleCreate.d.ts.map b/dist/handlers/events/roleCreate.d.ts.map index c4a0c7caa3..beb31a2e2e 100644 --- a/dist/handlers/events/roleCreate.d.ts.map +++ b/dist/handlers/events/roleCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"roleCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/roleCreate.js b/dist/handlers/events/roleCreate.js index 8244b95876..3ddeb93f24 100644 --- a/dist/handlers/events/roleCreate.js +++ b/dist/handlers/events/roleCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/roleCreate.js.map b/dist/handlers/events/roleCreate.js.map index 7e0977d40a..3e6eb30757 100644 --- a/dist/handlers/events/roleCreate.js.map +++ b/dist/handlers/events/roleCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"roleCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/roleCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/roleCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/roleDelete.d.ts.map b/dist/handlers/events/roleDelete.d.ts.map index 0ee6fc8f4d..7866f237be 100644 --- a/dist/handlers/events/roleDelete.d.ts.map +++ b/dist/handlers/events/roleDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"roleDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/roleDelete.js b/dist/handlers/events/roleDelete.js index 948cba6ccd..2e711f184f 100644 --- a/dist/handlers/events/roleDelete.js +++ b/dist/handlers/events/roleDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/roleDelete.js.map b/dist/handlers/events/roleDelete.js.map index 38ef9d75e0..49946f6faf 100644 --- a/dist/handlers/events/roleDelete.js.map +++ b/dist/handlers/events/roleDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"roleDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/roleDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG;wBACH,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/roleDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG;wBACH,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/roleUpdate.d.ts.map b/dist/handlers/events/roleUpdate.d.ts.map index fe0cd5038f..456e7fc747 100644 --- a/dist/handlers/events/roleUpdate.d.ts.map +++ b/dist/handlers/events/roleUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"roleUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/roleUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/roleUpdate.js b/dist/handlers/events/roleUpdate.js index 7c0fba0350..7103bb7908 100644 --- a/dist/handlers/events/roleUpdate.js +++ b/dist/handlers/events/roleUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/roleUpdate.js.map b/dist/handlers/events/roleUpdate.js.map index 06d2532a66..78184050e7 100644 --- a/dist/handlers/events/roleUpdate.js.map +++ b/dist/handlers/events/roleUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"roleUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/roleUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/roleUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/shardDisconnect.d.ts.map b/dist/handlers/events/shardDisconnect.d.ts.map index fcbfeaa52d..0ea1abf6c1 100644 --- a/dist/handlers/events/shardDisconnect.d.ts.map +++ b/dist/handlers/events/shardDisconnect.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardDisconnect.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardDisconnect.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"shardDisconnect.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardDisconnect.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/shardDisconnect.js b/dist/handlers/events/shardDisconnect.js index 89d14f3de5..69ea9250bc 100644 --- a/dist/handlers/events/shardDisconnect.js +++ b/dist/handlers/events/shardDisconnect.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/shardDisconnect.js.map b/dist/handlers/events/shardDisconnect.js.map index ffcb1b81d3..7d6ac47c95 100644 --- a/dist/handlers/events/shardDisconnect.js.map +++ b/dist/handlers/events/shardDisconnect.js.map @@ -1 +1 @@ -{"version":3,"file":"shardDisconnect.js","sourceRoot":"","sources":["../../../src/handlers/events/shardDisconnect.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,KAAK,EAAE,OAAO;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAA;QACrD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardDisconnect.js","sourceRoot":"","sources":["../../../src/handlers/events/shardDisconnect.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,KAAK,EAAE,OAAO;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAA;QACrD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/shardError.d.ts.map b/dist/handlers/events/shardError.d.ts.map index 709d3a35ae..8ed99bf481 100644 --- a/dist/handlers/events/shardError.d.ts.map +++ b/dist/handlers/events/shardError.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardError.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardError.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"shardError.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardError.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/shardError.js b/dist/handlers/events/shardError.js index 3163c5ee59..78b0bcc148 100644 --- a/dist/handlers/events/shardError.js +++ b/dist/handlers/events/shardError.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/shardError.js.map b/dist/handlers/events/shardError.js.map index 493df03f95..3320edc758 100644 --- a/dist/handlers/events/shardError.js.map +++ b/dist/handlers/events/shardError.js.map @@ -1 +1 @@ -{"version":3,"file":"shardError.js","sourceRoot":"","sources":["../../../src/handlers/events/shardError.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,GAAG;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAChD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,GAAG,CAAC,OAAO;oBACnB,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardError.js","sourceRoot":"","sources":["../../../src/handlers/events/shardError.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,GAAG;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAChD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,GAAG,CAAC,OAAO;oBACnB,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/shardReady.d.ts.map b/dist/handlers/events/shardReady.d.ts.map index bbf6292521..00c20a55cf 100644 --- a/dist/handlers/events/shardReady.d.ts.map +++ b/dist/handlers/events/shardReady.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardReady.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardReady.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"shardReady.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardReady.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/shardReady.js b/dist/handlers/events/shardReady.js index ebc5d76b7a..69de8355d0 100644 --- a/dist/handlers/events/shardReady.js +++ b/dist/handlers/events/shardReady.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/shardReady.js.map b/dist/handlers/events/shardReady.js.map index e67a0fa05f..9332f948a9 100644 --- a/dist/handlers/events/shardReady.js.map +++ b/dist/handlers/events/shardReady.js.map @@ -1 +1 @@ -{"version":3,"file":"shardReady.js","sourceRoot":"","sources":["../../../src/handlers/events/shardReady.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAChD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardReady.js","sourceRoot":"","sources":["../../../src/handlers/events/shardReady.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAChD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/shardReconnecting.d.ts.map b/dist/handlers/events/shardReconnecting.d.ts.map index 28bb301ec9..ea3bec86e5 100644 --- a/dist/handlers/events/shardReconnecting.d.ts.map +++ b/dist/handlers/events/shardReconnecting.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardReconnecting.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardReconnecting.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"shardReconnecting.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardReconnecting.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/shardReconnecting.js b/dist/handlers/events/shardReconnecting.js index cbc75e8934..20a4a3e256 100644 --- a/dist/handlers/events/shardReconnecting.js +++ b/dist/handlers/events/shardReconnecting.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/shardReconnecting.js.map b/dist/handlers/events/shardReconnecting.js.map index 1d5a650604..6722bda2f6 100644 --- a/dist/handlers/events/shardReconnecting.js.map +++ b/dist/handlers/events/shardReconnecting.js.map @@ -1 +1 @@ -{"version":3,"file":"shardReconnecting.js","sourceRoot":"","sources":["../../../src/handlers/events/shardReconnecting.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QACvD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;IACD,WAAW,EAAE,sDAAsD;CACtE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardReconnecting.js","sourceRoot":"","sources":["../../../src/handlers/events/shardReconnecting.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAA;QACvD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;IACD,WAAW,EAAE,sDAAsD;CACtE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/shardResume.d.ts.map b/dist/handlers/events/shardResume.d.ts.map index 61c69b838b..2a296b0cbd 100644 --- a/dist/handlers/events/shardResume.d.ts.map +++ b/dist/handlers/events/shardResume.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardResume.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardResume.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"shardResume.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/shardResume.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/shardResume.js b/dist/handlers/events/shardResume.js index 68cd750e3a..f70fe14e75 100644 --- a/dist/handlers/events/shardResume.js +++ b/dist/handlers/events/shardResume.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/shardResume.js.map b/dist/handlers/events/shardResume.js.map index 27789dda66..29483ad662 100644 --- a/dist/handlers/events/shardResume.js.map +++ b/dist/handlers/events/shardResume.js.map @@ -1 +1 @@ -{"version":3,"file":"shardResume.js","sourceRoot":"","sources":["../../../src/handlers/events/shardResume.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QACjD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardResume.js","sourceRoot":"","sources":["../../../src/handlers/events/shardResume.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,UAAU,OAAO;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QACjD,IAAI,QAAQ,CAAC,MAAM,EAAE;YACjB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC5B,kBAAW,CAAC,GAAG,CAAC;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO;oBACP,MAAM,EAAE,OAAO;oBACf,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;oBAC3B,GAAG,EAAE,EAAE;iBACV,CAAC,CAAA;aACL;SACJ;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceCreate.d.ts.map b/dist/handlers/events/stageInstanceCreate.d.ts.map index 5690769c1c..92b6d53cb6 100644 --- a/dist/handlers/events/stageInstanceCreate.d.ts.map +++ b/dist/handlers/events/stageInstanceCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"stageInstanceCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceCreate.js b/dist/handlers/events/stageInstanceCreate.js index a5f8088b7c..9025319845 100644 --- a/dist/handlers/events/stageInstanceCreate.js +++ b/dist/handlers/events/stageInstanceCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stageInstanceCreate.js.map b/dist/handlers/events/stageInstanceCreate.js.map index 00cb1cd44c..cd0fc17072 100644 --- a/dist/handlers/events/stageInstanceCreate.js.map +++ b/dist/handlers/events/stageInstanceCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stageInstanceCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceDelete.d.ts.map b/dist/handlers/events/stageInstanceDelete.d.ts.map index 2b6a1407a7..8afed1d215 100644 --- a/dist/handlers/events/stageInstanceDelete.d.ts.map +++ b/dist/handlers/events/stageInstanceDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"stageInstanceDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceDelete.js b/dist/handlers/events/stageInstanceDelete.js index 67d78ba215..b398330900 100644 --- a/dist/handlers/events/stageInstanceDelete.js +++ b/dist/handlers/events/stageInstanceDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stageInstanceDelete.js.map b/dist/handlers/events/stageInstanceDelete.js.map index 6b1ad1e24b..d1ce7ec649 100644 --- a/dist/handlers/events/stageInstanceDelete.js.map +++ b/dist/handlers/events/stageInstanceDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stageInstanceDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceUpdate.d.ts.map b/dist/handlers/events/stageInstanceUpdate.d.ts.map index 23bf48864a..afb033634f 100644 --- a/dist/handlers/events/stageInstanceUpdate.d.ts.map +++ b/dist/handlers/events/stageInstanceUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"stageInstanceUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/stageInstanceUpdate.js b/dist/handlers/events/stageInstanceUpdate.js index 09eae9bf78..556e8bda0c 100644 --- a/dist/handlers/events/stageInstanceUpdate.js +++ b/dist/handlers/events/stageInstanceUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stageInstanceUpdate.js.map b/dist/handlers/events/stageInstanceUpdate.js.map index 0914329c3a..6120f54bdc 100644 --- a/dist/handlers/events/stageInstanceUpdate.js.map +++ b/dist/handlers/events/stageInstanceUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"stageInstanceUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,EAAE;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG;wBACH,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stageInstanceUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/stageInstanceUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,EAAE;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAA;QAEzD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,KAAK,EAAE;wBACH,GAAG;wBACH,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stickerCreate.d.ts.map b/dist/handlers/events/stickerCreate.d.ts.map index 22163936cd..d23ac34b63 100644 --- a/dist/handlers/events/stickerCreate.d.ts.map +++ b/dist/handlers/events/stickerCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"stickerCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/stickerCreate.js b/dist/handlers/events/stickerCreate.js index b0f841013a..abdad8eafa 100644 --- a/dist/handlers/events/stickerCreate.js +++ b/dist/handlers/events/stickerCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stickerCreate.js.map b/dist/handlers/events/stickerCreate.js.map index 1e95defaa3..9cf94561c0 100644 --- a/dist/handlers/events/stickerCreate.js.map +++ b/dist/handlers/events/stickerCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stickerDelete.d.ts.map b/dist/handlers/events/stickerDelete.d.ts.map index d0ad84076e..4c02f292e5 100644 --- a/dist/handlers/events/stickerDelete.d.ts.map +++ b/dist/handlers/events/stickerDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"stickerDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/stickerDelete.js b/dist/handlers/events/stickerDelete.js index 604db42d0b..b7523a6124 100644 --- a/dist/handlers/events/stickerDelete.js +++ b/dist/handlers/events/stickerDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stickerDelete.js.map b/dist/handlers/events/stickerDelete.js.map index fe84524b3d..ec2f38dbeb 100644 --- a/dist/handlers/events/stickerDelete.js.map +++ b/dist/handlers/events/stickerDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/stickerUpdate.d.ts.map b/dist/handlers/events/stickerUpdate.d.ts.map index b1ff85e211..21676a4fce 100644 --- a/dist/handlers/events/stickerUpdate.d.ts.map +++ b/dist/handlers/events/stickerUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"stickerUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/stickerUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/stickerUpdate.js b/dist/handlers/events/stickerUpdate.js index b01b0cd82b..9331260ac8 100644 --- a/dist/handlers/events/stickerUpdate.js +++ b/dist/handlers/events/stickerUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/stickerUpdate.js.map b/dist/handlers/events/stickerUpdate.js.map index 049ef0b310..301b6b1a98 100644 --- a/dist/handlers/events/stickerUpdate.js.map +++ b/dist/handlers/events/stickerUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG;wBACH,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/stickerUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,GAAG;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;QAEnD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG;wBACH,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionCreate.d.ts.map b/dist/handlers/events/subscriptionCreate.d.ts.map index e8457f1d07..f679ce771d 100644 --- a/dist/handlers/events/subscriptionCreate.d.ts.map +++ b/dist/handlers/events/subscriptionCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAsBE"} \ No newline at end of file +{"version":3,"file":"subscriptionCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAsBE"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionCreate.js b/dist/handlers/events/subscriptionCreate.js index e8cba1fbba..185e90ccc4 100644 --- a/dist/handlers/events/subscriptionCreate.js +++ b/dist/handlers/events/subscriptionCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/subscriptionCreate.js.map b/dist/handlers/events/subscriptionCreate.js.map index 366188876d..91bb492531 100644 --- a/dist/handlers/events/subscriptionCreate.js.map +++ b/dist/handlers/events/subscriptionCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"subscriptionCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionDelete.d.ts.map b/dist/handlers/events/subscriptionDelete.d.ts.map index 49e42a32ee..62f45ed6cc 100644 --- a/dist/handlers/events/subscriptionDelete.d.ts.map +++ b/dist/handlers/events/subscriptionDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"subscriptionDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionDelete.js b/dist/handlers/events/subscriptionDelete.js index 2e891cabc9..3d98801ad0 100644 --- a/dist/handlers/events/subscriptionDelete.js +++ b/dist/handlers/events/subscriptionDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/subscriptionDelete.js.map b/dist/handlers/events/subscriptionDelete.js.map index 3401d351bf..b1d6acab7e 100644 --- a/dist/handlers/events/subscriptionDelete.js.map +++ b/dist/handlers/events/subscriptionDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"subscriptionDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG;QACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,GAAG;gBACR,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,GAAG;wBACR,GAAG,EAAE,GAAG;qBACX;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionUpdate.d.ts.map b/dist/handlers/events/subscriptionUpdate.d.ts.map index feba616d48..19049a8b61 100644 --- a/dist/handlers/events/subscriptionUpdate.d.ts.map +++ b/dist/handlers/events/subscriptionUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"subscriptionUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/subscriptionUpdate.js b/dist/handlers/events/subscriptionUpdate.js index 97ef81ed6b..50ab843e75 100644 --- a/dist/handlers/events/subscriptionUpdate.js +++ b/dist/handlers/events/subscriptionUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/subscriptionUpdate.js.map b/dist/handlers/events/subscriptionUpdate.js.map index 7bf024af73..f2db8a3332 100644 --- a/dist/handlers/events/subscriptionUpdate.js.map +++ b/dist/handlers/events/subscriptionUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"subscriptionUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"subscriptionUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/subscriptionUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,YAAY,EAAE;wBACV,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/threadCreate.d.ts.map b/dist/handlers/events/threadCreate.d.ts.map index a58abe6500..054f6a4739 100644 --- a/dist/handlers/events/threadCreate.d.ts.map +++ b/dist/handlers/events/threadCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadCreate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"threadCreate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadCreate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/threadCreate.js b/dist/handlers/events/threadCreate.js index a2bd869476..ce69bb11e8 100644 --- a/dist/handlers/events/threadCreate.js +++ b/dist/handlers/events/threadCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/threadCreate.js.map b/dist/handlers/events/threadCreate.js.map index 69aa75843d..14e04a2f69 100644 --- a/dist/handlers/events/threadCreate.js.map +++ b/dist/handlers/events/threadCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"threadCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadCreate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadCreate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/threadDelete.d.ts.map b/dist/handlers/events/threadDelete.d.ts.map index f0bf7aa3d6..ff708547b3 100644 --- a/dist/handlers/events/threadDelete.d.ts.map +++ b/dist/handlers/events/threadDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"threadDelete.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/threadDelete.js b/dist/handlers/events/threadDelete.js index 1263c62b51..2465e78d20 100644 --- a/dist/handlers/events/threadDelete.js +++ b/dist/handlers/events/threadDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/threadDelete.js.map b/dist/handlers/events/threadDelete.js.map index d5dedf2048..2f5d1f8d82 100644 --- a/dist/handlers/events/threadDelete.js.map +++ b/dist/handlers/events/threadDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"threadDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/threadDelete.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadDelete.js","sourceRoot":"","sources":["../../../src/handlers/events/threadDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,EAAE;QACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,EAAE;gBACP,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,EAAE;wBACP,GAAG,EAAE,EAAE;qBACV;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/threadMemberUpdate.d.ts.map b/dist/handlers/events/threadMemberUpdate.d.ts.map index af917cf3d0..093eba7833 100644 --- a/dist/handlers/events/threadMemberUpdate.d.ts.map +++ b/dist/handlers/events/threadMemberUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadMemberUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadMemberUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"threadMemberUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadMemberUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/threadMemberUpdate.js b/dist/handlers/events/threadMemberUpdate.js index 369ec5a2a7..71b965664e 100644 --- a/dist/handlers/events/threadMemberUpdate.js +++ b/dist/handlers/events/threadMemberUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/threadMemberUpdate.js.map b/dist/handlers/events/threadMemberUpdate.js.map index 5fb9b03bb1..83fc0df9a9 100644 --- a/dist/handlers/events/threadMemberUpdate.js.map +++ b/dist/handlers/events/threadMemberUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"threadMemberUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadMemberUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG,CAAC,WAAW;wBACpB,GAAG,EAAE,KAAK,CAAC,WAAW;qBACzB;iBACJ;gBACD,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadMemberUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadMemberUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAA;QAExD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE;oBACJ,MAAM,EAAE;wBACJ,GAAG,EAAE,GAAG,CAAC,WAAW;wBACpB,GAAG,EAAE,KAAK,CAAC,WAAW;qBACzB;iBACJ;gBACD,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,QAAQ,EAAE,cAAc,CAAC;CACtC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/threadUpdate.d.ts.map b/dist/handlers/events/threadUpdate.d.ts.map index 071018bf3f..b9004c8497 100644 --- a/dist/handlers/events/threadUpdate.d.ts.map +++ b/dist/handlers/events/threadUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"threadUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/threadUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/threadUpdate.js b/dist/handlers/events/threadUpdate.js index 454359926d..b465dd277b 100644 --- a/dist/handlers/events/threadUpdate.js +++ b/dist/handlers/events/threadUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/threadUpdate.js.map b/dist/handlers/events/threadUpdate.js.map index 843dd2c6dd..e83d741d0d 100644 --- a/dist/handlers/events/threadUpdate.js.map +++ b/dist/handlers/events/threadUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"threadUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/threadUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;QAElD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,KAAK;wBACV,GAAG;qBACN;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/typingStart.d.ts.map b/dist/handlers/events/typingStart.d.ts.map index 8c180d0a4a..72916f3b56 100644 --- a/dist/handlers/events/typingStart.d.ts.map +++ b/dist/handlers/events/typingStart.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"typingStart.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/typingStart.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file +{"version":3,"file":"typingStart.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/typingStart.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAkBE"} \ No newline at end of file diff --git a/dist/handlers/events/typingStart.js b/dist/handlers/events/typingStart.js index ced94ad643..0af9b3f5d4 100644 --- a/dist/handlers/events/typingStart.js +++ b/dist/handlers/events/typingStart.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/typingStart.js.map b/dist/handlers/events/typingStart.js.map index 40619385b0..29198b83e5 100644 --- a/dist/handlers/events/typingStart.js.map +++ b/dist/handlers/events/typingStart.js.map @@ -1 +1 @@ -{"version":3,"file":"typingStart.js","sourceRoot":"","sources":["../../../src/handlers/events/typingStart.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,MAAM;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,IAAI;gBACjC,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,oBAAoB,EAAE,qBAAqB,CAAC;CACzD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"typingStart.js","sourceRoot":"","sources":["../../../src/handlers/events/typingStart.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,MAAM;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAA;QAEjD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,IAAI;gBACjC,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,oBAAoB,EAAE,qBAAqB,CAAC;CACzD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/userUpdate.d.ts.map b/dist/handlers/events/userUpdate.d.ts.map index f750927b80..5f4adc68c1 100644 --- a/dist/handlers/events/userUpdate.d.ts.map +++ b/dist/handlers/events/userUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/userUpdate.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"userUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/userUpdate.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/userUpdate.js b/dist/handlers/events/userUpdate.js index 183d242930..947ef1562e 100644 --- a/dist/handlers/events/userUpdate.js +++ b/dist/handlers/events/userUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/userUpdate.js.map b/dist/handlers/events/userUpdate.js.map index 6db9770398..398ee5df0c 100644 --- a/dist/handlers/events/userUpdate.js.map +++ b/dist/handlers/events/userUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"userUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/userUpdate.ts"],"names":[],"mappings":";;AACA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,KAAK;wBACV,GAAG,EAAE,GAAW;qBACnB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,uDAAuD;IACpE,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/userUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QAEhD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,IAAI,EAAE;wBACF,GAAG,EAAE,KAAK;wBACV,GAAG,EAAE,GAAW;qBACnB;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,WAAW,EAAE,uDAAuD;IACpE,OAAO,EAAE,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/voiceChannelEffectSend.d.ts.map b/dist/handlers/events/voiceChannelEffectSend.d.ts.map index 3b7b4ad077..2e0f916d8d 100644 --- a/dist/handlers/events/voiceChannelEffectSend.d.ts.map +++ b/dist/handlers/events/voiceChannelEffectSend.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceChannelEffectSend.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/voiceChannelEffectSend.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"voiceChannelEffectSend.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/voiceChannelEffectSend.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/handlers/events/voiceChannelEffectSend.js b/dist/handlers/events/voiceChannelEffectSend.js index 4266bf7a68..2d1c89ca04 100644 --- a/dist/handlers/events/voiceChannelEffectSend.js +++ b/dist/handlers/events/voiceChannelEffectSend.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/voiceChannelEffectSend.js.map b/dist/handlers/events/voiceChannelEffectSend.js.map index ab76d24bdc..e0154fe80d 100644 --- a/dist/handlers/events/voiceChannelEffectSend.js.map +++ b/dist/handlers/events/voiceChannelEffectSend.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceChannelEffectSend.js","sourceRoot":"","sources":["../../../src/handlers/events/voiceChannelEffectSend.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK,WAAW,MAAM;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAA;QAE5D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,MAAM;gBACX,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceChannelEffectSend.js","sourceRoot":"","sources":["../../../src/handlers/events/voiceChannelEffectSend.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK,WAAW,MAAM;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAA;QAE5D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,MAAM;gBACX,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,WAAW,EAAE;wBACT,GAAG,EAAE,MAAM;qBACd;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/voiceStateUpdate.d.ts.map b/dist/handlers/events/voiceStateUpdate.d.ts.map index f3530d4e7a..4a31e84b73 100644 --- a/dist/handlers/events/voiceStateUpdate.d.ts.map +++ b/dist/handlers/events/voiceStateUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceStateUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/voiceStateUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"voiceStateUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/voiceStateUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/voiceStateUpdate.js b/dist/handlers/events/voiceStateUpdate.js index 8f7c119cf0..286353b425 100644 --- a/dist/handlers/events/voiceStateUpdate.js +++ b/dist/handlers/events/voiceStateUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/voiceStateUpdate.js.map b/dist/handlers/events/voiceStateUpdate.js.map index a7c39602b1..69841e7782 100644 --- a/dist/handlers/events/voiceStateUpdate.js.map +++ b/dist/handlers/events/voiceStateUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceStateUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/voiceStateUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAA;QAEtD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,UAAU,EAAE;wBACR,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceStateUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/voiceStateUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK,WAAW,GAAG,EAAE,KAAK;QAChC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAA;QAEtD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,KAAK;gBACV,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,UAAU,EAAE;wBACR,GAAG;wBACH,GAAG,EAAE,KAAK;qBACb;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,kBAAkB,CAAC;CAChC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/handlers/events/webhooksUpdate.d.ts.map b/dist/handlers/events/webhooksUpdate.d.ts.map index d95747840a..0e14ac8ac9 100644 --- a/dist/handlers/events/webhooksUpdate.d.ts.map +++ b/dist/handlers/events/webhooksUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhooksUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/webhooksUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file +{"version":3,"file":"webhooksUpdate.d.ts","sourceRoot":"","sources":["../../../src/handlers/events/webhooksUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;;AAEnF,wBAwBE"} \ No newline at end of file diff --git a/dist/handlers/events/webhooksUpdate.js b/dist/handlers/events/webhooksUpdate.js index d348ef3c63..cb1ae9e50d 100644 --- a/dist/handlers/events/webhooksUpdate.js +++ b/dist/handlers/events/webhooksUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const DiscordEventHandler_1 = require("../../structures/extended/DiscordEventHandler"); diff --git a/dist/handlers/events/webhooksUpdate.js.map b/dist/handlers/events/webhooksUpdate.js.map index 05b76ba38a..a8d60dda86 100644 --- a/dist/handlers/events/webhooksUpdate.js.map +++ b/dist/handlers/events/webhooksUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"webhooksUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/webhooksUpdate.ts"],"names":[],"mappings":";;AAAA,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,CAAC;CAC7B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhooksUpdate.js","sourceRoot":"","sources":["../../../src/handlers/events/webhooksUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAwC;AACxC,uFAAmF;AAEnF,kBAAe,IAAI,yCAAmB,CAAC;IACnC,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK,WAAW,CAAC;QACvB,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;YAC5B,kBAAW,CAAC,GAAG,CAAC;gBACZ,GAAG,EAAE,CAAC;gBACN,OAAO;gBACP,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE;oBACJ,OAAO,EAAE;wBACL,GAAG,EAAE,CAAC;wBACN,GAAG,EAAE,CAAC;qBACT;iBACJ;gBACD,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAC3B,IAAI,EAAE,EAAE;aACX,CAAC,CAAA;SACL;IACL,CAAC;IACD,OAAO,EAAE,CAAC,eAAe,CAAC;CAC7B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/index.d.ts.map b/dist/index.d.ts.map index a436475603..187ac441aa 100644 --- a/dist/index.d.ts.map +++ b/dist/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,8BAA8B,CAAA;AAE3D,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AAEtB,OAAO,EAAE,gBAAgB,EAAE,CAAA"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAKA,OAAO,gBAAgB,MAAM,8BAA8B,CAAA;AAE3D,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AAEtB,OAAO,EAAE,gBAAgB,EAAE,CAAA"} \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index a9c61411d6..90ea762388 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/index.js.map b/dist/index.js.map index fd70b80e4c..a47064ffc5 100644 --- a/dist/index.js.map +++ b/dist/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,oFAA2D;AAMlD,2BANF,0BAAgB,CAME;AAJzB,6CAA0B;AAC1B,+CAA4B;AAC5B,yCAAsB"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;;;;;AAEF,oFAA2D;AAMlD,2BANF,0BAAgB,CAME;AAJzB,6CAA0B;AAC1B,+CAA4B;AAC5B,yCAAsB"} \ No newline at end of file diff --git a/dist/managers/ApplicationCommandManager.d.ts.map b/dist/managers/ApplicationCommandManager.d.ts.map index 6607234174..d502478817 100644 --- a/dist/managers/ApplicationCommandManager.d.ts.map +++ b/dist/managers/ApplicationCommandManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ApplicationCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/ApplicationCommandManager.ts"],"names":[],"mappings":"AACA,OAAO,EAGH,gCAAgC,EAIhC,UAAU,EACV,kBAAkB,EAElB,yBAAyB,EAGzB,KAAK,EACL,WAAW,EAEX,sCAAsC,EAEtC,mBAAmB,EACtB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAA;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAMrC,oBAAY,gBAAgB;IACxB,MAAM,IAAA;IACN,KAAK,IAAA;IACL,GAAG,IAAA;CACN;AAED,MAAM,WAAW,uBAAuB;IACpC,IAAI,EACE,mBAAmB,GACnB,yBAAyB,GACzB,sCAAsC,CAAA;IAC5C,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,gBAAgB,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AAED,qBAAa,yBAAyB;aAcC,MAAM,EAAE,WAAW;IAbtD;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,CAGb;IACH,OAAO,CAAC,IAAI,CAAS;gBAEc,MAAM,EAAE,WAAW;IAEtD;;;OAGG;IACI,IAAI,CAAC,IAAI,GAAE,MAAkB;IAyDpC,OAAO,CAAC,iBAAiB;IAYlB,UAAU,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO;IAqBvD,GAAG,CAAC,KAAK,EAAE,kBAAkB,GAAG,kBAAkB,GAAG,IAAI;IAmBhE;;;;OAIG;IACI,GAAG,CACN,GAAG,MAAM,EAAE,CAAC,kBAAkB,GAAG,uBAAuB,GAAG,kBAAkB,EAAE,GAAG,uBAAuB,EAAE,CAAC,EAAE,GAC/G,IAAI;IAQP,OAAO,CAAC,OAAO;IAUf,OAAO,CAAC,QAAQ;IAiBT,OAAO,CAAC,KAAK,EAAE,kBAAkB,GAAG,uBAAuB,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI;IAMvF,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,gCAAgC,EAAE;IAqG9F,cAAc;;;IAMd,aAAa,CAAC,CAAC,EAAE,KAAK;CAKhC"} \ No newline at end of file +{"version":3,"file":"ApplicationCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/ApplicationCommandManager.ts"],"names":[],"mappings":"AAMA,OAAO,EAGH,gCAAgC,EAIhC,UAAU,EACV,kBAAkB,EAElB,yBAAyB,EAGzB,KAAK,EACL,WAAW,EAEX,sCAAsC,EAEtC,mBAAmB,EACtB,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAA;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAMrC,oBAAY,gBAAgB;IACxB,MAAM,IAAA;IACN,KAAK,IAAA;IACL,GAAG,IAAA;CACN;AAED,MAAM,WAAW,uBAAuB;IACpC,IAAI,EACE,mBAAmB,GACnB,yBAAyB,GACzB,sCAAsC,CAAA;IAC5C,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,gBAAgB,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AAED,qBAAa,yBAAyB;aAcC,MAAM,EAAE,WAAW;IAbtD;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,CAGb;IACH,OAAO,CAAC,IAAI,CAAS;gBAEc,MAAM,EAAE,WAAW;IAEtD;;;OAGG;IACI,IAAI,CAAC,IAAI,GAAE,MAAkB;IAyDpC,OAAO,CAAC,iBAAiB;IAYlB,UAAU,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO;IAqBvD,GAAG,CAAC,KAAK,EAAE,kBAAkB,GAAG,kBAAkB,GAAG,IAAI;IAmBhE;;;;OAIG;IACI,GAAG,CACN,GAAG,MAAM,EAAE,CAAC,kBAAkB,GAAG,uBAAuB,GAAG,kBAAkB,EAAE,GAAG,uBAAuB,EAAE,CAAC,EAAE,GAC/G,IAAI;IAQP,OAAO,CAAC,OAAO;IAUf,OAAO,CAAC,QAAQ;IAiBT,OAAO,CAAC,KAAK,EAAE,kBAAkB,GAAG,uBAAuB,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI;IAMvF,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,gCAAgC,EAAE;IAqG9F,cAAc;;;IAMd,aAAa,CAAC,CAAC,EAAE,KAAK;CAKhC"} \ No newline at end of file diff --git a/dist/managers/ApplicationCommandManager.js b/dist/managers/ApplicationCommandManager.js index 9441849d80..c5c5b615fa 100644 --- a/dist/managers/ApplicationCommandManager.js +++ b/dist/managers/ApplicationCommandManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ApplicationCommandManager = exports.RegistrationType = void 0; /* eslint-disable indent */ diff --git a/dist/managers/ApplicationCommandManager.js.map b/dist/managers/ApplicationCommandManager.js.map index 59a0ee7b68..c8f4fb24be 100644 --- a/dist/managers/ApplicationCommandManager.js.map +++ b/dist/managers/ApplicationCommandManager.js.map @@ -1 +1 @@ -{"version":3,"file":"ApplicationCommandManager.js","sourceRoot":"","sources":["../../src/managers/ApplicationCommandManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"ApplicationCommandManager.js","sourceRoot":"","sources":["../../src/managers/ApplicationCommandManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/managers/BaseCommandManager.d.ts.map b/dist/managers/BaseCommandManager.d.ts.map index 8045f62c6e..a12dd6addf 100644 --- a/dist/managers/BaseCommandManager.d.ts.map +++ b/dist/managers/BaseCommandManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"BaseCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/BaseCommandManager.ts"],"names":[],"mappings":"AAEA,OAAO,EAAc,WAAW,EAAE,MAAM,SAAS,CAAA;AAEjD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAU,MAAM,eAAe,CAAA;AAEjE,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,WAAW,qBAAqB,CAAC,CAAC;IACpC,MAAM,EAAE,MAAM,IAAI,CAAA;CACrB;AAED,8BAAsB,kBAAkB,CAAC,CAAC,CAAE,SAAQ,YAAY,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;IAMnE,OAAO,CAAC,QAAQ,CAAC,MAAM;IAL1C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAwC;IACjE,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAsB;IAE5C,SAAgB,WAAW,EAAE,MAAM,CAAA;gBAEC,MAAM,EAAE,WAAW;IAIhD,OAAO;IAqBP,IAAI,CAAC,IAAI,EAAE,MAAM;IAexB,IAAW,KAAK,WAEf;IAEM,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,OAAO,GAAG,WAAW,CAAC,CAAC,CAAC,EAAE;IAMrE,GAAG,CAAC,GAAG,QAAQ,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE;IAI5D,OAAO,CAAC,OAAO;IAsBR,OAAO;CAGjB"} \ No newline at end of file +{"version":3,"file":"BaseCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/BaseCommandManager.ts"],"names":[],"mappings":"AAOA,OAAO,EAAc,WAAW,EAAE,MAAM,SAAS,CAAA;AAEjD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAU,MAAM,eAAe,CAAA;AAEjE,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,WAAW,qBAAqB,CAAC,CAAC;IACpC,MAAM,EAAE,MAAM,IAAI,CAAA;CACrB;AAED,8BAAsB,kBAAkB,CAAC,CAAC,CAAE,SAAQ,YAAY,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;IAMnE,OAAO,CAAC,QAAQ,CAAC,MAAM;IAL1C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAwC;IACjE,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAsB;IAE5C,SAAgB,WAAW,EAAE,MAAM,CAAA;gBAEC,MAAM,EAAE,WAAW;IAIhD,OAAO;IAqBP,IAAI,CAAC,IAAI,EAAE,MAAM;IAexB,IAAW,KAAK,WAEf;IAEM,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,OAAO,GAAG,WAAW,CAAC,CAAC,CAAC,EAAE;IAMrE,GAAG,CAAC,GAAG,QAAQ,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE;IAI5D,OAAO,CAAC,OAAO;IAsBR,OAAO;CAGjB"} \ No newline at end of file diff --git a/dist/managers/BaseCommandManager.js b/dist/managers/BaseCommandManager.js index 9907c37a1a..ebe63a54a1 100644 --- a/dist/managers/BaseCommandManager.js +++ b/dist/managers/BaseCommandManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/managers/BaseCommandManager.js.map b/dist/managers/BaseCommandManager.js.map index 3aff29faab..6c5224fbf9 100644 --- a/dist/managers/BaseCommandManager.js.map +++ b/dist/managers/BaseCommandManager.js.map @@ -1 +1 @@ -{"version":3,"file":"BaseCommandManager.js","sourceRoot":"","sources":["../../src/managers/BaseCommandManager.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAuC;AACvC,qCAA6B;AAC7B,kCAAiD;AACjD,6FAAoE;AACpE,8CAAiE;AACjE,+BAA2B;AAC3B,2DAAiD;AAMjD,MAAsB,kBAAsB,SAAQ,iCAAsC;IAMlD;IALnB,QAAQ,GAAG,IAAI,uBAAU,EAAuB,CAAA;IAChD,KAAK,GAAG,IAAI,KAAK,EAAU,CAAA;IAI5C,YAAoC,MAAmB;QACnD,KAAK,EAAE,CAAA;QADyB,WAAM,GAAN,MAAM,CAAa;IAEvD,CAAC;IAEM,OAAO;QACV,KAAK,MAAM,CAAC,GAAG,EAAE,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,EAAE;YACzC,qCAAqC;YACrC,MAAM,UAAU,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;YAE7D,kBAAkB;YAClB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;SACrC;QAED,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,KAAK,EAAE;YACxB,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,EAAE;gBACvF,oCAAoC;gBACpC,MAAM,IAAI,GAAG,IAAA,WAAI,EAAC,IAAA,aAAG,GAAE,EAAE,IAAI,CAAC,CAAA;gBAC9B,OAAO,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;aAC9C;YAED,wBAAwB;YACxB,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SACf;IACL,CAAC;IAEM,IAAI,CAAC,IAAY;QACpB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC;YAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAErD,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;YACjG,oCAAoC;YACpC,MAAM,IAAI,GAAG,IAAA,WAAI,EAAC,IAAA,aAAG,GAAE,EAAE,IAAI,CAAC,CAAA;YAE9B,MAAM,GAAG,GAAG,iBAAU,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;YACvC,IAAI,CAAC,GAAG;gBAAE,SAAQ;YAElB,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;gBAAE,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,GAAG,CAAC,CAAA;;gBACnD,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAA;SACrC;IACL,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;IAC1D,CAAC;IAEM,GAAG,CAAC,IAAO,EAAE,EAAqC;QACrD,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAA;QAC1C,IAAI,CAAC,EAAE;YAAE,OAAO,IAAI,CAAA;QACpB,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;IAC1B,CAAC;IAEM,GAAG,CAAC,GAAG,QAA8C;QACxD,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,QAAQ,CAAC,CAAA;IAC/C,CAAC;IAEO,OAAO,CAAC,UAAmB,EAAE,IAAa,EAAE,GAAG,QAA8C;QACjG,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,GAAG,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,GAAG,GAAG,GAAG,YAAY,wBAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,wBAAW,CAAC,EAAE,GAAG,GAAG,EAAE,IAAI,EAAE,CAAC,CAAA;YAChF,IAAI,IAAI;gBACJ,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;YAErB,GAAG,CAAC,QAAQ,EAAE,CAAA;YAEd,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,WAAW,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE;gBACzE,mBAAM,CAAC,IAAI,CAAC,4CAA4C,GAAG,CAAC,IAAI,4CAA4C,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,YAAY,GAAG,CAAC,CAAA;aAChJ;YAED,MAAM,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,IAAS,EAAE,GAAG,EAAE,CAAC,IAAI,KAAK,EAAE,CAAC,CAAA;YAClE,GAAG,CAAC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;YAEhC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SAChB;QAED,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAA;IACvB,CAAC;IAEM,OAAO;QACV,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAA;IACpD,CAAC;CACJ;AArFD,gDAqFC"} \ No newline at end of file +{"version":3,"file":"BaseCommandManager.js","sourceRoot":"","sources":["../../src/managers/BaseCommandManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/managers/CooldownManager.d.ts.map b/dist/managers/CooldownManager.d.ts.map index 16fd5574ec..6b4ce5d757 100644 --- a/dist/managers/CooldownManager.d.ts.map +++ b/dist/managers/CooldownManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CooldownManager.d.ts","sourceRoot":"","sources":["../../src/managers/CooldownManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAErC,MAAM,WAAW,SAAS;IACtB,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,MAAM,CAAA;CACpB;AAED,qBAAa,eAAe;IAGL,OAAO,CAAC,QAAQ,CAAC,MAAM;IAF1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAsC;gBAE5B,MAAM,EAAE,WAAW;IAEhD,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAOhC,MAAM,CAAC,EAAE,EAAE,MAAM;IAIjB,KAAK;IAIL,WAAW,CAAC,EAAE,EAAE,MAAM;IAKtB,UAAU,CAAC,CAAC,SAAS,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;CAG5D"} \ No newline at end of file +{"version":3,"file":"CooldownManager.d.ts","sourceRoot":"","sources":["../../src/managers/CooldownManager.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAErC,MAAM,WAAW,SAAS;IACtB,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,MAAM,CAAA;CACpB;AAED,qBAAa,eAAe;IAGL,OAAO,CAAC,QAAQ,CAAC,MAAM;IAF1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAsC;gBAE5B,MAAM,EAAE,WAAW;IAEhD,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAOhC,MAAM,CAAC,EAAE,EAAE,MAAM;IAIjB,KAAK;IAIL,WAAW,CAAC,EAAE,EAAE,MAAM;IAKtB,UAAU,CAAC,CAAC,SAAS,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;CAG5D"} \ No newline at end of file diff --git a/dist/managers/CooldownManager.js b/dist/managers/CooldownManager.js index 64838a9aa5..ac959ecdb3 100644 --- a/dist/managers/CooldownManager.js +++ b/dist/managers/CooldownManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.CooldownManager = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/managers/CooldownManager.js.map b/dist/managers/CooldownManager.js.map index e57fef1548..7e098fbffe 100644 --- a/dist/managers/CooldownManager.js.map +++ b/dist/managers/CooldownManager.js.map @@ -1 +1 @@ -{"version":3,"file":"CooldownManager.js","sourceRoot":"","sources":["../../src/managers/CooldownManager.ts"],"names":[],"mappings":";;;AAAA,2CAAuC;AAQvC,MAAa,eAAe;IAGY;IAFnB,SAAS,GAAG,IAAI,uBAAU,EAAqB,CAAA;IAEhE,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,GAAG,CAAC,EAAU,EAAE,QAAgB;QACnC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE;YACnB,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE;YACrB,QAAQ;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,EAAU;QACpB,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;IAC7B,CAAC;IAEM,KAAK;QACR,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;IAC1B,CAAC;IAEM,WAAW,CAAC,EAAU;QACzB,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACnC,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;IAEM,UAAU,CAAuB,GAAG,MAAc;QACrD,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAC3B,CAAC;CACJ;AA5BD,0CA4BC"} \ No newline at end of file +{"version":3,"file":"CooldownManager.js","sourceRoot":"","sources":["../../src/managers/CooldownManager.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAuC;AAQvC,MAAa,eAAe;IAGY;IAFnB,SAAS,GAAG,IAAI,uBAAU,EAAqB,CAAA;IAEhE,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,GAAG,CAAC,EAAU,EAAE,QAAgB;QACnC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE;YACnB,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE;YACrB,QAAQ;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,EAAU;QACpB,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;IAC7B,CAAC;IAEM,KAAK;QACR,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;IAC1B,CAAC;IAEM,WAAW,CAAC,EAAU;QACzB,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACnC,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;IAEM,UAAU,CAAuB,GAAG,MAAc;QACrD,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAC3B,CAAC;CACJ;AA5BD,0CA4BC"} \ No newline at end of file diff --git a/dist/managers/EventManager.d.ts.map b/dist/managers/EventManager.d.ts.map index eb5cddbe71..0ed552da8b 100644 --- a/dist/managers/EventManager.d.ts.map +++ b/dist/managers/EventManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"EventManager.d.ts","sourceRoot":"","sources":["../../src/managers/EventManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAA;AAItD,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAEhD,eAAO,MAAM,eAAe,WAAW,CAAA;AAEvC,qBAAa,YAAY;IAKF,OAAO,CAAC,QAAQ,CAAC,MAAM;IAJ1C,gBAAuB,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAK;IAE7F,OAAO,CAAC,MAAM,CAAiE;gBAE3C,MAAM,EAAE,WAAW;WAEzC,UAAU;IAKxB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,GAAG,IAAI;WAY5C,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;WAQ/B,MAAM,CAAC,IAAI,EAAE,MAAM;;;;;;;;IAI1B,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;CAGxC"} \ No newline at end of file +{"version":3,"file":"EventManager.d.ts","sourceRoot":"","sources":["../../src/managers/EventManager.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAA;AAItD,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAEhD,eAAO,MAAM,eAAe,WAAW,CAAA;AAEvC,qBAAa,YAAY;IAKF,OAAO,CAAC,QAAQ,CAAC,MAAM;IAJ1C,gBAAuB,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAK;IAE7F,OAAO,CAAC,MAAM,CAAiE;gBAE3C,MAAM,EAAE,WAAW;WAEzC,UAAU;IAKxB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,GAAG,IAAI;WAY5C,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;WAQ/B,MAAM,CAAC,IAAI,EAAE,MAAM;;;;;;;;IAI1B,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG;CAGxC"} \ No newline at end of file diff --git a/dist/managers/EventManager.js b/dist/managers/EventManager.js index c9b84b8a04..066a85c126 100644 --- a/dist/managers/EventManager.js +++ b/dist/managers/EventManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/managers/EventManager.js.map b/dist/managers/EventManager.js.map index b179d310b9..ef2fd1c0d0 100644 --- a/dist/managers/EventManager.js.map +++ b/dist/managers/EventManager.js.map @@ -1 +1 @@ -{"version":3,"file":"EventManager.js","sourceRoot":"","sources":["../../src/managers/EventManager.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAqD;AAIrD,6FAAoE;AAGvD,QAAA,eAAe,GAAG,QAAQ,CAAA;AAEvC,MAAa,YAAY;IAKe;IAJ7B,MAAM,CAAU,MAAM,GAA8D,EAAE,CAAA;IAErF,MAAM,GAAG,IAAI,uBAAU,EAAgD,CAAA;IAE/E,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,MAAM,CAAC,UAAU;QACpB,oCAAoC;QACpC,YAAY,CAAC,IAAI,CAAC,uBAAe,EAAE,SAAS,GAAG,qBAAqB,CAAC,CAAA;IACzE,CAAC;IAED,IAAI,CAAC,IAAY,EAAE,GAAG,MAA6B;QAC/C,KAAK,MAAM,SAAS,IAAI,MAAM,CAAC,IAAI,EAAE,EAAE;YACnC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,CAAA;YAChC,MAAM,KAAK,GAAG,YAAY,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,SAAS,CAAC,CAAA;YACnD,IAAI,CAAC,KAAK;gBAAE,MAAM,IAAI,KAAK,CAAC,SAAS,IAAI,OAAO,SAAS,oBAAoB,CAAC,CAAA;YAC9E,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,SAAS,CAAC;gBAAE,SAAQ;YACnD,YAAY,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,SAAS,CAAC,GAAG,KAAK,CAAA;YAC7C,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,uBAAU,EAAE,CAAC,CAAC,GAAG,CAAC,SAAS,EAAE,KAAK,CAAC,CAAA;YACtE,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;SAC9B;IACL,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,IAAY,EAAE,IAAY;QACzC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAA;QACtB,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;YAC5E,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,OAA2B,CAAA;YACrD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,CAAA;SACrC;IACL,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,IAAY;QAC7B,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAA;IACzE,CAAC;IAEM,GAAG,CAAC,OAAe,EAAE,IAAS;QACjC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAAA;IACvD,CAAC;;AAtCL,oCAuCC"} \ No newline at end of file +{"version":3,"file":"EventManager.js","sourceRoot":"","sources":["../../src/managers/EventManager.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAqD;AAIrD,6FAAoE;AAGvD,QAAA,eAAe,GAAG,QAAQ,CAAA;AAEvC,MAAa,YAAY;IAKe;IAJ7B,MAAM,CAAU,MAAM,GAA8D,EAAE,CAAA;IAErF,MAAM,GAAG,IAAI,uBAAU,EAAgD,CAAA;IAE/E,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,MAAM,CAAC,UAAU;QACpB,oCAAoC;QACpC,YAAY,CAAC,IAAI,CAAC,uBAAe,EAAE,SAAS,GAAG,qBAAqB,CAAC,CAAA;IACzE,CAAC;IAED,IAAI,CAAC,IAAY,EAAE,GAAG,MAA6B;QAC/C,KAAK,MAAM,SAAS,IAAI,MAAM,CAAC,IAAI,EAAE,EAAE;YACnC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,CAAA;YAChC,MAAM,KAAK,GAAG,YAAY,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,SAAS,CAAC,CAAA;YACnD,IAAI,CAAC,KAAK;gBAAE,MAAM,IAAI,KAAK,CAAC,SAAS,IAAI,OAAO,SAAS,oBAAoB,CAAC,CAAA;YAC9E,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,SAAS,CAAC;gBAAE,SAAQ;YACnD,YAAY,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,SAAS,CAAC,GAAG,KAAK,CAAA;YAC7C,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,uBAAU,EAAE,CAAC,CAAC,GAAG,CAAC,SAAS,EAAE,KAAK,CAAC,CAAA;YACtE,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;SAC9B;IACL,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,IAAY,EAAE,IAAY;QACzC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAA;QACtB,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;YAC5E,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,OAA2B,CAAA;YACrD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,CAAA;SACrC;IACL,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,IAAY;QAC7B,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAA;IACzE,CAAC;IAEM,GAAG,CAAC,OAAe,EAAE,IAAS;QACjC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAAA;IACvD,CAAC;;AAtCL,oCAuCC"} \ No newline at end of file diff --git a/dist/managers/ForgeFunctionManager.d.ts.map b/dist/managers/ForgeFunctionManager.d.ts.map index 64239df04a..d680bb9721 100644 --- a/dist/managers/ForgeFunctionManager.d.ts.map +++ b/dist/managers/ForgeFunctionManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ForgeFunctionManager.d.ts","sourceRoot":"","sources":["../../src/managers/ForgeFunctionManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AAEjF,OAAO,EAAmB,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAInE,qBAAa,oBAAoB;IAGV,OAAO,CAAC,QAAQ,CAAC,MAAM;IAF1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAmC;gBAEzB,MAAM,EAAE,WAAW;IAEhD,GAAG,CAAC,GAAG,OAAO,EAAE,cAAc,CAAC,cAAc,GAAG,aAAa,CAAC,EAAE;IAahE,OAAO,CAAC,CAAC,EAAE,cAAc,GAAG,aAAa;IAIzC,QAAQ;IAIR,GAAG,CAAC,IAAI,EAAE,MAAM;IAIhB,IAAI,CAAC,IAAI,EAAE,MAAM;CAc3B"} \ No newline at end of file +{"version":3,"file":"ForgeFunctionManager.d.ts","sourceRoot":"","sources":["../../src/managers/ForgeFunctionManager.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AAEjF,OAAO,EAAmB,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAInE,qBAAa,oBAAoB;IAGV,OAAO,CAAC,QAAQ,CAAC,MAAM;IAF1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAmC;gBAEzB,MAAM,EAAE,WAAW;IAEhD,GAAG,CAAC,GAAG,OAAO,EAAE,cAAc,CAAC,cAAc,GAAG,aAAa,CAAC,EAAE;IAahE,OAAO,CAAC,CAAC,EAAE,cAAc,GAAG,aAAa;IAIzC,QAAQ;IAIR,GAAG,CAAC,IAAI,EAAE,MAAM;IAIhB,IAAI,CAAC,IAAI,EAAE,MAAM;CAc3B"} \ No newline at end of file diff --git a/dist/managers/ForgeFunctionManager.js b/dist/managers/ForgeFunctionManager.js index 278a4fc8a1..0185fa765c 100644 --- a/dist/managers/ForgeFunctionManager.js +++ b/dist/managers/ForgeFunctionManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/managers/ForgeFunctionManager.js.map b/dist/managers/ForgeFunctionManager.js.map index 2af51f0e41..a4be68b3a0 100644 --- a/dist/managers/ForgeFunctionManager.js.map +++ b/dist/managers/ForgeFunctionManager.js.map @@ -1 +1 @@ -{"version":3,"file":"ForgeFunctionManager.js","sourceRoot":"","sources":["../../src/managers/ForgeFunctionManager.ts"],"names":[],"mappings":";;;;;;AACA,qEAAiF;AACjF,6FAAoE;AACpE,uDAAmE;AACnE,+BAA2B;AAC3B,qCAA6B;AAE7B,MAAa,oBAAoB;IAGO;IAFnB,SAAS,GAAG,IAAI,GAAG,EAAyB,CAAA;IAE7D,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,GAAG,CAAC,GAAG,OAAyD;QACnE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YAC9C,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;gBACrB,IAAI,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,CAAA;iBAClB;gBACD,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;gBAChC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;aACzC;SACJ;QACD,IAAI,CAAC,QAAQ,EAAE,CAAA;IACnB,CAAC;IAEM,OAAO,CAAC,CAAiC;QAC5C,OAAO,CAAC,YAAY,6BAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,6BAAa,CAAC,CAAC,CAAC,CAAA;IAChE,CAAC;IAEM,QAAQ;QACX,iCAAe,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IACvF,CAAC;IAEM,GAAG,CAAC,IAAY;QACnB,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;IACnC,CAAC;IAEM,IAAI,CAAC,IAAY;QACpB,MAAM,MAAM,GAAG,IAAI,KAAK,EAAkC,CAAA;QAC1D,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;YAC5E,MAAM,IAAI,GAAG,IAAA,WAAI,EAAC,IAAA,aAAG,GAAE,EAAE,IAAI,CAAC,CAAA;YAE9B,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;YAC1B,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC;gBAC9B,SAAQ;YAEZ,MAAM,GAAG,GAAG,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAmC,CAAA;YACpE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SACnB;QACD,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IACpB,CAAC;CACJ;AA5CD,oDA4CC"} \ No newline at end of file +{"version":3,"file":"ForgeFunctionManager.js","sourceRoot":"","sources":["../../src/managers/ForgeFunctionManager.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qEAAiF;AACjF,6FAAoE;AACpE,uDAAmE;AACnE,+BAA2B;AAC3B,qCAA6B;AAE7B,MAAa,oBAAoB;IAGO;IAFnB,SAAS,GAAG,IAAI,GAAG,EAAyB,CAAA;IAE7D,YAAoC,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,GAAG,CAAC,GAAG,OAAyD;QACnE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YAC9C,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;gBACrB,IAAI,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,CAAA;iBAClB;gBACD,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;gBAChC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;aACzC;SACJ;QACD,IAAI,CAAC,QAAQ,EAAE,CAAA;IACnB,CAAC;IAEM,OAAO,CAAC,CAAiC;QAC5C,OAAO,CAAC,YAAY,6BAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,6BAAa,CAAC,CAAC,CAAC,CAAA;IAChE,CAAC;IAEM,QAAQ;QACX,iCAAe,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IACvF,CAAC;IAEM,GAAG,CAAC,IAAY;QACnB,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;IACnC,CAAC;IAEM,IAAI,CAAC,IAAY;QACpB,MAAM,MAAM,GAAG,IAAI,KAAK,EAAkC,CAAA;QAC1D,KAAK,MAAM,IAAI,IAAI,IAAA,8BAAoB,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;YAC5E,MAAM,IAAI,GAAG,IAAA,WAAI,EAAC,IAAA,aAAG,GAAE,EAAE,IAAI,CAAC,CAAA;YAE9B,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;YAC1B,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC;gBAC9B,SAAQ;YAEZ,MAAM,GAAG,GAAG,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAmC,CAAA;YACpE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SACnB;QACD,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IACpB,CAAC;CACJ;AA5CD,oDA4CC"} \ No newline at end of file diff --git a/dist/managers/FunctionManager.d.ts.map b/dist/managers/FunctionManager.d.ts.map index b3ed89761b..cadc19ebcb 100644 --- a/dist/managers/FunctionManager.d.ts.map +++ b/dist/managers/FunctionManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"FunctionManager.d.ts","sourceRoot":"","sources":["../../src/managers/FunctionManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAA;AACvG,OAAO,EAAE,YAAY,EAAY,MAAM,SAAS,CAAA;AAOhD,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAA;AAEvC,qBAAa,eAAe;IACxB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAoC;WAEvD,UAAU;WAKV,IAAI,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI;WAC1C,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;WAgCxB,OAAO,CAAC,GAAG,GAAG,EAAE,cAAc,CAAC,cAAc,CAAC,EAAE,GAAG,IAAI;WAWvD,GAAG,CAAC,EAAE,EAAE,cAAc,CAAC,IAAI,EAAE,CAAC;WAI9B,MAAM;WAIN,GAAG,CAAC,IAAI,EAAE,MAAM;WAIhB,MAAM,IAAI,eAAe,CAAC,GAAG,CAAC,EAAE;IAgB9C,WAAkB,GAAG,IAAI,YAAY,EAAE,CAkBtC;CACJ"} \ No newline at end of file +{"version":3,"file":"FunctionManager.d.ts","sourceRoot":"","sources":["../../src/managers/FunctionManager.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAA;AACvG,OAAO,EAAE,YAAY,EAAY,MAAM,SAAS,CAAA;AAOhD,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAA;AAEvC,qBAAa,eAAe;IACxB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAoC;WAEvD,UAAU;WAKV,IAAI,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI;WAC1C,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;WAgCxB,OAAO,CAAC,GAAG,GAAG,EAAE,cAAc,CAAC,cAAc,CAAC,EAAE,GAAG,IAAI;WAWvD,GAAG,CAAC,EAAE,EAAE,cAAc,CAAC,IAAI,EAAE,CAAC;WAI9B,MAAM;WAIN,GAAG,CAAC,IAAI,EAAE,MAAM;WAIhB,MAAM,IAAI,eAAe,CAAC,GAAG,CAAC,EAAE;IAgB9C,WAAkB,GAAG,IAAI,YAAY,EAAE,CAkBtC;CACJ"} \ No newline at end of file diff --git a/dist/managers/FunctionManager.js b/dist/managers/FunctionManager.js index 05808e7dee..a69ae1b464 100644 --- a/dist/managers/FunctionManager.js +++ b/dist/managers/FunctionManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/managers/FunctionManager.js.map b/dist/managers/FunctionManager.js.map index b3e3f2ac80..11e14188fd 100644 --- a/dist/managers/FunctionManager.js.map +++ b/dist/managers/FunctionManager.js.map @@ -1 +1 @@ -{"version":3,"file":"FunctionManager.js","sourceRoot":"","sources":["../../src/managers/FunctionManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"FunctionManager.js","sourceRoot":"","sources":["../../src/managers/FunctionManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/managers/NativeCommandManager.d.ts.map b/dist/managers/NativeCommandManager.d.ts.map index 0fdde6f689..97378f7e9b 100644 --- a/dist/managers/NativeCommandManager.d.ts.map +++ b/dist/managers/NativeCommandManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NativeCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/NativeCommandManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAGzD,qBAAa,oBAAqB,SAAQ,kBAAkB,CAAC,WAAW,CAAC;IAC9D,WAAW,SAAkB;CACvC"} \ No newline at end of file +{"version":3,"file":"NativeCommandManager.d.ts","sourceRoot":"","sources":["../../src/managers/NativeCommandManager.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAGzD,qBAAa,oBAAqB,SAAQ,kBAAkB,CAAC,WAAW,CAAC;IAC9D,WAAW,SAAkB;CACvC"} \ No newline at end of file diff --git a/dist/managers/NativeCommandManager.js b/dist/managers/NativeCommandManager.js index 9692359a01..6695a5fde0 100644 --- a/dist/managers/NativeCommandManager.js +++ b/dist/managers/NativeCommandManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.NativeCommandManager = void 0; const BaseCommandManager_1 = require("./BaseCommandManager"); diff --git a/dist/managers/NativeCommandManager.js.map b/dist/managers/NativeCommandManager.js.map index 7b54e0b62d..4747125b16 100644 --- a/dist/managers/NativeCommandManager.js.map +++ b/dist/managers/NativeCommandManager.js.map @@ -1 +1 @@ -{"version":3,"file":"NativeCommandManager.js","sourceRoot":"","sources":["../../src/managers/NativeCommandManager.ts"],"names":[],"mappings":";;;AACA,6DAAyD;AACzD,iDAAgD;AAEhD,MAAa,oBAAqB,SAAQ,uCAA+B;IAC9D,WAAW,GAAG,8BAAe,CAAA;CACvC;AAFD,oDAEC"} \ No newline at end of file +{"version":3,"file":"NativeCommandManager.js","sourceRoot":"","sources":["../../src/managers/NativeCommandManager.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,6DAAyD;AACzD,iDAAgD;AAEhD,MAAa,oBAAqB,SAAQ,uCAA+B;IAC9D,WAAW,GAAG,8BAAe,CAAA;CACvC;AAFD,oDAEC"} \ No newline at end of file diff --git a/dist/managers/ThreadManager.d.ts.map b/dist/managers/ThreadManager.d.ts.map index cd0a742597..f53caf9499 100644 --- a/dist/managers/ThreadManager.d.ts.map +++ b/dist/managers/ThreadManager.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ThreadManager.d.ts","sourceRoot":"","sources":["../../src/managers/ThreadManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAKhD,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,CAAC,EAAE,SAAS,CAAC,aAAa,CAAC,CAAA;IACtC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;CACnC;AAED,MAAM,WAAW,aAAa;IAC1B,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AAED,MAAM,WAAW,WAAW;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAA;IACrC,OAAO,EAAE,cAAc,CAAA;CAC1B;AAED,qBAAa,aAAa;IAWH,OAAO,CAAC,QAAQ,CAAC,MAAM;IAV1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAoB;IAC9C,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAoB;IAEzC,OAAO,CAAC,cAAc,CAAI;IAE1B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAiC;IACvD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAiC;IAE3D,OAAO,CAAC,SAAS,CAAI;gBAEe,MAAM,EAAE,WAAW;IAE1C,GAAG,CAAC,GAAG,EAAE,cAAc;YAUtB,OAAO;YAKP,OAAO;IAkBrB,OAAO,CAAC,aAAa;IAIrB,OAAO,KAAK,WAAW,GAEtB;IAED,OAAO,CAAC,kBAAkB;IAK1B,OAAO,CAAC,aAAa;YAKP,kBAAkB;YAYlB,YAAY;YAOZ,aAAa;YAMb,eAAe;CAOhC"} \ No newline at end of file +{"version":3,"file":"ThreadManager.d.ts","sourceRoot":"","sources":["../../src/managers/ThreadManager.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAKhD,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,CAAC,EAAE,SAAS,CAAC,aAAa,CAAC,CAAA;IACtC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;CACnC;AAED,MAAM,WAAW,aAAa;IAC1B,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AAED,MAAM,WAAW,WAAW;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAA;IACrC,OAAO,EAAE,cAAc,CAAA;CAC1B;AAED,qBAAa,aAAa;IAWH,OAAO,CAAC,QAAQ,CAAC,MAAM;IAV1C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAoB;IAC9C,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAoB;IAEzC,OAAO,CAAC,cAAc,CAAI;IAE1B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAiC;IACvD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAiC;IAE3D,OAAO,CAAC,SAAS,CAAI;gBAEe,MAAM,EAAE,WAAW;IAE1C,GAAG,CAAC,GAAG,EAAE,cAAc;YAUtB,OAAO;YAKP,OAAO;IAkBrB,OAAO,CAAC,aAAa;IAIrB,OAAO,KAAK,WAAW,GAEtB;IAED,OAAO,CAAC,kBAAkB;IAK1B,OAAO,CAAC,aAAa;YAKP,kBAAkB;YAYlB,YAAY;YAOZ,aAAa;YAMb,eAAe;CAOhC"} \ No newline at end of file diff --git a/dist/managers/ThreadManager.js b/dist/managers/ThreadManager.js index 71d4b2b821..bb1e6ced8f 100644 --- a/dist/managers/ThreadManager.js +++ b/dist/managers/ThreadManager.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ThreadManager = void 0; const Logger_1 = require("../structures/@internal/Logger"); diff --git a/dist/managers/ThreadManager.js.map b/dist/managers/ThreadManager.js.map index 0c0d2a07fd..d35e56c64b 100644 --- a/dist/managers/ThreadManager.js.map +++ b/dist/managers/ThreadManager.js.map @@ -1 +1 @@ -{"version":3,"file":"ThreadManager.js","sourceRoot":"","sources":["../../src/managers/ThreadManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"ThreadManager.js","sourceRoot":"","sources":["../../src/managers/ThreadManager.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/managers/index.d.ts.map b/dist/managers/index.d.ts.map index ac084d0ef3..b073e1ae26 100644 --- a/dist/managers/index.d.ts.map +++ b/dist/managers/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/managers/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iBAAiB,CAAA"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/managers/index.ts"],"names":[],"mappings":"AAKA,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iBAAiB,CAAA"} \ No newline at end of file diff --git a/dist/managers/index.js b/dist/managers/index.js index 276a637b09..f2a10a9ea1 100644 --- a/dist/managers/index.js +++ b/dist/managers/index.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/managers/index.js.map b/dist/managers/index.js.map index 94ff485080..2b932ddc66 100644 --- a/dist/managers/index.js.map +++ b/dist/managers/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/managers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,oDAAiC;AACjC,yDAAsC;AACtC,iDAA8B;AAC9B,oDAAiC;AACjC,yDAAsC;AACtC,8DAA2C;AAC3C,kDAA+B"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/managers/index.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;AAEF,uDAAoC;AACpC,oDAAiC;AACjC,yDAAsC;AACtC,iDAA8B;AAC9B,oDAAiC;AACjC,yDAAsC;AACtC,8DAA2C;AAC3C,kDAA+B"} \ No newline at end of file diff --git a/dist/native/array/advancedTextSplit.d.ts.map b/dist/native/array/advancedTextSplit.d.ts.map index bbca5df326..49e460e406 100644 --- a/dist/native/array/advancedTextSplit.d.ts.map +++ b/dist/native/array/advancedTextSplit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"advancedTextSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/advancedTextSplit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBAiCE"} \ No newline at end of file +{"version":3,"file":"advancedTextSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/advancedTextSplit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBAiCE"} \ No newline at end of file diff --git a/dist/native/array/advancedTextSplit.js b/dist/native/array/advancedTextSplit.js index d31e7edd7f..99ea8e5767 100644 --- a/dist/native/array/advancedTextSplit.js +++ b/dist/native/array/advancedTextSplit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/advancedTextSplit.js.map b/dist/native/array/advancedTextSplit.js.map index f782e45acc..a9a753df6b 100644 --- a/dist/native/array/advancedTextSplit.js.map +++ b/dist/native/array/advancedTextSplit.js.map @@ -1 +1 @@ -{"version":3,"file":"advancedTextSplit.js","sourceRoot":"","sources":["../../../src/native/array/advancedTextSplit.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,wCAAwC;SACxD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,CAAE;QACzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,CAAC,EAAE;YAChD,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YACnC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAA;YAC/B,IAAI,IAAI,KAAK,SAAS;gBAClB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"advancedTextSplit.js","sourceRoot":"","sources":["../../../src/native/array/advancedTextSplit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,wCAAwC;SACxD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,CAAE;QACzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,CAAC,EAAE;YAChD,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YACnC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAA;YAC/B,IAAI,IAAI,KAAK,SAAS;gBAClB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayAdvancedSort.d.ts.map b/dist/native/array/arrayAdvancedSort.d.ts.map index 3bba30aad0..09ac2fbfdd 100644 --- a/dist/native/array/arrayAdvancedSort.d.ts.map +++ b/dist/native/array/arrayAdvancedSort.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayAdvancedSort.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayAdvancedSort.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuBlG,wBAuEE"} \ No newline at end of file +{"version":3,"file":"arrayAdvancedSort.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayAdvancedSort.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuBlG,wBAuEE"} \ No newline at end of file diff --git a/dist/native/array/arrayAdvancedSort.js b/dist/native/array/arrayAdvancedSort.js index fcdcd6f4f9..40d6202714 100644 --- a/dist/native/array/arrayAdvancedSort.js +++ b/dist/native/array/arrayAdvancedSort.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); async function asyncSort(array, asyncComparator) { diff --git a/dist/native/array/arrayAdvancedSort.js.map b/dist/native/array/arrayAdvancedSort.js.map index 83cb1b19ab..7f0a6cb367 100644 --- a/dist/native/array/arrayAdvancedSort.js.map +++ b/dist/native/array/arrayAdvancedSort.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayAdvancedSort.js","sourceRoot":"","sources":["../../../src/native/array/arrayAdvancedSort.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"arrayAdvancedSort.js","sourceRoot":"","sources":["../../../src/native/array/arrayAdvancedSort.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/array/arrayAt.d.ts.map b/dist/native/array/arrayAt.d.ts.map index 9cfcd4508f..a141f2fa42 100644 --- a/dist/native/array/arrayAt.d.ts.map +++ b/dist/native/array/arrayAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayAt.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE3E,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayAt.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE3E,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayAt.js b/dist/native/array/arrayAt.js index 77920c8fa8..8059325b94 100644 --- a/dist/native/array/arrayAt.js +++ b/dist/native/array/arrayAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayAt.js.map b/dist/native/array/arrayAt.js.map index 1bd35ca3c3..5e9a828be7 100644 --- a/dist/native/array/arrayAt.js.map +++ b/dist/native/array/arrayAt.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayAt.js","sourceRoot":"","sources":["../../../src/native/array/arrayAt.ts"],"names":[],"mappings":";;AAAA,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC;QAC1B,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayAt.js","sourceRoot":"","sources":["../../../src/native/array/arrayAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC;QAC1B,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayClear.d.ts.map b/dist/native/array/arrayClear.d.ts.map index f509576a4f..4c842f6229 100644 --- a/dist/native/array/arrayClear.d.ts.map +++ b/dist/native/array/arrayClear.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayClear.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayClear.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"arrayClear.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayClear.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/array/arrayClear.js b/dist/native/array/arrayClear.js index 4ae1cd90b1..f1210a225a 100644 --- a/dist/native/array/arrayClear.js +++ b/dist/native/array/arrayClear.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayClear.js.map b/dist/native/array/arrayClear.js.map index a6ee802605..adba84eb06 100644 --- a/dist/native/array/arrayClear.js.map +++ b/dist/native/array/arrayClear.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayClear.js","sourceRoot":"","sources":["../../../src/native/array/arrayClear.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,GAAG,CAAC,MAAM,GAAG,CAAC,CAAA;SACjB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayClear.js","sourceRoot":"","sources":["../../../src/native/array/arrayClear.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,GAAG,CAAC,MAAM,GAAG,CAAC,CAAA;SACjB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayConcat.d.ts.map b/dist/native/array/arrayConcat.d.ts.map index a984853934..b86fab03aa 100644 --- a/dist/native/array/arrayConcat.d.ts.map +++ b/dist/native/array/arrayConcat.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayConcat.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayConcat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"arrayConcat.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayConcat.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/array/arrayConcat.js b/dist/native/array/arrayConcat.js index d294f3be54..60589c5ac6 100644 --- a/dist/native/array/arrayConcat.js +++ b/dist/native/array/arrayConcat.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayConcat.js.map b/dist/native/array/arrayConcat.js.map index 498f028a6f..9905a6a0be 100644 --- a/dist/native/array/arrayConcat.js.map +++ b/dist/native/array/arrayConcat.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayConcat.js","sourceRoot":"","sources":["../../../src/native/array/arrayConcat.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC;QAC1B,MAAM,GAAG,GAAG,IAAI,KAAK,EAAW,CAAA;QAEhC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAClD,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAA;YACrC,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gBAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,CAAC;YACT,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;YACrD,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayConcat.js","sourceRoot":"","sources":["../../../src/native/array/arrayConcat.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC;QAC1B,MAAM,GAAG,GAAG,IAAI,KAAK,EAAW,CAAA;QAEhC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAClD,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAA;YACrC,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gBAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,CAAC;YACT,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;YACrD,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayCreate.d.ts.map b/dist/native/array/arrayCreate.d.ts.map index e988c262b9..357f0279b4 100644 --- a/dist/native/array/arrayCreate.d.ts.map +++ b/dist/native/array/arrayCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayCreate.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayCreate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"arrayCreate.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayCreate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/array/arrayCreate.js b/dist/native/array/arrayCreate.js index 24dc0b21d7..07da681105 100644 --- a/dist/native/array/arrayCreate.js +++ b/dist/native/array/arrayCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayCreate.js.map b/dist/native/array/arrayCreate.js.map index bdec3bf58a..6101600204 100644 --- a/dist/native/array/arrayCreate.js.map +++ b/dist/native/array/arrayCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayCreate.js","sourceRoot":"","sources":["../../../src/native/array/arrayCreate.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;QACX,YAAY;KACf;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iDAAiD;IAC9D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACjB,GAAG,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayCreate.js","sourceRoot":"","sources":["../../../src/native/array/arrayCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;QACX,YAAY;KACf;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iDAAiD;IAC9D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACjB,GAAG,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayEvery.d.ts.map b/dist/native/array/arrayEvery.d.ts.map index b8fc2b175a..7bc8db461b 100644 --- a/dist/native/array/arrayEvery.d.ts.map +++ b/dist/native/array/arrayEvery.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayEvery.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayEvery.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElG,wBA0DE"} \ No newline at end of file +{"version":3,"file":"arrayEvery.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayEvery.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElG,wBA0DE"} \ No newline at end of file diff --git a/dist/native/array/arrayEvery.js b/dist/native/array/arrayEvery.js index eff099b764..9ac4b9b74d 100644 --- a/dist/native/array/arrayEvery.js +++ b/dist/native/array/arrayEvery.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arrayEvery.js.map b/dist/native/array/arrayEvery.js.map index a85e71b2f3..c07e6bd150 100644 --- a/dist/native/array/arrayEvery.js.map +++ b/dist/native/array/arrayEvery.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayEvery.js","sourceRoot":"","sources":["../../../src/native/array/arrayEvery.ts"],"names":[],"mappings":";;;;;AAAA,oEAA2C;AAC3C,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wFAAwF;IACrG,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;gBAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;oBACzB,IAAI,IAAA,gBAAM,EAAC,EAAE,CAAC;wBAAE,SAAQ;oBACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;iBAC7B;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayEvery.js","sourceRoot":"","sources":["../../../src/native/array/arrayEvery.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,oEAA2C;AAC3C,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wFAAwF;IACrG,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;gBAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;oBACzB,IAAI,IAAA,gBAAM,EAAC,EAAE,CAAC;wBAAE,SAAQ;oBACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;iBAC7B;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayFill.d.ts.map b/dist/native/array/arrayFill.d.ts.map index 60112e4f50..9d70f8cac2 100644 --- a/dist/native/array/arrayFill.d.ts.map +++ b/dist/native/array/arrayFill.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayFill.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"arrayFill.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFill.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/array/arrayFill.js b/dist/native/array/arrayFill.js index 9444038806..4892780809 100644 --- a/dist/native/array/arrayFill.js +++ b/dist/native/array/arrayFill.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayFill.js.map b/dist/native/array/arrayFill.js.map index 4feed85079..46fb203ef6 100644 --- a/dist/native/array/arrayFill.js.map +++ b/dist/native/array/arrayFill.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayFill.js","sourceRoot":"","sources":["../../../src/native/array/arrayFill.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iCAAiC;IAC9C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACjB,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayFill.js","sourceRoot":"","sources":["../../../src/native/array/arrayFill.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iCAAiC;IAC9C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACjB,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayFindIndex.d.ts.map b/dist/native/array/arrayFindIndex.d.ts.map index 33a4a9177c..f571322c8e 100644 --- a/dist/native/array/arrayFindIndex.d.ts.map +++ b/dist/native/array/arrayFindIndex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayFindIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFindIndex.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBA2DE"} \ No newline at end of file +{"version":3,"file":"arrayFindIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFindIndex.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBA2DE"} \ No newline at end of file diff --git a/dist/native/array/arrayFindIndex.js b/dist/native/array/arrayFindIndex.js index 226ba8fc88..902e1d9227 100644 --- a/dist/native/array/arrayFindIndex.js +++ b/dist/native/array/arrayFindIndex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arrayFindIndex.js.map b/dist/native/array/arrayFindIndex.js.map index 542e741aca..04138e3f8b 100644 --- a/dist/native/array/arrayFindIndex.js.map +++ b/dist/native/array/arrayFindIndex.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayFindIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayFindIndex.ts"],"names":[],"mappings":";;;;;AAAA,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;YAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;YAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;gBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;oBAAE,SAAQ;gBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;iBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayFindIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayFindIndex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;YAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;YAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;gBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;oBAAE,SAAQ;gBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;iBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayFindLastIndex.d.ts.map b/dist/native/array/arrayFindLastIndex.d.ts.map index 6684190cb3..9020cb63f7 100644 --- a/dist/native/array/arrayFindLastIndex.d.ts.map +++ b/dist/native/array/arrayFindLastIndex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayFindLastIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFindLastIndex.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBA2DE"} \ No newline at end of file +{"version":3,"file":"arrayFindLastIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayFindLastIndex.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBA2DE"} \ No newline at end of file diff --git a/dist/native/array/arrayFindLastIndex.js b/dist/native/array/arrayFindLastIndex.js index bd406f18b0..3df1cebd15 100644 --- a/dist/native/array/arrayFindLastIndex.js +++ b/dist/native/array/arrayFindLastIndex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arrayFindLastIndex.js.map b/dist/native/array/arrayFindLastIndex.js.map index a322d3e83f..47a64ed5ef 100644 --- a/dist/native/array/arrayFindLastIndex.js.map +++ b/dist/native/array/arrayFindLastIndex.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayFindLastIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayFindLastIndex.ts"],"names":[],"mappings":";;;;;AAAA,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhD,KAAK,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;YAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;YAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;gBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;oBAAE,SAAQ;gBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;iBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayFindLastIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayFindLastIndex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhD,KAAK,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;YAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;YAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;gBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;oBAAE,SAAQ;gBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;iBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayForEach.d.ts.map b/dist/native/array/arrayForEach.d.ts.map index 0167c8b528..18ec0daecb 100644 --- a/dist/native/array/arrayForEach.d.ts.map +++ b/dist/native/array/arrayForEach.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayForEach.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayForEach.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file +{"version":3,"file":"arrayForEach.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayForEach.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file diff --git a/dist/native/array/arrayForEach.js b/dist/native/array/arrayForEach.js index f1843f40df..2373c668da 100644 --- a/dist/native/array/arrayForEach.js +++ b/dist/native/array/arrayForEach.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayForEach.js.map b/dist/native/array/arrayForEach.js.map index 3ca460ac62..ea4d876d9f 100644 --- a/dist/native/array/arrayForEach.js.map +++ b/dist/native/array/arrayForEach.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayForEach.js","sourceRoot":"","sources":["../../../src/native/array/arrayForEach.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;gBAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aAChD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayForEach.js","sourceRoot":"","sources":["../../../src/native/array/arrayForEach.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEzF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACvD,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;gBAClC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aAChD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayIncludes.d.ts.map b/dist/native/array/arrayIncludes.d.ts.map index 177fd79fa8..adab49bb6b 100644 --- a/dist/native/array/arrayIncludes.d.ts.map +++ b/dist/native/array/arrayIncludes.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayIncludes.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayIncludes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayIncludes.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayIncludes.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayIncludes.js b/dist/native/array/arrayIncludes.js index d1d3dc4f89..63f9242e10 100644 --- a/dist/native/array/arrayIncludes.js +++ b/dist/native/array/arrayIncludes.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayIncludes.js.map b/dist/native/array/arrayIncludes.js.map index 1014db6824..366d7b7c44 100644 --- a/dist/native/array/arrayIncludes.js.map +++ b/dist/native/array/arrayIncludes.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayIncludes.js","sourceRoot":"","sources":["../../../src/native/array/arrayIncludes.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayIncludes.js","sourceRoot":"","sources":["../../../src/native/array/arrayIncludes.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayIndexOf.d.ts.map b/dist/native/array/arrayIndexOf.d.ts.map index ea100a40bf..c73718280b 100644 --- a/dist/native/array/arrayIndexOf.d.ts.map +++ b/dist/native/array/arrayIndexOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayIndexOf.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayIndexOf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayIndexOf.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayIndexOf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayIndexOf.js b/dist/native/array/arrayIndexOf.js index bdb9124fcb..9ccfa15f9a 100644 --- a/dist/native/array/arrayIndexOf.js +++ b/dist/native/array/arrayIndexOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayIndexOf.js.map b/dist/native/array/arrayIndexOf.js.map index b7a131070d..98adf84a53 100644 --- a/dist/native/array/arrayIndexOf.js.map +++ b/dist/native/array/arrayIndexOf.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayIndexOf.js","sourceRoot":"","sources":["../../../src/native/array/arrayIndexOf.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayIndexOf.js","sourceRoot":"","sources":["../../../src/native/array/arrayIndexOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayJoin.d.ts.map b/dist/native/array/arrayJoin.d.ts.map index 2404fe155a..456999ef23 100644 --- a/dist/native/array/arrayJoin.d.ts.map +++ b/dist/native/array/arrayJoin.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayJoin.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayJoin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"arrayJoin.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayJoin.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/array/arrayJoin.js b/dist/native/array/arrayJoin.js index 17131ba974..31401f0a83 100644 --- a/dist/native/array/arrayJoin.js +++ b/dist/native/array/arrayJoin.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arrayJoin.js.map b/dist/native/array/arrayJoin.js.map index 9eb4ce9114..c800232012 100644 --- a/dist/native/array/arrayJoin.js.map +++ b/dist/native/array/arrayJoin.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayJoin.js","sourceRoot":"","sources":["../../../src/native/array/arrayJoin.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayJoin.js","sourceRoot":"","sources":["../../../src/native/array/arrayJoin.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayLastIndexOf.d.ts.map b/dist/native/array/arrayLastIndexOf.d.ts.map index 51b83f4532..0bff96fa56 100644 --- a/dist/native/array/arrayLastIndexOf.d.ts.map +++ b/dist/native/array/arrayLastIndexOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayLastIndexOf.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLastIndexOf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayLastIndexOf.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLastIndexOf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayLastIndexOf.js b/dist/native/array/arrayLastIndexOf.js index b1391980ac..38b2983596 100644 --- a/dist/native/array/arrayLastIndexOf.js +++ b/dist/native/array/arrayLastIndexOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayLastIndexOf.js.map b/dist/native/array/arrayLastIndexOf.js.map index f92a634736..968c6972c0 100644 --- a/dist/native/array/arrayLastIndexOf.js.map +++ b/dist/native/array/arrayLastIndexOf.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayLastIndexOf.js","sourceRoot":"","sources":["../../../src/native/array/arrayLastIndexOf.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayLastIndexOf.js","sourceRoot":"","sources":["../../../src/native/array/arrayLastIndexOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayLength.d.ts.map b/dist/native/array/arrayLength.d.ts.map index ea260ea233..9f33b323f8 100644 --- a/dist/native/array/arrayLength.d.ts.map +++ b/dist/native/array/arrayLength.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayLength.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLength.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"arrayLength.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLength.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/array/arrayLength.js b/dist/native/array/arrayLength.js index fb0b81443a..02e23c5e01 100644 --- a/dist/native/array/arrayLength.js +++ b/dist/native/array/arrayLength.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayLength.js.map b/dist/native/array/arrayLength.js.map index 4560b0de69..781e058c0b 100644 --- a/dist/native/array/arrayLength.js.map +++ b/dist/native/array/arrayLength.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayLength.js","sourceRoot":"","sources":["../../../src/native/array/arrayLength.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,IAAI;QACb,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayLength.js","sourceRoot":"","sources":["../../../src/native/array/arrayLength.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,IAAI;QACb,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayLoad.d.ts.map b/dist/native/array/arrayLoad.d.ts.map index 5ba9810e10..6f22494544 100644 --- a/dist/native/array/arrayLoad.d.ts.map +++ b/dist/native/array/arrayLoad.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayLoad.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLoad.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"arrayLoad.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayLoad.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/array/arrayLoad.js b/dist/native/array/arrayLoad.js index 8e0d72260d..ff97e4d7d2 100644 --- a/dist/native/array/arrayLoad.js +++ b/dist/native/array/arrayLoad.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayLoad.js.map b/dist/native/array/arrayLoad.js.map index bcd9eea6a2..c68ef78006 100644 --- a/dist/native/array/arrayLoad.js.map +++ b/dist/native/array/arrayLoad.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayLoad.js","sourceRoot":"","sources":["../../../src/native/array/arrayLoad.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,MAAM,CAAC;QAC5B,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;QAC5E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayLoad.js","sourceRoot":"","sources":["../../../src/native/array/arrayLoad.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,MAAM,CAAC;QAC5B,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;QAC5E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayMap.d.ts.map b/dist/native/array/arrayMap.d.ts.map index 0a3d70943c..4ef18353c8 100644 --- a/dist/native/array/arrayMap.d.ts.map +++ b/dist/native/array/arrayMap.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayMap.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayMap.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAwEE"} \ No newline at end of file +{"version":3,"file":"arrayMap.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayMap.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAwEE"} \ No newline at end of file diff --git a/dist/native/array/arrayMap.js b/dist/native/array/arrayMap.js index 56f94241ae..78b333a46e 100644 --- a/dist/native/array/arrayMap.js +++ b/dist/native/array/arrayMap.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arrayMap.js.map b/dist/native/array/arrayMap.js.map index 6bc1de7f1f..4b456bf127 100644 --- a/dist/native/array/arrayMap.js.map +++ b/dist/native/array/arrayMap.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayMap.js","sourceRoot":"","sources":["../../../src/native/array/arrayMap.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"arrayMap.js","sourceRoot":"","sources":["../../../src/native/array/arrayMap.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/array/arrayPop.d.ts.map b/dist/native/array/arrayPop.d.ts.map index 1d7b1dbc24..3bbcacda8c 100644 --- a/dist/native/array/arrayPop.d.ts.map +++ b/dist/native/array/arrayPop.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayPop.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPop.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"arrayPop.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPop.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/arrayPop.js b/dist/native/array/arrayPop.js index 7206653d06..800da76d9d 100644 --- a/dist/native/array/arrayPop.js +++ b/dist/native/array/arrayPop.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayPop.js.map b/dist/native/array/arrayPop.js.map index d40db9836a..baa86ca0ef 100644 --- a/dist/native/array/arrayPop.js.map +++ b/dist/native/array/arrayPop.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayPop.js","sourceRoot":"","sources":["../../../src/native/array/arrayPop.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayPop.js","sourceRoot":"","sources":["../../../src/native/array/arrayPop.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayPush.d.ts.map b/dist/native/array/arrayPush.d.ts.map index 8a74861ff2..148c21aff0 100644 --- a/dist/native/array/arrayPush.d.ts.map +++ b/dist/native/array/arrayPush.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayPush.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPush.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayPush.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPush.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayPush.js b/dist/native/array/arrayPush.js index a4f464d83d..6de06522e7 100644 --- a/dist/native/array/arrayPush.js +++ b/dist/native/array/arrayPush.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayPush.js.map b/dist/native/array/arrayPush.js.map index 9a93fd00a0..86b6baa268 100644 --- a/dist/native/array/arrayPush.js.map +++ b/dist/native/array/arrayPush.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayPush.js","sourceRoot":"","sources":["../../../src/native/array/arrayPush.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayPush.js","sourceRoot":"","sources":["../../../src/native/array/arrayPush.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayPushJSON.d.ts.map b/dist/native/array/arrayPushJSON.d.ts.map index 312c69315f..dd54bd8131 100644 --- a/dist/native/array/arrayPushJSON.d.ts.map +++ b/dist/native/array/arrayPushJSON.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayPushJSON.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPushJSON.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayPushJSON.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayPushJSON.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayPushJSON.js b/dist/native/array/arrayPushJSON.js index 97405aea96..8aa5c5cce5 100644 --- a/dist/native/array/arrayPushJSON.js +++ b/dist/native/array/arrayPushJSON.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayPushJSON.js.map b/dist/native/array/arrayPushJSON.js.map index bff186c936..310a2f2b01 100644 --- a/dist/native/array/arrayPushJSON.js.map +++ b/dist/native/array/arrayPushJSON.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayPushJSON.js","sourceRoot":"","sources":["../../../src/native/array/arrayPushJSON.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayPushJSON.js","sourceRoot":"","sources":["../../../src/native/array/arrayPushJSON.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayRandomIndex.d.ts.map b/dist/native/array/arrayRandomIndex.d.ts.map index 0d19cdbbe8..379a5bc8c1 100644 --- a/dist/native/array/arrayRandomIndex.d.ts.map +++ b/dist/native/array/arrayRandomIndex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayRandomIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayRandomIndex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"arrayRandomIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayRandomIndex.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/array/arrayRandomIndex.js b/dist/native/array/arrayRandomIndex.js index f01d1e8c0f..20b2f1a947 100644 --- a/dist/native/array/arrayRandomIndex.js +++ b/dist/native/array/arrayRandomIndex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayRandomIndex.js.map b/dist/native/array/arrayRandomIndex.js.map index f911037da7..b13a54aeab 100644 --- a/dist/native/array/arrayRandomIndex.js.map +++ b/dist/native/array/arrayRandomIndex.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayRandomIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayRandomIndex.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayRandomIndex.js","sourceRoot":"","sources":["../../../src/native/array/arrayRandomIndex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayRandomValue.d.ts.map b/dist/native/array/arrayRandomValue.d.ts.map index d5aff3eef1..60de622f05 100644 --- a/dist/native/array/arrayRandomValue.d.ts.map +++ b/dist/native/array/arrayRandomValue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayRandomValue.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayRandomValue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"arrayRandomValue.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayRandomValue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/array/arrayRandomValue.js b/dist/native/array/arrayRandomValue.js index 57095bd0be..14549fdd65 100644 --- a/dist/native/array/arrayRandomValue.js +++ b/dist/native/array/arrayRandomValue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayRandomValue.js.map b/dist/native/array/arrayRandomValue.js.map index d8a80bc723..cb67211c6e 100644 --- a/dist/native/array/arrayRandomValue.js.map +++ b/dist/native/array/arrayRandomValue.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayRandomValue.js","sourceRoot":"","sources":["../../../src/native/array/arrayRandomValue.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayRandomValue.js","sourceRoot":"","sources":["../../../src/native/array/arrayRandomValue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayReduce.d.ts.map b/dist/native/array/arrayReduce.d.ts.map index 1f4539cb7b..bd631291fd 100644 --- a/dist/native/array/arrayReduce.d.ts.map +++ b/dist/native/array/arrayReduce.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayReduce.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayReduce.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAwEE"} \ No newline at end of file +{"version":3,"file":"arrayReduce.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayReduce.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAwEE"} \ No newline at end of file diff --git a/dist/native/array/arrayReduce.js b/dist/native/array/arrayReduce.js index f3032d022c..df1eb394db 100644 --- a/dist/native/array/arrayReduce.js +++ b/dist/native/array/arrayReduce.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayReduce.js.map b/dist/native/array/arrayReduce.js.map index 5fa66e6941..d02523a152 100644 --- a/dist/native/array/arrayReduce.js.map +++ b/dist/native/array/arrayReduce.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayReduce.js","sourceRoot":"","sources":["../../../src/native/array/arrayReduce.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC/E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,CAAC,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,YAAY,CAAC,GAAG,IAAI,CAAA;QAE1D,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAA;QAE7C,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBAEjB,GAAG,CAAC,iBAAiB,CAAC,aAAa,EAAE,EAAE,CAAC,CAAA;gBAExC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,EAAE,CAAC,MAAM,EAAE;oBACX,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,EAAE,CAAC,KAAK,CAAC,CAAA;iBAC5C;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayReduce.js","sourceRoot":"","sources":["../../../src/native/array/arrayReduce.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC/E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,CAAC,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,YAAY,CAAC,GAAG,IAAI,CAAA;QAE1D,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAA;QAE7C,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBAEjB,GAAG,CAAC,iBAAiB,CAAC,aAAa,EAAE,EAAE,CAAC,CAAA;gBAExC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAW,CAAA;gBAE3D,IAAI,EAAE,CAAC,MAAM,EAAE;oBACX,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,EAAE,CAAC,KAAK,CAAC,CAAA;iBAC5C;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayReverse.d.ts.map b/dist/native/array/arrayReverse.d.ts.map index 487d890771..b2039510cc 100644 --- a/dist/native/array/arrayReverse.d.ts.map +++ b/dist/native/array/arrayReverse.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayReverse.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayReverse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"arrayReverse.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayReverse.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/array/arrayReverse.js b/dist/native/array/arrayReverse.js index c756a61d9c..25eb965f94 100644 --- a/dist/native/array/arrayReverse.js +++ b/dist/native/array/arrayReverse.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayReverse.js.map b/dist/native/array/arrayReverse.js.map index eca273ad74..04f43c18f8 100644 --- a/dist/native/array/arrayReverse.js.map +++ b/dist/native/array/arrayReverse.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayReverse.js","sourceRoot":"","sources":["../../../src/native/array/arrayReverse.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,IAAI,IAAI;gBACJ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,CAAA;;gBAEpE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayReverse.js","sourceRoot":"","sources":["../../../src/native/array/arrayReverse.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,IAAI,IAAI;gBACJ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,CAAA;;gBAEpE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayShift.d.ts.map b/dist/native/array/arrayShift.d.ts.map index 583381529d..3fa80ddf25 100644 --- a/dist/native/array/arrayShift.d.ts.map +++ b/dist/native/array/arrayShift.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayShift.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayShift.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"arrayShift.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayShift.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/arrayShift.js b/dist/native/array/arrayShift.js index d7e4077d91..66ef09aedd 100644 --- a/dist/native/array/arrayShift.js +++ b/dist/native/array/arrayShift.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayShift.js.map b/dist/native/array/arrayShift.js.map index f0008fd6c6..fc7e65c144 100644 --- a/dist/native/array/arrayShift.js.map +++ b/dist/native/array/arrayShift.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayShift.js","sourceRoot":"","sources":["../../../src/native/array/arrayShift.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayShift.js","sourceRoot":"","sources":["../../../src/native/array/arrayShift.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayShuffle.d.ts.map b/dist/native/array/arrayShuffle.d.ts.map index 016909e9c6..dd6c187229 100644 --- a/dist/native/array/arrayShuffle.d.ts.map +++ b/dist/native/array/arrayShuffle.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayShuffle.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayShuffle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAE3E,wBAqBE"} \ No newline at end of file +{"version":3,"file":"arrayShuffle.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayShuffle.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAE3E,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/arrayShuffle.js b/dist/native/array/arrayShuffle.js index 09ef3995c9..341fdbc0e9 100644 --- a/dist/native/array/arrayShuffle.js +++ b/dist/native/array/arrayShuffle.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayShuffle.js.map b/dist/native/array/arrayShuffle.js.map index 1a8990fdbc..e8604ed8e9 100644 --- a/dist/native/array/arrayShuffle.js.map +++ b/dist/native/array/arrayShuffle.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayShuffle.js","sourceRoot":"","sources":["../../../src/native/array/arrayShuffle.ts"],"names":[],"mappings":";;AAAA,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI;YACZ,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayShuffle.js","sourceRoot":"","sources":["../../../src/native/array/arrayShuffle.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI;YACZ,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arraySlice.d.ts.map b/dist/native/array/arraySlice.d.ts.map index fd5b1589b5..fc3647daf6 100644 --- a/dist/native/array/arraySlice.d.ts.map +++ b/dist/native/array/arraySlice.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arraySlice.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySlice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAiDE"} \ No newline at end of file +{"version":3,"file":"arraySlice.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySlice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAiDE"} \ No newline at end of file diff --git a/dist/native/array/arraySlice.js b/dist/native/array/arraySlice.js index 03819a1097..df3db92a78 100644 --- a/dist/native/array/arraySlice.js +++ b/dist/native/array/arraySlice.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arraySlice.js.map b/dist/native/array/arraySlice.js.map index eda3b5c10a..b8028c6136 100644 --- a/dist/native/array/arraySlice.js.map +++ b/dist/native/array/arraySlice.js.map @@ -1 +1 @@ -{"version":3,"file":"arraySlice.js","sourceRoot":"","sources":["../../../src/native/array/arraySlice.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QACjC,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,MAAM,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAA;YACjD,IAAI,IAAI;gBACJ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA;;gBAE7D,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arraySlice.js","sourceRoot":"","sources":["../../../src/native/array/arraySlice.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QACjC,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,MAAM,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAA;YACjD,IAAI,IAAI;gBACJ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA;;gBAE7D,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arraySome.d.ts.map b/dist/native/array/arraySome.d.ts.map index a806fa9ba2..1ab5198eb6 100644 --- a/dist/native/array/arraySome.d.ts.map +++ b/dist/native/array/arraySome.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arraySome.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySome.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBAyDE"} \ No newline at end of file +{"version":3,"file":"arraySome.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySome.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3I,wBAyDE"} \ No newline at end of file diff --git a/dist/native/array/arraySome.js b/dist/native/array/arraySome.js index 7ea8d36245..0fa02fc077 100644 --- a/dist/native/array/arraySome.js +++ b/dist/native/array/arraySome.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/arraySome.js.map b/dist/native/array/arraySome.js.map index ea0e8c52d6..5942f2fa4d 100644 --- a/dist/native/array/arraySome.js.map +++ b/dist/native/array/arraySome.js.map @@ -1 +1 @@ -{"version":3,"file":"arraySome.js","sourceRoot":"","sources":["../../../src/native/array/arraySome.ts"],"names":[],"mappings":";;;;;AAAA,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAC,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEvE,MAAM,EACF,IAAI,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,EAClC,MAAM,EAAE,EAAE,GACb,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAChD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;gBACnC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;gBAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;oBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;wBAAE,SAAQ;oBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;iBAC5B;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arraySome.js","sourceRoot":"","sources":["../../../src/native/array/arraySome.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,oEAA2C;AAC3C,iDAA2I;AAE3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAC,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAEvE,MAAM,EACF,IAAI,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,EAClC,MAAM,EAAE,EAAE,GACb,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAChD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC5C,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;gBACjB,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;gBACnC,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,IAA0D,CAAC,CAAW,CAAA;gBAEtH,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,OAAO,EAAE;oBACzB,IAAI,CAAC,IAAA,gBAAM,EAAC,EAAE,CAAC;wBAAE,SAAQ;oBACzB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;iBAC5B;qBAAM,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;oBAAE,OAAO,EAAE,CAAA;aACvD;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arraySort.d.ts.map b/dist/native/array/arraySort.d.ts.map index d20c1b7613..26f6295d40 100644 --- a/dist/native/array/arraySort.d.ts.map +++ b/dist/native/array/arraySort.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arraySort.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySort.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,QAAQ;IAChB,GAAG,IAAA;IACH,IAAI,IAAA;CACP;;;;;;;;;;;;;;;;;;;;AAED,wBA2CE"} \ No newline at end of file +{"version":3,"file":"arraySort.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySort.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,QAAQ;IAChB,GAAG,IAAA;IACH,IAAI,IAAA;CACP;;;;;;;;;;;;;;;;;;;;AAED,wBA2CE"} \ No newline at end of file diff --git a/dist/native/array/arraySort.js b/dist/native/array/arraySort.js index 27b57b5703..f3c489ea22 100644 --- a/dist/native/array/arraySort.js +++ b/dist/native/array/arraySort.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.SortType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/array/arraySort.js.map b/dist/native/array/arraySort.js.map index 6df0a31b7d..1eb087eeb4 100644 --- a/dist/native/array/arraySort.js.map +++ b/dist/native/array/arraySort.js.map @@ -1 +1 @@ -{"version":3,"file":"arraySort.js","sourceRoot":"","sources":["../../../src/native/array/arraySort.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,QAGX;AAHD,WAAY,QAAQ;IAChB,qCAAG,CAAA;IACH,uCAAI,CAAA;AACR,CAAC,EAHW,QAAQ,wBAAR,QAAQ,QAGnB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC;QACjC,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI,EAAE;YACd,MAAM,MAAM,GAAG,GAAG,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;YAEvH,IAAI,KAAK;gBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;;gBAEpC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arraySort.js","sourceRoot":"","sources":["../../../src/native/array/arraySort.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,QAGX;AAHD,WAAY,QAAQ;IAChB,qCAAG,CAAA;IACH,uCAAI,CAAA;AACR,CAAC,EAHW,QAAQ,wBAAR,QAAQ,QAGnB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC;QACjC,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI,EAAE;YACd,MAAM,MAAM,GAAG,GAAG,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;YAEvH,IAAI,KAAK;gBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;;gBAEpC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arraySplice.d.ts.map b/dist/native/array/arraySplice.d.ts.map index 295a8aa6ef..8aafab520e 100644 --- a/dist/native/array/arraySplice.d.ts.map +++ b/dist/native/array/arraySplice.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arraySplice.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySplice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAyCE"} \ No newline at end of file +{"version":3,"file":"arraySplice.d.ts","sourceRoot":"","sources":["../../../src/native/array/arraySplice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAyCE"} \ No newline at end of file diff --git a/dist/native/array/arraySplice.js b/dist/native/array/arraySplice.js index 4b5341f003..cfb90547e2 100644 --- a/dist/native/array/arraySplice.js +++ b/dist/native/array/arraySplice.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arraySplice.js.map b/dist/native/array/arraySplice.js.map index bc1c5a4859..2f5287d770 100644 --- a/dist/native/array/arraySplice.js.map +++ b/dist/native/array/arraySplice.js.map @@ -1 +1 @@ -{"version":3,"file":"arraySplice.js","sourceRoot":"","sources":["../../../src/native/array/arraySplice.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC;QACvC,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,QAAQ,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arraySplice.js","sourceRoot":"","sources":["../../../src/native/array/arraySplice.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC;QACvC,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,QAAQ,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayUnique.d.ts.map b/dist/native/array/arrayUnique.d.ts.map index fec2e65559..41cb7f166a 100644 --- a/dist/native/array/arrayUnique.d.ts.map +++ b/dist/native/array/arrayUnique.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnique.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnique.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"arrayUnique.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnique.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/array/arrayUnique.js b/dist/native/array/arrayUnique.js index b6132b2e31..f2e6316ca0 100644 --- a/dist/native/array/arrayUnique.js +++ b/dist/native/array/arrayUnique.js @@ -1,5 +1,10 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); +const lodash_1 = require("lodash"); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$arrayUnique", @@ -27,7 +32,7 @@ exports.default = new structures_1.NativeFunction({ execute(ctx, [variable, other]) { const arr = ctx.getEnvironmentInstance(Array, variable); if (arr !== null) { - const unique = [...new Set(arr)]; + const unique = (0, lodash_1.uniqWith)(arr, lodash_1.isEqual); if (other) ctx.setEnvironmentKey(other, unique); else diff --git a/dist/native/array/arrayUnique.js.map b/dist/native/array/arrayUnique.js.map index f2d1ece039..f167eb0dc6 100644 --- a/dist/native/array/arrayUnique.js.map +++ b/dist/native/array/arrayUnique.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnique.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnique.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC;QAC1B,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI,EAAE;YACd,MAAM,MAAM,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,CAAA;YAEhC,IAAI,KAAK;gBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;;gBAEpC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayUnique.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnique.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAA0C;AAC1C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC;QAC1B,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;QACvD,IAAI,GAAG,KAAK,IAAI,EAAE;YACd,MAAM,MAAM,GAAG,IAAA,iBAAQ,EAAC,GAAG,EAAE,gBAAO,CAAC,CAAA;YAErC,IAAI,KAAK;gBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;;gBAEpC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;SACtC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayUnload.d.ts.map b/dist/native/array/arrayUnload.d.ts.map index 721b1b7d60..f231e8f4de 100644 --- a/dist/native/array/arrayUnload.d.ts.map +++ b/dist/native/array/arrayUnload.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnload.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"arrayUnload.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnload.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/array/arrayUnload.js b/dist/native/array/arrayUnload.js index 4ffebea25a..84aa7650eb 100644 --- a/dist/native/array/arrayUnload.js +++ b/dist/native/array/arrayUnload.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayUnload.js.map b/dist/native/array/arrayUnload.js.map index d0835cf44e..c25e7bbd96 100644 --- a/dist/native/array/arrayUnload.js.map +++ b/dist/native/array/arrayUnload.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnload.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnload.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayUnload.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnload.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayUnshift.d.ts.map b/dist/native/array/arrayUnshift.d.ts.map index 6072e4c1ee..a38aa4737b 100644 --- a/dist/native/array/arrayUnshift.d.ts.map +++ b/dist/native/array/arrayUnshift.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnshift.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnshift.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayUnshift.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnshift.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayUnshift.js b/dist/native/array/arrayUnshift.js index 8118de3fd8..0ca69665d1 100644 --- a/dist/native/array/arrayUnshift.js +++ b/dist/native/array/arrayUnshift.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayUnshift.js.map b/dist/native/array/arrayUnshift.js.map index 3710696546..b708ebddb2 100644 --- a/dist/native/array/arrayUnshift.js.map +++ b/dist/native/array/arrayUnshift.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnshift.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnshift.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayUnshift.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnshift.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/arrayUnshiftJSON.d.ts.map b/dist/native/array/arrayUnshiftJSON.d.ts.map index 1a0da2dfa5..5aecc2c71b 100644 --- a/dist/native/array/arrayUnshiftJSON.d.ts.map +++ b/dist/native/array/arrayUnshiftJSON.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnshiftJSON.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnshiftJSON.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"arrayUnshiftJSON.d.ts","sourceRoot":"","sources":["../../../src/native/array/arrayUnshiftJSON.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/array/arrayUnshiftJSON.js b/dist/native/array/arrayUnshiftJSON.js index 0f74eb16c6..3216aa0373 100644 --- a/dist/native/array/arrayUnshiftJSON.js +++ b/dist/native/array/arrayUnshiftJSON.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/array/arrayUnshiftJSON.js.map b/dist/native/array/arrayUnshiftJSON.js.map index beb07f0211..18628f6e47 100644 --- a/dist/native/array/arrayUnshiftJSON.js.map +++ b/dist/native/array/arrayUnshiftJSON.js.map @@ -1 +1 @@ -{"version":3,"file":"arrayUnshiftJSON.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnshiftJSON.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"arrayUnshiftJSON.js","sourceRoot":"","sources":["../../../src/native/array/arrayUnshiftJSON.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;YAAE,GAAG,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/getSplitTextLength.d.ts.map b/dist/native/array/getSplitTextLength.d.ts.map index bc1f03436d..f264beb6ce 100644 --- a/dist/native/array/getSplitTextLength.d.ts.map +++ b/dist/native/array/getSplitTextLength.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getSplitTextLength.d.ts","sourceRoot":"","sources":["../../../src/native/array/getSplitTextLength.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBAcE"} \ No newline at end of file +{"version":3,"file":"getSplitTextLength.d.ts","sourceRoot":"","sources":["../../../src/native/array/getSplitTextLength.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBAcE"} \ No newline at end of file diff --git a/dist/native/array/getSplitTextLength.js b/dist/native/array/getSplitTextLength.js index 1974f0d0ea..7cc5f47b0b 100644 --- a/dist/native/array/getSplitTextLength.js +++ b/dist/native/array/getSplitTextLength.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const textSplit_1 = require("./textSplit"); diff --git a/dist/native/array/getSplitTextLength.js.map b/dist/native/array/getSplitTextLength.js.map index b08d51c1e1..13dd65cd6f 100644 --- a/dist/native/array/getSplitTextLength.js.map +++ b/dist/native/array/getSplitTextLength.js.map @@ -1 +1 @@ -{"version":3,"file":"getSplitTextLength.js","sourceRoot":"","sources":["../../../src/native/array/getSplitTextLength.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,MAAM,CAC3D,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getSplitTextLength.js","sourceRoot":"","sources":["../../../src/native/array/getSplitTextLength.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,MAAM,CAC3D,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/getTextSplitIndex.d.ts.map b/dist/native/array/getTextSplitIndex.d.ts.map index 03e9965841..3ee7bd435d 100644 --- a/dist/native/array/getTextSplitIndex.d.ts.map +++ b/dist/native/array/getTextSplitIndex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getTextSplitIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/getTextSplitIndex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file +{"version":3,"file":"getTextSplitIndex.d.ts","sourceRoot":"","sources":["../../../src/native/array/getTextSplitIndex.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/getTextSplitIndex.js b/dist/native/array/getTextSplitIndex.js index da601fe3b2..047e147c27 100644 --- a/dist/native/array/getTextSplitIndex.js +++ b/dist/native/array/getTextSplitIndex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const textSplit_1 = require("./textSplit"); diff --git a/dist/native/array/getTextSplitIndex.js.map b/dist/native/array/getTextSplitIndex.js.map index cb0551f812..c8417036e5 100644 --- a/dist/native/array/getTextSplitIndex.js.map +++ b/dist/native/array/getTextSplitIndex.js.map @@ -1 +1 @@ -{"version":3,"file":"getTextSplitIndex.js","sourceRoot":"","sources":["../../../src/native/array/getTextSplitIndex.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,CACrE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getTextSplitIndex.js","sourceRoot":"","sources":["../../../src/native/array/getTextSplitIndex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,CACrE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/segmentTextSplit.d.ts.map b/dist/native/array/segmentTextSplit.d.ts.map index 5b866df11b..277e0ed5cc 100644 --- a/dist/native/array/segmentTextSplit.d.ts.map +++ b/dist/native/array/segmentTextSplit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"segmentTextSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/segmentTextSplit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,eAAO,MAAM,aAAa,UAAoB,CAAA;AAE9C,eAAO,MAAM,SAAS,gBAAuB,CAAA;;;;;;;;AAE7C,wBAmBE"} \ No newline at end of file +{"version":3,"file":"segmentTextSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/segmentTextSplit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,eAAO,MAAM,aAAa,UAAoB,CAAA;AAE9C,eAAO,MAAM,SAAS,gBAAuB,CAAA;;;;;;;;AAE7C,wBAmBE"} \ No newline at end of file diff --git a/dist/native/array/segmentTextSplit.js b/dist/native/array/segmentTextSplit.js index 3d7905cf7b..64997dfeac 100644 --- a/dist/native/array/segmentTextSplit.js +++ b/dist/native/array/segmentTextSplit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Segmenter = exports.SplitTextName = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/array/segmentTextSplit.js.map b/dist/native/array/segmentTextSplit.js.map index 99a19ed547..77e665a7b9 100644 --- a/dist/native/array/segmentTextSplit.js.map +++ b/dist/native/array/segmentTextSplit.js.map @@ -1 +1 @@ -{"version":3,"file":"segmentTextSplit.js","sourceRoot":"","sources":["../../../src/native/array/segmentTextSplit.ts"],"names":[],"mappings":";;;AAAA,iDAA0D;AAC7C,QAAA,aAAa,GAAG,QAAiB,CAAA;AAEjC,QAAA,SAAS,GAAG,IAAI,IAAI,CAAC,SAAS,EAAE,CAAA;AAE7C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,GAAG,CAAC,iBAAiB,CAAC,qBAAa,EAAE,CAAC,GAAG,iBAAS,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"segmentTextSplit.js","sourceRoot":"","sources":["../../../src/native/array/segmentTextSplit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAA0D;AAC7C,QAAA,aAAa,GAAG,QAAiB,CAAA;AAEjC,QAAA,SAAS,GAAG,IAAI,IAAI,CAAC,SAAS,EAAE,CAAA;AAE7C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,GAAG,CAAC,iBAAiB,CAAC,qBAAa,EAAE,CAAC,GAAG,iBAAS,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/splitText.d.ts.map b/dist/native/array/splitText.d.ts.map index 05798bbc02..74f71635b5 100644 --- a/dist/native/array/splitText.d.ts.map +++ b/dist/native/array/splitText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"splitText.d.ts","sourceRoot":"","sources":["../../../src/native/array/splitText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file +{"version":3,"file":"splitText.d.ts","sourceRoot":"","sources":["../../../src/native/array/splitText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/splitText.js b/dist/native/array/splitText.js index 51dca2059b..4abb141aa8 100644 --- a/dist/native/array/splitText.js +++ b/dist/native/array/splitText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const textSplit_1 = require("./textSplit"); diff --git a/dist/native/array/splitText.js.map b/dist/native/array/splitText.js.map index 8038f39467..315cbc840b 100644 --- a/dist/native/array/splitText.js.map +++ b/dist/native/array/splitText.js.map @@ -1 +1 @@ -{"version":3,"file":"splitText.js","sourceRoot":"","sources":["../../../src/native/array/splitText.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,CAAC,KAAK,CAAC,CAC5D,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"splitText.js","sourceRoot":"","sources":["../../../src/native/array/splitText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,EAAE,CAAC,KAAK,CAAC,CAC5D,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/splitTextJoin.d.ts.map b/dist/native/array/splitTextJoin.d.ts.map index 340a7acfc6..55f22c901f 100644 --- a/dist/native/array/splitTextJoin.d.ts.map +++ b/dist/native/array/splitTextJoin.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"splitTextJoin.d.ts","sourceRoot":"","sources":["../../../src/native/array/splitTextJoin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file +{"version":3,"file":"splitTextJoin.d.ts","sourceRoot":"","sources":["../../../src/native/array/splitTextJoin.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBAqBE"} \ No newline at end of file diff --git a/dist/native/array/splitTextJoin.js b/dist/native/array/splitTextJoin.js index cda812e7c9..ddc5b1f0fe 100644 --- a/dist/native/array/splitTextJoin.js +++ b/dist/native/array/splitTextJoin.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/array/splitTextJoin.js.map b/dist/native/array/splitTextJoin.js.map index c20c9327eb..ff933c9860 100644 --- a/dist/native/array/splitTextJoin.js.map +++ b/dist/native/array/splitTextJoin.js.map @@ -1 +1 @@ -{"version":3,"file":"splitTextJoin.js","sourceRoot":"","sources":["../../../src/native/array/splitTextJoin.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"splitTextJoin.js","sourceRoot":"","sources":["../../../src/native/array/splitTextJoin.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAC1D,2CAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,MAAM,GAAG,GAAG,GAAG,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAa,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/array/textSplit.d.ts.map b/dist/native/array/textSplit.d.ts.map index b27a2a9018..a921b4c81e 100644 --- a/dist/native/array/textSplit.d.ts.map +++ b/dist/native/array/textSplit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"textSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/textSplit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,eAAO,MAAM,aAAa,UAAoB,CAAA;;;;;;;;;;;;;;AAE9C,wBA0BE"} \ No newline at end of file +{"version":3,"file":"textSplit.d.ts","sourceRoot":"","sources":["../../../src/native/array/textSplit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,eAAO,MAAM,aAAa,UAAoB,CAAA;;;;;;;;;;;;;;AAE9C,wBA0BE"} \ No newline at end of file diff --git a/dist/native/array/textSplit.js b/dist/native/array/textSplit.js index 65eeb454b1..2872caf2b8 100644 --- a/dist/native/array/textSplit.js +++ b/dist/native/array/textSplit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.SplitTextName = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/array/textSplit.js.map b/dist/native/array/textSplit.js.map index c78644396b..0626b9a107 100644 --- a/dist/native/array/textSplit.js.map +++ b/dist/native/array/textSplit.js.map @@ -1 +1 @@ -{"version":3,"file":"textSplit.js","sourceRoot":"","sources":["../../../src/native/array/textSplit.ts"],"names":[],"mappings":";;;AAAA,iDAA0D;AAC7C,QAAA,aAAa,GAAG,QAAiB,CAAA;AAE9C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,GAAG,CAAC,iBAAiB,CAAC,qBAAa,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"textSplit.js","sourceRoot":"","sources":["../../../src/native/array/textSplit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAA0D;AAC7C,QAAA,aAAa,GAAG,QAAiB,CAAA;AAE9C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,GAAG,CAAC,iBAAiB,CAAC,qBAAa,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/audit/fetchAuditLog.d.ts.map b/dist/native/audit/fetchAuditLog.d.ts.map index a35efe8bc0..1bae2cf561 100644 --- a/dist/native/audit/fetchAuditLog.d.ts.map +++ b/dist/native/audit/fetchAuditLog.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchAuditLog.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvE,wBAkDE"} \ No newline at end of file +{"version":3,"file":"fetchAuditLog.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLog.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvE,wBAkDE"} \ No newline at end of file diff --git a/dist/native/audit/fetchAuditLog.js b/dist/native/audit/fetchAuditLog.js index 1e1e281069..cf988fc6b5 100644 --- a/dist/native/audit/fetchAuditLog.js +++ b/dist/native/audit/fetchAuditLog.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/audit/fetchAuditLog.js.map b/dist/native/audit/fetchAuditLog.js.map index 7ab6e06561..5d3b668f2c 100644 --- a/dist/native/audit/fetchAuditLog.js.map +++ b/dist/native/audit/fetchAuditLog.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchAuditLog.js","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLog.ts"],"names":[],"mappings":";;AAAA,2CAA0C;AAC1C,iDAA0D;AAE1D,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC5C,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;SACP,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchAuditLog.js","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLog.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0C;AAC1C,iDAA0D;AAE1D,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC5C,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;SACP,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/audit/fetchAuditLogCount.d.ts.map b/dist/native/audit/fetchAuditLogCount.d.ts.map index c0f34873c0..3794b5ece9 100644 --- a/dist/native/audit/fetchAuditLogCount.d.ts.map +++ b/dist/native/audit/fetchAuditLogCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchAuditLogCount.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLogCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAI1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"fetchAuditLogCount.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLogCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAI1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/audit/fetchAuditLogCount.js b/dist/native/audit/fetchAuditLogCount.js index 569d0a97b4..20ee1e8a72 100644 --- a/dist/native/audit/fetchAuditLogCount.js +++ b/dist/native/audit/fetchAuditLogCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/audit/fetchAuditLogCount.js.map b/dist/native/audit/fetchAuditLogCount.js.map index 3d9f376fb7..b7120d2f7f 100644 --- a/dist/native/audit/fetchAuditLogCount.js.map +++ b/dist/native/audit/fetchAuditLogCount.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchAuditLogCount.js","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLogCount.ts"],"names":[],"mappings":";;AAAA,2CAA0C;AAC1C,iDAA0D;AAI1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,CAAE;QAChC,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;YACJ,IAAI,EAAE,IAAI,IAAI,SAAS;SAC1B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchAuditLogCount.js","sourceRoot":"","sources":["../../../src/native/audit/fetchAuditLogCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0C;AAC1C,iDAA0D;AAI1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,CAAE;QAChC,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;YACJ,IAAI,EAAE,IAAI,IAAI,SAAS;SAC1B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/audit/fetchUserAuditLog.d.ts.map b/dist/native/audit/fetchUserAuditLog.d.ts.map index b402212cd1..56fff252c6 100644 --- a/dist/native/audit/fetchUserAuditLog.d.ts.map +++ b/dist/native/audit/fetchUserAuditLog.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchUserAuditLog.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchUserAuditLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvE,wBAyDE"} \ No newline at end of file +{"version":3,"file":"fetchUserAuditLog.d.ts","sourceRoot":"","sources":["../../../src/native/audit/fetchUserAuditLog.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvE,wBAyDE"} \ No newline at end of file diff --git a/dist/native/audit/fetchUserAuditLog.js b/dist/native/audit/fetchUserAuditLog.js index c231e25828..1ecb294f2e 100644 --- a/dist/native/audit/fetchUserAuditLog.js +++ b/dist/native/audit/fetchUserAuditLog.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/audit/fetchUserAuditLog.js.map b/dist/native/audit/fetchUserAuditLog.js.map index afdacc5ab7..f6bccb2e2f 100644 --- a/dist/native/audit/fetchUserAuditLog.js.map +++ b/dist/native/audit/fetchUserAuditLog.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchUserAuditLog.js","sourceRoot":"","sources":["../../../src/native/audit/fetchUserAuditLog.ts"],"names":[],"mappings":";;AAAA,2CAA0C;AAC1C,iDAA0D;AAE1D,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAClD,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;YACJ,IAAI,EAAE,IAAI,IAAI,SAAS;SAC1B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchUserAuditLog.js","sourceRoot":"","sources":["../../../src/native/audit/fetchUserAuditLog.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0C;AAC1C,iDAA0D;AAE1D,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAClD,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,cAAc,CAAC;YAChC,IAAI;YACJ,IAAI,EAAE,IAAI,IAAI,SAAS;SAC1B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/audit/setAuditLogReason.d.ts.map b/dist/native/audit/setAuditLogReason.d.ts.map index 28440d6fbc..b422f2cb62 100644 --- a/dist/native/audit/setAuditLogReason.d.ts.map +++ b/dist/native/audit/setAuditLogReason.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAuditLogReason.d.ts","sourceRoot":"","sources":["../../../src/native/audit/setAuditLogReason.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"setAuditLogReason.d.ts","sourceRoot":"","sources":["../../../src/native/audit/setAuditLogReason.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/audit/setAuditLogReason.js b/dist/native/audit/setAuditLogReason.js index 7859d03757..9626ed27ed 100644 --- a/dist/native/audit/setAuditLogReason.js +++ b/dist/native/audit/setAuditLogReason.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/audit/setAuditLogReason.js.map b/dist/native/audit/setAuditLogReason.js.map index 0b372790d7..a718bbf337 100644 --- a/dist/native/audit/setAuditLogReason.js.map +++ b/dist/native/audit/setAuditLogReason.js.map @@ -1 +1 @@ -{"version":3,"file":"setAuditLogReason.js","sourceRoot":"","sources":["../../../src/native/audit/setAuditLogReason.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,GAAG,CAAC,MAAM,GAAG,MAAM,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAuditLogReason.js","sourceRoot":"","sources":["../../../src/native/audit/setAuditLogReason.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,GAAG,CAAC,MAAM,GAAG,MAAM,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodActionType.d.ts.map b/dist/native/automod/automodActionType.d.ts.map index 2149b1f8d9..189066f0ee 100644 --- a/dist/native/automod/automodActionType.d.ts.map +++ b/dist/native/automod/automodActionType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodActionType.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodActionType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAUE"} \ No newline at end of file +{"version":3,"file":"automodActionType.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodActionType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAUE"} \ No newline at end of file diff --git a/dist/native/automod/automodActionType.js b/dist/native/automod/automodActionType.js index bbf3eff5b9..f9277a588e 100644 --- a/dist/native/automod/automodActionType.js +++ b/dist/native/automod/automodActionType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/automod/automodActionType.js.map b/dist/native/automod/automodActionType.js.map index 4d5d8f171f..f011b605e4 100644 --- a/dist/native/automod/automodActionType.js.map +++ b/dist/native/automod/automodActionType.js.map @@ -1 +1 @@ -{"version":3,"file":"automodActionType.js","sourceRoot":"","sources":["../../../src/native/automod/automodActionType.ts"],"names":[],"mappings":";;AAAA,2CAAqD;AACrD,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,qCAAwB;IAChC,OAAO,CAAC,GAAG;QACP,MAAM,IAAI,GAAG,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,IAAI,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,qCAAwB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodActionType.js","sourceRoot":"","sources":["../../../src/native/automod/automodActionType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqD;AACrD,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,qCAAwB;IAChC,OAAO,CAAC,GAAG;QACP,MAAM,IAAI,GAAG,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,IAAI,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,qCAAwB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodAlertSystemMessageID.d.ts.map b/dist/native/automod/automodAlertSystemMessageID.d.ts.map index 4f8dbbc389..6cfc58964a 100644 --- a/dist/native/automod/automodAlertSystemMessageID.d.ts.map +++ b/dist/native/automod/automodAlertSystemMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodAlertSystemMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodAlertSystemMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodAlertSystemMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodAlertSystemMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodAlertSystemMessageID.js b/dist/native/automod/automodAlertSystemMessageID.js index 75d2919109..57c5cb4535 100644 --- a/dist/native/automod/automodAlertSystemMessageID.js +++ b/dist/native/automod/automodAlertSystemMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodAlertSystemMessageID.js.map b/dist/native/automod/automodAlertSystemMessageID.js.map index 596d586453..b7ff68e438 100644 --- a/dist/native/automod/automodAlertSystemMessageID.js.map +++ b/dist/native/automod/automodAlertSystemMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"automodAlertSystemMessageID.js","sourceRoot":"","sources":["../../../src/native/automod/automodAlertSystemMessageID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,oBAAoB,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodAlertSystemMessageID.js","sourceRoot":"","sources":["../../../src/native/automod/automodAlertSystemMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,oBAAoB,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodChannelID.d.ts.map b/dist/native/automod/automodChannelID.d.ts.map index 46985ee021..0e61d1c975 100644 --- a/dist/native/automod/automodChannelID.d.ts.map +++ b/dist/native/automod/automodChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodChannelID.js b/dist/native/automod/automodChannelID.js index 38936779c0..77231e9b43 100644 --- a/dist/native/automod/automodChannelID.js +++ b/dist/native/automod/automodChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodChannelID.js.map b/dist/native/automod/automodChannelID.js.map index 6d0eeddd08..ff09431c3f 100644 --- a/dist/native/automod/automodChannelID.js.map +++ b/dist/native/automod/automodChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"automodChannelID.js","sourceRoot":"","sources":["../../../src/native/automod/automodChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodChannelID.js","sourceRoot":"","sources":["../../../src/native/automod/automodChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodContent.d.ts.map b/dist/native/automod/automodContent.d.ts.map index 6779eb2b63..4098542632 100644 --- a/dist/native/automod/automodContent.d.ts.map +++ b/dist/native/automod/automodContent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodContent.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodContent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodContent.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodContent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodContent.js b/dist/native/automod/automodContent.js index 85945b449b..329683b0c5 100644 --- a/dist/native/automod/automodContent.js +++ b/dist/native/automod/automodContent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodContent.js.map b/dist/native/automod/automodContent.js.map index 20949abef7..dd178fb1a8 100644 --- a/dist/native/automod/automodContent.js.map +++ b/dist/native/automod/automodContent.js.map @@ -1 +1 @@ -{"version":3,"file":"automodContent.js","sourceRoot":"","sources":["../../../src/native/automod/automodContent.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodContent.js","sourceRoot":"","sources":["../../../src/native/automod/automodContent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodCustomMessage.d.ts.map b/dist/native/automod/automodCustomMessage.d.ts.map index c8293d0a72..752c62ae04 100644 --- a/dist/native/automod/automodCustomMessage.d.ts.map +++ b/dist/native/automod/automodCustomMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodCustomMessage.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodCustomMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodCustomMessage.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodCustomMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodCustomMessage.js b/dist/native/automod/automodCustomMessage.js index bdd7c80421..f801e57080 100644 --- a/dist/native/automod/automodCustomMessage.js +++ b/dist/native/automod/automodCustomMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodCustomMessage.js.map b/dist/native/automod/automodCustomMessage.js.map index 43c917b007..3ffea61872 100644 --- a/dist/native/automod/automodCustomMessage.js.map +++ b/dist/native/automod/automodCustomMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"automodCustomMessage.js","sourceRoot":"","sources":["../../../src/native/automod/automodCustomMessage.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodCustomMessage.js","sourceRoot":"","sources":["../../../src/native/automod/automodCustomMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodDuration.d.ts.map b/dist/native/automod/automodDuration.d.ts.map index f5068c6777..679844dc49 100644 --- a/dist/native/automod/automodDuration.d.ts.map +++ b/dist/native/automod/automodDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodDuration.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodDuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"automodDuration.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodDuration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/automod/automodDuration.js b/dist/native/automod/automodDuration.js index 3a5e4bc39a..2c932d88f6 100644 --- a/dist/native/automod/automodDuration.js +++ b/dist/native/automod/automodDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodDuration.js.map b/dist/native/automod/automodDuration.js.map index 9acbfa47e5..1498f1e70b 100644 --- a/dist/native/automod/automodDuration.js.map +++ b/dist/native/automod/automodDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"automodDuration.js","sourceRoot":"","sources":["../../../src/native/automod/automodDuration.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,MAAM,GAAG,GAAG,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,eAAe,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodDuration.js","sourceRoot":"","sources":["../../../src/native/automod/automodDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,MAAM,GAAG,GAAG,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,eAAe,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodMatchedContent.d.ts.map b/dist/native/automod/automodMatchedContent.d.ts.map index f6abdf00a1..7d3439f9f0 100644 --- a/dist/native/automod/automodMatchedContent.d.ts.map +++ b/dist/native/automod/automodMatchedContent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodMatchedContent.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedContent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodMatchedContent.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedContent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodMatchedContent.js b/dist/native/automod/automodMatchedContent.js index fb580bd814..c5422882e0 100644 --- a/dist/native/automod/automodMatchedContent.js +++ b/dist/native/automod/automodMatchedContent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodMatchedContent.js.map b/dist/native/automod/automodMatchedContent.js.map index dcca6b1d67..3d8dc6649e 100644 --- a/dist/native/automod/automodMatchedContent.js.map +++ b/dist/native/automod/automodMatchedContent.js.map @@ -1 +1 @@ -{"version":3,"file":"automodMatchedContent.js","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedContent.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,cAAc,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodMatchedContent.js","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedContent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,cAAc,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodMatchedKeyword.d.ts.map b/dist/native/automod/automodMatchedKeyword.d.ts.map index 436689a8bf..1dbfef8536 100644 --- a/dist/native/automod/automodMatchedKeyword.d.ts.map +++ b/dist/native/automod/automodMatchedKeyword.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodMatchedKeyword.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedKeyword.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodMatchedKeyword.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedKeyword.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodMatchedKeyword.js b/dist/native/automod/automodMatchedKeyword.js index 746277056e..69a05508ea 100644 --- a/dist/native/automod/automodMatchedKeyword.js +++ b/dist/native/automod/automodMatchedKeyword.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodMatchedKeyword.js.map b/dist/native/automod/automodMatchedKeyword.js.map index 84afff2a3c..fe019d3656 100644 --- a/dist/native/automod/automodMatchedKeyword.js.map +++ b/dist/native/automod/automodMatchedKeyword.js.map @@ -1 +1 @@ -{"version":3,"file":"automodMatchedKeyword.js","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedKeyword.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,cAAc,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodMatchedKeyword.js","sourceRoot":"","sources":["../../../src/native/automod/automodMatchedKeyword.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,cAAc,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodRuleID.d.ts.map b/dist/native/automod/automodRuleID.d.ts.map index 7881b9c44d..c3e7e77e26 100644 --- a/dist/native/automod/automodRuleID.d.ts.map +++ b/dist/native/automod/automodRuleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodRuleID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodRuleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"automodRuleID.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodRuleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/automod/automodRuleID.js b/dist/native/automod/automodRuleID.js index f11bc445c2..b316c3365d 100644 --- a/dist/native/automod/automodRuleID.js +++ b/dist/native/automod/automodRuleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/automodRuleID.js.map b/dist/native/automod/automodRuleID.js.map index 67b9ae8725..060e675f27 100644 --- a/dist/native/automod/automodRuleID.js.map +++ b/dist/native/automod/automodRuleID.js.map @@ -1 +1 @@ -{"version":3,"file":"automodRuleID.js","sourceRoot":"","sources":["../../../src/native/automod/automodRuleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,WAAW;IAC3B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodRuleID.js","sourceRoot":"","sources":["../../../src/native/automod/automodRuleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,WAAW;IAC3B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/automodRuleTriggerType.d.ts.map b/dist/native/automod/automodRuleTriggerType.d.ts.map index f581242cb7..45ce78b8eb 100644 --- a/dist/native/automod/automodRuleTriggerType.d.ts.map +++ b/dist/native/automod/automodRuleTriggerType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodRuleTriggerType.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodRuleTriggerType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"automodRuleTriggerType.d.ts","sourceRoot":"","sources":["../../../src/native/automod/automodRuleTriggerType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/automod/automodRuleTriggerType.js b/dist/native/automod/automodRuleTriggerType.js index 90961cd07f..594f9a2c14 100644 --- a/dist/native/automod/automodRuleTriggerType.js +++ b/dist/native/automod/automodRuleTriggerType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/automod/automodRuleTriggerType.js.map b/dist/native/automod/automodRuleTriggerType.js.map index 2bc0f88cec..c08aee5095 100644 --- a/dist/native/automod/automodRuleTriggerType.js.map +++ b/dist/native/automod/automodRuleTriggerType.js.map @@ -1 +1 @@ -{"version":3,"file":"automodRuleTriggerType.js","sourceRoot":"","sources":["../../../src/native/automod/automodRuleTriggerType.ts"],"names":[],"mappings":";;AAAA,2CAA0D;AAC1D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,0CAA6B;IACrC,OAAO,CAAC,GAAG;QACP,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,eAAe,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,0CAA6B,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodRuleTriggerType.js","sourceRoot":"","sources":["../../../src/native/automod/automodRuleTriggerType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0D;AAC1D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,0CAA6B;IACrC,OAAO,CAAC,GAAG;QACP,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,eAAe,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,0CAA6B,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/createAutomodRule.d.ts.map b/dist/native/automod/createAutomodRule.d.ts.map index d4e8da8049..e6b8a88b37 100644 --- a/dist/native/automod/createAutomodRule.d.ts.map +++ b/dist/native/automod/createAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/createAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,2BAA2B,EAAE,MAAM,YAAY,CAAA;AACvF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAsEE"} \ No newline at end of file +{"version":3,"file":"createAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/createAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,6BAA6B,EAAE,2BAA2B,EAAE,MAAM,YAAY,CAAA;AACvF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsEE"} \ No newline at end of file diff --git a/dist/native/automod/createAutomodRule.js b/dist/native/automod/createAutomodRule.js index 3c9e4820b3..51f48144da 100644 --- a/dist/native/automod/createAutomodRule.js +++ b/dist/native/automod/createAutomodRule.js @@ -1,8 +1,11 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); -const lodash_1 = require("lodash"); exports.default = new structures_1.NativeFunction({ name: "$createAutomodRule", version: "1.5.0", @@ -65,7 +68,7 @@ exports.default = new structures_1.NativeFunction({ actions: ctx.automodRule.actions || [], exemptRoles: ctx.automodRule.exemptRoles, exemptChannels: ctx.automodRule.exemptChannels, - enabled: (0, lodash_1.isBoolean)(enabled) ? enabled : true, + enabled: typeof (enabled) === "boolean" ? enabled : true, reason: reason || ctx.reason }).catch(ctx.noop); ctx.clearAutomodRuleOptions(); diff --git a/dist/native/automod/createAutomodRule.js.map b/dist/native/automod/createAutomodRule.js.map index 414b07aefa..b1307218ef 100644 --- a/dist/native/automod/createAutomodRule.js.map +++ b/dist/native/automod/createAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"createAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/createAutomodRule.ts"],"names":[],"mappings":";;AAAA,2CAAuF;AACvF,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0CAA6B;SACtC;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wCAA2B;SACpC;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,WAAW;IAC3B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,CAAE;QAC/D,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,mBAAmB,CAAC,MAAM,CAAC;YAChD,IAAI,EAAE,IAAI;YACV,SAAS,EAAE,KAAK;YAChB,WAAW,EAAE,OAAO;YACpB,eAAe,EAAE,GAAG,CAAC,WAAW,CAAC,eAAe;YAChD,OAAO,EAAE,GAAG,CAAC,WAAW,CAAC,OAAO,IAAI,EAAE;YACtC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,WAAW;YACxC,cAAc,EAAE,GAAG,CAAC,WAAW,CAAC,cAAc;YAC9C,OAAO,EAAE,IAAA,kBAAS,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI;YAC5C,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,uBAAuB,EAAE,CAAA;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/createAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAuF;AACvF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0CAA6B;SACtC;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wCAA2B;SACpC;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,WAAW;IAC3B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,CAAE;QAC/D,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,mBAAmB,CAAC,MAAM,CAAC;YAChD,IAAI,EAAE,IAAI;YACV,SAAS,EAAE,KAAK;YAChB,WAAW,EAAE,OAAO;YACpB,eAAe,EAAE,GAAG,CAAC,WAAW,CAAC,eAAe;YAChD,OAAO,EAAE,GAAG,CAAC,WAAW,CAAC,OAAO,IAAI,EAAE;YACtC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,WAAW;YACxC,cAAc,EAAE,GAAG,CAAC,WAAW,CAAC,cAAc;YAC9C,OAAO,EAAE,OAAM,CAAC,OAAO,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI;YACvD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,uBAAuB,EAAE,CAAA;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/deleteAutomodRule.d.ts.map b/dist/native/automod/deleteAutomodRule.d.ts.map index 2ce83cdb80..46182723ea 100644 --- a/dist/native/automod/deleteAutomodRule.d.ts.map +++ b/dist/native/automod/deleteAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/deleteAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAwCE"} \ No newline at end of file +{"version":3,"file":"deleteAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/deleteAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAwCE"} \ No newline at end of file diff --git a/dist/native/automod/deleteAutomodRule.js b/dist/native/automod/deleteAutomodRule.js index 869b08197e..d943b48e0d 100644 --- a/dist/native/automod/deleteAutomodRule.js +++ b/dist/native/automod/deleteAutomodRule.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -17,7 +21,7 @@ exports.default = new structures_1.NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to delete", + description: "The automod rule to delete", rest: false, required: true, type: structures_1.ArgType.AutomodRule, diff --git a/dist/native/automod/deleteAutomodRule.js.map b/dist/native/automod/deleteAutomodRule.js.map index 19e13f1c9a..a28d64057b 100644 --- a/dist/native/automod/deleteAutomodRule.js.map +++ b/dist/native/automod/deleteAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/deleteAutomodRule.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC;QAC/B,IAAI;YACA,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAA;SAC1C;QAAC,OAAO,KAAK,EAAE;YACZ,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/deleteAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC;QAC/B,IAAI;YACA,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAA;SAC1C;QAAC,OAAO,KAAK,EAAE;YACZ,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/editAutomodRule.d.ts.map b/dist/native/automod/editAutomodRule.d.ts.map index 2d4e08948b..253b36a3be 100644 --- a/dist/native/automod/editAutomodRule.d.ts.map +++ b/dist/native/automod/editAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/editAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,YAAY,CAAA;AACxD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAmEE"} \ No newline at end of file +{"version":3,"file":"editAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/editAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,2BAA2B,EAAE,MAAM,YAAY,CAAA;AACxD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAmEE"} \ No newline at end of file diff --git a/dist/native/automod/editAutomodRule.js b/dist/native/automod/editAutomodRule.js index fd291e4d1c..96733a3b2c 100644 --- a/dist/native/automod/editAutomodRule.js +++ b/dist/native/automod/editAutomodRule.js @@ -1,8 +1,11 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); -const lodash_1 = require("lodash"); exports.default = new structures_1.NativeFunction({ name: "$editAutomodRule", version: "1.5.0", @@ -19,7 +22,7 @@ exports.default = new structures_1.NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to edit", + description: "The automod rule to edit", rest: false, required: true, type: structures_1.ArgType.AutomodRule, @@ -62,7 +65,7 @@ exports.default = new structures_1.NativeFunction({ actions: ctx.automodRule.actions || undefined, exemptRoles: ctx.automodRule.exemptRoles || undefined, exemptChannels: ctx.automodRule.exemptChannels || undefined, - enabled: (0, lodash_1.isBoolean)(enabled) ? enabled : undefined, + enabled: typeof (enabled) === "boolean" ? enabled : undefined, reason: reason || ctx.reason }).catch(ctx.noop); ctx.clearAutomodRuleOptions(); diff --git a/dist/native/automod/editAutomodRule.js.map b/dist/native/automod/editAutomodRule.js.map index 78c1d59a80..674adfaf95 100644 --- a/dist/native/automod/editAutomodRule.js.map +++ b/dist/native/automod/editAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"editAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/editAutomodRule.ts"],"names":[],"mappings":";;AAAA,2CAAwD;AACxD,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wCAA2B;SACpC;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACrD,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC;YAC5B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,SAAS,EAAE,KAAK,IAAI,SAAS;YAC7B,eAAe,EAAE,GAAG,CAAC,WAAW,CAAC,eAAe,IAAI,SAAS;YAC7D,OAAO,EAAE,GAAG,CAAC,WAAW,CAAC,OAAO,IAAI,SAAS;YAC7C,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,WAAW,IAAI,SAAS;YACrD,cAAc,EAAE,GAAG,CAAC,WAAW,CAAC,cAAc,IAAI,SAAS;YAC3D,OAAO,EAAE,IAAA,kBAAS,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YACjD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,uBAAuB,EAAE,CAAA;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/editAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwD;AACxD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wCAA2B;SACpC;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACrD,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC;YAC5B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,SAAS,EAAE,KAAK,IAAI,SAAS;YAC7B,eAAe,EAAE,GAAG,CAAC,WAAW,CAAC,eAAe,IAAI,SAAS;YAC7D,OAAO,EAAE,GAAG,CAAC,WAAW,CAAC,OAAO,IAAI,SAAS;YAC7C,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,WAAW,IAAI,SAAS;YACrD,cAAc,EAAE,GAAG,CAAC,WAAW,CAAC,cAAc,IAAI,SAAS;YAC3D,OAAO,EAAE,OAAM,CAAC,OAAO,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YAC5D,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,uBAAuB,EAAE,CAAA;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/getAutomodRule.d.ts.map b/dist/native/automod/getAutomodRule.d.ts.map index 587c214aca..b763629ffb 100644 --- a/dist/native/automod/getAutomodRule.d.ts.map +++ b/dist/native/automod/getAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAyB,MAAM,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAEzF,wBA4CE"} \ No newline at end of file +{"version":3,"file":"getAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAyB,MAAM,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAEzF,wBA4CE"} \ No newline at end of file diff --git a/dist/native/automod/getAutomodRule.js b/dist/native/automod/getAutomodRule.js index 7580a09a7e..14403a1155 100644 --- a/dist/native/automod/getAutomodRule.js +++ b/dist/native/automod/getAutomodRule.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const automodRule_1 = require("../../properties/automodRule"); @@ -18,7 +22,7 @@ exports.default = new structures_1.NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to get", + description: "The automod rule to get", rest: false, required: true, type: structures_1.ArgType.AutomodRule, @@ -42,7 +46,7 @@ exports.default = new structures_1.NativeFunction({ structures_1.ArgType.Json, structures_1.ArgType.Unknown ], - async execute(ctx, [, rule, prop, sep]) { + execute(ctx, [, rule, prop, sep]) { if (prop) return this.success(automodRule_1.AutomodRuleProperties[prop](rule, sep)); return this.successJSON(rule); diff --git a/dist/native/automod/getAutomodRule.js.map b/dist/native/automod/getAutomodRule.js.map index dd68935514..17ca698a9b 100644 --- a/dist/native/automod/getAutomodRule.js.map +++ b/dist/native/automod/getAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"getAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRule.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,8DAAyF;AAEzF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;SAC5B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getAutomodRule.js","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,8DAAyF;AAEzF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;SAC5B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAE;QAC7B,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/getAutomodRuleActions.d.ts b/dist/native/automod/getAutomodRuleActions.d.ts new file mode 100644 index 0000000000..8ce6534393 --- /dev/null +++ b/dist/native/automod/getAutomodRuleActions.d.ts @@ -0,0 +1,29 @@ +import { ArgType, NativeFunction } from "../../structures"; +import { AutomodRuleActionProperty } from "../../properties/automodRule"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.AutomodRule; + pointer: number; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Enum; + enum: typeof AutomodRuleActionProperty; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}], true>; +export default _default; +//# sourceMappingURL=getAutomodRuleActions.d.ts.map \ No newline at end of file diff --git a/dist/native/automod/getAutomodRuleActions.d.ts.map b/dist/native/automod/getAutomodRuleActions.d.ts.map new file mode 100644 index 0000000000..a903765944 --- /dev/null +++ b/dist/native/automod/getAutomodRuleActions.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"getAutomodRuleActions.d.ts","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRuleActions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,yBAAyB,EAA+B,MAAM,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAGrG,wBA4CE"} \ No newline at end of file diff --git a/dist/native/automod/getAutomodRuleActions.js b/dist/native/automod/getAutomodRuleActions.js new file mode 100644 index 0000000000..2eec66bb48 --- /dev/null +++ b/dist/native/automod/getAutomodRuleActions.js @@ -0,0 +1,59 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +const automodRule_1 = require("../../properties/automodRule"); +const array_1 = __importDefault(require("../../functions/array")); +exports.default = new structures_1.NativeFunction({ + name: "$getAutomodRuleActions", + version: "2.6.0", + description: "Returns the actions of an automod rule from a guild", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to get automod rule from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "rule ID", + description: "The automod rule to get its actions", + rest: false, + required: true, + type: structures_1.ArgType.AutomodRule, + pointer: 0 + }, + { + name: "property", + description: "The property of each action to return", + rest: false, + type: structures_1.ArgType.Enum, + enum: automodRule_1.AutomodRuleActionProperty + }, + { + name: "separator", + description: "The separator to use for every property", + rest: false, + type: structures_1.ArgType.String, + }, + ], + output: [ + structures_1.ArgType.Json, + (0, array_1.default)() + ], + execute(ctx, [, rule, prop, sep]) { + if (prop) + return this.success(rule.actions.map((x) => automodRule_1.AutomodRuleActionProperties[prop](x)).join(sep ?? ", ")); + return this.successJSON(rule.actions); + }, +}); +//# sourceMappingURL=getAutomodRuleActions.js.map \ No newline at end of file diff --git a/dist/native/automod/getAutomodRuleActions.js.map b/dist/native/automod/getAutomodRuleActions.js.map new file mode 100644 index 0000000000..e719caf323 --- /dev/null +++ b/dist/native/automod/getAutomodRuleActions.js.map @@ -0,0 +1 @@ +{"version":3,"file":"getAutomodRuleActions.js","sourceRoot":"","sources":["../../../src/native/automod/getAutomodRuleActions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,8DAAqG;AACrG,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAyB;SAClC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAE;QAC7B,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yCAA2B,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC9G,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodAction.d.ts.map b/dist/native/automod/setAutomodAction.d.ts.map index e0ff6ef634..19e14ef4ae 100644 --- a/dist/native/automod/setAutomodAction.d.ts.map +++ b/dist/native/automod/setAutomodAction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodAction.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,wBAAwB,EAA0E,MAAM,YAAY,CAAA;AAC1I,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAsB3C,WAAW;;;;;;;;;;;;AApBlC,wBAkDE"} \ No newline at end of file +{"version":3,"file":"setAutomodAction.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAction.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,wBAAwB,EAA0E,MAAM,YAAY,CAAA;AAC1I,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAsB3C,WAAW;;;;;;;;;;;;AApBlC,wBAkDE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodAction.js b/dist/native/automod/setAutomodAction.js index 2023340952..f52b3c259f 100644 --- a/dist/native/automod/setAutomodAction.js +++ b/dist/native/automod/setAutomodAction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/automod/setAutomodAction.js.map b/dist/native/automod/setAutomodAction.js.map index 4ca1b4ec23..176a274233 100644 --- a/dist/native/automod/setAutomodAction.js.map +++ b/dist/native/automod/setAutomodAction.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodAction.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAction.ts"],"names":[],"mappings":";;AAAA,2CAA0I;AAC1I,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qCAAwB;SACjC;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gEAAgE;YAC7E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAE;QAC7C,MAAM,MAAM,GAAG;YACX,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE;gBACN,OAAO,EAAE,OAAqD;gBAC9D,aAAa,EAAE,OAAO;gBACtB,eAAe,EAAE,QAAQ;aAC5B;SAC2B,CAAA;QAEhC,GAAG,CAAC,WAAW,CAAC,OAAO,KAAK,EAAE,CAAA;QAC9B,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAEpC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodAction.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0I;AAC1I,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qCAAwB;SACjC;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gEAAgE;YAC7E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAE;QAC7C,MAAM,MAAM,GAAG;YACX,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE;gBACN,OAAO,EAAE,OAAqD;gBAC9D,aAAa,EAAE,OAAO;gBACtB,eAAe,EAAE,QAAQ;aAC5B;SAC2B,CAAA;QAEhC,GAAG,CAAC,WAAW,CAAC,OAAO,KAAK,EAAE,CAAA;QAC9B,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAEpC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodAllowList.d.ts.map b/dist/native/automod/setAutomodAllowList.d.ts.map index 70ae5b48d3..db778f7caf 100644 --- a/dist/native/automod/setAutomodAllowList.d.ts.map +++ b/dist/native/automod/setAutomodAllowList.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodAllowList.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAllowList.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setAutomodAllowList.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAllowList.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodAllowList.js b/dist/native/automod/setAutomodAllowList.js index 51e0f07e8f..808f8241a7 100644 --- a/dist/native/automod/setAutomodAllowList.js +++ b/dist/native/automod/setAutomodAllowList.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodAllowList.js.map b/dist/native/automod/setAutomodAllowList.js.map index 4976a5453e..d213a118ae 100644 --- a/dist/native/automod/setAutomodAllowList.js.map +++ b/dist/native/automod/setAutomodAllowList.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodAllowList.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAllowList.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,SAAS,GAAG,KAAK,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodAllowList.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodAllowList.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,SAAS,GAAG,KAAK,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodExemptChannels.d.ts.map b/dist/native/automod/setAutomodExemptChannels.d.ts.map index ea56e16882..82b51fcfe3 100644 --- a/dist/native/automod/setAutomodExemptChannels.d.ts.map +++ b/dist/native/automod/setAutomodExemptChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodExemptChannels.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptChannels.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"setAutomodExemptChannels.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptChannels.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodExemptChannels.js b/dist/native/automod/setAutomodExemptChannels.js index d2d13dd38c..70a6b493b4 100644 --- a/dist/native/automod/setAutomodExemptChannels.js +++ b/dist/native/automod/setAutomodExemptChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodExemptChannels.js.map b/dist/native/automod/setAutomodExemptChannels.js.map index e9169ea181..20bc9c162f 100644 --- a/dist/native/automod/setAutomodExemptChannels.js.map +++ b/dist/native/automod/setAutomodExemptChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodExemptChannels.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptChannels.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,GAAG,CAAC,WAAW,CAAC,cAAc,GAAG,QAAQ,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodExemptChannels.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptChannels.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,GAAG,CAAC,WAAW,CAAC,cAAc,GAAG,QAAQ,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodExemptRoles.d.ts.map b/dist/native/automod/setAutomodExemptRoles.d.ts.map index fabd200af9..61cd7f8b87 100644 --- a/dist/native/automod/setAutomodExemptRoles.d.ts.map +++ b/dist/native/automod/setAutomodExemptRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodExemptRoles.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"setAutomodExemptRoles.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodExemptRoles.js b/dist/native/automod/setAutomodExemptRoles.js index 44eea0ecc6..b10de82867 100644 --- a/dist/native/automod/setAutomodExemptRoles.js +++ b/dist/native/automod/setAutomodExemptRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodExemptRoles.js.map b/dist/native/automod/setAutomodExemptRoles.js.map index 2477f34113..a3aa689673 100644 --- a/dist/native/automod/setAutomodExemptRoles.js.map +++ b/dist/native/automod/setAutomodExemptRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodExemptRoles.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAA;QACnC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodExemptRoles.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodExemptRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAA;QACnC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodKeywordFilter.d.ts.map b/dist/native/automod/setAutomodKeywordFilter.d.ts.map index f9320722d2..9fdb723fd6 100644 --- a/dist/native/automod/setAutomodKeywordFilter.d.ts.map +++ b/dist/native/automod/setAutomodKeywordFilter.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodKeywordFilter.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodKeywordFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setAutomodKeywordFilter.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodKeywordFilter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodKeywordFilter.js b/dist/native/automod/setAutomodKeywordFilter.js index 6580ffe264..a4ab548ddd 100644 --- a/dist/native/automod/setAutomodKeywordFilter.js +++ b/dist/native/automod/setAutomodKeywordFilter.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodKeywordFilter.js.map b/dist/native/automod/setAutomodKeywordFilter.js.map index 29a7c8d027..00b9d1f7b2 100644 --- a/dist/native/automod/setAutomodKeywordFilter.js.map +++ b/dist/native/automod/setAutomodKeywordFilter.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodKeywordFilter.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodKeywordFilter.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,aAAa,GAAG,KAAK,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodKeywordFilter.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodKeywordFilter.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,aAAa,GAAG,KAAK,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodMentionRaidProtection.d.ts.map b/dist/native/automod/setAutomodMentionRaidProtection.d.ts.map index af8b678d21..fec823f9fd 100644 --- a/dist/native/automod/setAutomodMentionRaidProtection.d.ts.map +++ b/dist/native/automod/setAutomodMentionRaidProtection.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodMentionRaidProtection.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionRaidProtection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setAutomodMentionRaidProtection.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionRaidProtection.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodMentionRaidProtection.js b/dist/native/automod/setAutomodMentionRaidProtection.js index 3838f722b0..9db959eb4e 100644 --- a/dist/native/automod/setAutomodMentionRaidProtection.js +++ b/dist/native/automod/setAutomodMentionRaidProtection.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodMentionRaidProtection.js.map b/dist/native/automod/setAutomodMentionRaidProtection.js.map index d3655c6b12..0af7ed6746 100644 --- a/dist/native/automod/setAutomodMentionRaidProtection.js.map +++ b/dist/native/automod/setAutomodMentionRaidProtection.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodMentionRaidProtection.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionRaidProtection.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,4BAA4B,GAAG,OAAO,CAAA;QACtE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodMentionRaidProtection.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionRaidProtection.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,4BAA4B,GAAG,OAAO,CAAA;QACtE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodMentionTotalLimit.d.ts.map b/dist/native/automod/setAutomodMentionTotalLimit.d.ts.map index a52104bcd3..a4729bba48 100644 --- a/dist/native/automod/setAutomodMentionTotalLimit.d.ts.map +++ b/dist/native/automod/setAutomodMentionTotalLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodMentionTotalLimit.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionTotalLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setAutomodMentionTotalLimit.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionTotalLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodMentionTotalLimit.js b/dist/native/automod/setAutomodMentionTotalLimit.js index 4692882a4e..8e2ca8a88c 100644 --- a/dist/native/automod/setAutomodMentionTotalLimit.js +++ b/dist/native/automod/setAutomodMentionTotalLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodMentionTotalLimit.js.map b/dist/native/automod/setAutomodMentionTotalLimit.js.map index 51ca2e6be9..ff8c8f86d4 100644 --- a/dist/native/automod/setAutomodMentionTotalLimit.js.map +++ b/dist/native/automod/setAutomodMentionTotalLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodMentionTotalLimit.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionTotalLimit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,iBAAiB,GAAG,KAAK,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodMentionTotalLimit.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodMentionTotalLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,iBAAiB,GAAG,KAAK,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodPresets.d.ts.map b/dist/native/automod/setAutomodPresets.d.ts.map index cbbd2ef85c..a757ea21cc 100644 --- a/dist/native/automod/setAutomodPresets.d.ts.map +++ b/dist/native/automod/setAutomodPresets.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodPresets.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodPresets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"setAutomodPresets.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodPresets.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodPresets.js b/dist/native/automod/setAutomodPresets.js index cf65ea6fa0..26ce5c6a92 100644 --- a/dist/native/automod/setAutomodPresets.js +++ b/dist/native/automod/setAutomodPresets.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/automod/setAutomodPresets.js.map b/dist/native/automod/setAutomodPresets.js.map index 643c4668d7..e09fc91def 100644 --- a/dist/native/automod/setAutomodPresets.js.map +++ b/dist/native/automod/setAutomodPresets.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodPresets.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodPresets.ts"],"names":[],"mappings":";;AAAA,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gDAAmC;SAC5C;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,OAAO,GAAG,OAAO,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodPresets.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodPresets.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gDAAmC;SAC5C;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,OAAO,GAAG,OAAO,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodRegexFilter.d.ts.map b/dist/native/automod/setAutomodRegexFilter.d.ts.map index 656695cc5a..4c5d484289 100644 --- a/dist/native/automod/setAutomodRegexFilter.d.ts.map +++ b/dist/native/automod/setAutomodRegexFilter.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodRegexFilter.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodRegexFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setAutomodRegexFilter.d.ts","sourceRoot":"","sources":["../../../src/native/automod/setAutomodRegexFilter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/automod/setAutomodRegexFilter.js b/dist/native/automod/setAutomodRegexFilter.js index 07e15631c2..e80e1f3118 100644 --- a/dist/native/automod/setAutomodRegexFilter.js +++ b/dist/native/automod/setAutomodRegexFilter.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/automod/setAutomodRegexFilter.js.map b/dist/native/automod/setAutomodRegexFilter.js.map index 4461d40c5b..17ecd82c05 100644 --- a/dist/native/automod/setAutomodRegexFilter.js.map +++ b/dist/native/automod/setAutomodRegexFilter.js.map @@ -1 +1 @@ -{"version":3,"file":"setAutomodRegexFilter.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodRegexFilter.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,aAAa,GAAG,OAAO,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setAutomodRegexFilter.js","sourceRoot":"","sources":["../../../src/native/automod/setAutomodRegexFilter.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,WAAW,CAAC,eAAe,KAAK,EAAE,CAAA;QACtC,GAAG,CAAC,WAAW,CAAC,eAAe,CAAC,aAAa,GAAG,OAAO,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/applicationCommandCount.d.ts.map b/dist/native/bot/applicationCommandCount.d.ts.map index 86e41da5e4..69a1681089 100644 --- a/dist/native/bot/applicationCommandCount.d.ts.map +++ b/dist/native/bot/applicationCommandCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/applicationCommandCount.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAE1D,wBA8CE"} \ No newline at end of file +{"version":3,"file":"applicationCommandCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/applicationCommandCount.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAE1D,wBA8CE"} \ No newline at end of file diff --git a/dist/native/bot/applicationCommandCount.js b/dist/native/bot/applicationCommandCount.js index ac040aef96..c4e44105d4 100644 --- a/dist/native/bot/applicationCommandCount.js +++ b/dist/native/bot/applicationCommandCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/applicationCommandCount.js.map b/dist/native/bot/applicationCommandCount.js.map index c4aec2cd5a..13864959b9 100644 --- a/dist/native/bot/applicationCommandCount.js.map +++ b/dist/native/bot/applicationCommandCount.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandCount.js","sourceRoot":"","sources":["../../../src/native/bot/applicationCommandCount.ts"],"names":[],"mappings":";;AAAA,2CAAyD;AACzD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,WAAW,EAAE,mEAAmE;IAChF,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACvB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAChG,IAAI,CAAC,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAErC,IAAI,GAAG,EAAE;YACL,IAAI,KAAK,GAAG,CAAC,CAAA;YACb,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;gBACzB,IAAI,IAAI,GAAG,IAAI,CAAA;gBACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;oBAC5B,IAAI,GAAG,CAAC,IAAI,KAAK,yCAA4B,CAAC,UAAU,EAAE;wBACtD,KAAK,EAAE,CAAA;wBACP,IAAI,GAAG,KAAK,CAAA;qBACf;yBAAM,IAAI,GAAG,CAAC,IAAI,KAAK,yCAA4B,CAAC,eAAe,EAAE;wBAClE,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,CAAA;wBACpC,IAAI,GAAG,KAAK,CAAA;qBACf;gBACL,CAAC,CAAC,CAAA;gBACF,IAAI,IAAI;oBAAE,KAAK,EAAE,CAAA;YACrB,CAAC,CAAC,CAAA;YACF,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;SACrC;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandCount.js","sourceRoot":"","sources":["../../../src/native/bot/applicationCommandCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyD;AACzD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,WAAW,EAAE,mEAAmE;IAChF,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACvB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAChG,IAAI,CAAC,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAErC,IAAI,GAAG,EAAE;YACL,IAAI,KAAK,GAAG,CAAC,CAAA;YACb,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;gBACzB,IAAI,IAAI,GAAG,IAAI,CAAA;gBACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;oBAC5B,IAAI,GAAG,CAAC,IAAI,KAAK,yCAA4B,CAAC,UAAU,EAAE;wBACtD,KAAK,EAAE,CAAA;wBACP,IAAI,GAAG,KAAK,CAAA;qBACf;yBAAM,IAAI,GAAG,CAAC,IAAI,KAAK,yCAA4B,CAAC,eAAe,EAAE;wBAClE,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,CAAA;wBACpC,IAAI,GAAG,KAAK,CAAA;qBACf;gBACL,CAAC,CAAC,CAAA;gBACF,IAAI,IAAI;oBAAE,KAAK,EAAE,CAAA;YACrB,CAAC,CAAC,CAAA;YACF,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;SACrC;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/applicationCommands.d.ts.map b/dist/native/bot/applicationCommands.d.ts.map index 689aad5800..742f23e368 100644 --- a/dist/native/bot/applicationCommands.d.ts.map +++ b/dist/native/bot/applicationCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/applicationCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"applicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/applicationCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/bot/applicationCommands.js b/dist/native/bot/applicationCommands.js index da8198d214..a7e7cde54d 100644 --- a/dist/native/bot/applicationCommands.js +++ b/dist/native/bot/applicationCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/applicationCommands.js.map b/dist/native/bot/applicationCommands.js.map index 1c5fb7e0cc..78cbea32b8 100644 --- a/dist/native/bot/applicationCommands.js.map +++ b/dist/native/bot/applicationCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/applicationCommands.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpG,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/applicationCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpG,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botCount.d.ts.map b/dist/native/bot/botCount.d.ts.map index ada06c2b10..b2a15462ce 100644 --- a/dist/native/bot/botCount.d.ts.map +++ b/dist/native/bot/botCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"botCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/bot/botCount.js b/dist/native/bot/botCount.js index 13bd134361..bf169b76ad 100644 --- a/dist/native/bot/botCount.js +++ b/dist/native/bot/botCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botCount.js.map b/dist/native/bot/botCount.js.map index def37ee2a6..e6d59a9f97 100644 --- a/dist/native/bot/botCount.js.map +++ b/dist/native/bot/botCount.js.map @@ -1 +1 @@ -{"version":3,"file":"botCount.js","sourceRoot":"","sources":["../../../src/native/bot/botCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botCount.js","sourceRoot":"","sources":["../../../src/native/bot/botCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botCustomInvite.d.ts.map b/dist/native/bot/botCustomInvite.d.ts.map index ce56888ed6..28906fa2e3 100644 --- a/dist/native/bot/botCustomInvite.d.ts.map +++ b/dist/native/bot/botCustomInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botCustomInvite.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botCustomInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"botCustomInvite.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botCustomInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/bot/botCustomInvite.js b/dist/native/bot/botCustomInvite.js index d31b116855..7e9885647e 100644 --- a/dist/native/bot/botCustomInvite.js +++ b/dist/native/bot/botCustomInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botCustomInvite.js.map b/dist/native/bot/botCustomInvite.js.map index 2cab42439c..654da138ed 100644 --- a/dist/native/bot/botCustomInvite.js.map +++ b/dist/native/bot/botCustomInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"botCustomInvite.js","sourceRoot":"","sources":["../../../src/native/bot/botCustomInvite.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botCustomInvite.js","sourceRoot":"","sources":["../../../src/native/bot/botCustomInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botDescription.d.ts.map b/dist/native/bot/botDescription.d.ts.map index 2825b160a7..34dd07d008 100644 --- a/dist/native/bot/botDescription.d.ts.map +++ b/dist/native/bot/botDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botDescription.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botDescription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"botDescription.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/bot/botDescription.js b/dist/native/bot/botDescription.js index f6a2b343d0..508a2164ef 100644 --- a/dist/native/bot/botDescription.js +++ b/dist/native/bot/botDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botDescription.js.map b/dist/native/bot/botDescription.js.map index 52eb3de7bd..576e144d2b 100644 --- a/dist/native/bot/botDescription.js.map +++ b/dist/native/bot/botDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"botDescription.js","sourceRoot":"","sources":["../../../src/native/bot/botDescription.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botDescription.js","sourceRoot":"","sources":["../../../src/native/bot/botDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botDestroy.d.ts.map b/dist/native/bot/botDestroy.d.ts.map index 61bc2ad81d..b1bd905d1d 100644 --- a/dist/native/bot/botDestroy.d.ts.map +++ b/dist/native/bot/botDestroy.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botDestroy.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botDestroy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"botDestroy.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botDestroy.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/bot/botDestroy.js b/dist/native/bot/botDestroy.js index 48e303e733..0cc6d68fa8 100644 --- a/dist/native/bot/botDestroy.js +++ b/dist/native/bot/botDestroy.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botDestroy.js.map b/dist/native/bot/botDestroy.js.map index f1db07d16e..24df90797e 100644 --- a/dist/native/bot/botDestroy.js.map +++ b/dist/native/bot/botDestroy.js.map @@ -1 +1 @@ -{"version":3,"file":"botDestroy.js","sourceRoot":"","sources":["../../../src/native/bot/botDestroy.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,MAAM,CAAC,OAAO,EAAE,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botDestroy.js","sourceRoot":"","sources":["../../../src/native/bot/botDestroy.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,MAAM,CAAC,OAAO,EAAE,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botID.d.ts.map b/dist/native/bot/botID.d.ts.map index 5966798951..bcdfe745c1 100644 --- a/dist/native/bot/botID.d.ts.map +++ b/dist/native/bot/botID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"botID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/bot/botID.js b/dist/native/bot/botID.js index 9d69fe59aa..3c3ea6aafc 100644 --- a/dist/native/bot/botID.js +++ b/dist/native/bot/botID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botID.js.map b/dist/native/bot/botID.js.map index d5880d1c7b..a00722c61a 100644 --- a/dist/native/bot/botID.js.map +++ b/dist/native/bot/botID.js.map @@ -1 +1 @@ -{"version":3,"file":"botID.js","sourceRoot":"","sources":["../../../src/native/bot/botID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botID.js","sourceRoot":"","sources":["../../../src/native/bot/botID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botInvite.d.ts.map b/dist/native/bot/botInvite.d.ts.map index 01817bc3af..f12086cf31 100644 --- a/dist/native/bot/botInvite.d.ts.map +++ b/dist/native/bot/botInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botInvite.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botInvite.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"botInvite.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botInvite.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/bot/botInvite.js b/dist/native/bot/botInvite.js index 2f29ff7145..7193f0dadf 100644 --- a/dist/native/bot/botInvite.js +++ b/dist/native/bot/botInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botInvite.js.map b/dist/native/bot/botInvite.js.map index 6711d936a4..9d2c56a34b 100644 --- a/dist/native/bot/botInvite.js.map +++ b/dist/native/bot/botInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"botInvite.js","sourceRoot":"","sources":["../../../src/native/bot/botInvite.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,eAAe;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC;YACtB,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,EAAE,MAAwB,IAAI,CAAC,yBAAY,CAAC,GAAG,CAAC;YAC5F,WAAW,EAAE,KAA4B,IAAI,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,EAAE,WAAW;SACjG,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botInvite.js","sourceRoot":"","sources":["../../../src/native/bot/botInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,eAAe;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC;YACtB,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,EAAE,MAAwB,IAAI,CAAC,yBAAY,CAAC,GAAG,CAAC;YAC5F,WAAW,EAAE,KAA4B,IAAI,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,EAAE,WAAW;SACjG,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botMutualGuilds.d.ts.map b/dist/native/bot/botMutualGuilds.d.ts.map index 629679d07b..54b66339a6 100644 --- a/dist/native/bot/botMutualGuilds.d.ts.map +++ b/dist/native/bot/botMutualGuilds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botMutualGuilds.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botMutualGuilds.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"botMutualGuilds.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botMutualGuilds.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/bot/botMutualGuilds.js b/dist/native/bot/botMutualGuilds.js index c942b424e9..ca883adf59 100644 --- a/dist/native/bot/botMutualGuilds.js +++ b/dist/native/bot/botMutualGuilds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/botMutualGuilds.js.map b/dist/native/bot/botMutualGuilds.js.map index 9186968e84..4d5e0384ba 100644 --- a/dist/native/bot/botMutualGuilds.js.map +++ b/dist/native/bot/botMutualGuilds.js.map @@ -1 +1 @@ -{"version":3,"file":"botMutualGuilds.js","sourceRoot":"","sources":["../../../src/native/bot/botMutualGuilds.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK;aACtC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC;aACpF,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;aACtB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACrB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botMutualGuilds.js","sourceRoot":"","sources":["../../../src/native/bot/botMutualGuilds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK;aACtC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC;aACpF,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;aACtB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACrB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botOwnerID.d.ts.map b/dist/native/bot/botOwnerID.d.ts.map index 5701fd2f86..5c7d97897e 100644 --- a/dist/native/bot/botOwnerID.d.ts.map +++ b/dist/native/bot/botOwnerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botOwnerID.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"botOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botOwnerID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/bot/botOwnerID.js b/dist/native/bot/botOwnerID.js index 25f4ef8afa..2aafe14d80 100644 --- a/dist/native/bot/botOwnerID.js +++ b/dist/native/bot/botOwnerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/botOwnerID.js.map b/dist/native/bot/botOwnerID.js.map index b56a2ecc31..10cb5f4843 100644 --- a/dist/native/bot/botOwnerID.js.map +++ b/dist/native/bot/botOwnerID.js.map @@ -1 +1 @@ -{"version":3,"file":"botOwnerID.js","sourceRoot":"","sources":["../../../src/native/bot/botOwnerID.ts"],"names":[],"mappings":";;;;;AAAA,2CAAiC;AACjC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,SAAS,EAAE,GAAG,CAAE;QACjC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botOwnerID.js","sourceRoot":"","sources":["../../../src/native/bot/botOwnerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAiC;AACjC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,SAAS,EAAE,GAAG,CAAE;QACjC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTags.d.ts.map b/dist/native/bot/botTags.d.ts.map index e7633938ba..59b61401fb 100644 --- a/dist/native/bot/botTags.d.ts.map +++ b/dist/native/bot/botTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTags.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"botTags.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/bot/botTags.js b/dist/native/bot/botTags.js index dd46aac6ec..bcf1779d96 100644 --- a/dist/native/bot/botTags.js +++ b/dist/native/bot/botTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/botTags.js.map b/dist/native/bot/botTags.js.map index 8363d5d695..c997c1f501 100644 --- a/dist/native/bot/botTags.js.map +++ b/dist/native/bot/botTags.js.map @@ -1 +1 @@ -{"version":3,"file":"botTags.js","sourceRoot":"","sources":["../../../src/native/bot/botTags.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTags.js","sourceRoot":"","sources":["../../../src/native/bot/botTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTeamCreatedAt.d.ts.map b/dist/native/bot/botTeamCreatedAt.d.ts.map index f22d413643..f713922aa6 100644 --- a/dist/native/bot/botTeamCreatedAt.d.ts.map +++ b/dist/native/bot/botTeamCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTeamCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamCreatedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file +{"version":3,"file":"botTeamCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamCreatedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file diff --git a/dist/native/bot/botTeamCreatedAt.js b/dist/native/bot/botTeamCreatedAt.js index 42825f5238..892736ac4b 100644 --- a/dist/native/bot/botTeamCreatedAt.js +++ b/dist/native/bot/botTeamCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botTeamCreatedAt.js.map b/dist/native/bot/botTeamCreatedAt.js.map index 5476f1610a..e4fb2a7d5b 100644 --- a/dist/native/bot/botTeamCreatedAt.js.map +++ b/dist/native/bot/botTeamCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"botTeamCreatedAt.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamCreatedAt.ts"],"names":[],"mappings":";;AAAA,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTeamCreatedAt.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTeamID.d.ts.map b/dist/native/bot/botTeamID.d.ts.map index d23a8c4bbd..c722313e19 100644 --- a/dist/native/bot/botTeamID.d.ts.map +++ b/dist/native/bot/botTeamID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTeamID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamID.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file +{"version":3,"file":"botTeamID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file diff --git a/dist/native/bot/botTeamID.js b/dist/native/bot/botTeamID.js index e6227fa73b..7cd97aa21b 100644 --- a/dist/native/bot/botTeamID.js +++ b/dist/native/bot/botTeamID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botTeamID.js.map b/dist/native/bot/botTeamID.js.map index ae7e0abdf3..1ac412b43c 100644 --- a/dist/native/bot/botTeamID.js.map +++ b/dist/native/bot/botTeamID.js.map @@ -1 +1 @@ -{"version":3,"file":"botTeamID.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamID.ts"],"names":[],"mappings":";;AAAA,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTeamID.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTeamIcon.d.ts.map b/dist/native/bot/botTeamIcon.d.ts.map index 06e8980fed..4a01480f7f 100644 --- a/dist/native/bot/botTeamIcon.d.ts.map +++ b/dist/native/bot/botTeamIcon.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTeamIcon.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamIcon.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"botTeamIcon.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamIcon.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/bot/botTeamIcon.js b/dist/native/bot/botTeamIcon.js index 3ded61750c..3b5f81597d 100644 --- a/dist/native/bot/botTeamIcon.js +++ b/dist/native/bot/botTeamIcon.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botTeamIcon.js.map b/dist/native/bot/botTeamIcon.js.map index 49fbb3e223..f0b0bdc93e 100644 --- a/dist/native/bot/botTeamIcon.js.map +++ b/dist/native/bot/botTeamIcon.js.map @@ -1 +1 @@ -{"version":3,"file":"botTeamIcon.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamIcon.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC;YACtD,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACd,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTeamIcon.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamIcon.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC;YACtD,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACd,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTeamMembers.d.ts.map b/dist/native/bot/botTeamMembers.d.ts.map index f3a454d59f..0b7e3c20d6 100644 --- a/dist/native/bot/botTeamMembers.d.ts.map +++ b/dist/native/bot/botTeamMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTeamMembers.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamMembers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;;;;;;;;;;;;;;AAGtF,wBA+BE"} \ No newline at end of file +{"version":3,"file":"botTeamMembers.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamMembers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;;;;;;;;;;;;;;AAGtF,wBA+BE"} \ No newline at end of file diff --git a/dist/native/bot/botTeamMembers.js b/dist/native/bot/botTeamMembers.js index 737a691965..5cbed4fe34 100644 --- a/dist/native/bot/botTeamMembers.js +++ b/dist/native/bot/botTeamMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/botTeamMembers.js.map b/dist/native/bot/botTeamMembers.js.map index 90e0dbba01..ffd0e49607 100644 --- a/dist/native/bot/botTeamMembers.js.map +++ b/dist/native/bot/botTeamMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"botTeamMembers.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamMembers.ts"],"names":[],"mappings":";;;;;AAAA,2CAAiC;AACjC,iDAAkE;AAClE,4DAAsF;AACtF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;SAC3B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,iCAAoB,CAAC,IAAI,IAAI,+BAAkB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTeamMembers.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAiC;AACjC,iDAAkE;AAClE,4DAAsF;AACtF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;SAC3B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,iCAAoB,CAAC,IAAI,IAAI,+BAAkB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botTeamName.d.ts.map b/dist/native/bot/botTeamName.d.ts.map index 1775c19da9..35e46cc140 100644 --- a/dist/native/bot/botTeamName.d.ts.map +++ b/dist/native/bot/botTeamName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botTeamName.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file +{"version":3,"file":"botTeamName.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botTeamName.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAcE"} \ No newline at end of file diff --git a/dist/native/bot/botTeamName.js b/dist/native/bot/botTeamName.js index 2f6c7349f6..086290c89b 100644 --- a/dist/native/bot/botTeamName.js +++ b/dist/native/bot/botTeamName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botTeamName.js.map b/dist/native/bot/botTeamName.js.map index a50d792867..03c4112d7f 100644 --- a/dist/native/bot/botTeamName.js.map +++ b/dist/native/bot/botTeamName.js.map @@ -1 +1 @@ -{"version":3,"file":"botTeamName.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamName.ts"],"names":[],"mappings":";;AAAA,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botTeamName.js","sourceRoot":"","sources":["../../../src/native/bot/botTeamName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK;YAAE,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvF,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,YAAY,iBAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botToken.d.ts.map b/dist/native/bot/botToken.d.ts.map index 585b116564..25672450e6 100644 --- a/dist/native/bot/botToken.d.ts.map +++ b/dist/native/bot/botToken.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botToken.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botToken.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"botToken.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botToken.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/bot/botToken.js b/dist/native/bot/botToken.js index 35a3cadcab..8b181fd568 100644 --- a/dist/native/bot/botToken.js +++ b/dist/native/bot/botToken.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botToken.js.map b/dist/native/bot/botToken.js.map index 33a128befe..1ee76d592f 100644 --- a/dist/native/bot/botToken.js.map +++ b/dist/native/bot/botToken.js.map @@ -1 +1 @@ -{"version":3,"file":"botToken.js","sourceRoot":"","sources":["../../../src/native/bot/botToken.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botToken.js","sourceRoot":"","sources":["../../../src/native/bot/botToken.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botUserAuthorizationCount.d.ts.map b/dist/native/bot/botUserAuthorizationCount.d.ts.map index 41f7a07c9b..992fb4ac45 100644 --- a/dist/native/bot/botUserAuthorizationCount.d.ts.map +++ b/dist/native/bot/botUserAuthorizationCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botUserAuthorizationCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botUserAuthorizationCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"botUserAuthorizationCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botUserAuthorizationCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/bot/botUserAuthorizationCount.js b/dist/native/bot/botUserAuthorizationCount.js index 0f21ee2b53..cb1c7dccb1 100644 --- a/dist/native/bot/botUserAuthorizationCount.js +++ b/dist/native/bot/botUserAuthorizationCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botUserAuthorizationCount.js.map b/dist/native/bot/botUserAuthorizationCount.js.map index 122a0fe253..3aef5f0019 100644 --- a/dist/native/bot/botUserAuthorizationCount.js.map +++ b/dist/native/bot/botUserAuthorizationCount.js.map @@ -1 +1 @@ -{"version":3,"file":"botUserAuthorizationCount.js","sourceRoot":"","sources":["../../../src/native/bot/botUserAuthorizationCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,+BAA+B,CAAC;IAC1C,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,iCAAiC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botUserAuthorizationCount.js","sourceRoot":"","sources":["../../../src/native/bot/botUserAuthorizationCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,+BAA+B,CAAC;IAC1C,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,iCAAiC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botUserInstallCount.d.ts.map b/dist/native/bot/botUserInstallCount.d.ts.map index 1c91aad775..113e7587c0 100644 --- a/dist/native/bot/botUserInstallCount.d.ts.map +++ b/dist/native/bot/botUserInstallCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botUserInstallCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botUserInstallCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"botUserInstallCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botUserInstallCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/bot/botUserInstallCount.js b/dist/native/bot/botUserInstallCount.js index 9d04374d7d..5c30340fc1 100644 --- a/dist/native/bot/botUserInstallCount.js +++ b/dist/native/bot/botUserInstallCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botUserInstallCount.js.map b/dist/native/bot/botUserInstallCount.js.map index a7c136393c..250d003932 100644 --- a/dist/native/bot/botUserInstallCount.js.map +++ b/dist/native/bot/botUserInstallCount.js.map @@ -1 +1 @@ -{"version":3,"file":"botUserInstallCount.js","sourceRoot":"","sources":["../../../src/native/bot/botUserInstallCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,yBAAyB,CAAC;IACpC,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botUserInstallCount.js","sourceRoot":"","sources":["../../../src/native/bot/botUserInstallCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,yBAAyB,CAAC;IACpC,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookEvents.d.ts.map b/dist/native/bot/botWebhookEvents.d.ts.map index 0f7add1900..09f3e4cef7 100644 --- a/dist/native/bot/botWebhookEvents.d.ts.map +++ b/dist/native/bot/botWebhookEvents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookEvents.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookEvents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"botWebhookEvents.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookEvents.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookEvents.js b/dist/native/bot/botWebhookEvents.js index eb02e102a7..2b3b592f29 100644 --- a/dist/native/bot/botWebhookEvents.js +++ b/dist/native/bot/botWebhookEvents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/botWebhookEvents.js.map b/dist/native/bot/botWebhookEvents.js.map index 8da98994f5..0ed8e0f9b6 100644 --- a/dist/native/bot/botWebhookEvents.js.map +++ b/dist/native/bot/botWebhookEvents.js.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookEvents.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookEvents.ts"],"names":[],"mappings":";;;;;AAAA,2CAAwD;AACxD,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,wCAA2B,CAAC;IAC1C,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,kBAAkB,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botWebhookEvents.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookEvents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAwD;AACxD,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,wCAA2B,CAAC;IAC1C,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,kBAAkB,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookStatus.d.ts.map b/dist/native/bot/botWebhookStatus.d.ts.map index c41c4993e9..5e8af87d33 100644 --- a/dist/native/bot/botWebhookStatus.d.ts.map +++ b/dist/native/bot/botWebhookStatus.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookStatus.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file +{"version":3,"file":"botWebhookStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookStatus.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookStatus.js b/dist/native/bot/botWebhookStatus.js index 26ae6718b4..8873a2421e 100644 --- a/dist/native/bot/botWebhookStatus.js +++ b/dist/native/bot/botWebhookStatus.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/botWebhookStatus.js.map b/dist/native/bot/botWebhookStatus.js.map index 620e31a2fe..4f17a1c924 100644 --- a/dist/native/bot/botWebhookStatus.js.map +++ b/dist/native/bot/botWebhookStatus.js.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookStatus.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookStatus.ts"],"names":[],"mappings":";;AAAA,2CAA0D;AAC1D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,0CAA6B;IACrC,OAAO,CAAC,GAAG;QACP,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,mBAAmB,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,0CAA6B,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botWebhookStatus.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookStatus.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0D;AAC1D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,0CAA6B;IACrC,OAAO,CAAC,GAAG;QACP,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,mBAAmB,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,0CAA6B,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookURL.d.ts.map b/dist/native/bot/botWebhookURL.d.ts.map index 8b7ee16ef1..b1c7f064bc 100644 --- a/dist/native/bot/botWebhookURL.d.ts.map +++ b/dist/native/bot/botWebhookURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookURL.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"botWebhookURL.d.ts","sourceRoot":"","sources":["../../../src/native/bot/botWebhookURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/bot/botWebhookURL.js b/dist/native/bot/botWebhookURL.js index 9fbc789c11..890e7123d0 100644 --- a/dist/native/bot/botWebhookURL.js +++ b/dist/native/bot/botWebhookURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/botWebhookURL.js.map b/dist/native/bot/botWebhookURL.js.map index 54ab0ffd97..2c0ed9e702 100644 --- a/dist/native/bot/botWebhookURL.js.map +++ b/dist/native/bot/botWebhookURL.js.map @@ -1 +1 @@ -{"version":3,"file":"botWebhookURL.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookURL.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"botWebhookURL.js","sourceRoot":"","sources":["../../../src/native/bot/botWebhookURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/deleteGlobalApplicationCommands.d.ts.map b/dist/native/bot/deleteGlobalApplicationCommands.d.ts.map index 9bfc82ceb4..727b00beb0 100644 --- a/dist/native/bot/deleteGlobalApplicationCommands.d.ts.map +++ b/dist/native/bot/deleteGlobalApplicationCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteGlobalApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/deleteGlobalApplicationCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBASE"} \ No newline at end of file +{"version":3,"file":"deleteGlobalApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/deleteGlobalApplicationCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBASE"} \ No newline at end of file diff --git a/dist/native/bot/deleteGlobalApplicationCommands.js b/dist/native/bot/deleteGlobalApplicationCommands.js index 422c88fe18..88a86aaf5d 100644 --- a/dist/native/bot/deleteGlobalApplicationCommands.js +++ b/dist/native/bot/deleteGlobalApplicationCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/deleteGlobalApplicationCommands.js.map b/dist/native/bot/deleteGlobalApplicationCommands.js.map index 57509de310..dbc05eeac6 100644 --- a/dist/native/bot/deleteGlobalApplicationCommands.js.map +++ b/dist/native/bot/deleteGlobalApplicationCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteGlobalApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/deleteGlobalApplicationCommands.ts"],"names":[],"mappings":";;AAAA,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteGlobalApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/deleteGlobalApplicationCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/extensionVersion.d.ts.map b/dist/native/bot/extensionVersion.d.ts.map index 347123d7ad..1d01ae836f 100644 --- a/dist/native/bot/extensionVersion.d.ts.map +++ b/dist/native/bot/extensionVersion.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"extensionVersion.d.ts","sourceRoot":"","sources":["../../../src/native/bot/extensionVersion.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"extensionVersion.d.ts","sourceRoot":"","sources":["../../../src/native/bot/extensionVersion.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/bot/extensionVersion.js b/dist/native/bot/extensionVersion.js index 7ad7199a63..db6582455a 100644 --- a/dist/native/bot/extensionVersion.js +++ b/dist/native/bot/extensionVersion.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/extensionVersion.js.map b/dist/native/bot/extensionVersion.js.map index 80e4730e32..a46bb8bee7 100644 --- a/dist/native/bot/extensionVersion.js.map +++ b/dist/native/bot/extensionVersion.js.map @@ -1 +1 @@ -{"version":3,"file":"extensionVersion.js","sourceRoot":"","sources":["../../../src/native/bot/extensionVersion.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"extensionVersion.js","sourceRoot":"","sources":["../../../src/native/bot/extensionVersion.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/hasExtension.d.ts.map b/dist/native/bot/hasExtension.d.ts.map index 0953b84d3f..cee9e72a12 100644 --- a/dist/native/bot/hasExtension.d.ts.map +++ b/dist/native/bot/hasExtension.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasExtension.d.ts","sourceRoot":"","sources":["../../../src/native/bot/hasExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"hasExtension.d.ts","sourceRoot":"","sources":["../../../src/native/bot/hasExtension.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/bot/hasExtension.js b/dist/native/bot/hasExtension.js index f0c88bb2c8..ffe1406e88 100644 --- a/dist/native/bot/hasExtension.js +++ b/dist/native/bot/hasExtension.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/hasExtension.js.map b/dist/native/bot/hasExtension.js.map index a118bbfc2b..986594514c 100644 --- a/dist/native/bot/hasExtension.js.map +++ b/dist/native/bot/hasExtension.js.map @@ -1 +1 @@ -{"version":3,"file":"hasExtension.js","sourceRoot":"","sources":["../../../src/native/bot/hasExtension.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasExtension.js","sourceRoot":"","sources":["../../../src/native/bot/hasExtension.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/ping.d.ts.map b/dist/native/bot/ping.d.ts.map index eaf41a479f..a3c2fa5ed4 100644 --- a/dist/native/bot/ping.d.ts.map +++ b/dist/native/bot/ping.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ping.d.ts","sourceRoot":"","sources":["../../../src/native/bot/ping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file +{"version":3,"file":"ping.d.ts","sourceRoot":"","sources":["../../../src/native/bot/ping.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file diff --git a/dist/native/bot/ping.js b/dist/native/bot/ping.js index f9b499a367..e1b51682f2 100644 --- a/dist/native/bot/ping.js +++ b/dist/native/bot/ping.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/ping.js.map b/dist/native/bot/ping.js.map index 5998f72f2b..a01cc5a040 100644 --- a/dist/native/bot/ping.js.map +++ b/dist/native/bot/ping.js.map @@ -1 +1 @@ -{"version":3,"file":"ping.js","sourceRoot":"","sources":["../../../src/native/bot/ping.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,aAAa;QACb,UAAU;KACb;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ping.js","sourceRoot":"","sources":["../../../src/native/bot/ping.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,aAAa;QACb,UAAU;KACb;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotAvatar.d.ts.map b/dist/native/bot/setBotAvatar.d.ts.map index 36650d4037..5e96b5bb83 100644 --- a/dist/native/bot/setBotAvatar.d.ts.map +++ b/dist/native/bot/setBotAvatar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setBotAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotAvatar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"setBotAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotAvatar.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/setBotAvatar.js b/dist/native/bot/setBotAvatar.js index b9b7afa8ff..a00e18c4b7 100644 --- a/dist/native/bot/setBotAvatar.js +++ b/dist/native/bot/setBotAvatar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/setBotAvatar.js.map b/dist/native/bot/setBotAvatar.js.map index e31f40fcc6..012890214e 100644 --- a/dist/native/bot/setBotAvatar.js.map +++ b/dist/native/bot/setBotAvatar.js.map @@ -1 +1 @@ -{"version":3,"file":"setBotAvatar.js","sourceRoot":"","sources":["../../../src/native/bot/setBotAvatar.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setBotAvatar.js","sourceRoot":"","sources":["../../../src/native/bot/setBotAvatar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotBanner.d.ts.map b/dist/native/bot/setBotBanner.d.ts.map index 9621014da4..0818c1a2ce 100644 --- a/dist/native/bot/setBotBanner.d.ts.map +++ b/dist/native/bot/setBotBanner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setBotBanner.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotBanner.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"setBotBanner.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotBanner.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/setBotBanner.js b/dist/native/bot/setBotBanner.js index 67499dd165..96afe93afa 100644 --- a/dist/native/bot/setBotBanner.js +++ b/dist/native/bot/setBotBanner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/setBotBanner.js.map b/dist/native/bot/setBotBanner.js.map index fcb41cd08c..922af8e920 100644 --- a/dist/native/bot/setBotBanner.js.map +++ b/dist/native/bot/setBotBanner.js.map @@ -1 +1 @@ -{"version":3,"file":"setBotBanner.js","sourceRoot":"","sources":["../../../src/native/bot/setBotBanner.ts"],"names":[],"mappings":";;AAEA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setBotBanner.js","sourceRoot":"","sources":["../../../src/native/bot/setBotBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotDescription.d.ts.map b/dist/native/bot/setBotDescription.d.ts.map index 6baced358e..27fa504964 100644 --- a/dist/native/bot/setBotDescription.d.ts.map +++ b/dist/native/bot/setBotDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setBotDescription.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotDescription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"setBotDescription.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/setBotDescription.js b/dist/native/bot/setBotDescription.js index c59f2f55b4..633cd8b710 100644 --- a/dist/native/bot/setBotDescription.js +++ b/dist/native/bot/setBotDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/setBotDescription.js.map b/dist/native/bot/setBotDescription.js.map index 84be3b3b8b..4e657cdc0a 100644 --- a/dist/native/bot/setBotDescription.js.map +++ b/dist/native/bot/setBotDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"setBotDescription.js","sourceRoot":"","sources":["../../../src/native/bot/setBotDescription.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setBotDescription.js","sourceRoot":"","sources":["../../../src/native/bot/setBotDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleIDs.d.ts b/dist/native/bot/setBotGuildAvatar.d.ts similarity index 85% rename from dist/native/role/roleIDs.d.ts rename to dist/native/bot/setBotGuildAvatar.d.ts index dc08aae938..e7ca5c9c01 100644 --- a/dist/native/role/roleIDs.d.ts +++ b/dist/native/bot/setBotGuildAvatar.d.ts @@ -3,14 +3,13 @@ declare const _default: NativeFunction<[{ name: string; description: string; rest: false; - type: ArgType.Guild; required: true; + type: ArgType.Guild; }, { name: string; description: string; rest: false; - required: true; type: ArgType.String; }], true>; export default _default; -//# sourceMappingURL=roleIDs.d.ts.map \ No newline at end of file +//# sourceMappingURL=setBotGuildAvatar.d.ts.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildAvatar.d.ts.map b/dist/native/bot/setBotGuildAvatar.d.ts.map new file mode 100644 index 0000000000..a2d275bfb0 --- /dev/null +++ b/dist/native/bot/setBotGuildAvatar.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildAvatar.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/bot/setBotGuildAvatar.js b/dist/native/bot/setBotGuildAvatar.js new file mode 100644 index 0000000000..8cc2b973cd --- /dev/null +++ b/dist/native/bot/setBotGuildAvatar.js @@ -0,0 +1,37 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setBotGuildAvatar", + version: "2.6.0", + description: "Sets the bot avatar on a guild", + brackets: true, + unwrap: true, + aliases: [ + "$setClientGuildAvatar" + ], + args: [ + { + name: "guild ID", + description: "The guild to set avatar on", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "url", + description: "The icon url", + rest: false, + type: structures_1.ArgType.String, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [guild, url]) { + return this.success(!!(await guild.members.editMe({ avatar: url }).catch(ctx.noop))); + }, +}); +//# sourceMappingURL=setBotGuildAvatar.js.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildAvatar.js.map b/dist/native/bot/setBotGuildAvatar.js.map new file mode 100644 index 0000000000..c66bb30260 --- /dev/null +++ b/dist/native/bot/setBotGuildAvatar.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildAvatar.js","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildAvatar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotGuildBanner.d.ts b/dist/native/bot/setBotGuildBanner.d.ts new file mode 100644 index 0000000000..6699c83e8a --- /dev/null +++ b/dist/native/bot/setBotGuildBanner.d.ts @@ -0,0 +1,15 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}], true>; +export default _default; +//# sourceMappingURL=setBotGuildBanner.d.ts.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildBanner.d.ts.map b/dist/native/bot/setBotGuildBanner.d.ts.map new file mode 100644 index 0000000000..c47856b6e0 --- /dev/null +++ b/dist/native/bot/setBotGuildBanner.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildBanner.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildBanner.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/bot/setBotGuildBanner.js b/dist/native/bot/setBotGuildBanner.js new file mode 100644 index 0000000000..31729ee320 --- /dev/null +++ b/dist/native/bot/setBotGuildBanner.js @@ -0,0 +1,37 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setBotGuildBanner", + version: "2.6.0", + description: "Sets the bot banner on a guild", + brackets: true, + unwrap: true, + aliases: [ + "$setClientGuildBanner" + ], + args: [ + { + name: "guild ID", + description: "The guild to set banner on", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "url", + description: "The banner url", + rest: false, + type: structures_1.ArgType.String, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [guild, url]) { + return this.success(!!(await guild.members.editMe({ banner: url }).catch(ctx.noop))); + }, +}); +//# sourceMappingURL=setBotGuildBanner.js.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildBanner.js.map b/dist/native/bot/setBotGuildBanner.js.map new file mode 100644 index 0000000000..b07cddba96 --- /dev/null +++ b/dist/native/bot/setBotGuildBanner.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildBanner.js","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotGuildDescription.d.ts b/dist/native/bot/setBotGuildDescription.d.ts new file mode 100644 index 0000000000..524fa7089e --- /dev/null +++ b/dist/native/bot/setBotGuildDescription.d.ts @@ -0,0 +1,15 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}], true>; +export default _default; +//# sourceMappingURL=setBotGuildDescription.d.ts.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildDescription.d.ts.map b/dist/native/bot/setBotGuildDescription.d.ts.map new file mode 100644 index 0000000000..4f6fbebba5 --- /dev/null +++ b/dist/native/bot/setBotGuildDescription.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildDescription.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/bot/setBotGuildDescription.js b/dist/native/bot/setBotGuildDescription.js new file mode 100644 index 0000000000..3aaa83f62d --- /dev/null +++ b/dist/native/bot/setBotGuildDescription.js @@ -0,0 +1,39 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setBotGuildDescription", + version: "2.6.0", + description: "Sets the bot description on a guild", + aliases: [ + "$setBotGuildBio", + "$setClientGuildBio", + "$setClientGuildDescription" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to set description on", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "description", + description: "The new description", + rest: false, + type: structures_1.ArgType.String, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [guild, bio]) { + return this.success(!!(await guild.members.editMe({ bio }).catch(ctx.noop))); + }, +}); +//# sourceMappingURL=setBotGuildDescription.js.map \ No newline at end of file diff --git a/dist/native/bot/setBotGuildDescription.js.map b/dist/native/bot/setBotGuildDescription.js.map new file mode 100644 index 0000000000..e84f719a4d --- /dev/null +++ b/dist/native/bot/setBotGuildDescription.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setBotGuildDescription.js","sourceRoot":"","sources":["../../../src/native/bot/setBotGuildDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,OAAO,EAAE;QACL,iBAAiB;QACjB,oBAAoB;QACpB,4BAA4B;KAC/B;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotName.d.ts.map b/dist/native/bot/setBotName.d.ts.map index 8cbf135cac..53e3b00eaa 100644 --- a/dist/native/bot/setBotName.d.ts.map +++ b/dist/native/bot/setBotName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setBotName.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"setBotName.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/setBotName.js b/dist/native/bot/setBotName.js index 42b5da6379..d6463e363f 100644 --- a/dist/native/bot/setBotName.js +++ b/dist/native/bot/setBotName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/setBotName.js.map b/dist/native/bot/setBotName.js.map index 99efde8389..c80d3479ca 100644 --- a/dist/native/bot/setBotName.js.map +++ b/dist/native/bot/setBotName.js.map @@ -1 +1 @@ -{"version":3,"file":"setBotName.js","sourceRoot":"","sources":["../../../src/native/bot/setBotName.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setBotName.js","sourceRoot":"","sources":["../../../src/native/bot/setBotName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setBotTags.d.ts.map b/dist/native/bot/setBotTags.d.ts.map index 6fcee36f23..ea63f5f561 100644 --- a/dist/native/bot/setBotTags.d.ts.map +++ b/dist/native/bot/setBotTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setBotTags.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"setBotTags.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setBotTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/setBotTags.js b/dist/native/bot/setBotTags.js index 7a3e05f492..6a889b4129 100644 --- a/dist/native/bot/setBotTags.js +++ b/dist/native/bot/setBotTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/setBotTags.js.map b/dist/native/bot/setBotTags.js.map index e41e55523d..e87cfcf6b3 100644 --- a/dist/native/bot/setBotTags.js.map +++ b/dist/native/bot/setBotTags.js.map @@ -1 +1 @@ -{"version":3,"file":"setBotTags.js","sourceRoot":"","sources":["../../../src/native/bot/setBotTags.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setBotTags.js","sourceRoot":"","sources":["../../../src/native/bot/setBotTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/setStatus.d.ts.map b/dist/native/bot/setStatus.d.ts.map index d454154c62..1eb21d0a90 100644 --- a/dist/native/bot/setStatus.d.ts.map +++ b/dist/native/bot/setStatus.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setStatus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAA4C,MAAM,YAAY,CAAA;AACnF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4DE"} \ No newline at end of file +{"version":3,"file":"setStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/setStatus.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAsB,MAAM,YAAY,CAAA;AAC7D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4DE"} \ No newline at end of file diff --git a/dist/native/bot/setStatus.js b/dist/native/bot/setStatus.js index fd4f7b9bbc..cc9123da6c 100644 --- a/dist/native/bot/setStatus.js +++ b/dist/native/bot/setStatus.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/bot/setStatus.js.map b/dist/native/bot/setStatus.js.map index c6c58957be..e39965e48a 100644 --- a/dist/native/bot/setStatus.js.map +++ b/dist/native/bot/setStatus.js.map @@ -1 +1 @@ -{"version":3,"file":"setStatus.js","sourceRoot":"","sources":["../../../src/native/bot/setStatus.ts"],"names":[],"mappings":";;AAAA,2CAAmF;AACnF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QACzC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC;YACxB,UAAU,EAAE;gBACR;oBACI,IAAI;oBACJ,KAAK,EAAE,KAAK,IAAI,SAAS;oBACzB,IAAI;oBACJ,GAAG,EAAE,GAAG,IAAI,SAAS;iBACxB;aACJ;YACD,MAAM,EAAE,MAAM,CAAC,WAAW,EAAwB;SACrD,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setStatus.js","sourceRoot":"","sources":["../../../src/native/bot/setStatus.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6D;AAC7D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QACzC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC;YACxB,UAAU,EAAE;gBACR;oBACI,IAAI;oBACJ,KAAK,EAAE,KAAK,IAAI,SAAS;oBACzB,IAAI;oBACJ,GAAG,EAAE,GAAG,IAAI,SAAS;iBACxB;aACJ;YACD,MAAM,EAAE,MAAM,CAAC,WAAW,EAAwB;SACrD,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/shardCount.d.ts.map b/dist/native/bot/shardCount.d.ts.map index 0142111cdb..b8268e1f2a 100644 --- a/dist/native/bot/shardCount.d.ts.map +++ b/dist/native/bot/shardCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file +{"version":3,"file":"shardCount.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file diff --git a/dist/native/bot/shardCount.js b/dist/native/bot/shardCount.js index 2f7c302536..24012960f3 100644 --- a/dist/native/bot/shardCount.js +++ b/dist/native/bot/shardCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/shardCount.js.map b/dist/native/bot/shardCount.js.map index b1b90b4ad6..ad7d315e46 100644 --- a/dist/native/bot/shardCount.js.map +++ b/dist/native/bot/shardCount.js.map @@ -1 +1 @@ -{"version":3,"file":"shardCount.js","sourceRoot":"","sources":["../../../src/native/bot/shardCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;QAChB,mBAAmB;KACtB;IACD,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,IAAI,CAAC,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardCount.js","sourceRoot":"","sources":["../../../src/native/bot/shardCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;QAChB,mBAAmB;KACtB;IACD,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,IAAI,CAAC,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/shardID.d.ts.map b/dist/native/bot/shardID.d.ts.map index 4bb86cf166..fa7b9c12f0 100644 --- a/dist/native/bot/shardID.d.ts.map +++ b/dist/native/bot/shardID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"shardID.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/shardID.js b/dist/native/bot/shardID.js index 09fb137362..8eaee8602e 100644 --- a/dist/native/bot/shardID.js +++ b/dist/native/bot/shardID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/shardID.js.map b/dist/native/bot/shardID.js.map index 4ed48573c1..447b3e3ecb 100644 --- a/dist/native/bot/shardID.js.map +++ b/dist/native/bot/shardID.js.map @@ -1 +1 @@ -{"version":3,"file":"shardID.js","sourceRoot":"","sources":["../../../src/native/bot/shardID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;QACd,iBAAiB;KACpB;IACD,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardID.js","sourceRoot":"","sources":["../../../src/native/bot/shardID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;QACd,iBAAiB;KACpB;IACD,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/shardStatus.d.ts.map b/dist/native/bot/shardStatus.d.ts.map index 9713f5765b..91e9ec0563 100644 --- a/dist/native/bot/shardStatus.d.ts.map +++ b/dist/native/bot/shardStatus.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"shardStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardStatus.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAGlE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"shardStatus.d.ts","sourceRoot":"","sources":["../../../src/native/bot/shardStatus.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;AAGlE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/bot/shardStatus.js b/dist/native/bot/shardStatus.js index 8b33345842..dca2070147 100644 --- a/dist/native/bot/shardStatus.js +++ b/dist/native/bot/shardStatus.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/bot/shardStatus.js.map b/dist/native/bot/shardStatus.js.map index 9f104a6ffd..56ad5829c9 100644 --- a/dist/native/bot/shardStatus.js.map +++ b/dist/native/bot/shardStatus.js.map @@ -1 +1 @@ -{"version":3,"file":"shardStatus.js","sourceRoot":"","sources":["../../../src/native/bot/shardStatus.ts"],"names":[],"mappings":";;;;;AAAA,2CAAmC;AACnC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,oBAAoB;KACvB;IACD,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,mBAAM,CAAC;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,mBAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"shardStatus.js","sourceRoot":"","sources":["../../../src/native/bot/shardStatus.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAmC;AACnC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,oBAAoB;KACvB;IACD,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,mBAAM,CAAC;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,mBAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/updateApplicationCommands.d.ts.map b/dist/native/bot/updateApplicationCommands.d.ts.map index 1fd043cd2f..b7a1f2f478 100644 --- a/dist/native/bot/updateApplicationCommands.d.ts.map +++ b/dist/native/bot/updateApplicationCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"updateApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/updateApplicationCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file +{"version":3,"file":"updateApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/updateApplicationCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file diff --git a/dist/native/bot/updateApplicationCommands.js b/dist/native/bot/updateApplicationCommands.js index f3335c8eba..96af36d353 100644 --- a/dist/native/bot/updateApplicationCommands.js +++ b/dist/native/bot/updateApplicationCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/updateApplicationCommands.js.map b/dist/native/bot/updateApplicationCommands.js.map index ec88a240fa..710cd3eb5c 100644 --- a/dist/native/bot/updateApplicationCommands.js.map +++ b/dist/native/bot/updateApplicationCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"updateApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/updateApplicationCommands.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,IAAI,EAAE,CAAA;QACrC,MAAM,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,cAAc,EAAE,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"updateApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/bot/updateApplicationCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,IAAI,EAAE,CAAA;QACrC,MAAM,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,cAAc,EAAE,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/updateCommands.d.ts.map b/dist/native/bot/updateCommands.d.ts.map index 84e2bbaa7b..a98b55cb2e 100644 --- a/dist/native/bot/updateCommands.d.ts.map +++ b/dist/native/bot/updateCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"updateCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/updateCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file +{"version":3,"file":"updateCommands.d.ts","sourceRoot":"","sources":["../../../src/native/bot/updateCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/bot/updateCommands.js b/dist/native/bot/updateCommands.js index 95c3dd672a..78d606e773 100644 --- a/dist/native/bot/updateCommands.js +++ b/dist/native/bot/updateCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/updateCommands.js.map b/dist/native/bot/updateCommands.js.map index 4192f294f9..48f7c75660 100644 --- a/dist/native/bot/updateCommands.js.map +++ b/dist/native/bot/updateCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"updateCommands.js","sourceRoot":"","sources":["../../../src/native/bot/updateCommands.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"updateCommands.js","sourceRoot":"","sources":["../../../src/native/bot/updateCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/uptime.d.ts.map b/dist/native/bot/uptime.d.ts.map index 9816fce639..4c04890f0d 100644 --- a/dist/native/bot/uptime.d.ts.map +++ b/dist/native/bot/uptime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"uptime.d.ts","sourceRoot":"","sources":["../../../src/native/bot/uptime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file +{"version":3,"file":"uptime.d.ts","sourceRoot":"","sources":["../../../src/native/bot/uptime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file diff --git a/dist/native/bot/uptime.js b/dist/native/bot/uptime.js index e7d0749f5e..da080db7e8 100644 --- a/dist/native/bot/uptime.js +++ b/dist/native/bot/uptime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/uptime.js.map b/dist/native/bot/uptime.js.map index 9928838847..d8e8459ecc 100644 --- a/dist/native/bot/uptime.js.map +++ b/dist/native/bot/uptime.js.map @@ -1 +1 @@ -{"version":3,"file":"uptime.js","sourceRoot":"","sources":["../../../src/native/bot/uptime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;IAC1C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"uptime.js","sourceRoot":"","sources":["../../../src/native/bot/uptime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;IAC1C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/bot/version.d.ts.map b/dist/native/bot/version.d.ts.map index cc7a938860..de729b2282 100644 --- a/dist/native/bot/version.d.ts.map +++ b/dist/native/bot/version.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/native/bot/version.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/native/bot/version.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/bot/version.js b/dist/native/bot/version.js index ab0738d184..79ecf22613 100644 --- a/dist/native/bot/version.js +++ b/dist/native/bot/version.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/bot/version.js.map b/dist/native/bot/version.js.map index 467526a647..dd578d3432 100644 --- a/dist/native/bot/version.js.map +++ b/dist/native/bot/version.js.map @@ -1 +1 @@ -{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/native/bot/version.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/native/bot/version.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferAlloc.d.ts.map b/dist/native/buffer/bufferAlloc.d.ts.map index 209bc5ea42..fcef291771 100644 --- a/dist/native/buffer/bufferAlloc.d.ts.map +++ b/dist/native/buffer/bufferAlloc.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferAlloc.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferAlloc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"bufferAlloc.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferAlloc.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferAlloc.js b/dist/native/buffer/bufferAlloc.js index d4805745d5..da075cafaf 100644 --- a/dist/native/buffer/bufferAlloc.js +++ b/dist/native/buffer/bufferAlloc.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferAlloc.js.map b/dist/native/buffer/bufferAlloc.js.map index 0f340ecdd0..8c2d29954e 100644 --- a/dist/native/buffer/bufferAlloc.js.map +++ b/dist/native/buffer/bufferAlloc.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferAlloc.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferAlloc.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferAlloc.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferAlloc.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferAllocUnsafe.d.ts.map b/dist/native/buffer/bufferAllocUnsafe.d.ts.map index 69b97ad0b6..28c8f82b90 100644 --- a/dist/native/buffer/bufferAllocUnsafe.d.ts.map +++ b/dist/native/buffer/bufferAllocUnsafe.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferAllocUnsafe.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferAllocUnsafe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"bufferAllocUnsafe.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferAllocUnsafe.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferAllocUnsafe.js b/dist/native/buffer/bufferAllocUnsafe.js index 7f75749f07..513d6a5daf 100644 --- a/dist/native/buffer/bufferAllocUnsafe.js +++ b/dist/native/buffer/bufferAllocUnsafe.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferAllocUnsafe.js.map b/dist/native/buffer/bufferAllocUnsafe.js.map index 1c032ebba8..d7d8ea975e 100644 --- a/dist/native/buffer/bufferAllocUnsafe.js.map +++ b/dist/native/buffer/bufferAllocUnsafe.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferAllocUnsafe.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferAllocUnsafe.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferAllocUnsafe.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferAllocUnsafe.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferLength.d.ts.map b/dist/native/buffer/bufferLength.d.ts.map index c5069103d9..a230ecc9b5 100644 --- a/dist/native/buffer/bufferLength.d.ts.map +++ b/dist/native/buffer/bufferLength.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferLength.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferLength.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bufferLength.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferLength.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferLength.js b/dist/native/buffer/bufferLength.js index 10c9faa3d0..0678d6bbe3 100644 --- a/dist/native/buffer/bufferLength.js +++ b/dist/native/buffer/bufferLength.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferLength.js.map b/dist/native/buffer/bufferLength.js.map index 91d4d83674..8c26e3d154 100644 --- a/dist/native/buffer/bufferLength.js.map +++ b/dist/native/buffer/bufferLength.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferLength.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferLength.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferLength.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferLength.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferReadInt32.d.ts.map b/dist/native/buffer/bufferReadInt32.d.ts.map index 93ec7a5451..ac7c86d476 100644 --- a/dist/native/buffer/bufferReadInt32.d.ts.map +++ b/dist/native/buffer/bufferReadInt32.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferReadInt32.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadInt32.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"bufferReadInt32.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadInt32.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferReadInt32.js b/dist/native/buffer/bufferReadInt32.js index 9b593f1426..8c9638e149 100644 --- a/dist/native/buffer/bufferReadInt32.js +++ b/dist/native/buffer/bufferReadInt32.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferReadInt32.js.map b/dist/native/buffer/bufferReadInt32.js.map index 3c085415d9..32dfd026c0 100644 --- a/dist/native/buffer/bufferReadInt32.js.map +++ b/dist/native/buffer/bufferReadInt32.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferReadInt32.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadInt32.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,MAAM,MAAM,GAAG,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferReadInt32.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadInt32.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,MAAM,MAAM,GAAG,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferReadUtf8.d.ts.map b/dist/native/buffer/bufferReadUtf8.d.ts.map index 9b2b5437f2..8a423121b5 100644 --- a/dist/native/buffer/bufferReadUtf8.d.ts.map +++ b/dist/native/buffer/bufferReadUtf8.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferReadUtf8.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadUtf8.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"bufferReadUtf8.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadUtf8.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferReadUtf8.js b/dist/native/buffer/bufferReadUtf8.js index 47bd1857b2..9f23b122b2 100644 --- a/dist/native/buffer/bufferReadUtf8.js +++ b/dist/native/buffer/bufferReadUtf8.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferReadUtf8.js.map b/dist/native/buffer/bufferReadUtf8.js.map index a0b377f9bb..313599e42a 100644 --- a/dist/native/buffer/bufferReadUtf8.js.map +++ b/dist/native/buffer/bufferReadUtf8.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferReadUtf8.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadUtf8.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,CAAA;IAClH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferReadUtf8.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferReadUtf8.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,CAAA;IAClH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferResize.d.ts.map b/dist/native/buffer/bufferResize.d.ts.map index bd8ff9c07c..c098be87cc 100644 --- a/dist/native/buffer/bufferResize.d.ts.map +++ b/dist/native/buffer/bufferResize.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferResize.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"bufferResize.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferResize.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferResize.js b/dist/native/buffer/bufferResize.js index eda8baf47b..2850fa1eef 100644 --- a/dist/native/buffer/bufferResize.js +++ b/dist/native/buffer/bufferResize.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferResize.js.map b/dist/native/buffer/bufferResize.js.map index ae0cc1dff7..47252ecc8e 100644 --- a/dist/native/buffer/bufferResize.js.map +++ b/dist/native/buffer/bufferResize.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferResize.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferResize.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,CAAE;QACzB,MAAM,MAAM,GAAG,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;QACvD,IAAI,MAAM,KAAK,IAAI,EAAE;YACjB,MAAM,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;YAChC,MAAM,CAAC,IAAI,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;YAClD,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;SACnC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferResize.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferResize.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,CAAE;QACzB,MAAM,MAAM,GAAG,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;QACvD,IAAI,MAAM,KAAK,IAAI,EAAE;YACjB,MAAM,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;YAChC,MAAM,CAAC,IAAI,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;YAClD,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;SACnC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferToString.d.ts.map b/dist/native/buffer/bufferToString.d.ts.map index 4694d452fc..6348c016c4 100644 --- a/dist/native/buffer/bufferToString.d.ts.map +++ b/dist/native/buffer/bufferToString.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferToString.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferToString.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"bufferToString.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferToString.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferToString.js b/dist/native/buffer/bufferToString.js index 256be64acb..bc9c85e9af 100644 --- a/dist/native/buffer/bufferToString.js +++ b/dist/native/buffer/bufferToString.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferToString.js.map b/dist/native/buffer/bufferToString.js.map index ace0680b5a..20b511975f 100644 --- a/dist/native/buffer/bufferToString.js.map +++ b/dist/native/buffer/bufferToString.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferToString.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferToString.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,QAAQ,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,QAA0B,IAAI,OAAO,CAAC,CAAC,CAAA;IACvH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferToString.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferToString.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,QAAQ,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,QAA0B,IAAI,OAAO,CAAC,CAAC,CAAA;IACvH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferWriteInt32.d.ts.map b/dist/native/buffer/bufferWriteInt32.d.ts.map index 420ce7aefa..ca19b6a6ef 100644 --- a/dist/native/buffer/bufferWriteInt32.d.ts.map +++ b/dist/native/buffer/bufferWriteInt32.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferWriteInt32.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteInt32.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"bufferWriteInt32.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteInt32.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferWriteInt32.js b/dist/native/buffer/bufferWriteInt32.js index e367d5b2f2..e2fde17a20 100644 --- a/dist/native/buffer/bufferWriteInt32.js +++ b/dist/native/buffer/bufferWriteInt32.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferWriteInt32.js.map b/dist/native/buffer/bufferWriteInt32.js.map index 2215d20d52..66f94206d8 100644 --- a/dist/native/buffer/bufferWriteInt32.js.map +++ b/dist/native/buffer/bufferWriteInt32.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferWriteInt32.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteInt32.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,YAAY,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferWriteInt32.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteInt32.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,YAAY,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/buffer/bufferWriteUtf8.d.ts.map b/dist/native/buffer/bufferWriteUtf8.d.ts.map index cf250a0e1a..77a8c8d6cc 100644 --- a/dist/native/buffer/bufferWriteUtf8.d.ts.map +++ b/dist/native/buffer/bufferWriteUtf8.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bufferWriteUtf8.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteUtf8.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"bufferWriteUtf8.d.ts","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteUtf8.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/buffer/bufferWriteUtf8.js b/dist/native/buffer/bufferWriteUtf8.js index 64eed8b3d2..178c916683 100644 --- a/dist/native/buffer/bufferWriteUtf8.js +++ b/dist/native/buffer/bufferWriteUtf8.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/buffer/bufferWriteUtf8.js.map b/dist/native/buffer/bufferWriteUtf8.js.map index 3039d2f6b8..295ada2fbf 100644 --- a/dist/native/buffer/bufferWriteUtf8.js.map +++ b/dist/native/buffer/bufferWriteUtf8.js.map @@ -1 +1 @@ -{"version":3,"file":"bufferWriteUtf8.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteUtf8.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bufferWriteUtf8.js","sourceRoot":"","sources":["../../../src/native/buffer/bufferWriteUtf8.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,sBAAsB,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/addChannelPerms.d.ts b/dist/native/channel/addChannelPerms.d.ts index 24a1836372..c22c4543fa 100644 --- a/dist/native/channel/addChannelPerms.d.ts +++ b/dist/native/channel/addChannelPerms.d.ts @@ -71,6 +71,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/addChannelPerms.d.ts.map b/dist/native/channel/addChannelPerms.d.ts.map index 03f5ef67da..c7253dd73d 100644 --- a/dist/native/channel/addChannelPerms.d.ts.map +++ b/dist/native/channel/addChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAyCE"} \ No newline at end of file +{"version":3,"file":"addChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAyCE"} \ No newline at end of file diff --git a/dist/native/channel/addChannelPerms.js b/dist/native/channel/addChannelPerms.js index 6fbc211e1a..83ad732691 100644 --- a/dist/native/channel/addChannelPerms.js +++ b/dist/native/channel/addChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/addChannelPerms.js.map b/dist/native/channel/addChannelPerms.js.map index 45d1f3f22b..6933b6d2c5 100644 --- a/dist/native/channel/addChannelPerms.js.map +++ b/dist/native/channel/addChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"addChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/addChannelPerms.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAAgD,EAAE,CAAA;QAE3D,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;QAE1D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/addChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAAgD,EAAE,CAAA;QAE3D,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;QAE1D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/addPostTags.d.ts.map b/dist/native/channel/addPostTags.d.ts.map index 66ab6d8fad..dfb8f0753c 100644 --- a/dist/native/channel/addPostTags.d.ts.map +++ b/dist/native/channel/addPostTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addPostTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;;AAZlC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"addPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addPostTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;;AAZlC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/addPostTags.js b/dist/native/channel/addPostTags.js index 76cf67aef9..646a3ece02 100644 --- a/dist/native/channel/addPostTags.js +++ b/dist/native/channel/addPostTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/addPostTags.js.map b/dist/native/channel/addPostTags.js.map index d579b1d793..e5dd9d46f0 100644 --- a/dist/native/channel/addPostTags.js.map +++ b/dist/native/channel/addPostTags.js.map @@ -1 +1 @@ -{"version":3,"file":"addPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/addPostTags.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,GAAG,IAAI,CAAC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/addPostTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,GAAG,IAAI,CAAC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/addThreadMember.d.ts.map b/dist/native/channel/addThreadMember.d.ts.map index 42622df65b..22c4a92a55 100644 --- a/dist/native/channel/addThreadMember.d.ts.map +++ b/dist/native/channel/addThreadMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addThreadMember.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addThreadMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAuB3C,WAAW;;;;;;;;;AArBlC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"addThreadMember.d.ts","sourceRoot":"","sources":["../../../src/native/channel/addThreadMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAuB3C,WAAW;;;;;;;;;AArBlC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/channel/addThreadMember.js b/dist/native/channel/addThreadMember.js index 4bf96116e8..04762abe0c 100644 --- a/dist/native/channel/addThreadMember.js +++ b/dist/native/channel/addThreadMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/addThreadMember.js.map b/dist/native/channel/addThreadMember.js.map index 5a0f5c6bb0..1153218679 100644 --- a/dist/native/channel/addThreadMember.js.map +++ b/dist/native/channel/addThreadMember.js.map @@ -1 +1 @@ -{"version":3,"file":"addThreadMember.js","sourceRoot":"","sources":["../../../src/native/channel/addThreadMember.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEhE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addThreadMember.js","sourceRoot":"","sources":["../../../src/native/channel/addThreadMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEhE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/archiveThread.d.ts.map b/dist/native/channel/archiveThread.d.ts.map index 35e6817e52..2197ec15df 100644 --- a/dist/native/channel/archiveThread.d.ts.map +++ b/dist/native/channel/archiveThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"archiveThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/archiveThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file +{"version":3,"file":"archiveThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/archiveThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file diff --git a/dist/native/channel/archiveThread.js b/dist/native/channel/archiveThread.js index 11461b87ad..41d410c5a5 100644 --- a/dist/native/channel/archiveThread.js +++ b/dist/native/channel/archiveThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/archiveThread.js.map b/dist/native/channel/archiveThread.js.map index 324087e7cf..afb4b65ca4 100644 --- a/dist/native/channel/archiveThread.js.map +++ b/dist/native/channel/archiveThread.js.map @@ -1 +1 @@ -{"version":3,"file":"archiveThread.js","sourceRoot":"","sources":["../../../src/native/channel/archiveThread.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"archiveThread.js","sourceRoot":"","sources":["../../../src/native/channel/archiveThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelBitrate.d.ts.map b/dist/native/channel/channelBitrate.d.ts.map index 1ca397540a..c820c68a62 100644 --- a/dist/native/channel/channelBitrate.d.ts.map +++ b/dist/native/channel/channelBitrate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelBitrate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelBitrate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelBitrate.js b/dist/native/channel/channelBitrate.js index 47ac06e44a..f304e01e48 100644 --- a/dist/native/channel/channelBitrate.js +++ b/dist/native/channel/channelBitrate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelBitrate.js.map b/dist/native/channel/channelBitrate.js.map index 81dd3f56c9..55e3e50233 100644 --- a/dist/native/channel/channelBitrate.js.map +++ b/dist/native/channel/channelBitrate.js.map @@ -1 +1 @@ -{"version":3,"file":"channelBitrate.js","sourceRoot":"","sources":["../../../src/native/channel/channelBitrate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelBitrate.js","sourceRoot":"","sources":["../../../src/native/channel/channelBitrate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelCategoryID.d.ts.map b/dist/native/channel/channelCategoryID.d.ts.map index 71b6ac0b1c..dcbf8b1013 100644 --- a/dist/native/channel/channelCategoryID.d.ts.map +++ b/dist/native/channel/channelCategoryID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelCategoryID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCategoryID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"channelCategoryID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCategoryID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/channelCategoryID.js b/dist/native/channel/channelCategoryID.js index 65f140974d..a80bf64b36 100644 --- a/dist/native/channel/channelCategoryID.js +++ b/dist/native/channel/channelCategoryID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelCategoryID.js.map b/dist/native/channel/channelCategoryID.js.map index 598d6bb45c..d4ed1dcecc 100644 --- a/dist/native/channel/channelCategoryID.js.map +++ b/dist/native/channel/channelCategoryID.js.map @@ -1 +1 @@ -{"version":3,"file":"channelCategoryID.js","sourceRoot":"","sources":["../../../src/native/channel/channelCategoryID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelCategoryID.js","sourceRoot":"","sources":["../../../src/native/channel/channelCategoryID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelChildrenCount.d.ts.map b/dist/native/channel/channelChildrenCount.d.ts.map index 0951369d14..c9eb88b669 100644 --- a/dist/native/channel/channelChildrenCount.d.ts.map +++ b/dist/native/channel/channelChildrenCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelChildrenCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelChildrenCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelChildrenCount.js b/dist/native/channel/channelChildrenCount.js index b3aeb516a5..2e052b9eb8 100644 --- a/dist/native/channel/channelChildrenCount.js +++ b/dist/native/channel/channelChildrenCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelChildrenCount.js.map b/dist/native/channel/channelChildrenCount.js.map index 988f8e6ec4..4f5815987e 100644 --- a/dist/native/channel/channelChildrenCount.js.map +++ b/dist/native/channel/channelChildrenCount.js.map @@ -1 +1 @@ -{"version":3,"file":"channelChildrenCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenCount.ts"],"names":[],"mappings":";;AAAA,2CAAsE;AACtE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAE,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqB,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelChildrenCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsE;AACtE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAE,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqB,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelChildrenIDs.d.ts.map b/dist/native/channel/channelChildrenIDs.d.ts.map index 4259b9c94e..907147fc84 100644 --- a/dist/native/channel/channelChildrenIDs.d.ts.map +++ b/dist/native/channel/channelChildrenIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelChildrenIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenIDs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"channelChildrenIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenIDs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/channel/channelChildrenIDs.js b/dist/native/channel/channelChildrenIDs.js index 9505422a94..8ea49f0d63 100644 --- a/dist/native/channel/channelChildrenIDs.js +++ b/dist/native/channel/channelChildrenIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelChildrenIDs.js.map b/dist/native/channel/channelChildrenIDs.js.map index 91d9358b69..a5de474be7 100644 --- a/dist/native/channel/channelChildrenIDs.js.map +++ b/dist/native/channel/channelChildrenIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"channelChildrenIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenIDs.ts"],"names":[],"mappings":";;;;;AAAA,2CAAsE;AACtE,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACd,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqB,EAAE,QAAQ,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACpG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelChildrenIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelChildrenIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAsE;AACtE,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACd,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqB,EAAE,QAAQ,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACpG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelCount.d.ts.map b/dist/native/channel/channelCount.d.ts.map index 85f69416f0..86cad621ff 100644 --- a/dist/native/channel/channelCount.d.ts.map +++ b/dist/native/channel/channelCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"channelCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/channel/channelCount.js b/dist/native/channel/channelCount.js index 48d5bee057..c712ff4200 100644 --- a/dist/native/channel/channelCount.js +++ b/dist/native/channel/channelCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelCount.js.map b/dist/native/channel/channelCount.js.map index da9390facf..a55fb8d7ff 100644 --- a/dist/native/channel/channelCount.js.map +++ b/dist/native/channel/channelCount.js.map @@ -1 +1 @@ -{"version":3,"file":"channelCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelCount.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,CAAC,SAAS;YACX,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YACtE,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAC9B,CAAC,IAAI,CACT,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,CAAC,SAAS;YACX,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YACtE,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAC9B,CAAC,IAAI,CACT,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelCreatedAt.d.ts.map b/dist/native/channel/channelCreatedAt.d.ts.map index 8872945faa..5f6b76b64f 100644 --- a/dist/native/channel/channelCreatedAt.d.ts.map +++ b/dist/native/channel/channelCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelCreatedAt.js b/dist/native/channel/channelCreatedAt.js index 16ea058942..77ee682aca 100644 --- a/dist/native/channel/channelCreatedAt.js +++ b/dist/native/channel/channelCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelCreatedAt.js.map b/dist/native/channel/channelCreatedAt.js.map index c188f691a9..46dd4c38b2 100644 --- a/dist/native/channel/channelCreatedAt.js.map +++ b/dist/native/channel/channelCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"channelCreatedAt.js","sourceRoot":"","sources":["../../../src/native/channel/channelCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelCreatedAt.js","sourceRoot":"","sources":["../../../src/native/channel/channelCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelDeletable.d.ts.map b/dist/native/channel/channelDeletable.d.ts.map index cd442c4572..8a6476e007 100644 --- a/dist/native/channel/channelDeletable.d.ts.map +++ b/dist/native/channel/channelDeletable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelDeletable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelDeletable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelDeletable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelDeletable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelDeletable.js b/dist/native/channel/channelDeletable.js index 797a38ca44..c8396c277c 100644 --- a/dist/native/channel/channelDeletable.js +++ b/dist/native/channel/channelDeletable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelDeletable.js.map b/dist/native/channel/channelDeletable.js.map index 3205e400a5..107ffc8baa 100644 --- a/dist/native/channel/channelDeletable.js.map +++ b/dist/native/channel/channelDeletable.js.map @@ -1 +1 @@ -{"version":3,"file":"channelDeletable.js","sourceRoot":"","sources":["../../../src/native/channel/channelDeletable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelDeletable.js","sourceRoot":"","sources":["../../../src/native/channel/channelDeletable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelExists.d.ts.map b/dist/native/channel/channelExists.d.ts.map index 3217d703da..16ae49d3df 100644 --- a/dist/native/channel/channelExists.d.ts.map +++ b/dist/native/channel/channelExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelExists.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"channelExists.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/channel/channelExists.js b/dist/native/channel/channelExists.js index d986bea40d..5b64cb809a 100644 --- a/dist/native/channel/channelExists.js +++ b/dist/native/channel/channelExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelExists.js.map b/dist/native/channel/channelExists.js.map index 89803acc26..67bf8deb7f 100644 --- a/dist/native/channel/channelExists.js.map +++ b/dist/native/channel/channelExists.js.map @@ -1 +1 @@ -{"version":3,"file":"channelExists.js","sourceRoot":"","sources":["../../../src/native/channel/channelExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelExists.js","sourceRoot":"","sources":["../../../src/native/channel/channelExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelFlags.d.ts.map b/dist/native/channel/channelFlags.d.ts.map index ec3b795c47..7d019891c7 100644 --- a/dist/native/channel/channelFlags.d.ts.map +++ b/dist/native/channel/channelFlags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelFlags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelFlags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"channelFlags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelFlags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/channel/channelFlags.js b/dist/native/channel/channelFlags.js index c12f8e96ac..4510f5eb78 100644 --- a/dist/native/channel/channelFlags.js +++ b/dist/native/channel/channelFlags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelFlags.js.map b/dist/native/channel/channelFlags.js.map index 7133d76638..e79a930d3f 100644 --- a/dist/native/channel/channelFlags.js.map +++ b/dist/native/channel/channelFlags.js.map @@ -1 +1 @@ -{"version":3,"file":"channelFlags.js","sourceRoot":"","sources":["../../../src/native/channel/channelFlags.ts"],"names":[],"mappings":";;;;;AAAA,2CAAyC;AACzC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelFlags.js","sourceRoot":"","sources":["../../../src/native/channel/channelFlags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAyC;AACzC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelFull.d.ts.map b/dist/native/channel/channelFull.d.ts.map index 877fc5e8b4..bbaaa23e90 100644 --- a/dist/native/channel/channelFull.d.ts.map +++ b/dist/native/channel/channelFull.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelFull.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelFull.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelFull.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelFull.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelFull.js b/dist/native/channel/channelFull.js index 6f2da7e841..b75342805b 100644 --- a/dist/native/channel/channelFull.js +++ b/dist/native/channel/channelFull.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelFull.js.map b/dist/native/channel/channelFull.js.map index 5a2da3a2a4..6fd769b9de 100644 --- a/dist/native/channel/channelFull.js.map +++ b/dist/native/channel/channelFull.js.map @@ -1 +1 @@ -{"version":3,"file":"channelFull.js","sourceRoot":"","sources":["../../../src/native/channel/channelFull.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelFull.js","sourceRoot":"","sources":["../../../src/native/channel/channelFull.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelGuildID.d.ts.map b/dist/native/channel/channelGuildID.d.ts.map index 3766400d55..f1789aea81 100644 --- a/dist/native/channel/channelGuildID.d.ts.map +++ b/dist/native/channel/channelGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelGuildID.js b/dist/native/channel/channelGuildID.js index 8b8a30096c..0ad3511713 100644 --- a/dist/native/channel/channelGuildID.js +++ b/dist/native/channel/channelGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelGuildID.js.map b/dist/native/channel/channelGuildID.js.map index f45a38d540..f730dba700 100644 --- a/dist/native/channel/channelGuildID.js.map +++ b/dist/native/channel/channelGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"channelGuildID.js","sourceRoot":"","sources":["../../../src/native/channel/channelGuildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelGuildID.js","sourceRoot":"","sources":["../../../src/native/channel/channelGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelHasAnyPerms.d.ts b/dist/native/channel/channelHasAnyPerms.d.ts index 648bc6ecdb..65bee2f961 100644 --- a/dist/native/channel/channelHasAnyPerms.d.ts +++ b/dist/native/channel/channelHasAnyPerms.d.ts @@ -71,6 +71,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/channelHasAnyPerms.d.ts.map b/dist/native/channel/channelHasAnyPerms.d.ts.map index b4edd89fb7..5c2a3436aa 100644 --- a/dist/native/channel/channelHasAnyPerms.d.ts.map +++ b/dist/native/channel/channelHasAnyPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelHasAnyPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelHasAnyPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAmBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAhBlC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"channelHasAnyPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelHasAnyPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAmBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAhBlC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/channel/channelHasAnyPerms.js b/dist/native/channel/channelHasAnyPerms.js index a635ea45e7..8181fb8f67 100644 --- a/dist/native/channel/channelHasAnyPerms.js +++ b/dist/native/channel/channelHasAnyPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelHasAnyPerms.js.map b/dist/native/channel/channelHasAnyPerms.js.map index 3cd8ce11c3..b312ebbee5 100644 --- a/dist/native/channel/channelHasAnyPerms.js.map +++ b/dist/native/channel/channelHasAnyPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"channelHasAnyPerms.js","sourceRoot":"","sources":["../../../src/native/channel/channelHasAnyPerms.ts"],"names":[],"mappings":";;AAAA,2CAAoF;AACpF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,WAAW,EAAE,kEAAkE;IAC/E,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelHasAnyPerms.js","sourceRoot":"","sources":["../../../src/native/channel/channelHasAnyPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoF;AACpF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,WAAW,EAAE,kEAAkE;IAC/E,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelHasPerms.d.ts b/dist/native/channel/channelHasPerms.d.ts index c304363bfb..a26a96da72 100644 --- a/dist/native/channel/channelHasPerms.d.ts +++ b/dist/native/channel/channelHasPerms.d.ts @@ -71,6 +71,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/channelHasPerms.d.ts.map b/dist/native/channel/channelHasPerms.d.ts.map index 25ba2298ae..df71af5236 100644 --- a/dist/native/channel/channelHasPerms.d.ts.map +++ b/dist/native/channel/channelHasPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelHasPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelHasPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAoBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBlC,wBAuCE"} \ No newline at end of file +{"version":3,"file":"channelHasPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelHasPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAoBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBlC,wBAuCE"} \ No newline at end of file diff --git a/dist/native/channel/channelHasPerms.js b/dist/native/channel/channelHasPerms.js index 3787d03501..8157e82134 100644 --- a/dist/native/channel/channelHasPerms.js +++ b/dist/native/channel/channelHasPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelHasPerms.js.map b/dist/native/channel/channelHasPerms.js.map index 5fcbd8dc91..1cdcff45c6 100644 --- a/dist/native/channel/channelHasPerms.js.map +++ b/dist/native/channel/channelHasPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"channelHasPerms.js","sourceRoot":"","sources":["../../../src/native/channel/channelHasPerms.ts"],"names":[],"mappings":";;AAAA,2CAAoF;AACpF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,iBAAiB;QACjB,kBAAkB;KACrB;IACD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelHasPerms.js","sourceRoot":"","sources":["../../../src/native/channel/channelHasPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoF;AACpF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,iBAAiB;QACjB,kBAAkB;KACrB;IACD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelID.d.ts.map b/dist/native/channel/channelID.d.ts.map index c36d7b69a1..7365258ecb 100644 --- a/dist/native/channel/channelID.d.ts.map +++ b/dist/native/channel/channelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"channelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/channelID.js b/dist/native/channel/channelID.js index a6b4f0373c..4746ad628b 100644 --- a/dist/native/channel/channelID.js +++ b/dist/native/channel/channelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelID.js.map b/dist/native/channel/channelID.js.map index 468499ff35..748770262b 100644 --- a/dist/native/channel/channelID.js.map +++ b/dist/native/channel/channelID.js.map @@ -1 +1 @@ -{"version":3,"file":"channelID.js","sourceRoot":"","sources":["../../../src/native/channel/channelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,SAAS,CAAC,CAAA;QACvF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelID.js","sourceRoot":"","sources":["../../../src/native/channel/channelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,SAAS,CAAC,CAAA;QACvF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelIDs.d.ts.map b/dist/native/channel/channelIDs.d.ts.map index 233dec92df..df8570a905 100644 --- a/dist/native/channel/channelIDs.d.ts.map +++ b/dist/native/channel/channelIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file +{"version":3,"file":"channelIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file diff --git a/dist/native/channel/channelIDs.js b/dist/native/channel/channelIDs.js index 95512cd01f..2e6593474e 100644 --- a/dist/native/channel/channelIDs.js +++ b/dist/native/channel/channelIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelIDs.js.map b/dist/native/channel/channelIDs.js.map index 00865b21be..e05f3d9f17 100644 --- a/dist/native/channel/channelIDs.js.map +++ b/dist/native/channel/channelIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"channelIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,0BAA0B;IACvC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,0BAA0B;IACvC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelIsChildrenOf.d.ts.map b/dist/native/channel/channelIsChildrenOf.d.ts.map index 0181342d57..060b13fe8c 100644 --- a/dist/native/channel/channelIsChildrenOf.d.ts.map +++ b/dist/native/channel/channelIsChildrenOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelIsChildrenOf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelIsChildrenOf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eA0BnC,WAAW;;AAxBlC,wBA8BE"} \ No newline at end of file +{"version":3,"file":"channelIsChildrenOf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelIsChildrenOf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eA0BnC,WAAW;;AAxBlC,wBA8BE"} \ No newline at end of file diff --git a/dist/native/channel/channelIsChildrenOf.js b/dist/native/channel/channelIsChildrenOf.js index 7d3c020fd7..a23b6328e1 100644 --- a/dist/native/channel/channelIsChildrenOf.js +++ b/dist/native/channel/channelIsChildrenOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelIsChildrenOf.js.map b/dist/native/channel/channelIsChildrenOf.js.map index 86b3c8d44c..fb0baf0659 100644 --- a/dist/native/channel/channelIsChildrenOf.js.map +++ b/dist/native/channel/channelIsChildrenOf.js.map @@ -1 +1 @@ -{"version":3,"file":"channelIsChildrenOf.js","sourceRoot":"","sources":["../../../src/native/channel/channelIsChildrenOf.ts"],"names":[],"mappings":";;AAAA,2CAAsE;AACtE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,eAAe;KAClB;IACD,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CAAE,GAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelIsChildrenOf.js","sourceRoot":"","sources":["../../../src/native/channel/channelIsChildrenOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsE;AACtE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,eAAe;KAClB;IACD,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CAAE,GAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelJoinable.d.ts.map b/dist/native/channel/channelJoinable.d.ts.map index c574c31095..738120419d 100644 --- a/dist/native/channel/channelJoinable.d.ts.map +++ b/dist/native/channel/channelJoinable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelJoinable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelJoinable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelJoinable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelJoinable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelJoinable.js b/dist/native/channel/channelJoinable.js index b60ee98ff4..0b8043fb2f 100644 --- a/dist/native/channel/channelJoinable.js +++ b/dist/native/channel/channelJoinable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelJoinable.js.map b/dist/native/channel/channelJoinable.js.map index fa70638d40..11fd1e23df 100644 --- a/dist/native/channel/channelJoinable.js.map +++ b/dist/native/channel/channelJoinable.js.map @@ -1 +1 @@ -{"version":3,"file":"channelJoinable.js","sourceRoot":"","sources":["../../../src/native/channel/channelJoinable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelJoinable.js","sourceRoot":"","sources":["../../../src/native/channel/channelJoinable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelManageable.d.ts.map b/dist/native/channel/channelManageable.d.ts.map index cfefcd7761..82ec5b2eb3 100644 --- a/dist/native/channel/channelManageable.d.ts.map +++ b/dist/native/channel/channelManageable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelManageable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelManageable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelManageable.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelManageable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelManageable.js b/dist/native/channel/channelManageable.js index 452fb247c7..1bce246336 100644 --- a/dist/native/channel/channelManageable.js +++ b/dist/native/channel/channelManageable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelManageable.js.map b/dist/native/channel/channelManageable.js.map index 7e8e76da42..73008eb389 100644 --- a/dist/native/channel/channelManageable.js.map +++ b/dist/native/channel/channelManageable.js.map @@ -1 +1 @@ -{"version":3,"file":"channelManageable.js","sourceRoot":"","sources":["../../../src/native/channel/channelManageable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelManageable.js","sourceRoot":"","sources":["../../../src/native/channel/channelManageable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelMembers.d.ts.map b/dist/native/channel/channelMembers.d.ts.map index 829b100e26..afae93f6af 100644 --- a/dist/native/channel/channelMembers.d.ts.map +++ b/dist/native/channel/channelMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelMembers.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelMembers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAIlE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"channelMembers.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelMembers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAIlE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/channel/channelMembers.js b/dist/native/channel/channelMembers.js index 478fc9a9b7..6710c4ac98 100644 --- a/dist/native/channel/channelMembers.js +++ b/dist/native/channel/channelMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelMembers.js.map b/dist/native/channel/channelMembers.js.map index 7fa556e25a..5c33bf4c4a 100644 --- a/dist/native/channel/channelMembers.js.map +++ b/dist/native/channel/channelMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"channelMembers.js","sourceRoot":"","sources":["../../../src/native/channel/channelMembers.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kEAAyC;AAGzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,OAA2C,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACzJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelMembers.js","sourceRoot":"","sources":["../../../src/native/channel/channelMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kEAAyC;AAGzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,OAA2C,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACzJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelNSFW.d.ts.map b/dist/native/channel/channelNSFW.d.ts.map index 2f0f6c7daf..ded6b7d730 100644 --- a/dist/native/channel/channelNSFW.d.ts.map +++ b/dist/native/channel/channelNSFW.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelNSFW.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelNSFW.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelNSFW.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelNSFW.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelNSFW.js b/dist/native/channel/channelNSFW.js index 39809da933..bfef45e4e2 100644 --- a/dist/native/channel/channelNSFW.js +++ b/dist/native/channel/channelNSFW.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelNSFW.js.map b/dist/native/channel/channelNSFW.js.map index 07f84f5784..ef76d4cb80 100644 --- a/dist/native/channel/channelNSFW.js.map +++ b/dist/native/channel/channelNSFW.js.map @@ -1 +1 @@ -{"version":3,"file":"channelNSFW.js","sourceRoot":"","sources":["../../../src/native/channel/channelNSFW.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelNSFW.js","sourceRoot":"","sources":["../../../src/native/channel/channelNSFW.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelName.d.ts.map b/dist/native/channel/channelName.d.ts.map index 59c92bdacf..d99194ed0d 100644 --- a/dist/native/channel/channelName.d.ts.map +++ b/dist/native/channel/channelName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelName.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelName.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelName.js b/dist/native/channel/channelName.js index 80e307fb8e..892d1e61ab 100644 --- a/dist/native/channel/channelName.js +++ b/dist/native/channel/channelName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelName.js.map b/dist/native/channel/channelName.js.map index 686102032f..ba24b59c07 100644 --- a/dist/native/channel/channelName.js.map +++ b/dist/native/channel/channelName.js.map @@ -1 +1 @@ -{"version":3,"file":"channelName.js","sourceRoot":"","sources":["../../../src/native/channel/channelName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelName.js","sourceRoot":"","sources":["../../../src/native/channel/channelName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelNames.d.ts.map b/dist/native/channel/channelNames.d.ts.map index 6afe8286ae..d2e5b9ebfe 100644 --- a/dist/native/channel/channelNames.d.ts.map +++ b/dist/native/channel/channelNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelNames.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"channelNames.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/channel/channelNames.js b/dist/native/channel/channelNames.js index 8e5f415fde..82cb66f0fe 100644 --- a/dist/native/channel/channelNames.js +++ b/dist/native/channel/channelNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelNames.js.map b/dist/native/channel/channelNames.js.map index e17ac9cad8..a57fde9c41 100644 --- a/dist/native/channel/channelNames.js.map +++ b/dist/native/channel/channelNames.js.map @@ -1 +1 @@ -{"version":3,"file":"channelNames.js","sourceRoot":"","sources":["../../../src/native/channel/channelNames.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelNames.js","sourceRoot":"","sources":["../../../src/native/channel/channelNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissions.d.ts.map b/dist/native/channel/channelPermissions.d.ts.map index ef934b3499..3fb29107ce 100644 --- a/dist/native/channel/channelPermissions.d.ts.map +++ b/dist/native/channel/channelPermissions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissions.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAkC,4BAA4B,EAAE,MAAM,uCAAuC,CAAA;;;;;;;eAoB7F,WAAW;;;;;;;;;;;;;;AAjBlC,wBAuCE"} \ No newline at end of file +{"version":3,"file":"channelPermissions.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAkC,4BAA4B,EAAE,MAAM,uCAAuC,CAAA;;;;;;;eAoB7F,WAAW;;;;;;;;;;;;;;AAjBlC,wBAuCE"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissions.js b/dist/native/channel/channelPermissions.js index fc50416225..e567c420ee 100644 --- a/dist/native/channel/channelPermissions.js +++ b/dist/native/channel/channelPermissions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelPermissions.js.map b/dist/native/channel/channelPermissions.js.map index da2e21ea7b..f4b4ec7fda 100644 --- a/dist/native/channel/channelPermissions.js.map +++ b/dist/native/channel/channelPermissions.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissions.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissions.ts"],"names":[],"mappings":";;;;;AACA,iDAA0D;AAC1D,gFAAoH;AACpH,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE;QACL,eAAe;QACf,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mDAA4B;SACrC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,EAAE,GAAG,CAAE;QAC1B,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAiB,CAAA;QAChD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,qDAA8B,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPermissions.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAA0D;AAC1D,gFAAoH;AACpH,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE;QACL,eAAe;QACf,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mDAA4B;SACrC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,EAAE,GAAG,CAAE;QAC1B,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAiB,CAAA;QAChD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,qDAA8B,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissionsFor.d.ts.map b/dist/native/channel/channelPermissionsFor.d.ts.map index e8fb597026..26b766134f 100644 --- a/dist/native/channel/channelPermissionsFor.d.ts.map +++ b/dist/native/channel/channelPermissionsFor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissionsFor.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsFor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAqBnC,WAAW;;;;;;;;;;;;;AAlBlC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"channelPermissionsFor.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsFor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAqBnC,WAAW;;;;;;;;;;;;;AAlBlC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissionsFor.js b/dist/native/channel/channelPermissionsFor.js index 2294c9cbd5..17c6128e35 100644 --- a/dist/native/channel/channelPermissionsFor.js +++ b/dist/native/channel/channelPermissionsFor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelPermissionsFor.js.map b/dist/native/channel/channelPermissionsFor.js.map index adec2a74f0..684f1ff43c 100644 --- a/dist/native/channel/channelPermissionsFor.js.map +++ b/dist/native/channel/channelPermissionsFor.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissionsFor.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsFor.ts"],"names":[],"mappings":";;;;;AAAA,2CAAoF;AACpF,iDAA0D;AAC1D,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,OAAO,EAAE;QACL,kBAAkB;QAClB,qBAAqB;QACrB,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPermissionsFor.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsFor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAoF;AACpF,iDAA0D;AAC1D,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,OAAO,EAAE;QACL,kBAAkB;QAClB,qBAAqB;QACrB,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,gBAAgB,IAAI,CAAC;SACnD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAE,OAAiC,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissionsOf.d.ts.map b/dist/native/channel/channelPermissionsOf.d.ts.map index d06c682383..10436152bc 100644 --- a/dist/native/channel/channelPermissionsOf.d.ts.map +++ b/dist/native/channel/channelPermissionsOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissionsOf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsOf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqC,MAAM,YAAY,CAAA;AAC3E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAG1D,oBAAY,oBAAoB;IAC5B,KAAK,UAAU;IACf,IAAI,SAAS;CAChB;;;;;;;eAkBsB,WAAW;;;;;;;;;;;;;;;;;;;;AAhBlC,wBA4CE"} \ No newline at end of file +{"version":3,"file":"channelPermissionsOf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsOf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqC,MAAM,YAAY,CAAA;AAC3E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAG1D,oBAAY,oBAAoB;IAC5B,KAAK,UAAU;IACf,IAAI,SAAS;CAChB;;;;;;;eAkBsB,WAAW;;;;;;;;;;;;;;;;;;;;AAhBlC,wBA4CE"} \ No newline at end of file diff --git a/dist/native/channel/channelPermissionsOf.js b/dist/native/channel/channelPermissionsOf.js index 876d419c34..b18a745ffd 100644 --- a/dist/native/channel/channelPermissionsOf.js +++ b/dist/native/channel/channelPermissionsOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelPermissionsOf.js.map b/dist/native/channel/channelPermissionsOf.js.map index 359d22b210..cd6a391a96 100644 --- a/dist/native/channel/channelPermissionsOf.js.map +++ b/dist/native/channel/channelPermissionsOf.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPermissionsOf.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsOf.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA2E;AAC3E,iDAA0D;AAC1D,kEAAyC;AAEzC,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC5B,uCAAe,CAAA;IACf,qCAAa,CAAA;AACjB,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,oBAAoB;SAC7B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,CAAE;QACpC,OAAO,IAAI,CAAC,OAAO,CAAE,OAAwB,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPermissionsOf.js","sourceRoot":"","sources":["../../../src/native/channel/channelPermissionsOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA2E;AAC3E,iDAA0D;AAC1D,kEAAyC;AAEzC,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC5B,uCAAe,CAAA;IACf,qCAAa,CAAA;AACjB,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,oBAAoB;SAC7B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,CAAE;QACpC,OAAO,IAAI,CAAC,OAAO,CAAE,OAAwB,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelPinnedMessages.d.ts.map b/dist/native/channel/channelPinnedMessages.d.ts.map index af110c0f57..a9577b1494 100644 --- a/dist/native/channel/channelPinnedMessages.d.ts.map +++ b/dist/native/channel/channelPinnedMessages.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPinnedMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPinnedMessages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;;;;;;AAhBlC,wBA+BE"} \ No newline at end of file +{"version":3,"file":"channelPinnedMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPinnedMessages.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;;;;;;AAhBlC,wBA+BE"} \ No newline at end of file diff --git a/dist/native/channel/channelPinnedMessages.js b/dist/native/channel/channelPinnedMessages.js index ebf8c030d2..34278502fe 100644 --- a/dist/native/channel/channelPinnedMessages.js +++ b/dist/native/channel/channelPinnedMessages.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelPinnedMessages.js.map b/dist/native/channel/channelPinnedMessages.js.map index 4b7ab2c866..09940b8981 100644 --- a/dist/native/channel/channelPinnedMessages.js.map +++ b/dist/native/channel/channelPinnedMessages.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPinnedMessages.js","sourceRoot":"","sources":["../../../src/native/channel/channelPinnedMessages.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,GAAG,CAAE;QAC/B,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,IAAI,GAAG,MAAO,OAA4B,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPinnedMessages.js","sourceRoot":"","sources":["../../../src/native/channel/channelPinnedMessages.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,GAAG,CAAE;QAC/B,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,IAAI,GAAG,MAAO,OAA4B,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelPosition.d.ts.map b/dist/native/channel/channelPosition.d.ts.map index b49c5edf55..2fe6dd4aec 100644 --- a/dist/native/channel/channelPosition.d.ts.map +++ b/dist/native/channel/channelPosition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelPosition.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelPosition.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelPosition.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelPosition.js b/dist/native/channel/channelPosition.js index d7be746324..798b1faef2 100644 --- a/dist/native/channel/channelPosition.js +++ b/dist/native/channel/channelPosition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelPosition.js.map b/dist/native/channel/channelPosition.js.map index 7d9e6955ed..a7083ba75c 100644 --- a/dist/native/channel/channelPosition.js.map +++ b/dist/native/channel/channelPosition.js.map @@ -1 +1 @@ -{"version":3,"file":"channelPosition.js","sourceRoot":"","sources":["../../../src/native/channel/channelPosition.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelPosition.js","sourceRoot":"","sources":["../../../src/native/channel/channelPosition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelRawData.d.ts.map b/dist/native/channel/channelRawData.d.ts.map index bb9bcc68f3..fa3a64999a 100644 --- a/dist/native/channel/channelRawData.d.ts.map +++ b/dist/native/channel/channelRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelRawData.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"channelRawData.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/channel/channelRawData.js b/dist/native/channel/channelRawData.js index f4b84e37da..bf1e186c92 100644 --- a/dist/native/channel/channelRawData.js +++ b/dist/native/channel/channelRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelRawData.js.map b/dist/native/channel/channelRawData.js.map index 6197da646c..133b24e480 100644 --- a/dist/native/channel/channelRawData.js.map +++ b/dist/native/channel/channelRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"channelRawData.js","sourceRoot":"","sources":["../../../src/native/channel/channelRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelRawData.js","sourceRoot":"","sources":["../../../src/native/channel/channelRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelSlowmode.d.ts.map b/dist/native/channel/channelSlowmode.d.ts.map index ea5b25a178..22f78ac02b 100644 --- a/dist/native/channel/channelSlowmode.d.ts.map +++ b/dist/native/channel/channelSlowmode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelSlowmode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"channelSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelSlowmode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/channelSlowmode.js b/dist/native/channel/channelSlowmode.js index 78f9c1b7b5..da26e4882f 100644 --- a/dist/native/channel/channelSlowmode.js +++ b/dist/native/channel/channelSlowmode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelSlowmode.js.map b/dist/native/channel/channelSlowmode.js.map index dc3284df5b..a6c274e78d 100644 --- a/dist/native/channel/channelSlowmode.js.map +++ b/dist/native/channel/channelSlowmode.js.map @@ -1 +1 @@ -{"version":3,"file":"channelSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/channelSlowmode.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,kBAAkB,IAAI,CAAC;SACrD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,kBAAkB,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/channelSlowmode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,kBAAkB,IAAI,CAAC;SACrD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,kBAAkB,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelTags.d.ts.map b/dist/native/channel/channelTags.d.ts.map index 2960975042..c00d36a7a7 100644 --- a/dist/native/channel/channelTags.d.ts.map +++ b/dist/native/channel/channelTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAblC,wBA2BE"} \ No newline at end of file +{"version":3,"file":"channelTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAblC,wBA2BE"} \ No newline at end of file diff --git a/dist/native/channel/channelTags.js b/dist/native/channel/channelTags.js index 100c7526ec..d226400578 100644 --- a/dist/native/channel/channelTags.js +++ b/dist/native/channel/channelTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelTags.js.map b/dist/native/channel/channelTags.js.map index 6aef24839a..0b3564f90e 100644 --- a/dist/native/channel/channelTags.js.map +++ b/dist/native/channel/channelTags.js.map @@ -1 +1 @@ -{"version":3,"file":"channelTags.js","sourceRoot":"","sources":["../../../src/native/channel/channelTags.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAoB;IACjC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAA8B,CAAA;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,WAAW,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelTags.js","sourceRoot":"","sources":["../../../src/native/channel/channelTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAoB;IACjC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAA8B,CAAA;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,WAAW,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelThreadIDs.d.ts.map b/dist/native/channel/channelThreadIDs.d.ts.map index 0255d9b15f..8dfc30fea9 100644 --- a/dist/native/channel/channelThreadIDs.d.ts.map +++ b/dist/native/channel/channelThreadIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelThreadIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelThreadIDs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAblC,wBA2BE"} \ No newline at end of file +{"version":3,"file":"channelThreadIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelThreadIDs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAblC,wBA2BE"} \ No newline at end of file diff --git a/dist/native/channel/channelThreadIDs.js b/dist/native/channel/channelThreadIDs.js index 234fcfb888..ca01575ba4 100644 --- a/dist/native/channel/channelThreadIDs.js +++ b/dist/native/channel/channelThreadIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelThreadIDs.js.map b/dist/native/channel/channelThreadIDs.js.map index 7c5e3a56bf..ea7baaf431 100644 --- a/dist/native/channel/channelThreadIDs.js.map +++ b/dist/native/channel/channelThreadIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"channelThreadIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelThreadIDs.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,MAAM,IAAI,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,OAAyB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelThreadIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelThreadIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QACvB,MAAM,IAAI,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,OAAyB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelTopic.d.ts.map b/dist/native/channel/channelTopic.d.ts.map index e478d2224b..f81e8d1256 100644 --- a/dist/native/channel/channelTopic.d.ts.map +++ b/dist/native/channel/channelTopic.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelTopic.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelTopic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelTopic.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelTopic.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelTopic.js b/dist/native/channel/channelTopic.js index 2cde5087ab..6e0b6592ed 100644 --- a/dist/native/channel/channelTopic.js +++ b/dist/native/channel/channelTopic.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelTopic.js.map b/dist/native/channel/channelTopic.js.map index 189137de25..c300269e11 100644 --- a/dist/native/channel/channelTopic.js.map +++ b/dist/native/channel/channelTopic.js.map @@ -1 +1 @@ -{"version":3,"file":"channelTopic.js","sourceRoot":"","sources":["../../../src/native/channel/channelTopic.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelTopic.js","sourceRoot":"","sources":["../../../src/native/channel/channelTopic.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelType.d.ts.map b/dist/native/channel/channelType.d.ts.map index 501123c930..83a6e5d7cd 100644 --- a/dist/native/channel/channelType.d.ts.map +++ b/dist/native/channel/channelType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelType.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelType.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelType.js b/dist/native/channel/channelType.js index 95b244c649..f0b4a86043 100644 --- a/dist/native/channel/channelType.js +++ b/dist/native/channel/channelType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/channelType.js.map b/dist/native/channel/channelType.js.map index cd0e1085b5..86ec0fedfd 100644 --- a/dist/native/channel/channelType.js.map +++ b/dist/native/channel/channelType.js.map @@ -1 +1 @@ -{"version":3,"file":"channelType.js","sourceRoot":"","sources":["../../../src/native/channel/channelType.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAW;IACnB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelType.js","sourceRoot":"","sources":["../../../src/native/channel/channelType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAW;IACnB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelURL.d.ts.map b/dist/native/channel/channelURL.d.ts.map index d917df3291..a64bec6591 100644 --- a/dist/native/channel/channelURL.d.ts.map +++ b/dist/native/channel/channelURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelURL.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"channelURL.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/channel/channelURL.js b/dist/native/channel/channelURL.js index b9da0048d4..02e935642f 100644 --- a/dist/native/channel/channelURL.js +++ b/dist/native/channel/channelURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelURL.js.map b/dist/native/channel/channelURL.js.map index bc4600209a..ed5b1cc0dd 100644 --- a/dist/native/channel/channelURL.js.map +++ b/dist/native/channel/channelURL.js.map @@ -1 +1 @@ -{"version":3,"file":"channelURL.js","sourceRoot":"","sources":["../../../src/native/channel/channelURL.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelURL.js","sourceRoot":"","sources":["../../../src/native/channel/channelURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelUserLimit.d.ts.map b/dist/native/channel/channelUserLimit.d.ts.map index 9642aefce3..2478f60c7c 100644 --- a/dist/native/channel/channelUserLimit.d.ts.map +++ b/dist/native/channel/channelUserLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelUserLimit.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelUserLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"channelUserLimit.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelUserLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/channelUserLimit.js b/dist/native/channel/channelUserLimit.js index 41c1a1bb19..14663d3f0a 100644 --- a/dist/native/channel/channelUserLimit.js +++ b/dist/native/channel/channelUserLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelUserLimit.js.map b/dist/native/channel/channelUserLimit.js.map index bf71f51fad..cbec9a4909 100644 --- a/dist/native/channel/channelUserLimit.js.map +++ b/dist/native/channel/channelUserLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"channelUserLimit.js","sourceRoot":"","sources":["../../../src/native/channel/channelUserLimit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelUserLimit.js","sourceRoot":"","sources":["../../../src/native/channel/channelUserLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceMemberCount.d.ts.map b/dist/native/channel/channelVoiceMemberCount.d.ts.map index 6889c7f701..cc1b8d0a2f 100644 --- a/dist/native/channel/channelVoiceMemberCount.d.ts.map +++ b/dist/native/channel/channelVoiceMemberCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberCount.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"channelVoiceMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberCount.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceMemberCount.js b/dist/native/channel/channelVoiceMemberCount.js index 6cbe987cf9..83c35735c6 100644 --- a/dist/native/channel/channelVoiceMemberCount.js +++ b/dist/native/channel/channelVoiceMemberCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/channelVoiceMemberCount.js.map b/dist/native/channel/channelVoiceMemberCount.js.map index 908ff045fc..cd4d9cf74f 100644 --- a/dist/native/channel/channelVoiceMemberCount.js.map +++ b/dist/native/channel/channelVoiceMemberCount.js.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceMemberCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberCount.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mEAAmE;IAChF,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelVoiceMemberCount.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mEAAmE;IAChF,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceMemberIDs.d.ts.map b/dist/native/channel/channelVoiceMemberIDs.d.ts.map index e867058e06..cc795c1c25 100644 --- a/dist/native/channel/channelVoiceMemberIDs.d.ts.map +++ b/dist/native/channel/channelVoiceMemberIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceMemberIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberIDs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"channelVoiceMemberIDs.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberIDs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceMemberIDs.js b/dist/native/channel/channelVoiceMemberIDs.js index 80498be84c..c3af212122 100644 --- a/dist/native/channel/channelVoiceMemberIDs.js +++ b/dist/native/channel/channelVoiceMemberIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelVoiceMemberIDs.js.map b/dist/native/channel/channelVoiceMemberIDs.js.map index 4f7a657f8e..df0c577bf6 100644 --- a/dist/native/channel/channelVoiceMemberIDs.js.map +++ b/dist/native/channel/channelVoiceMemberIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceMemberIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberIDs.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelVoiceMemberIDs.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceMemberIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,IAAI,GAAG,EAAE,IAAI,GAAG,CAAC,OAAO,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceRegion.d.ts.map b/dist/native/channel/channelVoiceRegion.d.ts.map index db45568262..5e5221f103 100644 --- a/dist/native/channel/channelVoiceRegion.d.ts.map +++ b/dist/native/channel/channelVoiceRegion.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceRegion.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceRegion.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAblC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"channelVoiceRegion.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceRegion.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAblC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/channelVoiceRegion.js b/dist/native/channel/channelVoiceRegion.js index 9dbff8dccb..67a41472b9 100644 --- a/dist/native/channel/channelVoiceRegion.js +++ b/dist/native/channel/channelVoiceRegion.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const setVoiceRegion_1 = require("./setVoiceRegion"); diff --git a/dist/native/channel/channelVoiceRegion.js.map b/dist/native/channel/channelVoiceRegion.js.map index 9ec8632b59..62eb6e984d 100644 --- a/dist/native/channel/channelVoiceRegion.js.map +++ b/dist/native/channel/channelVoiceRegion.js.map @@ -1 +1 @@ -{"version":3,"file":"channelVoiceRegion.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceRegion.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAClE,qDAAkD;AAElD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;KACJ;IACD,MAAM,EAAE,gCAAe;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAiB,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelVoiceRegion.js","sourceRoot":"","sources":["../../../src/native/channel/channelVoiceRegion.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,qDAAkD;AAElD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;KACJ;IACD,MAAM,EAAE,gCAAe;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAiB,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/channelWebhooks.d.ts.map b/dist/native/channel/channelWebhooks.d.ts.map index 498546f48d..41ebaf40ee 100644 --- a/dist/native/channel/channelWebhooks.d.ts.map +++ b/dist/native/channel/channelWebhooks.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelWebhooks.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelWebhooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwB,MAAM,YAAY,CAAA;AAC9D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAgBtD,WAAW;;;;;;;;;;;;;AAblC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"channelWebhooks.d.ts","sourceRoot":"","sources":["../../../src/native/channel/channelWebhooks.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwB,MAAM,YAAY,CAAA;AAC9D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAgBtD,WAAW;;;;;;;;;;;;;AAblC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/channel/channelWebhooks.js b/dist/native/channel/channelWebhooks.js index df95e7b532..6fd7cce4fb 100644 --- a/dist/native/channel/channelWebhooks.js +++ b/dist/native/channel/channelWebhooks.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/channelWebhooks.js.map b/dist/native/channel/channelWebhooks.js.map index 5194fa1ab0..10479b6b07 100644 --- a/dist/native/channel/channelWebhooks.js.map +++ b/dist/native/channel/channelWebhooks.js.map @@ -1 +1 @@ -{"version":3,"file":"channelWebhooks.js","sourceRoot":"","sources":["../../../src/native/channel/channelWebhooks.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,sDAA6E;AAC7E,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACnC,MAAM,QAAQ,GAAG,MAAO,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAA0B,EAAE,aAAa,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC1G,IAAI,IAAI,IAAI,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC5G,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelWebhooks.js","sourceRoot":"","sources":["../../../src/native/channel/channelWebhooks.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,sDAA6E;AAC7E,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACnC,MAAM,QAAQ,GAAG,MAAO,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAA0B,EAAE,aAAa,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC1G,IAAI,IAAI,IAAI,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC5G,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/clearChannelPerms.d.ts.map b/dist/native/channel/clearChannelPerms.d.ts.map index 85e3c120ba..c746c00b99 100644 --- a/dist/native/channel/clearChannelPerms.d.ts.map +++ b/dist/native/channel/clearChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clearChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;AAdlC,wBAiCE"} \ No newline at end of file +{"version":3,"file":"clearChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;AAdlC,wBAiCE"} \ No newline at end of file diff --git a/dist/native/channel/clearChannelPerms.js b/dist/native/channel/clearChannelPerms.js index cc9f083a2c..108efb4616 100644 --- a/dist/native/channel/clearChannelPerms.js +++ b/dist/native/channel/clearChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/clearChannelPerms.js.map b/dist/native/channel/clearChannelPerms.js.map index ca1c9bca6d..0a0ba1d1bf 100644 --- a/dist/native/channel/clearChannelPerms.js.map +++ b/dist/native/channel/clearChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"clearChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/clearChannelPerms.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8EAA8E;IAC3F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QACvB,MAAM,KAAK,GAAI,EAAmB,CAAC,oBAAoB,CAAA;QAEvD,IAAI,EAAE,EAAE;YACJ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC9E;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC3E;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clearChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/clearChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8EAA8E;IAC3F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QACvB,MAAM,KAAK,GAAI,EAAmB,CAAC,oBAAoB,CAAA;QAEvD,IAAI,EAAE,EAAE;YACJ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC9E;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC3E;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/clearMessages.d.ts.map b/dist/native/channel/clearMessages.d.ts.map index c183266db3..1c36f1b9b1 100644 --- a/dist/native/channel/clearMessages.d.ts.map +++ b/dist/native/channel/clearMessages.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clearMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearMessages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;AAdlC,wBA2DE"} \ No newline at end of file +{"version":3,"file":"clearMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearMessages.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;AAdlC,wBA2DE"} \ No newline at end of file diff --git a/dist/native/channel/clearMessages.js b/dist/native/channel/clearMessages.js index 3308a62a36..dd625d6691 100644 --- a/dist/native/channel/clearMessages.js +++ b/dist/native/channel/clearMessages.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/clearMessages.js.map b/dist/native/channel/clearMessages.js.map index e6a9b11880..a493c58be6 100644 --- a/dist/native/channel/clearMessages.js.map +++ b/dist/native/channel/clearMessages.js.map @@ -1 +1 @@ -{"version":3,"file":"clearMessages.js","sourceRoot":"","sources":["../../../src/native/channel/clearMessages.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,8EAAqD;AAGrD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oFAAoF;IACjG,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC;QAC9C,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,CAAC,IAAI,IAAA,qBAAW,EAAC,MAAM,EAAE,GAAG,CAAC,EAAE;YACtC,MAAM,QAAQ,GAAG,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,CAAC,QAAQ;gBAAE,MAAK;YAEpB,MAAM,GAAG,GAAG,MAAO,OAAuB;iBACrC,UAAU,CACP,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBAClB,IAAI,MAAM,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM;oBAAE,OAAO,KAAK,CAAA;gBAChD,IAAI,IAAI,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG;oBAAE,OAAO,KAAK,CAAA;gBAClD,OAAO,IAAI,CAAA;YACf,CAAC,CAAC,EACF,IAAI,CACP;iBACA,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;YAEtB,IAAI,GAAG;gBAAE,KAAK,IAAI,GAAG,CAAC,IAAI,CAAA;SAC7B;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clearMessages.js","sourceRoot":"","sources":["../../../src/native/channel/clearMessages.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,8EAAqD;AAGrD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oFAAoF;IACjG,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC;QAC9C,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,CAAC,IAAI,IAAA,qBAAW,EAAC,MAAM,EAAE,GAAG,CAAC,EAAE;YACtC,MAAM,QAAQ,GAAG,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,CAAC,QAAQ;gBAAE,MAAK;YAEpB,MAAM,GAAG,GAAG,MAAO,OAAuB;iBACrC,UAAU,CACP,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBAClB,IAAI,MAAM,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM;oBAAE,OAAO,KAAK,CAAA;gBAChD,IAAI,IAAI,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG;oBAAE,OAAO,KAAK,CAAA;gBAClD,OAAO,IAAI,CAAA;YACf,CAAC,CAAC,EACF,IAAI,CACP;iBACA,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;YAEtB,IAAI,GAAG;gBAAE,KAAK,IAAI,GAAG,CAAC,IAAI,CAAA;SAC7B;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/clearUserMessages.d.ts.map b/dist/native/channel/clearUserMessages.d.ts.map index 71322331da..dde98a1150 100644 --- a/dist/native/channel/clearUserMessages.d.ts.map +++ b/dist/native/channel/clearUserMessages.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clearUserMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearUserMessages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;;AAdlC,wBA6DE"} \ No newline at end of file +{"version":3,"file":"clearUserMessages.d.ts","sourceRoot":"","sources":["../../../src/native/channel/clearUserMessages.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;;AAdlC,wBA6DE"} \ No newline at end of file diff --git a/dist/native/channel/clearUserMessages.js b/dist/native/channel/clearUserMessages.js index 8a55a6969c..b725f2273d 100644 --- a/dist/native/channel/clearUserMessages.js +++ b/dist/native/channel/clearUserMessages.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/clearUserMessages.js.map b/dist/native/channel/clearUserMessages.js.map index 73989acaad..96318d9109 100644 --- a/dist/native/channel/clearUserMessages.js.map +++ b/dist/native/channel/clearUserMessages.js.map @@ -1 +1 @@ -{"version":3,"file":"clearUserMessages.js","sourceRoot":"","sources":["../../../src/native/channel/clearUserMessages.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,8EAAqD;AAGrD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kGAAkG;IAC/G,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC;QAC9C,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,CAAC,IAAI,IAAA,qBAAW,EAAC,MAAM,EAAE,GAAG,CAAC,EAAE;YACtC,MAAM,QAAQ,GAAG,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,CAAC,QAAQ;gBAAE,MAAK;YAEpB,MAAM,GAAG,GAAG,MAAO,OAAuB;iBACrC,UAAU,CACP,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBAClB,IAAI,MAAM,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM;oBAAE,OAAO,KAAK,CAAA;gBAChD,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC,CAAA;YACxC,CAAC,CAAC,EACF,IAAI,CACP;iBACA,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;YAEtB,IAAI,CAAC,GAAG;gBAAE,MAAK;YAEf,KAAK,IAAI,GAAG,CAAC,IAAI,CAAA;SACpB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clearUserMessages.js","sourceRoot":"","sources":["../../../src/native/channel/clearUserMessages.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,8EAAqD;AAGrD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kGAAkG;IAC/G,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC;QAC9C,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,CAAC,IAAI,IAAA,qBAAW,EAAC,MAAM,EAAE,GAAG,CAAC,EAAE;YACtC,MAAM,QAAQ,GAAG,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,CAAC,QAAQ;gBAAE,MAAK;YAEpB,MAAM,GAAG,GAAG,MAAO,OAAuB;iBACrC,UAAU,CACP,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBAClB,IAAI,MAAM,KAAK,KAAK,IAAI,GAAG,CAAC,MAAM;oBAAE,OAAO,KAAK,CAAA;gBAChD,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC,CAAA;YACxC,CAAC,CAAC,EACF,IAAI,CACP;iBACA,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;YAEtB,IAAI,CAAC,GAAG;gBAAE,MAAK;YAEf,KAAK,IAAI,GAAG,CAAC,IAAI,CAAA;SACpB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/cloneChannel.d.ts.map b/dist/native/channel/cloneChannel.d.ts.map index a097762dd3..ca58f5c936 100644 --- a/dist/native/channel/cloneChannel.d.ts.map +++ b/dist/native/channel/cloneChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cloneChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/cloneChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAgBnC,WAAW;;;;;;;AAdlC,wBA+BE"} \ No newline at end of file +{"version":3,"file":"cloneChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/cloneChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAgBnC,WAAW;;;;;;;AAdlC,wBA+BE"} \ No newline at end of file diff --git a/dist/native/channel/cloneChannel.js b/dist/native/channel/cloneChannel.js index 8d9a652e26..d2264d04b8 100644 --- a/dist/native/channel/cloneChannel.js +++ b/dist/native/channel/cloneChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/cloneChannel.js.map b/dist/native/channel/cloneChannel.js.map index 56e5281fe0..8add8fc66f 100644 --- a/dist/native/channel/cloneChannel.js.map +++ b/dist/native/channel/cloneChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"cloneChannel.js","sourceRoot":"","sources":["../../../src/native/channel/cloneChannel.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,OAAO,IAAI,CAAC;SAC1C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QAC5B,MAAM,OAAO,GAAG,MAAqB,GAAI,CAAC,KAAK,CAAC;YAC5C,IAAI,EAAE,IAAI,IAAK,GAAoB,CAAC,IAAI;YACxC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cloneChannel.js","sourceRoot":"","sources":["../../../src/native/channel/cloneChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,OAAO,IAAI,CAAC;SAC1C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QAC5B,MAAM,OAAO,GAAG,MAAqB,GAAI,CAAC,KAAK,CAAC;YAC5C,IAAI,EAAE,IAAI,IAAK,GAAoB,CAAC,IAAI;YACxC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/cloneChannelPerms.d.ts.map b/dist/native/channel/cloneChannelPerms.d.ts.map index 7f76a2e35f..a6aacf7184 100644 --- a/dist/native/channel/cloneChannelPerms.d.ts.map +++ b/dist/native/channel/cloneChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cloneChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/cloneChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;eAQX,WAAW;;AArBlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"cloneChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/cloneChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;eAQX,WAAW;;AArBlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/channel/cloneChannelPerms.js b/dist/native/channel/cloneChannelPerms.js index 4259dc3ed3..25ef5c41a7 100644 --- a/dist/native/channel/cloneChannelPerms.js +++ b/dist/native/channel/cloneChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/cloneChannelPerms.js.map b/dist/native/channel/cloneChannelPerms.js.map index de75d08ee0..f5f293aa65 100644 --- a/dist/native/channel/cloneChannelPerms.js.map +++ b/dist/native/channel/cloneChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"cloneChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/cloneChannelPerms.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mEAAmE;IAChF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,KAAsB,CAAC,oBAAoB,CAAC,GAAG,CAAE,KAAsB,CAAC,oBAAoB,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnK,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cloneChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/cloneChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mEAAmE;IAChF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,KAAK,CAAE;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,KAAsB,CAAC,oBAAoB,CAAC,GAAG,CAAE,KAAsB,CAAC,oBAAoB,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnK,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createChannel.d.ts.map b/dist/native/channel/createChannel.d.ts.map index 0546caa03d..9b96719b3a 100644 --- a/dist/native/channel/createChannel.d.ts.map +++ b/dist/native/channel/createChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAmB,WAAW,EAA6B,MAAM,YAAY,CAAA;AACjG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA2C3C,WAAW;;;AAzClC,wBAyDE"} \ No newline at end of file +{"version":3,"file":"createChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAmB,WAAW,EAA6B,MAAM,YAAY,CAAA;AACjG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA2C3C,WAAW;;;AAzClC,wBAyDE"} \ No newline at end of file diff --git a/dist/native/channel/createChannel.js b/dist/native/channel/createChannel.js index cff2868aee..dcb2af5cb4 100644 --- a/dist/native/channel/createChannel.js +++ b/dist/native/channel/createChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/createChannel.js.map b/dist/native/channel/createChannel.js.map index b9fe30c21e..4e038d0dcd 100644 --- a/dist/native/channel/createChannel.js.map +++ b/dist/native/channel/createChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"createChannel.js","sourceRoot":"","sources":["../../../src/native/channel/createChannel.ts"],"names":[],"mappings":";;AAAA,2CAAiG;AACjG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;YAC/D,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC;QACjD,MAAM,EAAE,GAAG,MAAM,KAAK,CAAC,QAAQ;aAC1B,MAAM,CAAC;YACJ,IAAI,EAAE,IAAyC;YAC/C,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,MAAM,EAAE,MAAyB;YACjC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createChannel.js","sourceRoot":"","sources":["../../../src/native/channel/createChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiG;AACjG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;YAC/D,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC;QACjD,MAAM,EAAE,GAAG,MAAM,KAAK,CAAC,QAAQ;aAC1B,MAAM,CAAC;YACJ,IAAI,EAAE,IAAyC;YAC/C,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,MAAM,EAAE,MAAyB;YACjC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createForumPost.d.ts.map b/dist/native/channel/createForumPost.d.ts.map index c7ec769fbd..af10a7497e 100644 --- a/dist/native/channel/createForumPost.d.ts.map +++ b/dist/native/channel/createForumPost.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createForumPost.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createForumPost.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;;;;;;;AAZlC,wBAsDE"} \ No newline at end of file +{"version":3,"file":"createForumPost.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createForumPost.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;;;;;;;AAZlC,wBAsDE"} \ No newline at end of file diff --git a/dist/native/channel/createForumPost.js b/dist/native/channel/createForumPost.js index bf9499e57c..aa6864d59b 100644 --- a/dist/native/channel/createForumPost.js +++ b/dist/native/channel/createForumPost.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/createForumPost.js.map b/dist/native/channel/createForumPost.js.map index fb913e1bc6..ba7813fd6c 100644 --- a/dist/native/channel/createForumPost.js.map +++ b/dist/native/channel/createForumPost.js.map @@ -1 +1 @@ -{"version":3,"file":"createForumPost.js","sourceRoot":"","sources":["../../../src/native/channel/createForumPost.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAC3C,MAAM,KAAK,GAAG,OAA4B,CAAA;QAE1C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,IAAI,SAAS,CAAA;QAEzC,MAAM,CAAC,GAAG,MAAM,KAAK,CAAC,OAAO;aACxB,MAAM,CAAC;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,UAAU,EAAE;YACnC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;QAErB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createForumPost.js","sourceRoot":"","sources":["../../../src/native/channel/createForumPost.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAC3C,MAAM,KAAK,GAAG,OAA4B,CAAA;QAE1C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,IAAI,SAAS,CAAA;QAEzC,MAAM,CAAC,GAAG,MAAM,KAAK,CAAC,OAAO;aACxB,MAAM,CAAC;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,GAAG,CAAC,SAAS,CAAC,UAAU,EAAE;YACnC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;QAErB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createForumTag.d.ts.map b/dist/native/channel/createForumTag.d.ts.map index b6bbb267ce..4904eec851 100644 --- a/dist/native/channel/createForumTag.d.ts.map +++ b/dist/native/channel/createForumTag.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createForumTag.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createForumTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwC,MAAM,YAAY,CAAA;AAC9E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;AAblC,wBA+CE"} \ No newline at end of file +{"version":3,"file":"createForumTag.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createForumTag.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwC,MAAM,YAAY,CAAA;AAC9E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;AAblC,wBA+CE"} \ No newline at end of file diff --git a/dist/native/channel/createForumTag.js b/dist/native/channel/createForumTag.js index 4d59d2d24c..aae0dbd490 100644 --- a/dist/native/channel/createForumTag.js +++ b/dist/native/channel/createForumTag.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const parseSingleEmoji_1 = require("../../functions/parseSingleEmoji"); diff --git a/dist/native/channel/createForumTag.js.map b/dist/native/channel/createForumTag.js.map index ab35b0708a..555d64ad3c 100644 --- a/dist/native/channel/createForumTag.js.map +++ b/dist/native/channel/createForumTag.js.map @@ -1 +1 @@ -{"version":3,"file":"createForumTag.js","sourceRoot":"","sources":["../../../src/native/channel/createForumTag.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC5C,MAAM,KAAK,GAAG,OAA4B,CAAA;QAE1C,MAAM,GAAG,GAAG;YACR,IAAI;YACJ,KAAK,EAAE,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC;YACnC,SAAS,EAAE,GAAG,IAAI,SAAS;SACT,CAAA;QAEtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,CAAC,GAAG,KAAK,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IAChI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createForumTag.js","sourceRoot":"","sources":["../../../src/native/channel/createForumTag.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC5C,MAAM,KAAK,GAAG,OAA4B,CAAA;QAE1C,MAAM,GAAG,GAAG;YACR,IAAI;YACJ,KAAK,EAAE,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC;YACnC,SAAS,EAAE,GAAG,IAAI,SAAS;SACT,CAAA;QAEtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,CAAC,GAAG,KAAK,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IAChI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createInvite.d.ts.map b/dist/native/channel/createInvite.d.ts.map index 34bac12bbe..56fdd28a7a 100644 --- a/dist/native/channel/createInvite.d.ts.map +++ b/dist/native/channel/createInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createInvite.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;AAdlC,wBA+CE"} \ No newline at end of file +{"version":3,"file":"createInvite.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;AAdlC,wBA+CE"} \ No newline at end of file diff --git a/dist/native/channel/createInvite.js b/dist/native/channel/createInvite.js index 2b51e2f206..a35e95c18c 100644 --- a/dist/native/channel/createInvite.js +++ b/dist/native/channel/createInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/createInvite.js.map b/dist/native/channel/createInvite.js.map index cf07a59673..8b795c3026 100644 --- a/dist/native/channel/createInvite.js.map +++ b/dist/native/channel/createInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"createInvite.js","sourceRoot":"","sources":["../../../src/native/channel/createInvite.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE;SAC5C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC;QAC5C,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAgB,CAAA;QAClD,MAAM,MAAM,GAAG,MAAM,OAAO;aACvB,YAAY,CAAC;YACV,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,OAAO,EAAE,OAAO,IAAI,SAAS;YAC7B,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,IAAI;SACf,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createInvite.js","sourceRoot":"","sources":["../../../src/native/channel/createInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE;SAC5C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC;QAC5C,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAgB,CAAA;QAClD,MAAM,MAAM,GAAG,MAAM,OAAO;aACvB,YAAY,CAAC;YACV,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,OAAO,EAAE,OAAO,IAAI,SAAS;YAC7B,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,IAAI;SACf,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createStageInstance.d.ts.map b/dist/native/channel/createStageInstance.d.ts.map index 90aa49cc2e..fec3ee51da 100644 --- a/dist/native/channel/createStageInstance.d.ts.map +++ b/dist/native/channel/createStageInstance.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createStageInstance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA6B,yBAAyB,EAAE,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAuDE"} \ No newline at end of file +{"version":3,"file":"createStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createStageInstance.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA6B,yBAAyB,EAAE,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAuDE"} \ No newline at end of file diff --git a/dist/native/channel/createStageInstance.js b/dist/native/channel/createStageInstance.js index db3e50211c..be5c608954 100644 --- a/dist/native/channel/createStageInstance.js +++ b/dist/native/channel/createStageInstance.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/createStageInstance.js.map b/dist/native/channel/createStageInstance.js.map index 7a3eb80714..65e73ded1f 100644 --- a/dist/native/channel/createStageInstance.js.map +++ b/dist/native/channel/createStageInstance.js.map @@ -1 +1 @@ -{"version":3,"file":"createStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/createStageInstance.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,eAAe;SACpE;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iEAAiE;YAC9E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,aAAa;IAC7B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACrD,MAAM,QAAQ,GAAG,MAAO,OAAwB,CAAC,mBAAmB,CAAC;YACjE,KAAK;YACL,YAAY,EAAE,KAAK,IAAI,SAAS;YAChC,mBAAmB,EAAE,KAAK,IAAI,SAAS;YACvC,qBAAqB,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;SAC3E,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/createStageInstance.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,eAAe;SACpE;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iEAAiE;YAC9E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,aAAa;IAC7B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACrD,MAAM,QAAQ,GAAG,MAAO,OAAwB,CAAC,mBAAmB,CAAC;YACjE,KAAK;YACL,YAAY,EAAE,KAAK,IAAI,SAAS;YAChC,mBAAmB,EAAE,KAAK,IAAI,SAAS;YACvC,qBAAqB,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;SAC3E,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/createThread.d.ts.map b/dist/native/channel/createThread.d.ts.map index 3ccedc7188..85777c47fe 100644 --- a/dist/native/channel/createThread.d.ts.map +++ b/dist/native/channel/createThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAwDE"} \ No newline at end of file +{"version":3,"file":"createThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/createThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAwDE"} \ No newline at end of file diff --git a/dist/native/channel/createThread.js b/dist/native/channel/createThread.js index e3e8b30516..a5c58a13c2 100644 --- a/dist/native/channel/createThread.js +++ b/dist/native/channel/createThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/createThread.js.map b/dist/native/channel/createThread.js.map index 5c54e058e7..9b2be99130 100644 --- a/dist/native/channel/createThread.js.map +++ b/dist/native/channel/createThread.js.map @@ -1 +1 @@ -{"version":3,"file":"createThread.js","sourceRoot":"","sources":["../../../src/native/channel/createThread.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC;QAC/C,MAAM,EAAE,GAAG,OAAsB,CAAA;QAEjC,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,OAAO;aAC3B,MAAM,CAAC;YACJ,IAAI;YACJ,YAAY,EAAE,CAAC,IAAI,SAAS;YAC5B,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,wBAAW,CAAC,aAAa,CAAC,CAAC,CAAC,wBAAW,CAAC,YAAY;SACpE,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createThread.js","sourceRoot":"","sources":["../../../src/native/channel/createThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC;QAC/C,MAAM,EAAE,GAAG,OAAsB,CAAA;QAEjC,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,OAAO;aAC3B,MAAM,CAAC;YACJ,IAAI;YACJ,YAAY,EAAE,CAAC,IAAI,SAAS;YAC5B,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,wBAAW,CAAC,aAAa,CAAC,CAAC,CAAC,wBAAW,CAAC,YAAY;SACpE,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/deleteChannelPerms.d.ts b/dist/native/channel/deleteChannelPerms.d.ts index 73fce080c9..e629319fa6 100644 --- a/dist/native/channel/deleteChannelPerms.d.ts +++ b/dist/native/channel/deleteChannelPerms.d.ts @@ -71,6 +71,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/deleteChannelPerms.d.ts.map b/dist/native/channel/deleteChannelPerms.d.ts.map index 393c0bda58..c6bb2f06be 100644 --- a/dist/native/channel/deleteChannelPerms.d.ts.map +++ b/dist/native/channel/deleteChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAyCE"} \ No newline at end of file +{"version":3,"file":"deleteChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAyCE"} \ No newline at end of file diff --git a/dist/native/channel/deleteChannelPerms.js b/dist/native/channel/deleteChannelPerms.js index 1cd0fa5109..c8398e3b01 100644 --- a/dist/native/channel/deleteChannelPerms.js +++ b/dist/native/channel/deleteChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/deleteChannelPerms.js.map b/dist/native/channel/deleteChannelPerms.js.map index 08aad96dd7..ad45e4cb13 100644 --- a/dist/native/channel/deleteChannelPerms.js.map +++ b/dist/native/channel/deleteChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/deleteChannelPerms.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAA6C,EAAE,CAAA;QAExD,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;QAE1D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/deleteChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAA6C,EAAE,CAAA;QAExD,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;QAE1D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/deleteChannels.d.ts.map b/dist/native/channel/deleteChannels.d.ts.map index 6619ec6936..10e8b9f990 100644 --- a/dist/native/channel/deleteChannels.d.ts.map +++ b/dist/native/channel/deleteChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannels.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteChannels.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;AAflC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"deleteChannels.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteChannels.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;AAflC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/channel/deleteChannels.js b/dist/native/channel/deleteChannels.js index 212bd02ade..f09f9846a0 100644 --- a/dist/native/channel/deleteChannels.js +++ b/dist/native/channel/deleteChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/deleteChannels.js.map b/dist/native/channel/deleteChannels.js.map index c0974a0a17..57003fe78d 100644 --- a/dist/native/channel/deleteChannels.js.map +++ b/dist/native/channel/deleteChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannels.js","sourceRoot":"","sources":["../../../src/native/channel/deleteChannels.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,QAAQ,IAAI,CAAC;SAC3C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACjD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteChannels.js","sourceRoot":"","sources":["../../../src/native/channel/deleteChannels.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,QAAQ,IAAI,CAAC;SAC3C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAA;YACtB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACjD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/deleteForumTags.d.ts.map b/dist/native/channel/deleteForumTags.d.ts.map index 05129524cb..f4ae829e50 100644 --- a/dist/native/channel/deleteForumTags.d.ts.map +++ b/dist/native/channel/deleteForumTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteForumTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteForumTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA+BE"} \ No newline at end of file +{"version":3,"file":"deleteForumTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteForumTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA+BE"} \ No newline at end of file diff --git a/dist/native/channel/deleteForumTags.js b/dist/native/channel/deleteForumTags.js index 3870458295..a9dc4dd5fe 100644 --- a/dist/native/channel/deleteForumTags.js +++ b/dist/native/channel/deleteForumTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/deleteForumTags.js.map b/dist/native/channel/deleteForumTags.js.map index 14dc31addb..8185469690 100644 --- a/dist/native/channel/deleteForumTags.js.map +++ b/dist/native/channel/deleteForumTags.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteForumTags.js","sourceRoot":"","sources":["../../../src/native/channel/deleteForumTags.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,IAAI,CAAE;QAChC,MAAM,KAAK,GAAG,OAA4B,CAAA;QAC1C,MAAM,OAAO,GAAG,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;QACvF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteForumTags.js","sourceRoot":"","sources":["../../../src/native/channel/deleteForumTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,IAAI,CAAE;QAChC,MAAM,KAAK,GAAG,OAA4B,CAAA;QAC1C,MAAM,OAAO,GAAG,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;QACvF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/deleteStageInstance.d.ts.map b/dist/native/channel/deleteStageInstance.d.ts.map index d644b9ea21..d746d9fb11 100644 --- a/dist/native/channel/deleteStageInstance.d.ts.map +++ b/dist/native/channel/deleteStageInstance.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteStageInstance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteStageInstance.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/channel/deleteStageInstance.js b/dist/native/channel/deleteStageInstance.js index df0866d57e..14d9f8e65d 100644 --- a/dist/native/channel/deleteStageInstance.js +++ b/dist/native/channel/deleteStageInstance.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/deleteStageInstance.js.map b/dist/native/channel/deleteStageInstance.js.map index bd084d35b7..4dd0589991 100644 --- a/dist/native/channel/deleteStageInstance.js.map +++ b/dist/native/channel/deleteStageInstance.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/deleteStageInstance.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/deleteStageInstance.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/deleteThread.d.ts.map b/dist/native/channel/deleteThread.d.ts.map index c46efa3fe2..ae199f647d 100644 --- a/dist/native/channel/deleteThread.d.ts.map +++ b/dist/native/channel/deleteThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file +{"version":3,"file":"deleteThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/deleteThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file diff --git a/dist/native/channel/deleteThread.js b/dist/native/channel/deleteThread.js index 8d930186c0..6ed831261c 100644 --- a/dist/native/channel/deleteThread.js +++ b/dist/native/channel/deleteThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/deleteThread.js.map b/dist/native/channel/deleteThread.js.map index bdbf522c1e..0d9078702a 100644 --- a/dist/native/channel/deleteThread.js.map +++ b/dist/native/channel/deleteThread.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteThread.js","sourceRoot":"","sources":["../../../src/native/channel/deleteThread.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEzE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteThread.js","sourceRoot":"","sources":["../../../src/native/channel/deleteThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEzE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/dmChannelID.d.ts.map b/dist/native/channel/dmChannelID.d.ts.map index eb0397396a..d230e64e0f 100644 --- a/dist/native/channel/dmChannelID.d.ts.map +++ b/dist/native/channel/dmChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"dmChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/dmChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"dmChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/dmChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/dmChannelID.js b/dist/native/channel/dmChannelID.js index bd92b857e9..b76f40bc42 100644 --- a/dist/native/channel/dmChannelID.js +++ b/dist/native/channel/dmChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/dmChannelID.js.map b/dist/native/channel/dmChannelID.js.map index 0d0a2fe85b..01214f1b1a 100644 --- a/dist/native/channel/dmChannelID.js.map +++ b/dist/native/channel/dmChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"dmChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/dmChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAClB,MAAM,EAAE,GAAG,MAAM,IAAI,EAAE,QAAQ,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"dmChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/dmChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAClB,MAAM,EAAE,GAAG,MAAM,IAAI,EAAE,QAAQ,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/editForumTag.d.ts.map b/dist/native/channel/editForumTag.d.ts.map index fb36bf1d6b..4f44e6bf28 100644 --- a/dist/native/channel/editForumTag.d.ts.map +++ b/dist/native/channel/editForumTag.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editForumTag.d.ts","sourceRoot":"","sources":["../../../src/native/channel/editForumTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAuDE"} \ No newline at end of file +{"version":3,"file":"editForumTag.d.ts","sourceRoot":"","sources":["../../../src/native/channel/editForumTag.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;AAblC,wBAuDE"} \ No newline at end of file diff --git a/dist/native/channel/editForumTag.js b/dist/native/channel/editForumTag.js index 0fb4fbddca..8e9bb2e9c7 100644 --- a/dist/native/channel/editForumTag.js +++ b/dist/native/channel/editForumTag.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const parseSingleEmoji_1 = require("../../functions/parseSingleEmoji"); diff --git a/dist/native/channel/editForumTag.js.map b/dist/native/channel/editForumTag.js.map index 7a9fbf45c4..92fd28bde6 100644 --- a/dist/native/channel/editForumTag.js.map +++ b/dist/native/channel/editForumTag.js.map @@ -1 +1 @@ -{"version":3,"file":"editForumTag.js","sourceRoot":"","sources":["../../../src/native/channel/editForumTag.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QACjD,MAAM,KAAK,GAAG,OAA4B,CAAA;QAC1C,MAAM,IAAI,GAAG,KAAK,CAAC,aAAa,CAAA;QAChC,MAAM,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC,CAAA;QAEpD,IAAI,IAAI;YAAE,GAAG,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,IAAI,KAAK,KAAK,IAAI;YAAE,GAAG,CAAC,KAAK,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAC5D,IAAI,OAAO,GAAG,KAAK,SAAS;YAAE,GAAG,CAAC,SAAS,GAAG,GAAG,CAAA;QAEjD,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,CAAA;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editForumTag.js","sourceRoot":"","sources":["../../../src/native/channel/editForumTag.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QACjD,MAAM,KAAK,GAAG,OAA4B,CAAA;QAC1C,MAAM,IAAI,GAAG,KAAK,CAAC,aAAa,CAAA;QAChC,MAAM,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC,CAAA;QAEpD,IAAI,IAAI;YAAE,GAAG,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,IAAI,KAAK,KAAK,IAAI;YAAE,GAAG,CAAC,KAAK,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAC5D,IAAI,OAAO,GAAG,KAAK,SAAS;YAAE,GAAG,CAAC,SAAS,GAAG,GAAG,CAAA;QAEjD,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,CAAA;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/editStageInstance.d.ts.map b/dist/native/channel/editStageInstance.d.ts.map index 07bc30dfa3..790b5db88a 100644 --- a/dist/native/channel/editStageInstance.d.ts.map +++ b/dist/native/channel/editStageInstance.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/editStageInstance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"editStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/editStageInstance.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/channel/editStageInstance.js b/dist/native/channel/editStageInstance.js index 31d25c01ac..d760fcd4a6 100644 --- a/dist/native/channel/editStageInstance.js +++ b/dist/native/channel/editStageInstance.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/editStageInstance.js.map b/dist/native/channel/editStageInstance.js.map index fe9dc08fb1..79a816268c 100644 --- a/dist/native/channel/editStageInstance.js.map +++ b/dist/native/channel/editStageInstance.js.map @@ -1 +1 @@ -{"version":3,"file":"editStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/editStageInstance.ts"],"names":[],"mappings":";;AAAA,2CAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;SAClC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,IAAI,SAAS,EAAE,YAAY,EAAE,KAAK,IAAI,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/editStageInstance.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;SAClC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,IAAI,SAAS,EAAE,YAAY,EAAE,KAAK,IAAI,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/fetchChannels.d.ts.map b/dist/native/channel/fetchChannels.d.ts.map index a73b6b8e8f..7a4d306b0e 100644 --- a/dist/native/channel/fetchChannels.d.ts.map +++ b/dist/native/channel/fetchChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchChannels.d.ts","sourceRoot":"","sources":["../../../src/native/channel/fetchChannels.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"fetchChannels.d.ts","sourceRoot":"","sources":["../../../src/native/channel/fetchChannels.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/channel/fetchChannels.js b/dist/native/channel/fetchChannels.js index f87e764dd1..ae056b8e33 100644 --- a/dist/native/channel/fetchChannels.js +++ b/dist/native/channel/fetchChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/fetchChannels.js.map b/dist/native/channel/fetchChannels.js.map index 36ce25bdca..0f89365436 100644 --- a/dist/native/channel/fetchChannels.js.map +++ b/dist/native/channel/fetchChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchChannels.js","sourceRoot":"","sources":["../../../src/native/channel/fetchChannels.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC;QAC/B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,OAAO;YAAE,MAAM,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;;YAC/C,MAAM,KAAK,EAAE,QAAQ,CAAC,KAAK,EAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchChannels.js","sourceRoot":"","sources":["../../../src/native/channel/fetchChannels.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC;QAC/B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,OAAO;YAAE,MAAM,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;;YAC/C,MAAM,KAAK,EAAE,QAAQ,CAAC,KAAK,EAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/fetchThreads.d.ts.map b/dist/native/channel/fetchThreads.d.ts.map index 3cf4b1f1ed..8f8e90d761 100644 --- a/dist/native/channel/fetchThreads.d.ts.map +++ b/dist/native/channel/fetchThreads.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchThreads.d.ts","sourceRoot":"","sources":["../../../src/native/channel/fetchThreads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;AAblC,wBAwCE"} \ No newline at end of file +{"version":3,"file":"fetchThreads.d.ts","sourceRoot":"","sources":["../../../src/native/channel/fetchThreads.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;AAblC,wBAwCE"} \ No newline at end of file diff --git a/dist/native/channel/fetchThreads.js b/dist/native/channel/fetchThreads.js index a852368db9..ba9d49d4e6 100644 --- a/dist/native/channel/fetchThreads.js +++ b/dist/native/channel/fetchThreads.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/fetchThreads.js.map b/dist/native/channel/fetchThreads.js.map index e969d81a95..7bc68301c4 100644 --- a/dist/native/channel/fetchThreads.js.map +++ b/dist/native/channel/fetchThreads.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchThreads.js","sourceRoot":"","sources":["../../../src/native/channel/fetchThreads.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC;QACxC,MAAM,IAAI,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAEnC,IAAI,SAAS,IAAI,IAAI,EAAE;YACnB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAwB,CAAA;YAE7C,IAAI,QAAQ;gBAAE,MAAM,OAAO,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;;gBAC5G,MAAM,OAAO,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;SACnD;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchThreads.js","sourceRoot":"","sources":["../../../src/native/channel/fetchThreads.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;SAC5C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC;QACxC,MAAM,IAAI,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAEnC,IAAI,SAAS,IAAI,IAAI,EAAE;YACnB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAwB,CAAA;YAE7C,IAAI,QAAQ;gBAAE,MAAM,OAAO,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;;gBAC5G,MAAM,OAAO,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;SACnD;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/firstMessageID.d.ts.map b/dist/native/channel/firstMessageID.d.ts.map index d0256e3ed0..fe1984c9b3 100644 --- a/dist/native/channel/firstMessageID.d.ts.map +++ b/dist/native/channel/firstMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"firstMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/firstMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;AAjBlC,wBAyBE"} \ No newline at end of file +{"version":3,"file":"firstMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/firstMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;AAjBlC,wBAyBE"} \ No newline at end of file diff --git a/dist/native/channel/firstMessageID.js b/dist/native/channel/firstMessageID.js index f6a4b0d8f3..33b7648970 100644 --- a/dist/native/channel/firstMessageID.js +++ b/dist/native/channel/firstMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/firstMessageID.js.map b/dist/native/channel/firstMessageID.js.map index 6e59335f5d..6f1c4ee954 100644 --- a/dist/native/channel/firstMessageID.js.map +++ b/dist/native/channel/firstMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"firstMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/firstMessageID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QAC1B,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,OAAO,GAAG,MAAO,OAA4B,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7G,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"firstMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/firstMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QAC1B,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,OAAO,GAAG,MAAO,OAA4B,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7G,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/followChannel.d.ts.map b/dist/native/channel/followChannel.d.ts.map index 34ee9e01df..f70b74bccc 100644 --- a/dist/native/channel/followChannel.d.ts.map +++ b/dist/native/channel/followChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"followChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/followChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgD,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;eAQX,WAAW;;;;;;;AArBlC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"followChannel.d.ts","sourceRoot":"","sources":["../../../src/native/channel/followChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgD,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;eAQX,WAAW;;;;;;;AArBlC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/followChannel.js b/dist/native/channel/followChannel.js index e9c7d5532c..a8fd817090 100644 --- a/dist/native/channel/followChannel.js +++ b/dist/native/channel/followChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/followChannel.js.map b/dist/native/channel/followChannel.js.map index 021f61af90..296383d57c 100644 --- a/dist/native/channel/followChannel.js.map +++ b/dist/native/channel/followChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"followChannel.js","sourceRoot":"","sources":["../../../src/native/channel/followChannel.ts"],"names":[],"mappings":";;AAAA,2CAAsF;AACtF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,iBAAiB;SACtE;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;SAC9D;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,MAAO,IAAI,CAAC,KAAe,EAAE,QAAQ,CAAC,WAAW,CAAC,IAAmB,EAAE,IAAmB,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC1L,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"followChannel.js","sourceRoot":"","sources":["../../../src/native/channel/followChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsF;AACtF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,iBAAiB;SACtE;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;SAC9D;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,MAAO,IAAI,CAAC,KAAe,EAAE,QAAQ,CAAC,WAAW,CAAC,IAAmB,EAAE,IAAmB,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC1L,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultLayout.d.ts.map b/dist/native/channel/forumDefaultLayout.d.ts.map index cc9a292667..9cc65a73c1 100644 --- a/dist/native/channel/forumDefaultLayout.d.ts.map +++ b/dist/native/channel/forumDefaultLayout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultLayout.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultLayout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"forumDefaultLayout.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultLayout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA8C,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultLayout.js b/dist/native/channel/forumDefaultLayout.js index cd2dc7f566..c6aae8ede8 100644 --- a/dist/native/channel/forumDefaultLayout.js +++ b/dist/native/channel/forumDefaultLayout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/forumDefaultLayout.js.map b/dist/native/channel/forumDefaultLayout.js.map index ba09fd9afa..78ffb18e03 100644 --- a/dist/native/channel/forumDefaultLayout.js.map +++ b/dist/native/channel/forumDefaultLayout.js.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultLayout.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultLayout.ts"],"names":[],"mappings":";;AAAA,2CAAoF;AACpF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;YAC5D,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,4BAAe;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,4BAAe,CAAE,IAAqB,EAAE,kBAAkB,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumDefaultLayout.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultLayout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoF;AACpF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;YAC5D,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,4BAAe;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,4BAAe,CAAE,IAAqB,EAAE,kBAAkB,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultReactionEmoji.d.ts.map b/dist/native/channel/forumDefaultReactionEmoji.d.ts.map index 89eb6f8200..d9535b0b59 100644 --- a/dist/native/channel/forumDefaultReactionEmoji.d.ts.map +++ b/dist/native/channel/forumDefaultReactionEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultReactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultReactionEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"forumDefaultReactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultReactionEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultReactionEmoji.js b/dist/native/channel/forumDefaultReactionEmoji.js index 9ce1f9e653..af2aee73b0 100644 --- a/dist/native/channel/forumDefaultReactionEmoji.js +++ b/dist/native/channel/forumDefaultReactionEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/forumDefaultReactionEmoji.js.map b/dist/native/channel/forumDefaultReactionEmoji.js.map index 8d2d744407..2da579f069 100644 --- a/dist/native/channel/forumDefaultReactionEmoji.js.map +++ b/dist/native/channel/forumDefaultReactionEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultReactionEmoji.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultReactionEmoji.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,KAAK,GAAI,IAA0B,EAAE,oBAAoB,CAAA;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumDefaultReactionEmoji.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultReactionEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,KAAK,GAAI,IAA0B,EAAE,oBAAoB,CAAA;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultSortOrder.d.ts.map b/dist/native/channel/forumDefaultSortOrder.d.ts.map index 1c17d51edc..0e5499ef80 100644 --- a/dist/native/channel/forumDefaultSortOrder.d.ts.map +++ b/dist/native/channel/forumDefaultSortOrder.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultSortOrder.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultSortOrder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoC,MAAM,YAAY,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"forumDefaultSortOrder.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultSortOrder.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAoC,MAAM,YAAY,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultSortOrder.js b/dist/native/channel/forumDefaultSortOrder.js index 22bbae7d64..f8be31b404 100644 --- a/dist/native/channel/forumDefaultSortOrder.js +++ b/dist/native/channel/forumDefaultSortOrder.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/forumDefaultSortOrder.js.map b/dist/native/channel/forumDefaultSortOrder.js.map index 96b19d181d..837393dd93 100644 --- a/dist/native/channel/forumDefaultSortOrder.js.map +++ b/dist/native/channel/forumDefaultSortOrder.js.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultSortOrder.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultSortOrder.ts"],"names":[],"mappings":";;AAAA,2CAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,0BAAa;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAE,IAA0B,EAAE,gBAAiB,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumDefaultSortOrder.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultSortOrder.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,0BAAa;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAE,IAA0B,EAAE,gBAAiB,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultThreadArchiveDuration.d.ts.map b/dist/native/channel/forumDefaultThreadArchiveDuration.d.ts.map index ac7703f7fd..664ddd4a40 100644 --- a/dist/native/channel/forumDefaultThreadArchiveDuration.d.ts.map +++ b/dist/native/channel/forumDefaultThreadArchiveDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadArchiveDuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgD,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAiB3C,WAAW;;;AAflC,wBAuBE"} \ No newline at end of file +{"version":3,"file":"forumDefaultThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadArchiveDuration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgD,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAiB3C,WAAW;;;AAflC,wBAuBE"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultThreadArchiveDuration.js b/dist/native/channel/forumDefaultThreadArchiveDuration.js index a3cdc369b6..728c4b5a29 100644 --- a/dist/native/channel/forumDefaultThreadArchiveDuration.js +++ b/dist/native/channel/forumDefaultThreadArchiveDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/forumDefaultThreadArchiveDuration.js.map b/dist/native/channel/forumDefaultThreadArchiveDuration.js.map index 7159690736..c1d19700ab 100644 --- a/dist/native/channel/forumDefaultThreadArchiveDuration.js.map +++ b/dist/native/channel/forumDefaultThreadArchiveDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadArchiveDuration.ts"],"names":[],"mappings":";;AAAA,2CAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oCAAoC;IAC1C,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kEAAkE;IAC/E,OAAO,EAAE;QACL,wCAAwC;KAC3C;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,sCAAyB;IACjC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,sCAAyB,CAAE,IAA0B,EAAE,0BAA2B,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumDefaultThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadArchiveDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oCAAoC;IAC1C,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kEAAkE;IAC/E,OAAO,EAAE;QACL,wCAAwC;KAC3C;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,sCAAyB;IACjC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,sCAAyB,CAAE,IAA0B,EAAE,0BAA2B,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultThreadSlowmode.d.ts.map b/dist/native/channel/forumDefaultThreadSlowmode.d.ts.map index b3b830a2ba..e8704ca348 100644 --- a/dist/native/channel/forumDefaultThreadSlowmode.d.ts.map +++ b/dist/native/channel/forumDefaultThreadSlowmode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultThreadSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadSlowmode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"forumDefaultThreadSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadSlowmode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;AAZlC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/channel/forumDefaultThreadSlowmode.js b/dist/native/channel/forumDefaultThreadSlowmode.js index f18a6025c6..4d5338091c 100644 --- a/dist/native/channel/forumDefaultThreadSlowmode.js +++ b/dist/native/channel/forumDefaultThreadSlowmode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/forumDefaultThreadSlowmode.js.map b/dist/native/channel/forumDefaultThreadSlowmode.js.map index 9f5c40a821..7d712b2bc9 100644 --- a/dist/native/channel/forumDefaultThreadSlowmode.js.map +++ b/dist/native/channel/forumDefaultThreadSlowmode.js.map @@ -1 +1 @@ -{"version":3,"file":"forumDefaultThreadSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadSlowmode.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAE,IAA0B,EAAE,6BAA6B,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumDefaultThreadSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/forumDefaultThreadSlowmode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAE,IAA0B,EAAE,6BAA6B,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/forumTags.d.ts.map b/dist/native/channel/forumTags.d.ts.map index d3a1377bf8..3e9b69c291 100644 --- a/dist/native/channel/forumTags.d.ts.map +++ b/dist/native/channel/forumTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,gBAAgB,EAAsB,MAAM,2BAA2B,CAAA;;;;;;eAkBzD,WAAW;;;;;;;;;;;;;;AAflC,wBAuCE"} \ No newline at end of file +{"version":3,"file":"forumTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/forumTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,gBAAgB,EAAsB,MAAM,2BAA2B,CAAA;;;;;;eAkBzD,WAAW;;;;;;;;;;;;;;AAflC,wBAuCE"} \ No newline at end of file diff --git a/dist/native/channel/forumTags.js b/dist/native/channel/forumTags.js index 723c7fb3c3..7e47cdc82b 100644 --- a/dist/native/channel/forumTags.js +++ b/dist/native/channel/forumTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/forumTags.js.map b/dist/native/channel/forumTags.js.map index 786e3637bf..793c4ccf19 100644 --- a/dist/native/channel/forumTags.js.map +++ b/dist/native/channel/forumTags.js.map @@ -1 +1 @@ -{"version":3,"file":"forumTags.js","sourceRoot":"","sources":["../../../src/native/channel/forumTags.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,wDAAgF;AAChF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC;QACxB,MAAM,OAAO,GAAG,EAAmC,CAAA;QACnD,MAAM,IAAI,GAAG,OAAO,EAAE,aAAa,CAAA;QAEnC,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumTags.js","sourceRoot":"","sources":["../../../src/native/channel/forumTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,wDAAgF;AAChF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC;QACxB,MAAM,OAAO,GAAG,EAAmC,CAAA;QACnD,MAAM,IAAI,GAAG,OAAO,EAAE,aAAa,CAAA;QAEnC,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/getStageInstance.d.ts.map b/dist/native/channel/getStageInstance.d.ts.map index d6c9fb915c..f5c47e38de 100644 --- a/dist/native/channel/getStageInstance.d.ts.map +++ b/dist/native/channel/getStageInstance.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/getStageInstance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"getStageInstance.d.ts","sourceRoot":"","sources":["../../../src/native/channel/getStageInstance.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/channel/getStageInstance.js b/dist/native/channel/getStageInstance.js index c370bdac42..6dd3a9ea6d 100644 --- a/dist/native/channel/getStageInstance.js +++ b/dist/native/channel/getStageInstance.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const stage_1 = require("../../properties/stage"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/getStageInstance.js.map b/dist/native/channel/getStageInstance.js.map index 7c0aded781..3a3ae3edf9 100644 --- a/dist/native/channel/getStageInstance.js.map +++ b/dist/native/channel/getStageInstance.js.map @@ -1 +1 @@ -{"version":3,"file":"getStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/getStageInstance.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,IAAI,CAAC;QAC/B,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getStageInstance.js","sourceRoot":"","sources":["../../../src/native/channel/getStageInstance.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,aAAa;SAC9B;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,IAAI,CAAC;QAC/B,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/getThreadMembers.d.ts.map b/dist/native/channel/getThreadMembers.d.ts.map index 08c2ac6d41..b748709a8a 100644 --- a/dist/native/channel/getThreadMembers.d.ts.map +++ b/dist/native/channel/getThreadMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getThreadMembers.d.ts","sourceRoot":"","sources":["../../../src/native/channel/getThreadMembers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAdlC,wBA8BE"} \ No newline at end of file +{"version":3,"file":"getThreadMembers.d.ts","sourceRoot":"","sources":["../../../src/native/channel/getThreadMembers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAdlC,wBA8BE"} \ No newline at end of file diff --git a/dist/native/channel/getThreadMembers.js b/dist/native/channel/getThreadMembers.js index 9a6b6f0fa7..deb490fac9 100644 --- a/dist/native/channel/getThreadMembers.js +++ b/dist/native/channel/getThreadMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/getThreadMembers.js.map b/dist/native/channel/getThreadMembers.js.map index b41d5c8b87..fa882245f3 100644 --- a/dist/native/channel/getThreadMembers.js.map +++ b/dist/native/channel/getThreadMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"getThreadMembers.js","sourceRoot":"","sources":["../../../src/native/channel/getThreadMembers.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QAC7B,MAAM,MAAM,GAAG,OAAwB,CAAA;QAEvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAE5D,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getThreadMembers.js","sourceRoot":"","sources":["../../../src/native/channel/getThreadMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC;QAC7B,MAAM,MAAM,GAAG,OAAwB,CAAA;QAEvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAE5D,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/guildChannelID.d.ts.map b/dist/native/channel/guildChannelID.d.ts.map index 821b5a96c9..cd7ebb463f 100644 --- a/dist/native/channel/guildChannelID.d.ts.map +++ b/dist/native/channel/guildChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/guildChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEvE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"guildChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/guildChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEvE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/guildChannelID.js b/dist/native/channel/guildChannelID.js index 1eed003c39..f433257f50 100644 --- a/dist/native/channel/guildChannelID.js +++ b/dist/native/channel/guildChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/guildChannelID.js.map b/dist/native/channel/guildChannelID.js.map index 376af4ba21..f5b51d7fb5 100644 --- a/dist/native/channel/guildChannelID.js.map +++ b/dist/native/channel/guildChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/guildChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF,gBAAG,CAAC,aAAa,EAAE;QACnB;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE,EAAE,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/guildChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF,gBAAG,CAAC,aAAa,EAAE;QACnB;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE,EAAE,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/lastMessageID.d.ts.map b/dist/native/channel/lastMessageID.d.ts.map index 952e285cbf..4b8d09adfa 100644 --- a/dist/native/channel/lastMessageID.d.ts.map +++ b/dist/native/channel/lastMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"lastMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lastMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiC,MAAM,YAAY,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;;;;;;;AAjBlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"lastMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lastMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiC,MAAM,YAAY,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;;;;;;;AAjBlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/channel/lastMessageID.js b/dist/native/channel/lastMessageID.js index 7f893670df..9248f429ed 100644 --- a/dist/native/channel/lastMessageID.js +++ b/dist/native/channel/lastMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/lastMessageID.js.map b/dist/native/channel/lastMessageID.js.map index bb0c27852e..e56f6de112 100644 --- a/dist/native/channel/lastMessageID.js.map +++ b/dist/native/channel/lastMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"lastMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/lastMessageID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,CAAE;QAC3B,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAA;QACnB,IAAI,IAAI,EAAE;YACN,MAAM,QAAQ,GAAG,MAAO,EAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9F,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SAC9F;QACD,OAAO,IAAI,CAAC,OAAO,CAAE,EAAkB,CAAC,aAAa,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"lastMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/lastMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,CAAE;QAC3B,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAA;QACnB,IAAI,IAAI,EAAE;YACN,MAAM,QAAQ,GAAG,MAAO,EAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9F,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SAC9F;QACD,OAAO,IAAI,CAAC,OAAO,CAAE,EAAkB,CAAC,aAAa,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/lastPinTimestamp.d.ts.map b/dist/native/channel/lastPinTimestamp.d.ts.map index 5634bba0e2..b0f2ce9446 100644 --- a/dist/native/channel/lastPinTimestamp.d.ts.map +++ b/dist/native/channel/lastPinTimestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"lastPinTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lastPinTimestamp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAjBlC,wBAwBE"} \ No newline at end of file +{"version":3,"file":"lastPinTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lastPinTimestamp.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAjBlC,wBAwBE"} \ No newline at end of file diff --git a/dist/native/channel/lastPinTimestamp.js b/dist/native/channel/lastPinTimestamp.js index 526ec26abf..841cc77c89 100644 --- a/dist/native/channel/lastPinTimestamp.js +++ b/dist/native/channel/lastPinTimestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/lastPinTimestamp.js.map b/dist/native/channel/lastPinTimestamp.js.map index 31768453a6..a9682a29ad 100644 --- a/dist/native/channel/lastPinTimestamp.js.map +++ b/dist/native/channel/lastPinTimestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"lastPinTimestamp.js","sourceRoot":"","sources":["../../../src/native/channel/lastPinTimestamp.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,+CAA+C;IAC5D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,kBAAkB,IAAI,CAAC;SACrD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,CAAE,EAAkB,CAAC,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"lastPinTimestamp.js","sourceRoot":"","sources":["../../../src/native/channel/lastPinTimestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,+CAA+C;IAC5D,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,kBAAkB,IAAI,CAAC;SACrD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,CAAE,EAAkB,CAAC,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/lockThread.d.ts.map b/dist/native/channel/lockThread.d.ts.map index 2d38704421..041d3b27ef 100644 --- a/dist/native/channel/lockThread.d.ts.map +++ b/dist/native/channel/lockThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"lockThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lockThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file +{"version":3,"file":"lockThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/lockThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file diff --git a/dist/native/channel/lockThread.js b/dist/native/channel/lockThread.js index 23c6e06c73..4a104cc8de 100644 --- a/dist/native/channel/lockThread.js +++ b/dist/native/channel/lockThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/lockThread.js.map b/dist/native/channel/lockThread.js.map index d2bcd97c5e..fb9dfda5df 100644 --- a/dist/native/channel/lockThread.js.map +++ b/dist/native/channel/lockThread.js.map @@ -1 +1 @@ -{"version":3,"file":"lockThread.js","sourceRoot":"","sources":["../../../src/native/channel/lockThread.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"lockThread.js","sourceRoot":"","sources":["../../../src/native/channel/lockThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/modifyChannelPerms.d.ts b/dist/native/channel/modifyChannelPerms.d.ts index 920e9af704..8ee93b1706 100644 --- a/dist/native/channel/modifyChannelPerms.d.ts +++ b/dist/native/channel/modifyChannelPerms.d.ts @@ -73,6 +73,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/modifyChannelPerms.d.ts.map b/dist/native/channel/modifyChannelPerms.d.ts.map index 692609ce59..9ca6a7545d 100644 --- a/dist/native/channel/modifyChannelPerms.d.ts.map +++ b/dist/native/channel/modifyChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"modifyChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/modifyChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqC,MAAM,YAAY,CAAA;AAC3E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA6CE"} \ No newline at end of file +{"version":3,"file":"modifyChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/modifyChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqC,MAAM,YAAY,CAAA;AAC3E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA6CE"} \ No newline at end of file diff --git a/dist/native/channel/modifyChannelPerms.js b/dist/native/channel/modifyChannelPerms.js index 45af79b119..2d06e5e296 100644 --- a/dist/native/channel/modifyChannelPerms.js +++ b/dist/native/channel/modifyChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/modifyChannelPerms.js.map b/dist/native/channel/modifyChannelPerms.js.map index bf7470fb8c..c2324e6ab1 100644 --- a/dist/native/channel/modifyChannelPerms.js.map +++ b/dist/native/channel/modifyChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"modifyChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/modifyChannelPerms.ts"],"names":[],"mappings":";;;;;AAAA,2CAA2E;AAC3E,iDAA0D;AAC1D,0HAAiG;AAEjG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;YACtD,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;YACxB,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,mBAAmB;YACjC,WAAW,EAAE,4DAA4D;YACzE,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,UAAU,EAAE,GAAG,CAAE;QAC3C,MAAM,EAAE,GAAG,OAAuB,CAAA;QAClC,MAAM,MAAM,GAAG,IAAA,2CAAiC,EAAC,GAAG,CAAC,CAAA;QAErD,IAAI,EAAE,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE;YAClD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,oBAAoB,CAAC,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC1H;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,oBAAoB,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC5H;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"modifyChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/modifyChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAA2E;AAC3E,iDAA0D;AAC1D,0HAAiG;AAEjG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;YACtD,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;YACxB,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,mBAAmB;YACjC,WAAW,EAAE,4DAA4D;YACzE,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,UAAU,EAAE,GAAG,CAAE;QAC3C,MAAM,EAAE,GAAG,OAAuB,CAAA;QAClC,MAAM,MAAM,GAAG,IAAA,2CAAiC,EAAC,GAAG,CAAC,CAAA;QAErD,IAAI,EAAE,CAAC,oBAAoB,CAAC,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE;YAClD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,oBAAoB,CAAC,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC1H;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,oBAAoB,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAC5H;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/modifyPostTags.d.ts.map b/dist/native/channel/modifyPostTags.d.ts.map index 90c7701de5..a6911217fd 100644 --- a/dist/native/channel/modifyPostTags.d.ts.map +++ b/dist/native/channel/modifyPostTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"modifyPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/modifyPostTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"modifyPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/modifyPostTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/channel/modifyPostTags.js b/dist/native/channel/modifyPostTags.js index eb5f6aa583..0d65c6978c 100644 --- a/dist/native/channel/modifyPostTags.js +++ b/dist/native/channel/modifyPostTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/modifyPostTags.js.map b/dist/native/channel/modifyPostTags.js.map index 58cb5aed5a..bb87f44408 100644 --- a/dist/native/channel/modifyPostTags.js.map +++ b/dist/native/channel/modifyPostTags.js.map @@ -1 +1 @@ -{"version":3,"file":"modifyPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/modifyPostTags.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3N,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"modifyPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/modifyPostTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3N,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/randomChannelID.d.ts.map b/dist/native/channel/randomChannelID.d.ts.map index ac7eddb17e..7bfa022356 100644 --- a/dist/native/channel/randomChannelID.d.ts.map +++ b/dist/native/channel/randomChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/randomChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"randomChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/randomChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/channel/randomChannelID.js b/dist/native/channel/randomChannelID.js index c583c7abcb..71560a14e1 100644 --- a/dist/native/channel/randomChannelID.js +++ b/dist/native/channel/randomChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/randomChannelID.js.map b/dist/native/channel/randomChannelID.js.map index a3a7b96c35..10288ab9ef 100644 --- a/dist/native/channel/randomChannelID.js.map +++ b/dist/native/channel/randomChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/randomChannelID.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAW;SACpB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,EAAE,CAAA;QAEZ,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;YACxD,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,CAChF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/randomChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAW;SACpB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,EAAE,CAAA;QAEZ,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;YACxD,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,CAChF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/randomGuildChannelID.d.ts.map b/dist/native/channel/randomGuildChannelID.d.ts.map index 6711236093..63c4aacb41 100644 --- a/dist/native/channel/randomGuildChannelID.d.ts.map +++ b/dist/native/channel/randomGuildChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/randomGuildChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"randomGuildChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/randomGuildChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/channel/randomGuildChannelID.js b/dist/native/channel/randomGuildChannelID.js index 5560a2481f..10a3e8d023 100644 --- a/dist/native/channel/randomGuildChannelID.js +++ b/dist/native/channel/randomGuildChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/randomGuildChannelID.js.map b/dist/native/channel/randomGuildChannelID.js.map index bfe81aee10..7488a84566 100644 --- a/dist/native/channel/randomGuildChannelID.js.map +++ b/dist/native/channel/randomGuildChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/randomGuildChannelID.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,wBAAW;SACpB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC;QACnB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,KAAK,KAAK,EAAE,CAAA;QAEZ,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;YAChD,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,CACxE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomGuildChannelID.js","sourceRoot":"","sources":["../../../src/native/channel/randomGuildChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,wBAAW;SACpB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC;QACnB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,KAAK,KAAK,EAAE,CAAA;QAEZ,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;YAChD,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,CACxE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/removeChannelPerms.d.ts b/dist/native/channel/removeChannelPerms.d.ts index 6937ebce83..e6ccceb5e6 100644 --- a/dist/native/channel/removeChannelPerms.d.ts +++ b/dist/native/channel/removeChannelPerms.d.ts @@ -71,6 +71,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; }], true>; export default _default; diff --git a/dist/native/channel/removeChannelPerms.d.ts.map b/dist/native/channel/removeChannelPerms.d.ts.map index d3d1f6ad41..7e98b08175 100644 --- a/dist/native/channel/removeChannelPerms.d.ts.map +++ b/dist/native/channel/removeChannelPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"removeChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/removeChannelPerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAyCE"} \ No newline at end of file +{"version":3,"file":"removeChannelPerms.d.ts","sourceRoot":"","sources":["../../../src/native/channel/removeChannelPerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAyCE"} \ No newline at end of file diff --git a/dist/native/channel/removeChannelPerms.js b/dist/native/channel/removeChannelPerms.js index 457f7604fa..64ee427d5c 100644 --- a/dist/native/channel/removeChannelPerms.js +++ b/dist/native/channel/removeChannelPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/removeChannelPerms.js.map b/dist/native/channel/removeChannelPerms.js.map index d971aba721..886d2c8f60 100644 --- a/dist/native/channel/removeChannelPerms.js.map +++ b/dist/native/channel/removeChannelPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"removeChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/removeChannelPerms.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAAgD,EAAE,CAAA;QAE3D,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;QAE3D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"removeChannelPerms.js","sourceRoot":"","sources":["../../../src/native/channel/removeChannelPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,sBAAsB,IAAI,CAAC;SACzD;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC;QAC9B,MAAM,OAAO,GAAG,EAAkB,CAAA;QAElC,MAAM,GAAG,GAAgD,EAAE,CAAA;QAE3D,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;QAE3D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/removeThreadMember.d.ts.map b/dist/native/channel/removeThreadMember.d.ts.map index 47f2f4ff77..946f06d21a 100644 --- a/dist/native/channel/removeThreadMember.d.ts.map +++ b/dist/native/channel/removeThreadMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"removeThreadMember.d.ts","sourceRoot":"","sources":["../../../src/native/channel/removeThreadMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAuB3C,WAAW;;;;;;;;;AArBlC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"removeThreadMember.d.ts","sourceRoot":"","sources":["../../../src/native/channel/removeThreadMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;eAuB3C,WAAW;;;;;;;;;AArBlC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/channel/removeThreadMember.js b/dist/native/channel/removeThreadMember.js index 7d1e56350f..7f9ed700bf 100644 --- a/dist/native/channel/removeThreadMember.js +++ b/dist/native/channel/removeThreadMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/removeThreadMember.js.map b/dist/native/channel/removeThreadMember.js.map index f5b544b9dd..d0784b04e3 100644 --- a/dist/native/channel/removeThreadMember.js.map +++ b/dist/native/channel/removeThreadMember.js.map @@ -1 +1 @@ -{"version":3,"file":"removeThreadMember.js","sourceRoot":"","sources":["../../../src/native/channel/removeThreadMember.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"removeThreadMember.js","sourceRoot":"","sources":["../../../src/native/channel/removeThreadMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,MAAM,MAAM,GAAG,OAAwB,CAAA;QACvC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/sendMessage.d.ts.map b/dist/native/channel/sendMessage.d.ts.map index 39bcb8341a..0bf97619f1 100644 --- a/dist/native/channel/sendMessage.d.ts.map +++ b/dist/native/channel/sendMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sendMessage.d.ts","sourceRoot":"","sources":["../../../src/native/channel/sendMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,YAAY,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;AAhBlC,wBAqCE"} \ No newline at end of file +{"version":3,"file":"sendMessage.d.ts","sourceRoot":"","sources":["../../../src/native/channel/sendMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAW,MAAM,YAAY,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;AAhBlC,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/sendMessage.js b/dist/native/channel/sendMessage.js index b8ef265024..d0f6ea8dc9 100644 --- a/dist/native/channel/sendMessage.js +++ b/dist/native/channel/sendMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/sendMessage.js.map b/dist/native/channel/sendMessage.js.map index 022ccd83d7..97f7070c2c 100644 --- a/dist/native/channel/sendMessage.js.map +++ b/dist/native/channel/sendMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"sendMessage.js","sourceRoot":"","sources":["../../../src/native/channel/sendMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,4DAA4D;YACzE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,eAAe,CAAC;QAClD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,OAAO,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sendMessage.js","sourceRoot":"","sources":["../../../src/native/channel/sendMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,4DAA4D;YACzE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,eAAe,CAAC;QAClD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,OAAO,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelArchiveDuration.d.ts.map b/dist/native/channel/setChannelArchiveDuration.d.ts.map index 5e0a4697a5..81afd04f8c 100644 --- a/dist/native/channel/setChannelArchiveDuration.d.ts.map +++ b/dist/native/channel/setChannelArchiveDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelArchiveDuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,yBAAyB,EAAE,MAAM,YAAY,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;eAanC,WAAW;;;;;;;;;;;;;;;;;AAXlC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setChannelArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelArchiveDuration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,yBAAyB,EAAE,MAAM,YAAY,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;eAanC,WAAW;;;;;;;;;;;;;;;;;AAXlC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelArchiveDuration.js b/dist/native/channel/setChannelArchiveDuration.js index 07eac61d89..bbe619a26c 100644 --- a/dist/native/channel/setChannelArchiveDuration.js +++ b/dist/native/channel/setChannelArchiveDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setChannelArchiveDuration.js.map b/dist/native/channel/setChannelArchiveDuration.js.map index 5514cd5957..c69c5bc938 100644 --- a/dist/native/channel/setChannelArchiveDuration.js.map +++ b/dist/native/channel/setChannelArchiveDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelArchiveDuration.ts"],"names":[],"mappings":";;AAAA,2CAAgF;AAChF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,+BAA+B,IAAI,CAAC;YAC/D,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE,EAAkB,CAAC,6BAA6B,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelArchiveDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgF;AAChF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,+BAA+B,IAAI,CAAC;YAC/D,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE,EAAkB,CAAC,6BAA6B,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;IACzG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelCategory.d.ts.map b/dist/native/channel/setChannelCategory.d.ts.map index 2d5027b971..1f34474ef7 100644 --- a/dist/native/channel/setChannelCategory.d.ts.map +++ b/dist/native/channel/setChannelCategory.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelCategory.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelCategory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA6C,MAAM,YAAY,CAAA;AACnF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAe3C,WAAW;;;;;;;;eASX,WAAW;;AAtBlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"setChannelCategory.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelCategory.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA6C,MAAM,YAAY,CAAA;AACnF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAe3C,WAAW;;;;;;;;eASX,WAAW;;AAtBlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelCategory.js b/dist/native/channel/setChannelCategory.js index 4a59e49db4..df2d1ac6da 100644 --- a/dist/native/channel/setChannelCategory.js +++ b/dist/native/channel/setChannelCategory.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setChannelCategory.js.map b/dist/native/channel/setChannelCategory.js.map index bc7ed67bbf..2cf20f4c07 100644 --- a/dist/native/channel/setChannelCategory.js.map +++ b/dist/native/channel/setChannelCategory.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelCategory.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelCategory.ts"],"names":[],"mappings":";;AAAA,2CAAmF;AACnF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC;YAC3C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,SAAS,CAAC,MAAyB,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelCategory.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelCategory.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmF;AACnF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC;YAC3C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,SAAS,CAAC,MAAyB,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelNSFW.d.ts.map b/dist/native/channel/setChannelNSFW.d.ts.map index 580a397e6f..bbef44c47f 100644 --- a/dist/native/channel/setChannelNSFW.d.ts.map +++ b/dist/native/channel/setChannelNSFW.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelNSFW.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelNSFW.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file +{"version":3,"file":"setChannelNSFW.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelNSFW.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelNSFW.js b/dist/native/channel/setChannelNSFW.js index 4f7edf3611..02ec792392 100644 --- a/dist/native/channel/setChannelNSFW.js +++ b/dist/native/channel/setChannelNSFW.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setChannelNSFW.js.map b/dist/native/channel/setChannelNSFW.js.map index a71bf40ead..76bbcbe98d 100644 --- a/dist/native/channel/setChannelNSFW.js.map +++ b/dist/native/channel/setChannelNSFW.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelNSFW.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelNSFW.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;YACzC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,OAAO,CAAC,KAAK,IAAI,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelNSFW.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelNSFW.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;YACzC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,OAAO,CAAC,KAAK,IAAI,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelName.d.ts.map b/dist/native/channel/setChannelName.d.ts.map index 94a34d4747..1f79b8b202 100644 --- a/dist/native/channel/setChannelName.d.ts.map +++ b/dist/native/channel/setChannelName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelName.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;;AAZlC,wBA2BE"} \ No newline at end of file +{"version":3,"file":"setChannelName.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;;AAZlC,wBA2BE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelName.js b/dist/native/channel/setChannelName.js index 07225971f5..1046d39b9d 100644 --- a/dist/native/channel/setChannelName.js +++ b/dist/native/channel/setChannelName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setChannelName.js.map b/dist/native/channel/setChannelName.js.map index 2ae0f0444f..722b6f8787 100644 --- a/dist/native/channel/setChannelName.js.map +++ b/dist/native/channel/setChannelName.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelName.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelName.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;YACzC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelName.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,SAAS,IAAI,CAAC;YACzC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelSlowmode.d.ts.map b/dist/native/channel/setChannelSlowmode.d.ts.map index 036b557fe2..bf83e6609b 100644 --- a/dist/native/channel/setChannelSlowmode.d.ts.map +++ b/dist/native/channel/setChannelSlowmode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelSlowmode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file +{"version":3,"file":"setChannelSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelSlowmode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelSlowmode.js b/dist/native/channel/setChannelSlowmode.js index 31975b2233..02e47fff04 100644 --- a/dist/native/channel/setChannelSlowmode.js +++ b/dist/native/channel/setChannelSlowmode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setChannelSlowmode.js.map b/dist/native/channel/setChannelSlowmode.js.map index cbf52b2356..e27f232244 100644 --- a/dist/native/channel/setChannelSlowmode.js.map +++ b/dist/native/channel/setChannelSlowmode.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelSlowmode.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,qBAAqB,IAAI,CAAC;YACrD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,mBAAmB,CAAC,OAAO,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelSlowmode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,qBAAqB,IAAI,CAAC;YACrD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,mBAAmB,CAAC,OAAO,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setChannelTopic.d.ts.map b/dist/native/channel/setChannelTopic.d.ts.map index 2e60593079..7f447e965d 100644 --- a/dist/native/channel/setChannelTopic.d.ts.map +++ b/dist/native/channel/setChannelTopic.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelTopic.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelTopic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file +{"version":3,"file":"setChannelTopic.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setChannelTopic.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;eAc3C,WAAW;;;;;;;;;AAZlC,wBA0BE"} \ No newline at end of file diff --git a/dist/native/channel/setChannelTopic.js b/dist/native/channel/setChannelTopic.js index f09e7c996d..75f340ebac 100644 --- a/dist/native/channel/setChannelTopic.js +++ b/dist/native/channel/setChannelTopic.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setChannelTopic.js.map b/dist/native/channel/setChannelTopic.js.map index 3df85ac2cf..e3b0f97543 100644 --- a/dist/native/channel/setChannelTopic.js.map +++ b/dist/native/channel/setChannelTopic.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelTopic.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelTopic.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelTopic.js","sourceRoot":"","sources":["../../../src/native/channel/setChannelTopic.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAuB,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultForumLayout.d.ts.map b/dist/native/channel/setDefaultForumLayout.d.ts.map index 8dda8e48b1..3ca22c391c 100644 --- a/dist/native/channel/setDefaultForumLayout.d.ts.map +++ b/dist/native/channel/setDefaultForumLayout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultForumLayout.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultForumLayout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA6B,eAAe,EAAE,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setDefaultForumLayout.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultForumLayout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA6B,eAAe,EAAE,MAAM,YAAY,CAAA;AACpF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultForumLayout.js b/dist/native/channel/setDefaultForumLayout.js index 72643e90a4..b5dd4f3ae4 100644 --- a/dist/native/channel/setDefaultForumLayout.js +++ b/dist/native/channel/setDefaultForumLayout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setDefaultForumLayout.js.map b/dist/native/channel/setDefaultForumLayout.js.map index 8d226cb8ca..c23782f74b 100644 --- a/dist/native/channel/setDefaultForumLayout.js.map +++ b/dist/native/channel/setDefaultForumLayout.js.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultForumLayout.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultForumLayout.ts"],"names":[],"mappings":";;AAAA,2CAAoF;AACpF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;SAC/D;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAe;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAE;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAAqB,CAAC,qBAAqB,CAAC,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setDefaultForumLayout.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultForumLayout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoF;AACpF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;SAC/D;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAe;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAE;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAAqB,CAAC,qBAAqB,CAAC,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultReactionEmoji.d.ts.map b/dist/native/channel/setDefaultReactionEmoji.d.ts.map index 3ec8d1652d..e434b8c890 100644 --- a/dist/native/channel/setDefaultReactionEmoji.d.ts.map +++ b/dist/native/channel/setDefaultReactionEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultReactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultReactionEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA2C,MAAM,YAAY,CAAA;AACjF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAgBnC,WAAW;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setDefaultReactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultReactionEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA2C,MAAM,YAAY,CAAA;AACjF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAgBnC,WAAW;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultReactionEmoji.js b/dist/native/channel/setDefaultReactionEmoji.js index 528c7110e0..66309094b5 100644 --- a/dist/native/channel/setDefaultReactionEmoji.js +++ b/dist/native/channel/setDefaultReactionEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const parseSingleEmoji_1 = require("../../functions/parseSingleEmoji"); diff --git a/dist/native/channel/setDefaultReactionEmoji.js.map b/dist/native/channel/setDefaultReactionEmoji.js.map index 227c0f6494..678f14e684 100644 --- a/dist/native/channel/setDefaultReactionEmoji.js.map +++ b/dist/native/channel/setDefaultReactionEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultReactionEmoji.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultReactionEmoji.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAC1D,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,MAAM,CAAE;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,uBAAuB,CAC5E,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAyB,EACpD,MAAM,IAAI,GAAG,CAAC,MAAM,CACvB,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACvB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setDefaultReactionEmoji.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultReactionEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAC1D,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,MAAM,CAAE;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,uBAAuB,CAC5E,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAyB,EACpD,MAAM,IAAI,GAAG,CAAC,MAAM,CACvB,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACvB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultSortOrder.d.ts.map b/dist/native/channel/setDefaultSortOrder.d.ts.map index dd9ac21cb8..8d4f782c2c 100644 --- a/dist/native/channel/setDefaultSortOrder.d.ts.map +++ b/dist/native/channel/setDefaultSortOrder.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultSortOrder.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultSortOrder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,aAAa,EAAqB,MAAM,YAAY,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;AAblC,wBAiCE"} \ No newline at end of file +{"version":3,"file":"setDefaultSortOrder.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultSortOrder.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,aAAa,EAAqB,MAAM,YAAY,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;AAblC,wBAiCE"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultSortOrder.js b/dist/native/channel/setDefaultSortOrder.js index 7b7b703f16..c5fba3f9f3 100644 --- a/dist/native/channel/setDefaultSortOrder.js +++ b/dist/native/channel/setDefaultSortOrder.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setDefaultSortOrder.js.map b/dist/native/channel/setDefaultSortOrder.js.map index 53e32653a5..be17de01e5 100644 --- a/dist/native/channel/setDefaultSortOrder.js.map +++ b/dist/native/channel/setDefaultSortOrder.js.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultSortOrder.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultSortOrder.ts"],"names":[],"mappings":";;AAAA,2CAA0E;AAC1E,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,SAAS,EAAE,MAAM,CAAE;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,mBAAmB,CAAC,SAAS,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setDefaultSortOrder.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultSortOrder.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0E;AAC1E,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,SAAS,EAAE,MAAM,CAAE;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,mBAAmB,CAAC,SAAS,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultThreadArchiveDuration.d.ts.map b/dist/native/channel/setDefaultThreadArchiveDuration.d.ts.map index ec5643fd91..516b8165b3 100644 --- a/dist/native/channel/setDefaultThreadArchiveDuration.d.ts.map +++ b/dist/native/channel/setDefaultThreadArchiveDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadArchiveDuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,yBAAyB,EAAqB,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;AAflC,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setDefaultThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadArchiveDuration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,yBAAyB,EAAqB,MAAM,YAAY,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;AAflC,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultThreadArchiveDuration.js b/dist/native/channel/setDefaultThreadArchiveDuration.js index 7b11f3507e..bef7128315 100644 --- a/dist/native/channel/setDefaultThreadArchiveDuration.js +++ b/dist/native/channel/setDefaultThreadArchiveDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setDefaultThreadArchiveDuration.js.map b/dist/native/channel/setDefaultThreadArchiveDuration.js.map index 46bfc4d3d3..a03e9db827 100644 --- a/dist/native/channel/setDefaultThreadArchiveDuration.js.map +++ b/dist/native/channel/setDefaultThreadArchiveDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadArchiveDuration.ts"],"names":[],"mappings":";;AAAA,2CAAsF;AACtF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,sCAAsC;KACzC;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,EAAwB,CAAC,6BAA6B,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setDefaultThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadArchiveDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsF;AACtF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kCAAkC;IACxC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,sCAAsC;KACzC;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,EAAwB,CAAC,6BAA6B,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultThreadSlowmode.d.ts.map b/dist/native/channel/setDefaultThreadSlowmode.d.ts.map index 17e15066aa..e8d0f23623 100644 --- a/dist/native/channel/setDefaultThreadSlowmode.d.ts.map +++ b/dist/native/channel/setDefaultThreadSlowmode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultThreadSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadSlowmode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;AAblC,wBAiCE"} \ No newline at end of file +{"version":3,"file":"setDefaultThreadSlowmode.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadSlowmode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;eAenC,WAAW;;;;;;;;;;;;;AAblC,wBAiCE"} \ No newline at end of file diff --git a/dist/native/channel/setDefaultThreadSlowmode.js b/dist/native/channel/setDefaultThreadSlowmode.js index 2fbd552273..4871e576f5 100644 --- a/dist/native/channel/setDefaultThreadSlowmode.js +++ b/dist/native/channel/setDefaultThreadSlowmode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setDefaultThreadSlowmode.js.map b/dist/native/channel/setDefaultThreadSlowmode.js.map index cb15369de9..0933d7d53c 100644 --- a/dist/native/channel/setDefaultThreadSlowmode.js.map +++ b/dist/native/channel/setDefaultThreadSlowmode.js.map @@ -1 +1 @@ -{"version":3,"file":"setDefaultThreadSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadSlowmode.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,OAAO,EAAE,MAAM,CAAE;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,gCAAgC,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC9I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setDefaultThreadSlowmode.js","sourceRoot":"","sources":["../../../src/native/channel/setDefaultThreadSlowmode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,OAAO,EAAE,MAAM,CAAE;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,IAA0B,CAAC,gCAAgC,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC9I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setPostTags.d.ts.map b/dist/native/channel/setPostTags.d.ts.map index 1ddf6d972c..3d5d0b2824 100644 --- a/dist/native/channel/setPostTags.d.ts.map +++ b/dist/native/channel/setPostTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setPostTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;AAZlC,wBAiCE"} \ No newline at end of file +{"version":3,"file":"setPostTags.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setPostTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAc3C,WAAW;;;;;;;;;;;;;AAZlC,wBAiCE"} \ No newline at end of file diff --git a/dist/native/channel/setPostTags.js b/dist/native/channel/setPostTags.js index 1d47a94223..e8b419d9a6 100644 --- a/dist/native/channel/setPostTags.js +++ b/dist/native/channel/setPostTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setPostTags.js.map b/dist/native/channel/setPostTags.js.map index f24cd81e5b..4d944cac8f 100644 --- a/dist/native/channel/setPostTags.js.map +++ b/dist/native/channel/setPostTags.js.map @@ -1 +1 @@ -{"version":3,"file":"setPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/setPostTags.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,yBAAyB;SACzC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setPostTags.js","sourceRoot":"","sources":["../../../src/native/channel/setPostTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,WAAW,EAAE,yBAAyB;SACzC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAE;QACxC,MAAM,IAAI,GAAG,OAAwB,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setThreadArchiveDuration.d.ts.map b/dist/native/channel/setThreadArchiveDuration.d.ts.map index 45003536e9..55ec5c5641 100644 --- a/dist/native/channel/setThreadArchiveDuration.d.ts.map +++ b/dist/native/channel/setThreadArchiveDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setThreadArchiveDuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,yBAAyB,EAAiB,MAAM,YAAY,CAAA;AAClF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;AAflC,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setThreadArchiveDuration.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setThreadArchiveDuration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,yBAAyB,EAAiB,MAAM,YAAY,CAAA;AAClF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAiBnC,WAAW;;;;;;;;;;;;;;;;AAflC,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setThreadArchiveDuration.js b/dist/native/channel/setThreadArchiveDuration.js index 9912c9d1a9..5aad0eb8f7 100644 --- a/dist/native/channel/setThreadArchiveDuration.js +++ b/dist/native/channel/setThreadArchiveDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setThreadArchiveDuration.js.map b/dist/native/channel/setThreadArchiveDuration.js.map index 25a527bea1..0b202168bb 100644 --- a/dist/native/channel/setThreadArchiveDuration.js.map +++ b/dist/native/channel/setThreadArchiveDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"setThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setThreadArchiveDuration.ts"],"names":[],"mappings":";;AAAA,2CAAkF;AAClF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,EAAoB,CAAC,sBAAsB,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setThreadArchiveDuration.js","sourceRoot":"","sources":["../../../src/native/channel/setThreadArchiveDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkF;AAClF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sCAAyB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,GAAG,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,EAAoB,CAAC,sBAAsB,CAAC,GAAG,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceBitrate.d.ts.map b/dist/native/channel/setVoiceBitrate.d.ts.map index 0a22af239b..c35bacea7f 100644 --- a/dist/native/channel/setVoiceBitrate.d.ts.map +++ b/dist/native/channel/setVoiceBitrate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceBitrate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAe/B,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setVoiceBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceBitrate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAe/B,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceBitrate.js b/dist/native/channel/setVoiceBitrate.js index 79b4ccee9f..f0dfe56dbc 100644 --- a/dist/native/channel/setVoiceBitrate.js +++ b/dist/native/channel/setVoiceBitrate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceBitrate.js.map b/dist/native/channel/setVoiceBitrate.js.map index 59fbac3044..7cce91430c 100644 --- a/dist/native/channel/setVoiceBitrate.js.map +++ b/dist/native/channel/setVoiceBitrate.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceBitrate.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceBitrate.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,iBAAiB;SACjC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,UAAU,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceBitrate.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceBitrate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,iBAAiB;SACjC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,UAAU,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceDeaf.d.ts.map b/dist/native/channel/setVoiceDeaf.d.ts.map index 60bfd35dd5..cbb8143462 100644 --- a/dist/native/channel/setVoiceDeaf.d.ts.map +++ b/dist/native/channel/setVoiceDeaf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceDeaf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setVoiceDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceDeaf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceDeaf.js b/dist/native/channel/setVoiceDeaf.js index 318ba6e7e0..2871ef90e4 100644 --- a/dist/native/channel/setVoiceDeaf.js +++ b/dist/native/channel/setVoiceDeaf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceDeaf.js.map b/dist/native/channel/setVoiceDeaf.js.map index a5831910cd..319d3c8e54 100644 --- a/dist/native/channel/setVoiceDeaf.js.map +++ b/dist/native/channel/setVoiceDeaf.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceDeaf.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceDeaf.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceDeaf.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceDeaf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceMute.d.ts.map b/dist/native/channel/setVoiceMute.d.ts.map index c50f5fd11c..1b6ec6d92e 100644 --- a/dist/native/channel/setVoiceMute.d.ts.map +++ b/dist/native/channel/setVoiceMute.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceMute.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceMute.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setVoiceMute.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceMute.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceMute.js b/dist/native/channel/setVoiceMute.js index 85bfada800..bf6301f612 100644 --- a/dist/native/channel/setVoiceMute.js +++ b/dist/native/channel/setVoiceMute.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceMute.js.map b/dist/native/channel/setVoiceMute.js.map index 3751d780ae..38f914b008 100644 --- a/dist/native/channel/setVoiceMute.js.map +++ b/dist/native/channel/setVoiceMute.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceMute.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceMute.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceMute.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceMute.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceRegion.d.ts.map b/dist/native/channel/setVoiceRegion.d.ts.map index 6cf2626a0c..1ee34f3108 100644 --- a/dist/native/channel/setVoiceRegion.d.ts.map +++ b/dist/native/channel/setVoiceRegion.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceRegion.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceRegion.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,oBAAY,eAAe;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,aAAa,gBAAgB;IAC7B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,YAAY,eAAe;IAC3B,SAAS,YAAY;IACrB,UAAU,aAAa;IACvB,SAAS,YAAY;CACxB;;;;;;;eAesB,WAAW;;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setVoiceRegion.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceRegion.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,oBAAY,eAAe;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,aAAa,gBAAgB;IAC7B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,YAAY,eAAe;IAC3B,SAAS,YAAY;IACrB,UAAU,aAAa;IACvB,SAAS,YAAY;CACxB;;;;;;;eAesB,WAAW;;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceRegion.js b/dist/native/channel/setVoiceRegion.js index d7b11c62c9..c78df010e4 100644 --- a/dist/native/channel/setVoiceRegion.js +++ b/dist/native/channel/setVoiceRegion.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.VoiceRegionType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/channel/setVoiceRegion.js.map b/dist/native/channel/setVoiceRegion.js.map index fd42fd45ed..0fdae5ea9c 100644 --- a/dist/native/channel/setVoiceRegion.js.map +++ b/dist/native/channel/setVoiceRegion.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceRegion.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceRegion.ts"],"names":[],"mappings":";;;AACA,iDAA0D;AAE1D,IAAY,eAeX;AAfD,WAAY,eAAe;IACvB,oCAAiB,CAAA;IACjB,wCAAqB,CAAA;IACrB,kCAAe,CAAA;IACf,kCAAe,CAAA;IACf,0CAAuB,CAAA;IACvB,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,8CAA6B,CAAA;IAC7B,8CAA2B,CAAA;IAC3B,oCAAiB,CAAA;IACjB,4CAA2B,CAAA;IAC3B,sCAAqB,CAAA;IACrB,wCAAuB,CAAA;IACvB,sCAAqB,CAAA;AACzB,CAAC,EAfW,eAAe,+BAAf,eAAe,QAe1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,KAAsB,CAAC,YAAY,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceRegion.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceRegion.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,iDAA0D;AAE1D,IAAY,eAeX;AAfD,WAAY,eAAe;IACvB,oCAAiB,CAAA;IACjB,wCAAqB,CAAA;IACrB,kCAAe,CAAA;IACf,kCAAe,CAAA;IACf,0CAAuB,CAAA;IACvB,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,8CAA6B,CAAA;IAC7B,8CAA2B,CAAA;IAC3B,oCAAiB,CAAA;IACjB,4CAA2B,CAAA;IAC3B,sCAAqB,CAAA;IACrB,wCAAuB,CAAA;IACvB,sCAAqB,CAAA;AACzB,CAAC,EAfW,eAAe,+BAAf,eAAe,QAe1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,KAAsB,CAAC,YAAY,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUndeaf.d.ts.map b/dist/native/channel/setVoiceUndeaf.d.ts.map index 41b6de1c7e..c44b37f7d5 100644 --- a/dist/native/channel/setVoiceUndeaf.d.ts.map +++ b/dist/native/channel/setVoiceUndeaf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUndeaf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUndeaf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setVoiceUndeaf.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUndeaf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUndeaf.js b/dist/native/channel/setVoiceUndeaf.js index 8751ab7168..4b3daf1a98 100644 --- a/dist/native/channel/setVoiceUndeaf.js +++ b/dist/native/channel/setVoiceUndeaf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceUndeaf.js.map b/dist/native/channel/setVoiceUndeaf.js.map index ea9c4e3092..cc04589302 100644 --- a/dist/native/channel/setVoiceUndeaf.js.map +++ b/dist/native/channel/setVoiceUndeaf.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUndeaf.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUndeaf.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sBAAsB;SACtC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceUndeaf.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUndeaf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sBAAsB;SACtC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUnmute.d.ts.map b/dist/native/channel/setVoiceUnmute.d.ts.map index 55c39a4933..5c0225f136 100644 --- a/dist/native/channel/setVoiceUnmute.d.ts.map +++ b/dist/native/channel/setVoiceUnmute.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUnmute.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUnmute.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setVoiceUnmute.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUnmute.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUnmute.js b/dist/native/channel/setVoiceUnmute.js index 08c98094e6..2b9dd74319 100644 --- a/dist/native/channel/setVoiceUnmute.js +++ b/dist/native/channel/setVoiceUnmute.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceUnmute.js.map b/dist/native/channel/setVoiceUnmute.js.map index 74da204e59..c713039f4f 100644 --- a/dist/native/channel/setVoiceUnmute.js.map +++ b/dist/native/channel/setVoiceUnmute.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUnmute.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUnmute.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceUnmute.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUnmute.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUserLimit.d.ts.map b/dist/native/channel/setVoiceUserLimit.d.ts.map index 71b06feee1..10b226ed4d 100644 --- a/dist/native/channel/setVoiceUserLimit.d.ts.map +++ b/dist/native/channel/setVoiceUserLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUserLimit.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUserLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAe/B,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setVoiceUserLimit.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUserLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAe/B,WAAW;;;;;;;;;;;;;;AAblC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceUserLimit.js b/dist/native/channel/setVoiceUserLimit.js index f47c1ff169..e893df8c95 100644 --- a/dist/native/channel/setVoiceUserLimit.js +++ b/dist/native/channel/setVoiceUserLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/setVoiceUserLimit.js.map b/dist/native/channel/setVoiceUserLimit.js.map index 39fdeecb71..b3fce950cd 100644 --- a/dist/native/channel/setVoiceUserLimit.js.map +++ b/dist/native/channel/setVoiceUserLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceUserLimit.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUserLimit.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,CAAE;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceUserLimit.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceUserLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,oBAAoB;SACpC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,CAAE;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceVideoQuality.d.ts.map b/dist/native/channel/setVoiceVideoQuality.d.ts.map index fdb08494ea..af6d4ab189 100644 --- a/dist/native/channel/setVoiceVideoQuality.d.ts.map +++ b/dist/native/channel/setVoiceVideoQuality.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceVideoQuality.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceVideoQuality.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAejD,WAAW;;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setVoiceVideoQuality.d.ts","sourceRoot":"","sources":["../../../src/native/channel/setVoiceVideoQuality.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAgB,MAAM,YAAY,CAAA;;;;;;;eAejD,WAAW;;;;;;;;;;;;;;;AAblC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/channel/setVoiceVideoQuality.js b/dist/native/channel/setVoiceVideoQuality.js index ae5dfb6585..5335b7f946 100644 --- a/dist/native/channel/setVoiceVideoQuality.js +++ b/dist/native/channel/setVoiceVideoQuality.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const discord_js_1 = require("discord.js"); diff --git a/dist/native/channel/setVoiceVideoQuality.js.map b/dist/native/channel/setVoiceVideoQuality.js.map index 803ba44041..1718a8fb4f 100644 --- a/dist/native/channel/setVoiceVideoQuality.js.map +++ b/dist/native/channel/setVoiceVideoQuality.js.map @@ -1 +1 @@ -{"version":3,"file":"setVoiceVideoQuality.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceVideoQuality.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,2CAAwE;AAExE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6BAAgB;YACtB,WAAW,EAAE,uBAAuB;SACvC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,mBAAmB,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setVoiceVideoQuality.js","sourceRoot":"","sources":["../../../src/native/channel/setVoiceVideoQuality.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,2CAAwE;AAExE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6BAAgB;YACtB,WAAW,EAAE,uBAAuB;SACvC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAO,OAAwB,CAAC,mBAAmB,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/startTyping.d.ts.map b/dist/native/channel/startTyping.d.ts.map index 8a9d267380..e29b09141c 100644 --- a/dist/native/channel/startTyping.d.ts.map +++ b/dist/native/channel/startTyping.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"startTyping.d.ts","sourceRoot":"","sources":["../../../src/native/channel/startTyping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;AAhBlC,wBAwBE"} \ No newline at end of file +{"version":3,"file":"startTyping.d.ts","sourceRoot":"","sources":["../../../src/native/channel/startTyping.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;AAhBlC,wBAwBE"} \ No newline at end of file diff --git a/dist/native/channel/startTyping.js b/dist/native/channel/startTyping.js index 2e495391c6..7a8fb1ba6b 100644 --- a/dist/native/channel/startTyping.js +++ b/dist/native/channel/startTyping.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/startTyping.js.map b/dist/native/channel/startTyping.js.map index 5d64c09ae0..3a18713133 100644 --- a/dist/native/channel/startTyping.js.map +++ b/dist/native/channel/startTyping.js.map @@ -1 +1 @@ -{"version":3,"file":"startTyping.js","sourceRoot":"","sources":["../../../src/native/channel/startTyping.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAgB,CAAA;QAClD,IAAI,OAAO,EAAE,WAAW,EAAE;YAAE,MAAM,OAAO,CAAC,UAAU,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;QACxE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"startTyping.js","sourceRoot":"","sources":["../../../src/native/channel/startTyping.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,OAAO,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,OAAO,CAAgB,CAAA;QAClD,IAAI,OAAO,EAAE,WAAW,EAAE;YAAE,MAAM,OAAO,CAAC,UAAU,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;QACxE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/threadIsArchived.d.ts.map b/dist/native/channel/threadIsArchived.d.ts.map index 04b311a7d2..6fae14c825 100644 --- a/dist/native/channel/threadIsArchived.d.ts.map +++ b/dist/native/channel/threadIsArchived.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadIsArchived.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadIsArchived.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAlBlC,wBAyBE"} \ No newline at end of file +{"version":3,"file":"threadIsArchived.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadIsArchived.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAlBlC,wBAyBE"} \ No newline at end of file diff --git a/dist/native/channel/threadIsArchived.js b/dist/native/channel/threadIsArchived.js index 1a5cb88017..620f6ec6f2 100644 --- a/dist/native/channel/threadIsArchived.js +++ b/dist/native/channel/threadIsArchived.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/threadIsArchived.js.map b/dist/native/channel/threadIsArchived.js.map index 1accf21be6..def539fd63 100644 --- a/dist/native/channel/threadIsArchived.js.map +++ b/dist/native/channel/threadIsArchived.js.map @@ -1 +1 @@ -{"version":3,"file":"threadIsArchived.js","sourceRoot":"","sources":["../../../src/native/channel/threadIsArchived.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,aAAa;QACb,iBAAiB;KACpB;IACD,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadIsArchived.js","sourceRoot":"","sources":["../../../src/native/channel/threadIsArchived.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,aAAa;QACb,iBAAiB;KACpB;IACD,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/threadOwnerID.d.ts.map b/dist/native/channel/threadOwnerID.d.ts.map index a5f558a99a..1b7f4a6742 100644 --- a/dist/native/channel/threadOwnerID.d.ts.map +++ b/dist/native/channel/threadOwnerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadOwnerID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"threadOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadOwnerID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;AAdlC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/channel/threadOwnerID.js b/dist/native/channel/threadOwnerID.js index f14379853b..4fbe3afd85 100644 --- a/dist/native/channel/threadOwnerID.js +++ b/dist/native/channel/threadOwnerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/threadOwnerID.js.map b/dist/native/channel/threadOwnerID.js.map index 5fc44b50df..abd29121a9 100644 --- a/dist/native/channel/threadOwnerID.js.map +++ b/dist/native/channel/threadOwnerID.js.map @@ -1 +1 @@ -{"version":3,"file":"threadOwnerID.js","sourceRoot":"","sources":["../../../src/native/channel/threadOwnerID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadOwnerID.js","sourceRoot":"","sources":["../../../src/native/channel/threadOwnerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/threadStarterMessageID.d.ts.map b/dist/native/channel/threadStarterMessageID.d.ts.map index 4d083e9d62..306dee2cd1 100644 --- a/dist/native/channel/threadStarterMessageID.d.ts.map +++ b/dist/native/channel/threadStarterMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadStarterMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadStarterMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA0B,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;AAblC,wBAwBE"} \ No newline at end of file +{"version":3,"file":"threadStarterMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadStarterMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA0B,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;AAblC,wBAwBE"} \ No newline at end of file diff --git a/dist/native/channel/threadStarterMessageID.js b/dist/native/channel/threadStarterMessageID.js index 47ee36e58f..5a1d911e8a 100644 --- a/dist/native/channel/threadStarterMessageID.js +++ b/dist/native/channel/threadStarterMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/channel/threadStarterMessageID.js.map b/dist/native/channel/threadStarterMessageID.js.map index be5bcaf2b4..26839982cf 100644 --- a/dist/native/channel/threadStarterMessageID.js.map +++ b/dist/native/channel/threadStarterMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"threadStarterMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/threadStarterMessageID.ts"],"names":[],"mappings":";;AAAA,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE9C,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,mBAAmB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,YAAY,oBAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadStarterMessageID.js","sourceRoot":"","sources":["../../../src/native/channel/threadStarterMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE9C,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,mBAAmB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,YAAY,oBAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/threadTotalMessagesSent.d.ts.map b/dist/native/channel/threadTotalMessagesSent.d.ts.map index eaede62773..097ac8e6d8 100644 --- a/dist/native/channel/threadTotalMessagesSent.d.ts.map +++ b/dist/native/channel/threadTotalMessagesSent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"threadTotalMessagesSent.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadTotalMessagesSent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAjBlC,wBAwBE"} \ No newline at end of file +{"version":3,"file":"threadTotalMessagesSent.d.ts","sourceRoot":"","sources":["../../../src/native/channel/threadTotalMessagesSent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAoB3C,WAAW;;AAjBlC,wBAwBE"} \ No newline at end of file diff --git a/dist/native/channel/threadTotalMessagesSent.js b/dist/native/channel/threadTotalMessagesSent.js index 40aac1162b..4b549296cf 100644 --- a/dist/native/channel/threadTotalMessagesSent.js +++ b/dist/native/channel/threadTotalMessagesSent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/threadTotalMessagesSent.js.map b/dist/native/channel/threadTotalMessagesSent.js.map index 6dfc28d045..f2fdf43a94 100644 --- a/dist/native/channel/threadTotalMessagesSent.js.map +++ b/dist/native/channel/threadTotalMessagesSent.js.map @@ -1 +1 @@ -{"version":3,"file":"threadTotalMessagesSent.js","sourceRoot":"","sources":["../../../src/native/channel/threadTotalMessagesSent.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB,IAAI,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"threadTotalMessagesSent.js","sourceRoot":"","sources":["../../../src/native/channel/threadTotalMessagesSent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB,IAAI,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/transcript.d.ts.map b/dist/native/channel/transcript.d.ts.map index 1e0484c022..0d3396fd71 100644 --- a/dist/native/channel/transcript.d.ts.map +++ b/dist/native/channel/transcript.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"transcript.d.ts","sourceRoot":"","sources":["../../../src/native/channel/transcript.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAgEE"} \ No newline at end of file +{"version":3,"file":"transcript.d.ts","sourceRoot":"","sources":["../../../src/native/channel/transcript.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAgEE"} \ No newline at end of file diff --git a/dist/native/channel/transcript.js b/dist/native/channel/transcript.js index 19658b4ae0..28f78cf69d 100644 --- a/dist/native/channel/transcript.js +++ b/dist/native/channel/transcript.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/channel/transcript.js.map b/dist/native/channel/transcript.js.map index 0f9568a56e..3bc1bc5959 100644 --- a/dist/native/channel/transcript.js.map +++ b/dist/native/channel/transcript.js.map @@ -1 +1 @@ -{"version":3,"file":"transcript.js","sourceRoot":"","sources":["../../../src/native/channel/transcript.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,wFAA+D;AAC/D,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,EAAE,mBAAmB,CAAC;IACpD,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC/E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,IAAI,CAAA;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAG,MAAM,IAAA,0BAAgB,EAAC,OAAO,CAAC,CAAA;QAC5C,MAAM,OAAO,GAAG,IAAI,KAAK,EAAU,CAAA;QAEnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC7C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACnD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACrD,IAAI,QAAQ,CAAC,MAAM;gBAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAe,CAAC,CAAA;iBACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"transcript.js","sourceRoot":"","sources":["../../../src/native/channel/transcript.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,wFAA+D;AAC/D,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,oBAAoB,EAAE,mBAAmB,CAAC;IACpD,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC/E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,IAAI,CAAA;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAG,MAAM,IAAA,0BAAgB,EAAC,OAAO,CAAC,CAAA;QAC5C,MAAM,OAAO,GAAG,IAAI,KAAK,EAAU,CAAA;QAEnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC7C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACnD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACrD,IAAI,QAAQ,CAAC,MAAM;gBAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAe,CAAC,CAAA;iBACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/unarchiveThread.d.ts.map b/dist/native/channel/unarchiveThread.d.ts.map index 26733d139a..3bc0009ef4 100644 --- a/dist/native/channel/unarchiveThread.d.ts.map +++ b/dist/native/channel/unarchiveThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unarchiveThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/unarchiveThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file +{"version":3,"file":"unarchiveThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/unarchiveThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file diff --git a/dist/native/channel/unarchiveThread.js b/dist/native/channel/unarchiveThread.js index 593a40c369..dddb60a3dc 100644 --- a/dist/native/channel/unarchiveThread.js +++ b/dist/native/channel/unarchiveThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/unarchiveThread.js.map b/dist/native/channel/unarchiveThread.js.map index b722281991..2b30b354e3 100644 --- a/dist/native/channel/unarchiveThread.js.map +++ b/dist/native/channel/unarchiveThread.js.map @@ -1 +1 @@ -{"version":3,"file":"unarchiveThread.js","sourceRoot":"","sources":["../../../src/native/channel/unarchiveThread.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAErF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unarchiveThread.js","sourceRoot":"","sources":["../../../src/native/channel/unarchiveThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAErF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/channel/unlockThread.d.ts.map b/dist/native/channel/unlockThread.d.ts.map index 3cc3788cf1..69911c9e70 100644 --- a/dist/native/channel/unlockThread.d.ts.map +++ b/dist/native/channel/unlockThread.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unlockThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/unlockThread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file +{"version":3,"file":"unlockThread.d.ts","sourceRoot":"","sources":["../../../src/native/channel/unlockThread.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiB,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;AAflC,wBAgCE"} \ No newline at end of file diff --git a/dist/native/channel/unlockThread.js b/dist/native/channel/unlockThread.js index 4294a5e143..1f0e71c345 100644 --- a/dist/native/channel/unlockThread.js +++ b/dist/native/channel/unlockThread.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/channel/unlockThread.js.map b/dist/native/channel/unlockThread.js.map index c5cb750b09..dc56ebac09 100644 --- a/dist/native/channel/unlockThread.js.map +++ b/dist/native/channel/unlockThread.js.map @@ -1 +1 @@ -{"version":3,"file":"unlockThread.js","sourceRoot":"","sources":["../../../src/native/channel/unlockThread.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unlockThread.js","sourceRoot":"","sources":["../../../src/native/channel/unlockThread.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QAChC,MAAM,MAAM,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAkB,CAAA;QACxD,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAEnD,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/command/commandCount.d.ts.map b/dist/native/command/commandCount.d.ts.map index 0f1e622d45..86ec413aa6 100644 --- a/dist/native/command/commandCount.d.ts.map +++ b/dist/native/command/commandCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"commandCount.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"commandCount.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/command/commandCount.js b/dist/native/command/commandCount.js index 883c912cb2..2b095545eb 100644 --- a/dist/native/command/commandCount.js +++ b/dist/native/command/commandCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/command/commandCount.js.map b/dist/native/command/commandCount.js.map index df32b0fba2..e69baee5a7 100644 --- a/dist/native/command/commandCount.js.map +++ b/dist/native/command/commandCount.js.map @@ -1 +1 @@ -{"version":3,"file":"commandCount.js","sourceRoot":"","sources":["../../../src/native/command/commandCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,SAAS;YACV,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC;iBAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBAC5C,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;YACtC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAC1E,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"commandCount.js","sourceRoot":"","sources":["../../../src/native/command/commandCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,SAAS;YACV,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC;iBAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBAC5C,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;YACtC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAC1E,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/command/commandInfo.d.ts.map b/dist/native/command/commandInfo.d.ts.map index 92e4b474ad..b934485fc6 100644 --- a/dist/native/command/commandInfo.d.ts.map +++ b/dist/native/command/commandInfo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"commandInfo.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandInfo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAE3E,wBAkCE"} \ No newline at end of file +{"version":3,"file":"commandInfo.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandInfo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAW,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAE3E,wBAkCE"} \ No newline at end of file diff --git a/dist/native/command/commandInfo.js b/dist/native/command/commandInfo.js index 275330e837..8c7f71dd01 100644 --- a/dist/native/command/commandInfo.js +++ b/dist/native/command/commandInfo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/command/commandInfo.js.map b/dist/native/command/commandInfo.js.map index 231f53e09a..936c194ad0 100644 --- a/dist/native/command/commandInfo.js.map +++ b/dist/native/command/commandInfo.js.map @@ -1 +1 @@ -{"version":3,"file":"commandInfo.js","sourceRoot":"","sources":["../../../src/native/command/commandInfo.ts"],"names":[],"mappings":";;AACA,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC;QAC5B,MAAM,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAA0B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAC9H,IAAI,CAAC,GAAG;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC/B,OAAO,IAAI,CAAC,WAAW,CAAC,oBAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,KAAK,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"commandInfo.js","sourceRoot":"","sources":["../../../src/native/command/commandInfo.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA2E;AAE3E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC;QAC5B,MAAM,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAA0B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAC9H,IAAI,CAAC,GAAG;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC/B,OAAO,IAAI,CAAC,WAAW,CAAC,oBAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,KAAK,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/command/commandName.d.ts.map b/dist/native/command/commandName.d.ts.map index ccdf390299..b7787c6657 100644 --- a/dist/native/command/commandName.d.ts.map +++ b/dist/native/command/commandName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"commandName.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file +{"version":3,"file":"commandName.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file diff --git a/dist/native/command/commandName.js b/dist/native/command/commandName.js index 158a965bdd..3229464c74 100644 --- a/dist/native/command/commandName.js +++ b/dist/native/command/commandName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/command/commandName.js.map b/dist/native/command/commandName.js.map index dc838b4f4d..79965d25b6 100644 --- a/dist/native/command/commandName.js.map +++ b/dist/native/command/commandName.js.map @@ -1 +1 @@ -{"version":3,"file":"commandName.js","sourceRoot":"","sources":["../../../src/native/command/commandName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,OAAO,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,aAAa,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CACvG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"commandName.js","sourceRoot":"","sources":["../../../src/native/command/commandName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,OAAO,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,aAAa,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CACvG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/command/commandNames.d.ts.map b/dist/native/command/commandNames.d.ts.map index 4b5fd82a25..b87812cfb9 100644 --- a/dist/native/command/commandNames.d.ts.map +++ b/dist/native/command/commandNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"commandNames.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"commandNames.d.ts","sourceRoot":"","sources":["../../../src/native/command/commandNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/command/commandNames.js b/dist/native/command/commandNames.js index 6fcc4fbcc2..50a075fe30 100644 --- a/dist/native/command/commandNames.js +++ b/dist/native/command/commandNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/command/commandNames.js.map b/dist/native/command/commandNames.js.map index 8ab68ccfae..fb577c2f23 100644 --- a/dist/native/command/commandNames.js.map +++ b/dist/native/command/commandNames.js.map @@ -1 +1 @@ -{"version":3,"file":"commandNames.js","sourceRoot":"","sources":["../../../src/native/command/commandNames.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,QAAQ;aACd,GAAG,CAAC,IAA0B,CAAC;aAC/B,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aAClB,MAAM,CAAC,OAAO,CAAC;aACf,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"commandNames.js","sourceRoot":"","sources":["../../../src/native/command/commandNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,QAAQ;aACd,GAAG,CAAC,IAA0B,CAAC;aAC/B,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aAClB,MAAM,CAAC,OAAO,CAAC;aACf,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/command/deleteCommand.d.ts.map b/dist/native/command/deleteCommand.d.ts.map index 66760345dd..23daae8145 100644 --- a/dist/native/command/deleteCommand.d.ts.map +++ b/dist/native/command/deleteCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteCommand.d.ts","sourceRoot":"","sources":["../../../src/native/command/deleteCommand.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file +{"version":3,"file":"deleteCommand.d.ts","sourceRoot":"","sources":["../../../src/native/command/deleteCommand.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/command/deleteCommand.js b/dist/native/command/deleteCommand.js index 2460d3489a..9df88a3597 100644 --- a/dist/native/command/deleteCommand.js +++ b/dist/native/command/deleteCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/command/deleteCommand.js.map b/dist/native/command/deleteCommand.js.map index 3d08fb7e83..9a610a758a 100644 --- a/dist/native/command/deleteCommand.js.map +++ b/dist/native/command/deleteCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteCommand.js","sourceRoot":"","sources":["../../../src/native/command/deleteCommand.ts"],"names":[],"mappings":";;AACA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteCommand.js","sourceRoot":"","sources":["../../../src/native/command/deleteCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC3C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addActionRow.d.ts.map b/dist/native/component/addActionRow.d.ts.map index fbe90d9313..ceb0383552 100644 --- a/dist/native/component/addActionRow.d.ts.map +++ b/dist/native/component/addActionRow.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addActionRow.d.ts","sourceRoot":"","sources":["../../../src/native/component/addActionRow.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAkBE"} \ No newline at end of file +{"version":3,"file":"addActionRow.d.ts","sourceRoot":"","sources":["../../../src/native/component/addActionRow.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGzD,wBAUE"} \ No newline at end of file diff --git a/dist/native/component/addActionRow.js b/dist/native/component/addActionRow.js index cf0f11bbb2..54e5ab6dfc 100644 --- a/dist/native/component/addActionRow.js +++ b/dist/native/component/addActionRow.js @@ -1,21 +1,19 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addActionRow", version: "1.0.0", description: "Adds an action row", unwrap: true, execute(ctx) { - const row = ctx.container.actionRow; - const comp = ctx.container.components.at(-1); - if (row) { - if (comp instanceof discord_js_1.ContainerBuilder && ctx.container.isInside(discord_js_1.ComponentType.Container)) - comp.addActionRowComponents(row); - else - ctx.container.components.push(row); - } + (0, components_1.addActionRow)(ctx, false); ctx.container.actionRow = new discord_js_1.ActionRowBuilder(); return this.success(); }, diff --git a/dist/native/component/addActionRow.js.map b/dist/native/component/addActionRow.js.map index e972436db1..1a07b41bb9 100644 --- a/dist/native/component/addActionRow.js.map +++ b/dist/native/component/addActionRow.js.map @@ -1 +1 @@ -{"version":3,"file":"addActionRow.js","sourceRoot":"","sources":["../../../src/native/component/addActionRow.ts"],"names":[],"mappings":";;AAAA,2CAA8E;AAC9E,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oBAAoB;IACjC,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,MAAM,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;QACnC,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAE5C,IAAI,GAAG,EAAE;YACL,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;gBACnF,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAA;;gBAC/B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SAC1C;QAED,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addActionRow.js","sourceRoot":"","sources":["../../../src/native/component/addActionRow.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6C;AAC7C,iDAAyD;AACzD,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oBAAoB;IACjC,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG;QACP,IAAA,yBAAY,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QACxB,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addActionRowTo.d.ts.map b/dist/native/component/addActionRowTo.d.ts.map index d3d570a47b..995415d859 100644 --- a/dist/native/component/addActionRowTo.d.ts.map +++ b/dist/native/component/addActionRowTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addActionRowTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addActionRowTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAA6C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE7G,wBAuEE"} \ No newline at end of file +{"version":3,"file":"addActionRowTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addActionRowTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAA6C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG7G,wBAwEE"} \ No newline at end of file diff --git a/dist/native/component/addActionRowTo.js b/dist/native/component/addActionRowTo.js index 11170c553f..796002e5ce 100644 --- a/dist/native/component/addActionRowTo.js +++ b/dist/native/component/addActionRowTo.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addActionRowTo", version: "1.5.0", @@ -49,20 +54,21 @@ exports.default = new structures_1.NativeFunction({ return rt; const [, m, keep] = args; const code = this.data.fields[2]; - const rows = keep ? m.components.map(x => discord_js_1.ActionRowBuilder.from(x)) : new Array(); + const comps = keep ? m.components.map((x) => (0, discord_js_1.createComponentBuilder)(x.toJSON())) : new Array(); const oldContainer = ctx.runtime.container; const newContainer = new structures_1.Container(); // Add our new rows - newContainer.components = rows; + newContainer.components = comps; // Use new container ctx.container = newContainer; const codeExec = await this["resolveCode"](ctx, code); + (0, components_1.addActionRow)(ctx, false); // Return the container ctx.container = oldContainer; if (!this["isValidReturnType"](codeExec)) return codeExec; // Since rows is a reference, we do not need to retrieve from container. - return this.success(!!(await m.edit({ components: rows }).catch(ctx.noop))); + return this.success(!!(await m.edit({ components: comps.map((x) => x.toJSON()) }).catch(ctx.noop))); }, }); //# sourceMappingURL=addActionRowTo.js.map \ No newline at end of file diff --git a/dist/native/component/addActionRowTo.js.map b/dist/native/component/addActionRowTo.js.map index 65589c3545..3688273dfd 100644 --- a/dist/native/component/addActionRowTo.js.map +++ b/dist/native/component/addActionRowTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addActionRowTo.js","sourceRoot":"","sources":["../../../src/native/component/addActionRowTo.ts"],"names":[],"mappings":";;AAAA,2CAAkG;AAClG,iDAA6G;AAE7G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,oBAAoB;YAC1B,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QACzB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,EAAoB,CAAA;QAE3I,MAAM,YAAY,GAAG,GAAG,CAAC,OAAO,CAAC,SAAS,CAAA;QAC1C,MAAM,YAAY,GAAG,IAAI,sBAAS,EAAE,CAAA;QAEpC,mBAAmB;QACnB,YAAY,CAAC,UAAU,GAAG,IAAI,CAAA;QAE9B,oBAAoB;QACpB,GAAG,CAAC,SAAS,GAAG,YAAY,CAAA;QAE5B,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAErD,uBAAuB;QACvB,GAAG,CAAC,SAAS,GAAG,YAAa,CAAA;QAE7B,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,wEAAwE;QACxE,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,IAAyC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAC9F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addActionRowTo.js","sourceRoot":"","sources":["../../../src/native/component/addActionRowTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/addButton.d.ts.map b/dist/native/component/addButton.d.ts.map index 3b92e66b67..f6b89c82c9 100644 --- a/dist/native/component/addButton.d.ts.map +++ b/dist/native/component/addButton.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addButton.d.ts","sourceRoot":"","sources":["../../../src/native/component/addButton.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,WAAW,EAAiB,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA+DE"} \ No newline at end of file +{"version":3,"file":"addButton.d.ts","sourceRoot":"","sources":["../../../src/native/component/addButton.ts"],"names":[],"mappings":"AAKA,OAAO,EAAiB,WAAW,EAAiB,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA+DE"} \ No newline at end of file diff --git a/dist/native/component/addButton.js b/dist/native/component/addButton.js index 54be866386..08f7b532f2 100644 --- a/dist/native/component/addButton.js +++ b/dist/native/component/addButton.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addButton.js.map b/dist/native/component/addButton.js.map index e01d96932d..f2d92d3221 100644 --- a/dist/native/component/addButton.js.map +++ b/dist/native/component/addButton.js.map @@ -1 +1 @@ -{"version":3,"file":"addButton.js","sourceRoot":"","sources":["../../../src/native/component/addButton.ts"],"names":[],"mappings":";;AAAA,2CAAsE;AACtE,iDAAkE;AAClE,+CAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,2BAA2B;SAC3C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,+BAA+B;SAC/C;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC;QAC5C,KAAK,GAAG,IAAA,yBAAkB,EAAC,wBAAW,EAAE,KAAK,CAAC,CAAA;QAE9C,MAAM,GAAG,GAAG,IAAI,0BAAa,EAAE;aAC1B,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,QAAQ,CAAC,KAAK,CAAC,CAAA;QAEpB,IAAI,KAAK,KAAK,wBAAW,CAAC,IAAI;YAAE,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;aACzC,IAAI,KAAK,KAAK,wBAAW,CAAC,OAAO;YAAE,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAA;;YACnD,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAExB,IAAI,KAAK,KAAK,wBAAW,CAAC,OAAO,EAAE;YAC/B,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;YACnB,IAAI,KAAK;gBAAE,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;SACjC;QAED,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,OAAO,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,kBAAkB,CAAC,GAAG,CAAC,CAAA;;YAC5F,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addButton.js","sourceRoot":"","sources":["../../../src/native/component/addButton.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsE;AACtE,iDAAkE;AAClE,+CAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,2BAA2B;SAC3C;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,+BAA+B;SAC/C;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC;QAC5C,KAAK,GAAG,IAAA,yBAAkB,EAAC,wBAAW,EAAE,KAAK,CAAC,CAAA;QAE9C,MAAM,GAAG,GAAG,IAAI,0BAAa,EAAE;aAC1B,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,QAAQ,CAAC,KAAK,CAAC,CAAA;QAEpB,IAAI,KAAK,KAAK,wBAAW,CAAC,IAAI;YAAE,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;aACzC,IAAI,KAAK,KAAK,wBAAW,CAAC,OAAO;YAAE,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAA;;YACnD,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAExB,IAAI,KAAK,KAAK,wBAAW,CAAC,OAAO,EAAE;YAC/B,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;YACnB,IAAI,KAAK;gBAAE,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;SACjC;QAED,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,OAAO,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,kBAAkB,CAAC,GAAG,CAAC,CAAA;;YAC5F,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addButtonTo.d.ts.map b/dist/native/component/addButtonTo.d.ts.map index 24ef043553..fd4ea7627c 100644 --- a/dist/native/component/addButtonTo.d.ts.map +++ b/dist/native/component/addButtonTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addButtonTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addButtonTo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,WAAW,EAA0B,MAAM,YAAY,CAAA;AACjG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file +{"version":3,"file":"addButtonTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addButtonTo.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmC,WAAW,EAA0B,MAAM,YAAY,CAAA;AACjG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file diff --git a/dist/native/component/addButtonTo.js b/dist/native/component/addButtonTo.js index 27f70bc7db..648993bcca 100644 --- a/dist/native/component/addButtonTo.js +++ b/dist/native/component/addButtonTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addButtonTo.js.map b/dist/native/component/addButtonTo.js.map index f1b37ab3fc..eeae392915 100644 --- a/dist/native/component/addButtonTo.js.map +++ b/dist/native/component/addButtonTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addButtonTo.js","sourceRoot":"","sources":["../../../src/native/component/addButtonTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"addButtonTo.js","sourceRoot":"","sources":["../../../src/native/component/addButtonTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/addChannelSelectMenu.d.ts.map b/dist/native/component/addChannelSelectMenu.d.ts.map index 7879489736..b072ac71ae 100644 --- a/dist/native/component/addChannelSelectMenu.d.ts.map +++ b/dist/native/component/addChannelSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA0DE"} \ No newline at end of file +{"version":3,"file":"addChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA6DE"} \ No newline at end of file diff --git a/dist/native/component/addChannelSelectMenu.js b/dist/native/component/addChannelSelectMenu.js index ca86952404..b3d1243f12 100644 --- a/dist/native/component/addChannelSelectMenu.js +++ b/dist/native/component/addChannelSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -51,6 +55,7 @@ exports.default = new structures_1.NativeFunction({ const menu = new discord_js_1.ChannelSelectMenuBuilder() .setDefaultChannels(channels) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id); if (placeholder) menu.setPlaceholder(placeholder); @@ -58,7 +63,10 @@ exports.default = new structures_1.NativeFunction({ menu.setMinValues(min); if (max) menu.setMaxValues(max); - ctx.container.actionRow?.addComponents(menu); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setChannelSelectMenuComponent(menu); + else + ctx.container.actionRow?.addComponents(menu); return this.success(); } }); diff --git a/dist/native/component/addChannelSelectMenu.js.map b/dist/native/component/addChannelSelectMenu.js.map index ff4a98e918..70abc31a68 100644 --- a/dist/native/component/addChannelSelectMenu.js.map +++ b/dist/native/component/addChannelSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"addChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAAqD;AACrD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,sCAAsC;SACtD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,CAAE;QAC1D,MAAM,IAAI,GAAG,IAAI,qCAAwB,EAAE;aACtC,kBAAkB,CAAC,QAAQ,CAAC;aAC5B,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoE;AACpE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,sCAAsC;SACtD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,CAAE;QAC1D,MAAM,IAAI,GAAG,IAAI,qCAAwB,EAAE;aACtC,kBAAkB,CAAC,QAAQ,CAAC;aAC5B,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC;aACnC,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,6BAA6B,CAAC,IAAI,CAAC,CAAA;;YACpG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addChannelSelectMenuTo.d.ts.map b/dist/native/component/addChannelSelectMenuTo.d.ts.map index cdd5eca25c..7a71bd7ef7 100644 --- a/dist/native/component/addChannelSelectMenuTo.d.ts.map +++ b/dist/native/component/addChannelSelectMenuTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addChannelSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenuTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file +{"version":3,"file":"addChannelSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenuTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file diff --git a/dist/native/component/addChannelSelectMenuTo.js b/dist/native/component/addChannelSelectMenuTo.js index 0efce38807..9fa5bfe53b 100644 --- a/dist/native/component/addChannelSelectMenuTo.js +++ b/dist/native/component/addChannelSelectMenuTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addChannelSelectMenuTo.js.map b/dist/native/component/addChannelSelectMenuTo.js.map index 363f0b4b47..4cf752abd8 100644 --- a/dist/native/component/addChannelSelectMenuTo.js.map +++ b/dist/native/component/addChannelSelectMenuTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addChannelSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"addChannelSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addChannelSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/addChannelType.d.ts.map b/dist/native/component/addChannelType.d.ts.map index 2638711e0f..9fa5c4357f 100644 --- a/dist/native/component/addChannelType.d.ts.map +++ b/dist/native/component/addChannelType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addChannelType.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelType.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,WAAW,EAAE,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;AAE1D,wBAwBE"} \ No newline at end of file +{"version":3,"file":"addChannelType.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChannelType.ts"],"names":[],"mappings":"AAKA,OAAO,EAA4B,WAAW,EAAE,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;AAG1D,wBAwBE"} \ No newline at end of file diff --git a/dist/native/component/addChannelType.js b/dist/native/component/addChannelType.js index 4d6319ebb7..e8005e387d 100644 --- a/dist/native/component/addChannelType.js +++ b/dist/native/component/addChannelType.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addChannelType", version: "1.4.0", @@ -20,7 +25,7 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [types]) { - const menu = ctx.container.actionRow?.components[0]; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.ChannelSelectMenuBuilder) { menu.addChannelTypes(types); } diff --git a/dist/native/component/addChannelType.js.map b/dist/native/component/addChannelType.js.map index 0cb9c057cc..c90502cdb1 100644 --- a/dist/native/component/addChannelType.js.map +++ b/dist/native/component/addChannelType.js.map @@ -1 +1 @@ -{"version":3,"file":"addChannelType.js","sourceRoot":"","sources":["../../../src/native/component/addChannelType.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAA;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addChannelType.js","sourceRoot":"","sources":["../../../src/native/component/addChannelType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAA0D;AAC1D,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAClC,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAA;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addChoice.d.ts.map b/dist/native/component/addChoice.d.ts.map index 40c0cbf7e2..90b7c9be28 100644 --- a/dist/native/component/addChoice.d.ts.map +++ b/dist/native/component/addChoice.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addChoice.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChoice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"addChoice.d.ts","sourceRoot":"","sources":["../../../src/native/component/addChoice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/component/addChoice.js b/dist/native/component/addChoice.js index bff9cbe255..863b94faed 100644 --- a/dist/native/component/addChoice.js +++ b/dist/native/component/addChoice.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/component/addChoice.js.map b/dist/native/component/addChoice.js.map index 444c27b825..19e81c869e 100644 --- a/dist/native/component/addChoice.js.map +++ b/dist/native/component/addChoice.js.map @@ -1 +1 @@ -{"version":3,"file":"addChoice.js","sourceRoot":"","sources":["../../../src/native/component/addChoice.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC;YACvB,IAAI;YACJ,KAAK;SACR,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addChoice.js","sourceRoot":"","sources":["../../../src/native/component/addChoice.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;QACtB,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC;YACvB,IAAI;YACJ,KAAK;SACR,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addContainer.d.ts.map b/dist/native/component/addContainer.d.ts.map index bfce27fb29..9ea110e3a2 100644 --- a/dist/native/component/addContainer.d.ts.map +++ b/dist/native/component/addContainer.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addContainer.d.ts","sourceRoot":"","sources":["../../../src/native/component/addContainer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAGlG,wBAqDE"} \ No newline at end of file +{"version":3,"file":"addContainer.d.ts","sourceRoot":"","sources":["../../../src/native/component/addContainer.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAGlG,wBAgDE"} \ No newline at end of file diff --git a/dist/native/component/addContainer.js b/dist/native/component/addContainer.js index 95e98644e4..a3c498c8d9 100644 --- a/dist/native/component/addContainer.js +++ b/dist/native/component/addContainer.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -39,18 +43,12 @@ exports.default = new structures_1.NativeFunction({ const resolved = await this["resolveCode"](ctx, code); if (!this["isValidReturnType"](resolved)) return resolved; - if (this.displayField(1)) { - const color = await this["resolveUnhandledArg"](ctx, 1); - if (!this["isValidReturnType"](color)) - return color; - comp.setAccentColor(color.value); - } - if (this.displayField(2)) { - const spoiler = await this["resolveUnhandledArg"](ctx, 2); - if (!this["isValidReturnType"](spoiler)) - return spoiler; - comp.setSpoiler(spoiler.value); - } + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 1, 2); + if (!this["isValidReturnType"](rt)) + return rt; + const [color, spoiler] = args; + comp.setAccentColor(color || undefined); + comp.setSpoiler(spoiler || false); (0, components_1.addActionRow)(ctx); ctx.container.inside.pop(); return this.success(); diff --git a/dist/native/component/addContainer.js.map b/dist/native/component/addContainer.js.map index b0c63380d7..65167743e5 100644 --- a/dist/native/component/addContainer.js.map +++ b/dist/native/component/addContainer.js.map @@ -1 +1 @@ -{"version":3,"file":"addContainer.js","sourceRoot":"","sources":["../../../src/native/component/addContainer.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAAkG;AAClG,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,6BAAgB,EAAE,CAAC,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,0BAAa,CAAC,SAAS,CAAC,CAAA;QAClD,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAqB,CAAA;QAEhE,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,IAAI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE;YACtB,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACvD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC;gBAAE,OAAO,KAAK,CAAA;YACnD,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAe,CAAC,CAAA;SAC7C;QAED,IAAI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE;YACtB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,KAAgB,CAAC,CAAA;SAC5C;QAED,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addContainer.js","sourceRoot":"","sources":["../../../src/native/component/addContainer.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAAkG;AAClG,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,6BAAgB,EAAE,CAAC,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,0BAAa,CAAC,SAAS,CAAC,CAAA;QAClD,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAqB,CAAA;QAEhE,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACzE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,KAAK,EAAE,OAAO,CAAE,GAAG,IAAI,CAAA;QAE/B,IAAI,CAAC,cAAc,CAAC,KAAK,IAAI,SAAS,CAAC,CAAA;QACvC,IAAI,CAAC,UAAU,CAAC,OAAO,IAAI,KAAK,CAAC,CAAA;QAEjC,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addDefaultChannelOption.d.ts.map b/dist/native/component/addDefaultChannelOption.d.ts.map index bedf1413e9..5e722dc4c2 100644 --- a/dist/native/component/addDefaultChannelOption.d.ts.map +++ b/dist/native/component/addDefaultChannelOption.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultChannelOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultChannelOption.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"addDefaultChannelOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultChannelOption.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/component/addDefaultChannelOption.js b/dist/native/component/addDefaultChannelOption.js index 62cdc71e66..2a889bd522 100644 --- a/dist/native/component/addDefaultChannelOption.js +++ b/dist/native/component/addDefaultChannelOption.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addDefaultChannelOption", version: "1.4.0", @@ -22,7 +27,7 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [ids]) { - const menu = ctx.container.actionRow?.components[0]; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.ChannelSelectMenuBuilder) { menu.addDefaultChannels(ids); } diff --git a/dist/native/component/addDefaultChannelOption.js.map b/dist/native/component/addDefaultChannelOption.js.map index ae232181c2..efc8e10c80 100644 --- a/dist/native/component/addDefaultChannelOption.js.map +++ b/dist/native/component/addDefaultChannelOption.js.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultChannelOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultChannelOption.ts"],"names":[],"mappings":";;AAAA,2CAAqD;AACrD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,qBAAqB;QACrB,2BAA2B;KAC9B;IACD,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAA;SAC/B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addDefaultChannelOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultChannelOption.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqD;AACrD,iDAA0D;AAC1D,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,qBAAqB;QACrB,2BAA2B;KAC9B;IACD,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAClC,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAA;SAC/B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addDefaultRoleOption.d.ts.map b/dist/native/component/addDefaultRoleOption.d.ts.map index 95f49da5b8..451d9f070f 100644 --- a/dist/native/component/addDefaultRoleOption.d.ts.map +++ b/dist/native/component/addDefaultRoleOption.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultRoleOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultRoleOption.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"addDefaultRoleOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultRoleOption.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/component/addDefaultRoleOption.js b/dist/native/component/addDefaultRoleOption.js index 557836f2a8..4cc841302b 100644 --- a/dist/native/component/addDefaultRoleOption.js +++ b/dist/native/component/addDefaultRoleOption.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addDefaultRoleOption", version: "1.4.0", @@ -22,7 +27,7 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [ids]) { - const menu = ctx.container.actionRow?.components[0]; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.RoleSelectMenuBuilder || menu instanceof discord_js_1.MentionableSelectMenuBuilder) { menu.addDefaultRoles(ids); } diff --git a/dist/native/component/addDefaultRoleOption.js.map b/dist/native/component/addDefaultRoleOption.js.map index 22a972a19b..88fdd37f91 100644 --- a/dist/native/component/addDefaultRoleOption.js.map +++ b/dist/native/component/addDefaultRoleOption.js.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultRoleOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultRoleOption.ts"],"names":[],"mappings":";;AAAA,2CAAgF;AAChF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,wBAAwB;KAC3B;IACD,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,IAAI,YAAY,kCAAqB,IAAI,IAAI,YAAY,yCAA4B,EAAE;YACvF,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addDefaultRoleOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultRoleOption.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgF;AAChF,iDAA0D;AAC1D,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,wBAAwB;KAC3B;IACD,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAClC,IAAI,IAAI,YAAY,kCAAqB,IAAI,IAAI,YAAY,yCAA4B,EAAE;YACvF,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addDefaultUserOption.d.ts.map b/dist/native/component/addDefaultUserOption.d.ts.map index 8934906c31..f545f49ef1 100644 --- a/dist/native/component/addDefaultUserOption.d.ts.map +++ b/dist/native/component/addDefaultUserOption.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultUserOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultUserOption.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"addDefaultUserOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addDefaultUserOption.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAG1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/component/addDefaultUserOption.js b/dist/native/component/addDefaultUserOption.js index b1e908fd08..8b2e47ed8d 100644 --- a/dist/native/component/addDefaultUserOption.js +++ b/dist/native/component/addDefaultUserOption.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addDefaultUserOption", version: "1.4.0", @@ -22,7 +27,7 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [ids]) { - const menu = ctx.container.actionRow?.components[0]; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.UserSelectMenuBuilder || menu instanceof discord_js_1.MentionableSelectMenuBuilder) { menu.addDefaultUsers(ids); } diff --git a/dist/native/component/addDefaultUserOption.js.map b/dist/native/component/addDefaultUserOption.js.map index 5c88266e0f..0ceca5ae60 100644 --- a/dist/native/component/addDefaultUserOption.js.map +++ b/dist/native/component/addDefaultUserOption.js.map @@ -1 +1 @@ -{"version":3,"file":"addDefaultUserOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultUserOption.ts"],"names":[],"mappings":";;AAAA,2CAAgF;AAChF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,wBAAwB;KAC3B;IACD,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,IAAI,YAAY,kCAAqB,IAAI,IAAI,YAAY,yCAA4B,EAAE;YACvF,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addDefaultUserOption.js","sourceRoot":"","sources":["../../../src/native/component/addDefaultUserOption.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgF;AAChF,iDAA0D;AAC1D,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,wBAAwB;KAC3B;IACD,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAClC,IAAI,IAAI,YAAY,kCAAqB,IAAI,IAAI,YAAY,yCAA4B,EAAE;YACvF,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,CAAA;SAC5B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addFile.d.ts.map b/dist/native/component/addFile.d.ts.map index d4855a3b90..a4be1dbd60 100644 --- a/dist/native/component/addFile.d.ts.map +++ b/dist/native/component/addFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addFile.d.ts","sourceRoot":"","sources":["../../../src/native/component/addFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"addFile.d.ts","sourceRoot":"","sources":["../../../src/native/component/addFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/component/addFile.js b/dist/native/component/addFile.js index 44b0e11841..9dcf261335 100644 --- a/dist/native/component/addFile.js +++ b/dist/native/component/addFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addFile.js.map b/dist/native/component/addFile.js.map index f349fd8888..2298448dfd 100644 --- a/dist/native/component/addFile.js.map +++ b/dist/native/component/addFile.js.map @@ -1 +1 @@ -{"version":3,"file":"addFile.js","sourceRoot":"","sources":["../../../src/native/component/addFile.ts"],"names":[],"mappings":";;AAAA,2CAAyE;AACzE,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,OAAO,CAAC;QACvB,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,IAAI,GAAG,IAAI,wBAAW,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAEhE,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;;YAC3B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAExC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addFile.js","sourceRoot":"","sources":["../../../src/native/component/addFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyE;AACzE,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,OAAO,CAAC;QACvB,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,IAAI,GAAG,IAAI,wBAAW,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAEhE,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;;YAC3B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAExC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addFileUpload.d.ts b/dist/native/component/addFileUpload.d.ts new file mode 100644 index 0000000000..373b0e02e0 --- /dev/null +++ b/dist/native/component/addFileUpload.d.ts @@ -0,0 +1,20 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Number; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Number; +}], true>; +export default _default; +//# sourceMappingURL=addFileUpload.d.ts.map \ No newline at end of file diff --git a/dist/native/component/addFileUpload.d.ts.map b/dist/native/component/addFileUpload.d.ts.map new file mode 100644 index 0000000000..20809507c6 --- /dev/null +++ b/dist/native/component/addFileUpload.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"addFileUpload.d.ts","sourceRoot":"","sources":["../../../src/native/component/addFileUpload.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/component/addFileUpload.js b/dist/native/component/addFileUpload.js new file mode 100644 index 0000000000..c9e3a2c480 --- /dev/null +++ b/dist/native/component/addFileUpload.js @@ -0,0 +1,48 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$addFileUpload", + version: "2.6.0", + description: "Adds a new file upload component to the modal label", + unwrap: true, + brackets: true, + args: [ + { + name: "custom ID", + description: "The custom id for this field", + rest: false, + required: true, + type: structures_1.ArgType.String, + }, + { + name: "min values", + description: "The min values of file uploads", + rest: false, + type: structures_1.ArgType.Number, + }, + { + name: "max values", + description: "The max values of file uploads", + rest: false, + type: structures_1.ArgType.Number, + }, + ], + execute(ctx, [id, min, max]) { + const field = new discord_js_1.FileUploadBuilder() + .setCustomId(id) + .setRequired(ctx.component.required); + if (min) + field.setMinValues(min); + if (max) + field.setMaxValues(max); + ctx.component.label?.setFileUploadComponent(field); + return this.success(); + }, +}); +//# sourceMappingURL=addFileUpload.js.map \ No newline at end of file diff --git a/dist/native/component/addFileUpload.js.map b/dist/native/component/addFileUpload.js.map new file mode 100644 index 0000000000..4489f94794 --- /dev/null +++ b/dist/native/component/addFileUpload.js.map @@ -0,0 +1 @@ +{"version":3,"file":"addFileUpload.js","sourceRoot":"","sources":["../../../src/native/component/addFileUpload.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8C;AAC9C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC;QACvB,MAAM,KAAK,GAAG,IAAI,8BAAiB,EAAE;aAChC,WAAW,CAAC,EAAE,CAAC;aACf,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAA;QAExC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAChC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAEhC,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,sBAAsB,CAAC,KAAK,CAAC,CAAA;QAElD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addLabel.d.ts b/dist/native/component/addLabel.d.ts new file mode 100644 index 0000000000..b246d1f35b --- /dev/null +++ b/dist/native/component/addLabel.d.ts @@ -0,0 +1,26 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Boolean; +}], false>; +export default _default; +//# sourceMappingURL=addLabel.d.ts.map \ No newline at end of file diff --git a/dist/native/component/addLabel.d.ts.map b/dist/native/component/addLabel.d.ts.map new file mode 100644 index 0000000000..61d73515a5 --- /dev/null +++ b/dist/native/component/addLabel.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"addLabel.d.ts","sourceRoot":"","sources":["../../../src/native/component/addLabel.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBA0DE"} \ No newline at end of file diff --git a/dist/native/component/addLabel.js b/dist/native/component/addLabel.js new file mode 100644 index 0000000000..5dfae2c49e --- /dev/null +++ b/dist/native/component/addLabel.js @@ -0,0 +1,66 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$addLabel", + version: "2.6.0", + description: "Adds a new label component to the modal", + unwrap: false, + brackets: true, + args: [ + { + name: "name", + description: "The name for the label", + rest: false, + required: true, + type: structures_1.ArgType.String, + }, + { + name: "component", + description: "The component to attach to the label", + rest: false, + required: true, + type: structures_1.ArgType.String, + }, + { + name: "description", + description: "The description for the label", + rest: false, + type: structures_1.ArgType.String, + }, + { + name: "required", + description: "Whether this field is required", + rest: false, + type: structures_1.ArgType.Boolean, + }, + ], + async execute(ctx) { + if (!ctx.interaction) + return this.success(); + ctx.container.inside.push(discord_js_1.ComponentType.Label); + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 2, 3); + if (!this["isValidReturnType"](rt)) + return rt; + const [name, desc, required] = args; + const label = new discord_js_1.LabelBuilder().setLabel(name); + if (desc) + label.setDescription(desc); + ctx.component.label = label; + ctx.component.required = required || false; + const code = this.data.fields[1]; + const resolved = await this["resolveCode"](ctx, code); + if (!this["isValidReturnType"](resolved)) + return resolved; + ctx.container.modal?.addLabelComponents(ctx.component.label); + ctx.component = {}; + ctx.container.inside.pop(); + return this.success(); + }, +}); +//# sourceMappingURL=addLabel.js.map \ No newline at end of file diff --git a/dist/native/component/addLabel.js.map b/dist/native/component/addLabel.js.map new file mode 100644 index 0000000000..ae89247208 --- /dev/null +++ b/dist/native/component/addLabel.js.map @@ -0,0 +1 @@ +{"version":3,"file":"addLabel.js","sourceRoot":"","sources":["../../../src/native/component/addLabel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwD;AACxD,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,WAAW;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC3C,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,0BAAa,CAAC,KAAK,CAAC,CAAA;QAE9C,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAE,GAAG,IAAI,CAAA;QAErC,MAAM,KAAK,GAAG,IAAI,yBAAY,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;QAC/C,IAAI,IAAI;YAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;QAEpC,GAAG,CAAC,SAAS,CAAC,KAAK,GAAG,KAAK,CAAA;QAC3B,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,QAAQ,IAAI,KAAK,CAAA;QAE1C,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,kBAAkB,CAAC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;QAE5D,GAAG,CAAC,SAAS,GAAG,EAAE,CAAA;QAClB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addMediaGallery.d.ts.map b/dist/native/component/addMediaGallery.d.ts.map index 92c2f10780..6b9bbf7996 100644 --- a/dist/native/component/addMediaGallery.d.ts.map +++ b/dist/native/component/addMediaGallery.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addMediaGallery.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMediaGallery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlG,wBA+BE"} \ No newline at end of file +{"version":3,"file":"addMediaGallery.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMediaGallery.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlG,wBA+BE"} \ No newline at end of file diff --git a/dist/native/component/addMediaGallery.js b/dist/native/component/addMediaGallery.js index 0c45b8e295..a2192feca1 100644 --- a/dist/native/component/addMediaGallery.js +++ b/dist/native/component/addMediaGallery.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const components_1 = require("../../functions/components"); diff --git a/dist/native/component/addMediaGallery.js.map b/dist/native/component/addMediaGallery.js.map index e80479d179..ac97d36a9b 100644 --- a/dist/native/component/addMediaGallery.js.map +++ b/dist/native/component/addMediaGallery.js.map @@ -1 +1 @@ -{"version":3,"file":"addMediaGallery.js","sourceRoot":"","sources":["../../../src/native/component/addMediaGallery.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAClG,2DAAyD;AACzD,2CAAiF;AAEjF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,gCAAmB,EAAE,CAAA;QAEjD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;;YACpD,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAEzD,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addMediaGallery.js","sourceRoot":"","sources":["../../../src/native/component/addMediaGallery.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAClG,2DAAyD;AACzD,2CAAiF;AAEjF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,gCAAmB,EAAE,CAAA;QAEjD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;;YACpD,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAEzD,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addMediaItem.d.ts.map b/dist/native/component/addMediaItem.d.ts.map index a15ff23d67..793936929c 100644 --- a/dist/native/component/addMediaItem.d.ts.map +++ b/dist/native/component/addMediaItem.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addMediaItem.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMediaItem.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"addMediaItem.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMediaItem.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/component/addMediaItem.js b/dist/native/component/addMediaItem.js index 9e0eca5e50..84a843aef2 100644 --- a/dist/native/component/addMediaItem.js +++ b/dist/native/component/addMediaItem.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -6,7 +10,6 @@ exports.default = new structures_1.NativeFunction({ name: "$addMediaItem", version: "2.4.0", description: "Adds a new media gallery item", - aliases: ["$addItem"], unwrap: true, brackets: true, args: [ diff --git a/dist/native/component/addMediaItem.js.map b/dist/native/component/addMediaItem.js.map index 5bc1d59ef1..2f73bbfb40 100644 --- a/dist/native/component/addMediaItem.js.map +++ b/dist/native/component/addMediaItem.js.map @@ -1 +1 @@ -{"version":3,"file":"addMediaItem.js","sourceRoot":"","sources":["../../../src/native/component/addMediaItem.ts"],"names":[],"mappings":";;AAAA,2CAAoD;AACpD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC;QAC7B,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAE5E,IAAI,IAAI;YAAE,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;QACnC,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;QAErC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addMediaItem.js","sourceRoot":"","sources":["../../../src/native/component/addMediaItem.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoD;AACpD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC;QAC7B,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAE5E,IAAI,IAAI;YAAE,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;QACnC,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;QAErC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addMentionableSelectMenu.d.ts.map b/dist/native/component/addMentionableSelectMenu.d.ts.map index 6e83b08bae..c590ec0224 100644 --- a/dist/native/component/addMentionableSelectMenu.d.ts.map +++ b/dist/native/component/addMentionableSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAgEE"} \ No newline at end of file +{"version":3,"file":"addMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAmEE"} \ No newline at end of file diff --git a/dist/native/component/addMentionableSelectMenu.js b/dist/native/component/addMentionableSelectMenu.js index fc0f0e786e..75c950281c 100644 --- a/dist/native/component/addMentionableSelectMenu.js +++ b/dist/native/component/addMentionableSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -51,6 +55,7 @@ exports.default = new structures_1.NativeFunction({ execute(ctx, [id, placeholder, min, max, disabled, defaults]) { const menu = new discord_js_1.MentionableSelectMenuBuilder() .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id) .setDefaultValues(defaults.map(x => { return { @@ -64,7 +69,10 @@ exports.default = new structures_1.NativeFunction({ menu.setMinValues(min); if (max) menu.setMaxValues(max); - ctx.container.actionRow?.addComponents(menu); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setMentionableSelectMenuComponent(menu); + else + ctx.container.actionRow?.addComponents(menu); return this.success(); } }); diff --git a/dist/native/component/addMentionableSelectMenu.js.map b/dist/native/component/addMentionableSelectMenu.js.map index 07f33ba36b..33bd016f39 100644 --- a/dist/native/component/addMentionableSelectMenu.js.map +++ b/dist/native/component/addMentionableSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"addMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAA2F;AAC3F,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,qBAAqB;YAC3B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,WAAW,EAAE,4CAA4C;SAC5D;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,CAAE;QAC1D,MAAM,IAAI,GAAG,IAAI,yCAA4B,EAAE;aAC1C,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,EAAE,CAAC;aACf,gBAAgB,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;YAC/B,OAAO;gBACH,EAAE,EAAE,CAAC,CAAC,EAAE;gBACR,IAAI,EAAE,CAAC,YAAY,iBAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI;aAC9F,CAAA;QACL,CAAC,CAAC,CAAC,CAAA;QAEP,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0G;AAC1G,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,qBAAqB;YAC3B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,WAAW,EAAE,4CAA4C;SAC5D;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,CAAE;QAC1D,MAAM,IAAI,GAAG,IAAI,yCAA4B,EAAE;aAC1C,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC;aACnC,WAAW,CAAC,EAAE,CAAC;aACf,gBAAgB,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;YAC/B,OAAO;gBACH,EAAE,EAAE,CAAC,CAAC,EAAE;gBACR,IAAI,EAAE,CAAC,YAAY,iBAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI;aAC9F,CAAA;QACL,CAAC,CAAC,CAAC,CAAA;QAEP,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,iCAAiC,CAAC,IAAI,CAAC,CAAA;;YACxG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addMentionableSelectMenuTo.d.ts.map b/dist/native/component/addMentionableSelectMenuTo.d.ts.map index 5794ea88c1..7edb7ca8d2 100644 --- a/dist/native/component/addMentionableSelectMenuTo.d.ts.map +++ b/dist/native/component/addMentionableSelectMenuTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addMentionableSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenuTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAsFE"} \ No newline at end of file +{"version":3,"file":"addMentionableSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenuTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAsFE"} \ No newline at end of file diff --git a/dist/native/component/addMentionableSelectMenuTo.js b/dist/native/component/addMentionableSelectMenuTo.js index fe713444a2..3a2cd974e2 100644 --- a/dist/native/component/addMentionableSelectMenuTo.js +++ b/dist/native/component/addMentionableSelectMenuTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addMentionableSelectMenuTo.js.map b/dist/native/component/addMentionableSelectMenuTo.js.map index 8072f8c8dc..15b9641600 100644 --- a/dist/native/component/addMentionableSelectMenuTo.js.map +++ b/dist/native/component/addMentionableSelectMenuTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addMentionableSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"addMentionableSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addMentionableSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/addOption.d.ts.map b/dist/native/component/addOption.d.ts.map index f0c66409a6..69964e0b0b 100644 --- a/dist/native/component/addOption.d.ts.map +++ b/dist/native/component/addOption.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addOption.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA8DE"} \ No newline at end of file +{"version":3,"file":"addOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/addOption.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA8DE"} \ No newline at end of file diff --git a/dist/native/component/addOption.js b/dist/native/component/addOption.js index 04738260fb..e25486d5ff 100644 --- a/dist/native/component/addOption.js +++ b/dist/native/component/addOption.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$addOption", version: "1.0.0", @@ -44,19 +49,19 @@ exports.default = new structures_1.NativeFunction({ }, ], execute(ctx, [name, desc, value, emoji, def]) { - const menu = ctx.container.actionRow?.components[0]; - const data = { - label: name, - description: desc || undefined, - value, - default: def || false, - emoji: emoji - ? (0, discord_js_1.parseEmoji)(emoji) ?? { - name: emoji, - } - : undefined, - }; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.BaseSelectMenuBuilder && "addOptions" in menu) { + const data = { + label: name, + description: desc || undefined, + value, + default: def || false, + emoji: emoji + ? (0, discord_js_1.parseEmoji)(emoji) ?? { + name: emoji, + } + : undefined, + }; menu.addOptions(data); } return this.success(); diff --git a/dist/native/component/addOption.js.map b/dist/native/component/addOption.js.map index 09a3bf3152..5ef61ff5b8 100644 --- a/dist/native/component/addOption.js.map +++ b/dist/native/component/addOption.js.map @@ -1 +1 @@ -{"version":3,"file":"addOption.js","sourceRoot":"","sources":["../../../src/native/component/addOption.ts"],"names":[],"mappings":";;AAAA,2CAAmF;AACnF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,CAAC;QACxC,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QAEnD,MAAM,IAAI,GAAwB;YAC9B,KAAK,EAAE,IAAI;YACX,WAAW,EAAE,IAAI,IAAI,SAAS;YAC9B,KAAK;YACL,OAAO,EAAE,GAAG,IAAI,KAAK;YACrB,KAAK,EAAE,KAAK;gBACR,CAAC,CAAE,IAAA,uBAAU,EAAC,KAAK,CAAkC,IAAI;oBACrD,IAAI,EAAE,KAAK;iBACd;gBACD,CAAC,CAAC,SAAS;SAClB,CAAA;QAED,IAAI,IAAI,YAAY,kCAAqB,IAAI,YAAY,IAAI,IAAI,EAAE;YAC/D,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAA;SACxB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addOption.js","sourceRoot":"","sources":["../../../src/native/component/addOption.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmF;AACnF,iDAAkE;AAClE,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,CAAC;QACxC,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAElC,IAAI,IAAI,YAAY,kCAAqB,IAAI,YAAY,IAAI,IAAI,EAAE;YAC/D,MAAM,IAAI,GAAwB;gBAC9B,KAAK,EAAE,IAAI;gBACX,WAAW,EAAE,IAAI,IAAI,SAAS;gBAC9B,KAAK;gBACL,OAAO,EAAE,GAAG,IAAI,KAAK;gBACrB,KAAK,EAAE,KAAK;oBACR,CAAC,CAAE,IAAA,uBAAU,EAAC,KAAK,CAAkC,IAAI;wBACrD,IAAI,EAAE,KAAK;qBACd;oBACD,CAAC,CAAC,SAAS;aAClB,CAAA;YAED,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAA;SACxB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addRoleSelectMenu.d.ts.map b/dist/native/component/addRoleSelectMenu.d.ts.map index 3b91094caf..6e99a93d63 100644 --- a/dist/native/component/addRoleSelectMenu.d.ts.map +++ b/dist/native/component/addRoleSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA2DE"} \ No newline at end of file +{"version":3,"file":"addRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA8DE"} \ No newline at end of file diff --git a/dist/native/component/addRoleSelectMenu.js b/dist/native/component/addRoleSelectMenu.js index 08299e7af3..adb0528fa0 100644 --- a/dist/native/component/addRoleSelectMenu.js +++ b/dist/native/component/addRoleSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -52,6 +56,7 @@ exports.default = new structures_1.NativeFunction({ const menu = new discord_js_1.RoleSelectMenuBuilder() .setDefaultRoles(roles) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id); if (placeholder) menu.setPlaceholder(placeholder); @@ -59,7 +64,10 @@ exports.default = new structures_1.NativeFunction({ menu.setMinValues(min); if (max) menu.setMaxValues(max); - ctx.container.actionRow?.addComponents(menu); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setRoleSelectMenuComponent(menu); + else + ctx.container.actionRow?.addComponents(menu); return this.success(); } }); diff --git a/dist/native/component/addRoleSelectMenu.js.map b/dist/native/component/addRoleSelectMenu.js.map index 8590ed74a9..f8dbdaae98 100644 --- a/dist/native/component/addRoleSelectMenu.js.map +++ b/dist/native/component/addRoleSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"addRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAAkD;AAClD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,mCAAmC;SACnD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,CAAE;QACvD,MAAM,IAAI,GAAG,IAAI,kCAAqB,EAAE;aACnC,eAAe,CAAC,KAAK,CAAC;aACtB,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiE;AACjE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,mCAAmC;SACnD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,CAAE;QACvD,MAAM,IAAI,GAAG,IAAI,kCAAqB,EAAE;aACnC,eAAe,CAAC,KAAK,CAAC;aACtB,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC;aACnC,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,0BAA0B,CAAC,IAAI,CAAC,CAAA;;YACjG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addRoleSelectMenuTo.d.ts.map b/dist/native/component/addRoleSelectMenuTo.d.ts.map index 4ba6938e66..677485a07a 100644 --- a/dist/native/component/addRoleSelectMenuTo.d.ts.map +++ b/dist/native/component/addRoleSelectMenuTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addRoleSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenuTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file +{"version":3,"file":"addRoleSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenuTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file diff --git a/dist/native/component/addRoleSelectMenuTo.js b/dist/native/component/addRoleSelectMenuTo.js index 765ad91397..62549552c8 100644 --- a/dist/native/component/addRoleSelectMenuTo.js +++ b/dist/native/component/addRoleSelectMenuTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addRoleSelectMenuTo.js.map b/dist/native/component/addRoleSelectMenuTo.js.map index 2f621cb0de..71db8d1894 100644 --- a/dist/native/component/addRoleSelectMenuTo.js.map +++ b/dist/native/component/addRoleSelectMenuTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addRoleSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"addRoleSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addRoleSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/addSection.d.ts.map b/dist/native/component/addSection.d.ts.map index 3e7c8f1e34..c9ba9ffe76 100644 --- a/dist/native/component/addSection.d.ts.map +++ b/dist/native/component/addSection.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addSection.d.ts","sourceRoot":"","sources":["../../../src/native/component/addSection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlG,wBAiCE"} \ No newline at end of file +{"version":3,"file":"addSection.d.ts","sourceRoot":"","sources":["../../../src/native/component/addSection.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlG,wBAiCE"} \ No newline at end of file diff --git a/dist/native/component/addSection.js b/dist/native/component/addSection.js index 85c385868a..6abbaab88e 100644 --- a/dist/native/component/addSection.js +++ b/dist/native/component/addSection.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const components_1 = require("../../functions/components"); diff --git a/dist/native/component/addSection.js.map b/dist/native/component/addSection.js.map index bee3ecd82a..adb4d019b0 100644 --- a/dist/native/component/addSection.js.map +++ b/dist/native/component/addSection.js.map @@ -1 +1 @@ -{"version":3,"file":"addSection.js","sourceRoot":"","sources":["../../../src/native/component/addSection.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAClG,2DAAyD;AACzD,2CAA4E;AAE5E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,2BAAc,EAAE,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,0BAAa,CAAC,OAAO,CAAC,CAAA;QAEhD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,oBAAoB,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;;YAC/C,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAEzD,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,CAAA;QAC5B,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addSection.js","sourceRoot":"","sources":["../../../src/native/component/addSection.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAClG,2DAAyD;AACzD,2CAA4E;AAE5E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,IAAI,2BAAc,EAAE,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,0BAAa,CAAC,OAAO,CAAC,CAAA;QAEhD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAA;QAEzD,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,oBAAoB,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;;YAC/C,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAEzD,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,CAAA;QAC5B,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addSeparator.d.ts.map b/dist/native/component/addSeparator.d.ts.map index 0f0d72051d..7c01858659 100644 --- a/dist/native/component/addSeparator.d.ts.map +++ b/dist/native/component/addSeparator.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addSeparator.d.ts","sourceRoot":"","sources":["../../../src/native/component/addSeparator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqD,oBAAoB,EAAE,MAAM,YAAY,CAAA;AACpG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"addSeparator.d.ts","sourceRoot":"","sources":["../../../src/native/component/addSeparator.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqD,oBAAoB,EAAE,MAAM,YAAY,CAAA;AACpG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGlE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/component/addSeparator.js b/dist/native/component/addSeparator.js index d12abe9d55..fbf384eb45 100644 --- a/dist/native/component/addSeparator.js +++ b/dist/native/component/addSeparator.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addSeparator.js.map b/dist/native/component/addSeparator.js.map index 6e0d6042dc..29749b2d3c 100644 --- a/dist/native/component/addSeparator.js.map +++ b/dist/native/component/addSeparator.js.map @@ -1 +1 @@ -{"version":3,"file":"addSeparator.js","sourceRoot":"","sources":["../../../src/native/component/addSeparator.ts"],"names":[],"mappings":";;AAAA,2CAAoG;AACpG,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAoB;SAC7B;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QAC3B,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,GAAG,GAAG,IAAI,6BAAgB,EAAE,CAAA;QAElC,IAAI,OAAO;YAAE,GAAG,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;QACpC,IAAI,OAAO,KAAK,KAAK;YAAE,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAE5C,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAA;;YAC/B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAEvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addSeparator.js","sourceRoot":"","sources":["../../../src/native/component/addSeparator.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoG;AACpG,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAoB;SAC7B;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QAC3B,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,GAAG,GAAG,IAAI,6BAAgB,EAAE,CAAA;QAElC,IAAI,OAAO;YAAE,GAAG,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;QACpC,IAAI,OAAO,KAAK,KAAK;YAAE,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAE5C,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACnF,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAA;;YAC/B,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAEvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addStringSelectMenu.d.ts.map b/dist/native/component/addStringSelectMenu.d.ts.map index ec29efcdb1..2101b578a5 100644 --- a/dist/native/component/addStringSelectMenu.d.ts.map +++ b/dist/native/component/addStringSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAiDE"} \ No newline at end of file +{"version":3,"file":"addStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsDE"} \ No newline at end of file diff --git a/dist/native/component/addStringSelectMenu.js b/dist/native/component/addStringSelectMenu.js index ce57f6b12a..ccf6a269f8 100644 --- a/dist/native/component/addStringSelectMenu.js +++ b/dist/native/component/addStringSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -42,14 +46,20 @@ exports.default = new structures_1.NativeFunction({ }, ], execute(ctx, [id, placeholder, disabled, min, max]) { - const menu = new discord_js_1.StringSelectMenuBuilder().setCustomId(id).setDisabled(disabled || false); + const menu = new discord_js_1.StringSelectMenuBuilder() + .setCustomId(id) + .setDisabled(disabled || false) + .setRequired(ctx.component.required); if (placeholder) menu.setPlaceholder(placeholder); if (min) menu.setMinValues(min); if (max) menu.setMaxValues(max); - ctx.container.actionRow?.addComponents(menu); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setStringSelectMenuComponent(menu); + else + ctx.container.actionRow?.addComponents(menu); return this.success(); }, }); diff --git a/dist/native/component/addStringSelectMenu.js.map b/dist/native/component/addStringSelectMenu.js.map index d6acb2b4c5..f6aa7b9159 100644 --- a/dist/native/component/addStringSelectMenu.js.map +++ b/dist/native/component/addStringSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"addStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAAoD;AACpD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC;QAC9C,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;QAEzF,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC;QAC9C,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE;aACrC,WAAW,CAAC,EAAE,CAAC;aACf,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAA;QAExC,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,4BAA4B,CAAC,IAAI,CAAC,CAAA;;YACnG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addStringSelectMenuTo.d.ts.map b/dist/native/component/addStringSelectMenuTo.d.ts.map index b461b74712..6505bd84af 100644 --- a/dist/native/component/addStringSelectMenuTo.d.ts.map +++ b/dist/native/component/addStringSelectMenuTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addStringSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenuTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqEE"} \ No newline at end of file +{"version":3,"file":"addStringSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenuTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqEE"} \ No newline at end of file diff --git a/dist/native/component/addStringSelectMenuTo.js b/dist/native/component/addStringSelectMenuTo.js index a641a8addf..48d9ff15c1 100644 --- a/dist/native/component/addStringSelectMenuTo.js +++ b/dist/native/component/addStringSelectMenuTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addStringSelectMenuTo.js.map b/dist/native/component/addStringSelectMenuTo.js.map index e966754b2b..0340394ea1 100644 --- a/dist/native/component/addStringSelectMenuTo.js.map +++ b/dist/native/component/addStringSelectMenuTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addStringSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenuTo.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC;QACzD,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;QAEzF,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,mCAAsB,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QAC5E,UAAU,CAAC,IAAI,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;QAE3D,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addStringSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addStringSelectMenuTo.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC;QACzD,MAAM,IAAI,GAAG,IAAI,oCAAuB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;QAEzF,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,mCAAsB,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QAC5E,UAAU,CAAC,IAAI,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;QAE3D,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addTextDisplay.d.ts.map b/dist/native/component/addTextDisplay.d.ts.map index 979eb2deba..56309e15ad 100644 --- a/dist/native/component/addTextDisplay.d.ts.map +++ b/dist/native/component/addTextDisplay.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addTextDisplay.d.ts","sourceRoot":"","sources":["../../../src/native/component/addTextDisplay.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"addTextDisplay.d.ts","sourceRoot":"","sources":["../../../src/native/component/addTextDisplay.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/component/addTextDisplay.js b/dist/native/component/addTextDisplay.js index dcc916e7c2..1d6de13357 100644 --- a/dist/native/component/addTextDisplay.js +++ b/dist/native/component/addTextDisplay.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -22,7 +26,9 @@ exports.default = new structures_1.NativeFunction({ (0, components_1.addActionRow)(ctx); const comp = ctx.container.components.at(-1); const text = new discord_js_1.TextDisplayBuilder().setContent(content); - if (ctx.container.isInside(discord_js_1.ComponentType.Section)) + if (ctx.container.modal) + ctx.container.modal.addTextDisplayComponents(text); + else if (ctx.container.isInside(discord_js_1.ComponentType.Section)) ctx.component.section?.addTextDisplayComponents(text); else if (comp instanceof discord_js_1.ContainerBuilder && ctx.container.isInside(discord_js_1.ComponentType.Container)) comp.addTextDisplayComponents(text); diff --git a/dist/native/component/addTextDisplay.js.map b/dist/native/component/addTextDisplay.js.map index 831270a93a..c5686b61f8 100644 --- a/dist/native/component/addTextDisplay.js.map +++ b/dist/native/component/addTextDisplay.js.map @@ -1 +1 @@ -{"version":3,"file":"addTextDisplay.js","sourceRoot":"","sources":["../../../src/native/component/addTextDisplay.ts"],"names":[],"mappings":";;AAAA,2CAAgF;AAChF,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,IAAI,GAAG,IAAI,+BAAkB,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;QAEzD,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,OAAO,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,wBAAwB,CAAC,IAAI,CAAC,CAAA;aACnG,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACxF,IAAI,CAAC,wBAAwB,CAAC,IAAI,CAAC,CAAA;;YAClC,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAExC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addTextDisplay.js","sourceRoot":"","sources":["../../../src/native/component/addTextDisplay.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgF;AAChF,iDAAkE;AAClE,2DAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,IAAA,yBAAY,EAAC,GAAG,CAAC,CAAA;QACjB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;QAC5C,MAAM,IAAI,GAAG,IAAI,+BAAkB,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;QAEzD,IAAI,GAAG,CAAC,SAAS,CAAC,KAAK;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,wBAAwB,CAAC,IAAI,CAAC,CAAA;aACtE,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,OAAO,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,wBAAwB,CAAC,IAAI,CAAC,CAAA;aACxG,IAAI,IAAI,YAAY,6BAAgB,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,SAAS,CAAC;YACxF,IAAI,CAAC,wBAAwB,CAAC,IAAI,CAAC,CAAA;;YAClC,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAExC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addTextInput.d.ts.map b/dist/native/component/addTextInput.d.ts.map index 97240e3ee2..463acb7f49 100644 --- a/dist/native/component/addTextInput.d.ts.map +++ b/dist/native/component/addTextInput.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addTextInput.d.ts","sourceRoot":"","sources":["../../../src/native/component/addTextInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,cAAc,EAAE,MAAM,YAAY,CAAA;AAC/E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2EE"} \ No newline at end of file +{"version":3,"file":"addTextInput.d.ts","sourceRoot":"","sources":["../../../src/native/component/addTextInput.ts"],"names":[],"mappings":"AAKA,OAAO,EAAiD,cAAc,EAAE,MAAM,YAAY,CAAA;AAC1F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2EE"} \ No newline at end of file diff --git a/dist/native/component/addTextInput.js b/dist/native/component/addTextInput.js index a2ca16b135..bed55e44b8 100644 --- a/dist/native/component/addTextInput.js +++ b/dist/native/component/addTextInput.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -18,7 +22,7 @@ exports.default = new structures_1.NativeFunction({ }, { name: "name", - description: "The field name", + description: "The field name, will be overwritten when used inside a label", rest: false, required: true, type: structures_1.ArgType.String, @@ -61,12 +65,11 @@ exports.default = new structures_1.NativeFunction({ type: structures_1.ArgType.Number, }, ], - execute(ctx, [id, label, type, required, placeholder, value, min, max]) { + execute(ctx, [id, name, type, required, placeholder, value, min, max]) { const field = new discord_js_1.TextInputBuilder() .setCustomId(id) - .setLabel(label) .setStyle(type || discord_js_1.TextInputStyle.Paragraph) - .setRequired(required || false); + .setRequired(ctx.component.required || required || false); if (placeholder) field.setPlaceholder(placeholder); if (value) @@ -75,7 +78,10 @@ exports.default = new structures_1.NativeFunction({ field.setMinLength(min); if (max) field.setMaxLength(max); - ctx.container.modal?.addComponents(new discord_js_1.ActionRowBuilder().addComponents(field)); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setTextInputComponent(field); + else + ctx.container.modal?.addLabelComponents(new discord_js_1.LabelBuilder().setLabel(name).setTextInputComponent(field)); return this.success(); }, }); diff --git a/dist/native/component/addTextInput.js.map b/dist/native/component/addTextInput.js.map index 3b935a808e..2b4ac83bc0 100644 --- a/dist/native/component/addTextInput.js.map +++ b/dist/native/component/addTextInput.js.map @@ -1 +1 @@ -{"version":3,"file":"addTextInput.js","sourceRoot":"","sources":["../../../src/native/component/addTextInput.ts"],"names":[],"mappings":";;AAAA,2CAA+E;AAC/E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAc;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC;QAClE,MAAM,KAAK,GAAG,IAAI,6BAAgB,EAAE;aAC/B,WAAW,CAAC,EAAE,CAAC;aACf,QAAQ,CAAC,KAAK,CAAC;aACf,QAAQ,CAAC,IAAI,IAAI,2BAAc,CAAC,SAAS,CAAC;aAC1C,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;QAEnC,IAAI,WAAW;YAAE,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QAClD,IAAI,KAAK;YAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;QAChC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAChC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAEhC,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,aAAa,CAAC,IAAI,6BAAgB,EAAoB,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAA;QAEjG,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addTextInput.js","sourceRoot":"","sources":["../../../src/native/component/addTextInput.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0F;AAC1F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAc;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC;QACjE,MAAM,KAAK,GAAG,IAAI,6BAAgB,EAAE;aAC/B,WAAW,CAAC,EAAE,CAAC;aACf,QAAQ,CAAC,IAAI,IAAI,2BAAc,CAAC,SAAS,CAAC;aAC1C,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,IAAI,QAAQ,IAAI,KAAK,CAAC,CAAA;QAE7D,IAAI,WAAW;YAAE,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QAClD,IAAI,KAAK;YAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;QAChC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAChC,IAAI,GAAG;YAAE,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAEhC,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,qBAAqB,CAAC,KAAK,CAAC,CAAA;;YAC7F,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,kBAAkB,CAAC,IAAI,yBAAY,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC,CAAA;QAE5G,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addThumbnail.d.ts.map b/dist/native/component/addThumbnail.d.ts.map index 608c297a1c..8ef54a5286 100644 --- a/dist/native/component/addThumbnail.d.ts.map +++ b/dist/native/component/addThumbnail.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addThumbnail.d.ts","sourceRoot":"","sources":["../../../src/native/component/addThumbnail.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"addThumbnail.d.ts","sourceRoot":"","sources":["../../../src/native/component/addThumbnail.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/component/addThumbnail.js b/dist/native/component/addThumbnail.js index f475a9bd7b..2c92057f83 100644 --- a/dist/native/component/addThumbnail.js +++ b/dist/native/component/addThumbnail.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addThumbnail.js.map b/dist/native/component/addThumbnail.js.map index 02519b41eb..c20bc24c1a 100644 --- a/dist/native/component/addThumbnail.js.map +++ b/dist/native/component/addThumbnail.js.map @@ -1 +1 @@ -{"version":3,"file":"addThumbnail.js","sourceRoot":"","sources":["../../../src/native/component/addThumbnail.ts"],"names":[],"mappings":";;AAAA,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC;QAC7B,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAE1E,IAAI,IAAI;YAAE,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;QACxC,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAA;QAEvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addThumbnail.js","sourceRoot":"","sources":["../../../src/native/component/addThumbnail.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC;QAC7B,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;QAE1E,IAAI,IAAI;YAAE,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;QACxC,GAAG,CAAC,SAAS,CAAC,OAAO,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAA;QAEvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addUserSelectMenu.d.ts.map b/dist/native/component/addUserSelectMenu.d.ts.map index 1396129563..bbf204b345 100644 --- a/dist/native/component/addUserSelectMenu.d.ts.map +++ b/dist/native/component/addUserSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA2DE"} \ No newline at end of file +{"version":3,"file":"addUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA8DE"} \ No newline at end of file diff --git a/dist/native/component/addUserSelectMenu.js b/dist/native/component/addUserSelectMenu.js index 100776201f..7a708c9e28 100644 --- a/dist/native/component/addUserSelectMenu.js +++ b/dist/native/component/addUserSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -52,6 +56,7 @@ exports.default = new structures_1.NativeFunction({ const menu = new discord_js_1.UserSelectMenuBuilder() .setDefaultUsers(users) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id); if (placeholder) menu.setPlaceholder(placeholder); @@ -59,7 +64,10 @@ exports.default = new structures_1.NativeFunction({ menu.setMinValues(min); if (max) menu.setMaxValues(max); - ctx.container.actionRow?.addComponents(menu); + if (ctx.container.isInside(discord_js_1.ComponentType.Label)) + ctx.component.label?.setUserSelectMenuComponent(menu); + else + ctx.container.actionRow?.addComponents(menu); return this.success(); } }); diff --git a/dist/native/component/addUserSelectMenu.js.map b/dist/native/component/addUserSelectMenu.js.map index 503e0aa8fa..42fa72d267 100644 --- a/dist/native/component/addUserSelectMenu.js.map +++ b/dist/native/component/addUserSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"addUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAAkD;AAClD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,mCAAmC;SACnD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,CAAE;QACvD,MAAM,IAAI,GAAG,IAAI,kCAAqB,EAAE;aACnC,eAAe,CAAC,KAAK,CAAC;aACtB,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAiE;AACjE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,mCAAmC;SACnD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,CAAE;QACvD,MAAM,IAAI,GAAG,IAAI,kCAAqB,EAAE;aACnC,eAAe,CAAC,KAAK,CAAC;aACtB,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;aAC9B,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC;aACnC,WAAW,CAAC,EAAE,CAAC,CAAA;QAEpB,IAAI,WAAW;YAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;QACjD,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAC/B,IAAI,GAAG;YAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QAE/B,IAAI,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,0BAAa,CAAC,KAAK,CAAC;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,0BAA0B,CAAC,IAAI,CAAC,CAAA;;YACjG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/addUserSelectMenuTo.d.ts.map b/dist/native/component/addUserSelectMenuTo.d.ts.map index 5863a9b354..d53ae23f12 100644 --- a/dist/native/component/addUserSelectMenuTo.d.ts.map +++ b/dist/native/component/addUserSelectMenuTo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addUserSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenuTo.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file +{"version":3,"file":"addUserSelectMenuTo.d.ts","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenuTo.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA+EE"} \ No newline at end of file diff --git a/dist/native/component/addUserSelectMenuTo.js b/dist/native/component/addUserSelectMenuTo.js index c81019c07a..d5aa839a73 100644 --- a/dist/native/component/addUserSelectMenuTo.js +++ b/dist/native/component/addUserSelectMenuTo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/addUserSelectMenuTo.js.map b/dist/native/component/addUserSelectMenuTo.js.map index 7fe46ebf4e..1de0057f5e 100644 --- a/dist/native/component/addUserSelectMenuTo.js.map +++ b/dist/native/component/addUserSelectMenuTo.js.map @@ -1 +1 @@ -{"version":3,"file":"addUserSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"addUserSelectMenuTo.js","sourceRoot":"","sources":["../../../src/native/component/addUserSelectMenuTo.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/deleteActionRow.d.ts.map b/dist/native/component/deleteActionRow.d.ts.map index c018e35e4b..930c9f23b5 100644 --- a/dist/native/component/deleteActionRow.d.ts.map +++ b/dist/native/component/deleteActionRow.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteActionRow.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteActionRow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteActionRow.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteActionRow.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/component/deleteActionRow.js b/dist/native/component/deleteActionRow.js index 7543db8f5f..245c11d3e4 100644 --- a/dist/native/component/deleteActionRow.js +++ b/dist/native/component/deleteActionRow.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/component/deleteActionRow.js.map b/dist/native/component/deleteActionRow.js.map index 99ff29d22d..ad1170fcff 100644 --- a/dist/native/component/deleteActionRow.js.map +++ b/dist/native/component/deleteActionRow.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteActionRow.js","sourceRoot":"","sources":["../../../src/native/component/deleteActionRow.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteActionRow.js","sourceRoot":"","sources":["../../../src/native/component/deleteActionRow.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/deleteActionRowFrom.d.ts.map b/dist/native/component/deleteActionRowFrom.d.ts.map index 183e9fb71e..babcfa6209 100644 --- a/dist/native/component/deleteActionRowFrom.d.ts.map +++ b/dist/native/component/deleteActionRowFrom.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteActionRowFrom.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteActionRowFrom.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"deleteActionRowFrom.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteActionRowFrom.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/component/deleteActionRowFrom.js b/dist/native/component/deleteActionRowFrom.js index 17db05966d..468d379bfa 100644 --- a/dist/native/component/deleteActionRowFrom.js +++ b/dist/native/component/deleteActionRowFrom.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/deleteActionRowFrom.js.map b/dist/native/component/deleteActionRowFrom.js.map index cec85b0888..2cdd645f8e 100644 --- a/dist/native/component/deleteActionRowFrom.js.map +++ b/dist/native/component/deleteActionRowFrom.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteActionRowFrom.js","sourceRoot":"","sources":["../../../src/native/component/deleteActionRowFrom.ts"],"names":[],"mappings":";;AAAA,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC;QAC3B,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,mCAAsB,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QAC5E,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteActionRowFrom.js","sourceRoot":"","sources":["../../../src/native/component/deleteActionRowFrom.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC;QAC3B,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,mCAAsB,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QAC5E,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/deleteComponent.d.ts.map b/dist/native/component/deleteComponent.d.ts.map index a9d1ee9650..bdf27e3748 100644 --- a/dist/native/component/deleteComponent.d.ts.map +++ b/dist/native/component/deleteComponent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteComponent.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"deleteComponent.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteComponent.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/component/deleteComponent.js b/dist/native/component/deleteComponent.js index 55bd166d3b..3e77fe180f 100644 --- a/dist/native/component/deleteComponent.js +++ b/dist/native/component/deleteComponent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/deleteComponent.js.map b/dist/native/component/deleteComponent.js.map index 527cc396e2..51c2906f96 100644 --- a/dist/native/component/deleteComponent.js.map +++ b/dist/native/component/deleteComponent.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteComponent.js","sourceRoot":"","sources":["../../../src/native/component/deleteComponent.ts"],"names":[],"mappings":";;AAAA,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;QACnC,MAAM,CAAC,GAAG,GAAG,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;QAC5F,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE;YACT,IAAI,GAAG,EAAE,UAAU,CAAC,MAAM,KAAK,CAAC;gBAAE,OAAO,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;;gBAC3D,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAE,EAAE,CAAC,CAAC,CAAA;SACzD;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjE,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;YACxC,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAEjD,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;YAChG,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;gBACd,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC;oBAAE,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;;oBAClE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;gBACrC,MAAK;aACR;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteComponent.js","sourceRoot":"","sources":["../../../src/native/component/deleteComponent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,MAAM,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;QACnC,MAAM,CAAC,GAAG,GAAG,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;QAC5F,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE;YACT,IAAI,GAAG,EAAE,UAAU,CAAC,MAAM,KAAK,CAAC;gBAAE,OAAO,GAAG,CAAC,SAAS,CAAC,SAAS,CAAA;;gBAC3D,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAE,EAAE,CAAC,CAAC,CAAA;SACzD;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjE,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;YACxC,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAEjD,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;YAChG,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;gBACd,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC;oBAAE,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;;oBAClE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;gBACrC,MAAK;aACR;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/deleteComponentFrom.d.ts.map b/dist/native/component/deleteComponentFrom.d.ts.map index 88490e4aa9..56ccaedf75 100644 --- a/dist/native/component/deleteComponentFrom.d.ts.map +++ b/dist/native/component/deleteComponentFrom.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteComponentFrom.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteComponentFrom.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAgDE"} \ No newline at end of file +{"version":3,"file":"deleteComponentFrom.d.ts","sourceRoot":"","sources":["../../../src/native/component/deleteComponentFrom.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAgDE"} \ No newline at end of file diff --git a/dist/native/component/deleteComponentFrom.js b/dist/native/component/deleteComponentFrom.js index a22b4d01c0..928545fa9a 100644 --- a/dist/native/component/deleteComponentFrom.js +++ b/dist/native/component/deleteComponentFrom.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/deleteComponentFrom.js.map b/dist/native/component/deleteComponentFrom.js.map index d96966bc91..b784c9fbc8 100644 --- a/dist/native/component/deleteComponentFrom.js.map +++ b/dist/native/component/deleteComponentFrom.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteComponentFrom.js","sourceRoot":"","sources":["../../../src/native/component/deleteComponentFrom.ts"],"names":[],"mappings":";;AAAA,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;QACxB,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE1G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YAC1B,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;YAChG,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;gBACd,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC;oBAAE,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;;oBACpD,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;gBACrC,MAAK;aACR;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteComponentFrom.js","sourceRoot":"","sources":["../../../src/native/component/deleteComponentFrom.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;QACxB,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE1G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YAC1B,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,SAAS,KAAK,EAAE,CAAC,CAAA;YAChG,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;gBACd,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC;oBAAE,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;;oBACpD,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;gBACrC,MAAK;aACR;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACpG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/disableButtons.d.ts.map b/dist/native/component/disableButtons.d.ts.map index 9b214cfa00..cd3db9bdb3 100644 --- a/dist/native/component/disableButtons.d.ts.map +++ b/dist/native/component/disableButtons.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableButtons.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableButtons.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"disableButtons.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableButtons.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/component/disableButtons.js b/dist/native/component/disableButtons.js index 28212986ec..0832a41294 100644 --- a/dist/native/component/disableButtons.js +++ b/dist/native/component/disableButtons.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/disableButtons.js.map b/dist/native/component/disableButtons.js.map index cac1d8569c..32b3cefe1c 100644 --- a/dist/native/component/disableButtons.js.map +++ b/dist/native/component/disableButtons.js.map @@ -1 +1 @@ -{"version":3,"file":"disableButtons.js","sourceRoot":"","sources":["../../../src/native/component/disableButtons.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QACrC,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QAEzE,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC9C,IAAI,CAAC,YAAY,0BAAa;gBAAE,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;QACvD,CAAC,CAAC,CAAA;QAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,CAAC,CAAC,GAAG,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAChD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;gBAC1B,IAAI,CAAC,YAAY,0BAAa;oBAAE,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;YAChF,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableButtons.js","sourceRoot":"","sources":["../../../src/native/component/disableButtons.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QACrC,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QAEzE,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC9C,IAAI,CAAC,YAAY,0BAAa;gBAAE,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;QACvD,CAAC,CAAC,CAAA;QAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,CAAC,CAAC,GAAG,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAChD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;gBAC1B,IAAI,CAAC,YAAY,0BAAa;oBAAE,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;YAChF,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/disableButtonsOf.d.ts.map b/dist/native/component/disableButtonsOf.d.ts.map index d50c5215f2..f4e9100473 100644 --- a/dist/native/component/disableButtonsOf.d.ts.map +++ b/dist/native/component/disableButtonsOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableButtonsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableButtonsOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file +{"version":3,"file":"disableButtonsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableButtonsOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file diff --git a/dist/native/component/disableButtonsOf.js b/dist/native/component/disableButtonsOf.js index 4a4dcd3ab0..8454a7812c 100644 --- a/dist/native/component/disableButtonsOf.js +++ b/dist/native/component/disableButtonsOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/disableButtonsOf.js.map b/dist/native/component/disableButtonsOf.js.map index 44cc8ad50f..1f65f2fd86 100644 --- a/dist/native/component/disableButtonsOf.js.map +++ b/dist/native/component/disableButtonsOf.js.map @@ -1 +1 @@ -{"version":3,"file":"disableButtonsOf.js","sourceRoot":"","sources":["../../../src/native/component/disableButtonsOf.ts"],"names":[],"mappings":";;AAAA,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC;QAC7B,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE5G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,KAAK;gBAAE,SAAQ;YACnD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YAExC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBACrC,IAAI,IAAI,YAAY,0BAAa,EAAE;oBAC/B,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;iBAClD;qBAAM;oBACH,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAA;iBAChC;YACL,CAAC,CAAC,CAAA;YACF,IAAI,CAAC,KAAK,KAAK;gBAAE,MAAK;SACzB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableButtonsOf.js","sourceRoot":"","sources":["../../../src/native/component/disableButtonsOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC;QAC7B,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE5G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,KAAK;gBAAE,SAAQ;YACnD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YAExC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBACrC,IAAI,IAAI,YAAY,0BAAa,EAAE;oBAC/B,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;iBAClD;qBAAM;oBACH,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAA;iBAChC;YACL,CAAC,CAAC,CAAA;YACF,IAAI,CAAC,KAAK,KAAK;gBAAE,MAAK;SACzB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/disableComponents.d.ts.map b/dist/native/component/disableComponents.d.ts.map index d6e3e87ed9..4b4c880bdf 100644 --- a/dist/native/component/disableComponents.d.ts.map +++ b/dist/native/component/disableComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableComponents.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableComponents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAkBE"} \ No newline at end of file +{"version":3,"file":"disableComponents.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableComponents.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAkBE"} \ No newline at end of file diff --git a/dist/native/component/disableComponents.js b/dist/native/component/disableComponents.js index c2fbfce8e2..6bd2b11a25 100644 --- a/dist/native/component/disableComponents.js +++ b/dist/native/component/disableComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/disableComponents.js.map b/dist/native/component/disableComponents.js.map index e29acb2ff7..6cbf6959b2 100644 --- a/dist/native/component/disableComponents.js.map +++ b/dist/native/component/disableComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"disableComponents.js","sourceRoot":"","sources":["../../../src/native/component/disableComponents.ts"],"names":[],"mappings":";;AAAA,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,uBAAuB,CAAC;IAClC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,MAAM,UAAU,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QAC3C,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;QAEvE,KAAK,IAAI,IAAI,IAAI,UAAU,EAAE;YACzB,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YACjD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,IAAI,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAChF;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableComponents.js","sourceRoot":"","sources":["../../../src/native/component/disableComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,uBAAuB,CAAC;IAClC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,MAAM,UAAU,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QAC3C,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAA;QAEvE,KAAK,IAAI,IAAI,IAAI,UAAU,EAAE;YACzB,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YACjD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,IAAI,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;SAChF;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/disableComponentsOf.d.ts.map b/dist/native/component/disableComponentsOf.d.ts.map index 99c47aedcf..60421f285b 100644 --- a/dist/native/component/disableComponentsOf.d.ts.map +++ b/dist/native/component/disableComponentsOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableComponentsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableComponentsOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"disableComponentsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/disableComponentsOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/component/disableComponentsOf.js b/dist/native/component/disableComponentsOf.js index 0c34bc6861..c2c39a1e53 100644 --- a/dist/native/component/disableComponentsOf.js +++ b/dist/native/component/disableComponentsOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/disableComponentsOf.js.map b/dist/native/component/disableComponentsOf.js.map index 040143eddb..fc5054403e 100644 --- a/dist/native/component/disableComponentsOf.js.map +++ b/dist/native/component/disableComponentsOf.js.map @@ -1 +1 @@ -{"version":3,"file":"disableComponentsOf.js","sourceRoot":"","sources":["../../../src/native/component/disableComponentsOf.ts"],"names":[],"mappings":";;AAAA,2CAAqH;AACrH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,OAAO,EAAE,CAAC,yBAAyB,CAAC;IACpC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QACtB,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAmC,CAAyC,CAAC,CAAC,CAAA;QAE9I,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACrB,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QACpF,CAAC,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAkE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACzH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableComponentsOf.js","sourceRoot":"","sources":["../../../src/native/component/disableComponentsOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqH;AACrH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,OAAO,EAAE,CAAC,yBAAyB,CAAC;IACpC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QACtB,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAmC,CAAyC,CAAC,CAAC,CAAA;QAE9I,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACrB,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QACpF,CAAC,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAkE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACzH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/editButton.d.ts b/dist/native/component/editButton.d.ts index 3f18c99802..52b6e04354 100644 --- a/dist/native/component/editButton.d.ts +++ b/dist/native/component/editButton.d.ts @@ -17,13 +17,11 @@ declare const _default: NativeFunction<[{ description: string; rest: false; type: ArgType.String; - required: true; }, { name: string; description: string; enum: typeof ButtonStyle; type: ArgType.Enum; - required: true; rest: false; }, { name: string; diff --git a/dist/native/component/editButton.d.ts.map b/dist/native/component/editButton.d.ts.map index 58124ebb16..437737193f 100644 --- a/dist/native/component/editButton.d.ts.map +++ b/dist/native/component/editButton.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editButton.d.ts","sourceRoot":"","sources":["../../../src/native/component/editButton.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA+EE"} \ No newline at end of file +{"version":3,"file":"editButton.d.ts","sourceRoot":"","sources":["../../../src/native/component/editButton.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmC,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA2EE"} \ No newline at end of file diff --git a/dist/native/component/editButton.js b/dist/native/component/editButton.js index 13ea5fdd83..f243fb5022 100644 --- a/dist/native/component/editButton.js +++ b/dist/native/component/editButton.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -26,24 +30,22 @@ exports.default = new structures_1.NativeFunction({ }, { name: "label", - description: "The button label", + description: "The new button label", rest: false, type: structures_1.ArgType.String, - required: true, }, { name: "style", - description: "The style for this button", + description: "The new style for this button", enum: discord_js_1.ButtonStyle, type: structures_1.ArgType.Enum, - required: true, rest: false, }, { name: "emoji", rest: false, type: structures_1.ArgType.String, - description: "The emoji for this button", + description: "The new emoji for this button", }, { name: "disabled", @@ -64,10 +66,11 @@ exports.default = new structures_1.NativeFunction({ (x) => "custom_id" in x.data && x.data.custom_id === oldId); if (!btn) return this.success(); - style = (0, enum_1.resolveNumericEnum)(discord_js_1.ButtonStyle, style); - // @ts-ignore - btn.setLabel(label || btn.data.label) - .setStyle(style); + style = (style ? (0, enum_1.resolveNumericEnum)(discord_js_1.ButtonStyle, style) : btn.data.style); + if (label) + btn.setLabel(label); + if (style) + btn.setStyle(style); if (emoji) btn.setEmoji(emoji); if (typeof disabled === "boolean") diff --git a/dist/native/component/editButton.js.map b/dist/native/component/editButton.js.map index c82cee2e8c..ebc949a8b2 100644 --- a/dist/native/component/editButton.js.map +++ b/dist/native/component/editButton.js.map @@ -1 +1 @@ -{"version":3,"file":"editButton.js","sourceRoot":"","sources":["../../../src/native/component/editButton.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editButton.js","sourceRoot":"","sources":["../../../src/native/component/editButton.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editButtonOf.d.ts b/dist/native/component/editButtonOf.d.ts index 58fdf2e8af..5348bf0cdb 100644 --- a/dist/native/component/editButtonOf.d.ts +++ b/dist/native/component/editButtonOf.d.ts @@ -30,13 +30,11 @@ declare const _default: NativeFunction<[{ description: string; rest: false; type: ArgType.String; - required: true; }, { name: string; description: string; enum: typeof ButtonStyle; type: ArgType.Enum; - required: true; rest: false; }, { name: string; diff --git a/dist/native/component/editButtonOf.d.ts.map b/dist/native/component/editButtonOf.d.ts.map index 29187aa363..03d54d70af 100644 --- a/dist/native/component/editButtonOf.d.ts.map +++ b/dist/native/component/editButtonOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editButtonOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editButtonOf.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8C,WAAW,EAA6B,MAAM,YAAY,CAAA;AAC/G,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA+FE"} \ No newline at end of file +{"version":3,"file":"editButtonOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editButtonOf.ts"],"names":[],"mappings":"AAKA,OAAO,EAA8C,WAAW,EAA6B,MAAM,YAAY,CAAA;AAC/G,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA2FE"} \ No newline at end of file diff --git a/dist/native/component/editButtonOf.js b/dist/native/component/editButtonOf.js index e8db4d578d..639749cf12 100644 --- a/dist/native/component/editButtonOf.js +++ b/dist/native/component/editButtonOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -41,24 +45,22 @@ exports.default = new structures_1.NativeFunction({ }, { name: "label", - description: "The button label", + description: "The new button label", rest: false, type: structures_1.ArgType.String, - required: true, }, { name: "style", - description: "The style for this button", + description: "The new style for this button", enum: discord_js_1.ButtonStyle, type: structures_1.ArgType.Enum, - required: true, rest: false, }, { name: "emoji", rest: false, type: structures_1.ArgType.String, - description: "The emoji for this button", + description: "The new emoji for this button", }, { name: "disabled", @@ -76,10 +78,11 @@ exports.default = new structures_1.NativeFunction({ const btn = components[rowIndex].components.find((x) => "custom_id" in x.data && x.data.custom_id === oldId); if (!btn) return this.success(); - style = (0, enum_1.resolveNumericEnum)(discord_js_1.ButtonStyle, style); - // @ts-ignore - btn.setLabel(label || btn.data.label) - .setStyle(style); + style = (style ? (0, enum_1.resolveNumericEnum)(discord_js_1.ButtonStyle, style) : btn.data.style); + if (label) + btn.setLabel(label); + if (style) + btn.setStyle(style); if (emoji) btn.setEmoji(emoji); if (typeof disabled === "boolean") diff --git a/dist/native/component/editButtonOf.js.map b/dist/native/component/editButtonOf.js.map index 5b02962bd3..c2e5b442c2 100644 --- a/dist/native/component/editButtonOf.js.map +++ b/dist/native/component/editButtonOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editButtonOf.js","sourceRoot":"","sources":["../../../src/native/component/editButtonOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editButtonOf.js","sourceRoot":"","sources":["../../../src/native/component/editButtonOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editChannelSelectMenu.d.ts.map b/dist/native/component/editChannelSelectMenu.d.ts.map index 468eb81764..12aa8e66ef 100644 --- a/dist/native/component/editChannelSelectMenu.d.ts.map +++ b/dist/native/component/editChannelSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file +{"version":3,"file":"editChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file diff --git a/dist/native/component/editChannelSelectMenu.js b/dist/native/component/editChannelSelectMenu.js index 6fc66b1a08..1db2baf974 100644 --- a/dist/native/component/editChannelSelectMenu.js +++ b/dist/native/component/editChannelSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editChannelSelectMenu.js.map b/dist/native/component/editChannelSelectMenu.js.map index 0a0be804f4..510353157b 100644 --- a/dist/native/component/editChannelSelectMenu.js.map +++ b/dist/native/component/editChannelSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"editChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editChannelSelectMenuOf.d.ts.map b/dist/native/component/editChannelSelectMenuOf.d.ts.map index 18146b85dc..7a5f602c9b 100644 --- a/dist/native/component/editChannelSelectMenuOf.d.ts.map +++ b/dist/native/component/editChannelSelectMenuOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editChannelSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenuOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file +{"version":3,"file":"editChannelSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenuOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file diff --git a/dist/native/component/editChannelSelectMenuOf.js b/dist/native/component/editChannelSelectMenuOf.js index ec3711e35f..cf616f410a 100644 --- a/dist/native/component/editChannelSelectMenuOf.js +++ b/dist/native/component/editChannelSelectMenuOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editChannelSelectMenuOf.js.map b/dist/native/component/editChannelSelectMenuOf.js.map index 3ae1dcf035..d2411a0551 100644 --- a/dist/native/component/editChannelSelectMenuOf.js.map +++ b/dist/native/component/editChannelSelectMenuOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editChannelSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editChannelSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editChannelSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editMentionableSelectMenu.d.ts.map b/dist/native/component/editMentionableSelectMenu.d.ts.map index d3381bac2c..b7f352ddfe 100644 --- a/dist/native/component/editMentionableSelectMenu.d.ts.map +++ b/dist/native/component/editMentionableSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG1D,wBAyFE"} \ No newline at end of file +{"version":3,"file":"editMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG1D,wBAyFE"} \ No newline at end of file diff --git a/dist/native/component/editMentionableSelectMenu.js b/dist/native/component/editMentionableSelectMenu.js index fdfe457fdf..ce36a463e5 100644 --- a/dist/native/component/editMentionableSelectMenu.js +++ b/dist/native/component/editMentionableSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editMentionableSelectMenu.js.map b/dist/native/component/editMentionableSelectMenu.js.map index 39944d9d74..e5e1901d82 100644 --- a/dist/native/component/editMentionableSelectMenu.js.map +++ b/dist/native/component/editMentionableSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"editMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editMentionableSelectMenuOf.d.ts.map b/dist/native/component/editMentionableSelectMenuOf.d.ts.map index b044273319..ae8d786088 100644 --- a/dist/native/component/editMentionableSelectMenuOf.d.ts.map +++ b/dist/native/component/editMentionableSelectMenuOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editMentionableSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenuOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG1D,wBAgHE"} \ No newline at end of file +{"version":3,"file":"editMentionableSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenuOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG1D,wBAgHE"} \ No newline at end of file diff --git a/dist/native/component/editMentionableSelectMenuOf.js b/dist/native/component/editMentionableSelectMenuOf.js index 84efe9543f..cd89035c9b 100644 --- a/dist/native/component/editMentionableSelectMenuOf.js +++ b/dist/native/component/editMentionableSelectMenuOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editMentionableSelectMenuOf.js.map b/dist/native/component/editMentionableSelectMenuOf.js.map index 1d0036b8cd..814dc33e56 100644 --- a/dist/native/component/editMentionableSelectMenuOf.js.map +++ b/dist/native/component/editMentionableSelectMenuOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editMentionableSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editMentionableSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editMentionableSelectMenuOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA+H;AAC/H,iDAA0D;AAC1D,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,qBAAqB;YAC3B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,WAAW,EAAE,4CAA4C;YACzD,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,CAAC;QACxE,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,CAAC,CAAC,CAAA;QAE7D,KAAK,EACL,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YACjD,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YAC1B,MAAM,KAAK,GAAG,IAAI,YAAY,6BAAgB;gBAC1C,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;gBACxD,CAAC,CAAC,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;YAC1D,IAAI,CAAC,KAAK;gBAAE,SAAQ;YAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;gBAC5C,MAAM,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAA;gBACpB,MAAM,IAAI,GAAG,GAAG,YAAY,6BAAgB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAA;gBAEtE,IAAI,IAAI,YAAY,yCAA4B,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,KAAK,GAAG,EAAE;oBAC7E,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;oBAEpB,IAAI,WAAW;wBAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;oBACjD,IAAI,OAAO,QAAQ,KAAK,SAAS;wBAAE,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;oBAC7D,IAAI,OAAO,GAAG,KAAK,QAAQ;wBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;oBACnD,IAAI,OAAO,GAAG,KAAK,QAAQ;wBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;oBACnD,IAAI,QAAQ,CAAC,MAAM,EAAE;wBACjB,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;4BACnD,OAAO;gCACH,EAAE,EAAE,CAAC,CAAC,EAAE;gCACR,IAAI,EAAE,CAAC,YAAY,iBAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI,CAAC,CAAC,CAAC,uCAA0B,CAAC,IAAI;6BAC9F,CAAA;wBACL,CAAC,CAAC,CAAC,CAAA;qBACN;oBAED,IAAI,IAAI,YAAY,6BAAgB;wBAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;oBAE7G,MAAM,KAAK,CAAA;iBACd;aACJ;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtF,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/editOption.d.ts b/dist/native/component/editOption.d.ts index 35b9052a35..2813a88782 100644 --- a/dist/native/component/editOption.d.ts +++ b/dist/native/component/editOption.d.ts @@ -21,7 +21,6 @@ declare const _default: NativeFunction<[{ name: string; description: string; rest: false; - required: true; type: ArgType.String; }, { name: string; diff --git a/dist/native/component/editOption.d.ts.map b/dist/native/component/editOption.d.ts.map index f83a8591d4..11fad1a697 100644 --- a/dist/native/component/editOption.d.ts.map +++ b/dist/native/component/editOption.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/editOption.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAiFE"} \ No newline at end of file +{"version":3,"file":"editOption.d.ts","sourceRoot":"","sources":["../../../src/native/component/editOption.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAgFE"} \ No newline at end of file diff --git a/dist/native/component/editOption.js b/dist/native/component/editOption.js index 48a0f28b33..6ae1b3bd77 100644 --- a/dist/native/component/editOption.js +++ b/dist/native/component/editOption.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -12,7 +16,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "name", - description: "The option name", + description: "The option name to find", rest: false, required: true, type: structures_1.ArgType.String @@ -26,21 +30,20 @@ exports.default = new structures_1.NativeFunction({ }, { name: "description", - description: "The description for this option", + description: "The new description for this option", rest: false, type: structures_1.ArgType.String, required: false, }, { name: "value", - description: "The value to use for this option", + description: "The new value for this option", rest: false, - required: true, type: structures_1.ArgType.String, }, { name: "emoji", - description: "The emoji to use for this option", + description: "The new emoji for this option", type: structures_1.ArgType.String, rest: false, }, diff --git a/dist/native/component/editOption.js.map b/dist/native/component/editOption.js.map index 0edfc60b8e..c7c531bce6 100644 --- a/dist/native/component/editOption.js.map +++ b/dist/native/component/editOption.js.map @@ -1 +1 @@ -{"version":3,"file":"editOption.js","sourceRoot":"","sources":["../../../src/native/component/editOption.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editOption.js","sourceRoot":"","sources":["../../../src/native/component/editOption.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editRoleSelectMenu.d.ts.map b/dist/native/component/editRoleSelectMenu.d.ts.map index 2b1989d457..1674c7d45b 100644 --- a/dist/native/component/editRoleSelectMenu.d.ts.map +++ b/dist/native/component/editRoleSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file +{"version":3,"file":"editRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file diff --git a/dist/native/component/editRoleSelectMenu.js b/dist/native/component/editRoleSelectMenu.js index da3e9332f3..1f11ca7f37 100644 --- a/dist/native/component/editRoleSelectMenu.js +++ b/dist/native/component/editRoleSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editRoleSelectMenu.js.map b/dist/native/component/editRoleSelectMenu.js.map index 4502a87e35..a9a247dcb9 100644 --- a/dist/native/component/editRoleSelectMenu.js.map +++ b/dist/native/component/editRoleSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editRoleSelectMenuOf.d.ts.map b/dist/native/component/editRoleSelectMenuOf.d.ts.map index a6bc19eba0..1e4b05e812 100644 --- a/dist/native/component/editRoleSelectMenuOf.d.ts.map +++ b/dist/native/component/editRoleSelectMenuOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenuOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file +{"version":3,"file":"editRoleSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenuOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file diff --git a/dist/native/component/editRoleSelectMenuOf.js b/dist/native/component/editRoleSelectMenuOf.js index f8f258e7b9..f659297bd1 100644 --- a/dist/native/component/editRoleSelectMenuOf.js +++ b/dist/native/component/editRoleSelectMenuOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editRoleSelectMenuOf.js.map b/dist/native/component/editRoleSelectMenuOf.js.map index 2fd00a92a2..c5ac749a8c 100644 --- a/dist/native/component/editRoleSelectMenuOf.js.map +++ b/dist/native/component/editRoleSelectMenuOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editRoleSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editRoleSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editStringSelectMenu.d.ts.map b/dist/native/component/editStringSelectMenu.d.ts.map index 2336c21b23..2f932e4942 100644 --- a/dist/native/component/editStringSelectMenu.d.ts.map +++ b/dist/native/component/editStringSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA2EE"} \ No newline at end of file +{"version":3,"file":"editStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA2EE"} \ No newline at end of file diff --git a/dist/native/component/editStringSelectMenu.js b/dist/native/component/editStringSelectMenu.js index ccb4f897a8..0c4cda7f81 100644 --- a/dist/native/component/editStringSelectMenu.js +++ b/dist/native/component/editStringSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editStringSelectMenu.js.map b/dist/native/component/editStringSelectMenu.js.map index 1c8d0a6486..c8e304e530 100644 --- a/dist/native/component/editStringSelectMenu.js.map +++ b/dist/native/component/editStringSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"editStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editStringSelectMenuOf.d.ts.map b/dist/native/component/editStringSelectMenuOf.d.ts.map index ebba84b0d0..ab806ba204 100644 --- a/dist/native/component/editStringSelectMenuOf.d.ts.map +++ b/dist/native/component/editStringSelectMenuOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editStringSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenuOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAgGE"} \ No newline at end of file +{"version":3,"file":"editStringSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenuOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAgGE"} \ No newline at end of file diff --git a/dist/native/component/editStringSelectMenuOf.js b/dist/native/component/editStringSelectMenuOf.js index b53fcc1913..95fe2b180f 100644 --- a/dist/native/component/editStringSelectMenuOf.js +++ b/dist/native/component/editStringSelectMenuOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editStringSelectMenuOf.js.map b/dist/native/component/editStringSelectMenuOf.js.map index bd7d3faaf4..9cf9106eea 100644 --- a/dist/native/component/editStringSelectMenuOf.js.map +++ b/dist/native/component/editStringSelectMenuOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editStringSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editStringSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editStringSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editUserSelectMenu.d.ts.map b/dist/native/component/editUserSelectMenu.d.ts.map index f6f6e1be32..45ae7e033c 100644 --- a/dist/native/component/editUserSelectMenu.d.ts.map +++ b/dist/native/component/editUserSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file +{"version":3,"file":"editUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenu.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkFE"} \ No newline at end of file diff --git a/dist/native/component/editUserSelectMenu.js b/dist/native/component/editUserSelectMenu.js index f86f9fdd87..24ee448bc1 100644 --- a/dist/native/component/editUserSelectMenu.js +++ b/dist/native/component/editUserSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editUserSelectMenu.js.map b/dist/native/component/editUserSelectMenu.js.map index 11b7b30bdf..943e586894 100644 --- a/dist/native/component/editUserSelectMenu.js.map +++ b/dist/native/component/editUserSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"editUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenu.ts"],"names":[],"mappings":";;AAAA,2CAAsF;AACtF,iDAAkE;AAClE,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,wCAAwC;SACxD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,EAAE,KAAK,CAAC;QAC1D,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YAC/D,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;YACxC,MAAM,KAAK,GAAG,IAAI,YAAY,6BAAgB;gBAC1C,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;gBACxD,CAAC,CAAC,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;YAC1D,IAAI,CAAC,KAAK;gBAAE,SAAQ;YAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;gBAC5C,MAAM,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAA;gBACpB,MAAM,IAAI,GAAG,GAAG,YAAY,6BAAgB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAA;gBAEtE,IAAI,IAAI,YAAY,kCAAqB,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,KAAK,GAAG,EAAE;oBACtE,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;oBAEpB,IAAI,WAAW;wBAAE,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAA;oBACjD,IAAI,OAAO,QAAQ,KAAK,SAAS;wBAAE,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;oBAC7D,IAAI,OAAO,GAAG,KAAK,QAAQ;wBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;oBACnD,IAAI,OAAO,GAAG,KAAK,QAAQ;wBAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;oBACnD,IAAI,KAAK,CAAC,MAAM;wBAAE,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAA;oBAE7D,IAAI,IAAI,YAAY,6BAAgB;wBAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;oBAE7G,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;iBACxB;aACJ;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenu.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/editUserSelectMenuOf.d.ts.map b/dist/native/component/editUserSelectMenuOf.d.ts.map index 946cb50f96..9fffcf21fc 100644 --- a/dist/native/component/editUserSelectMenuOf.d.ts.map +++ b/dist/native/component/editUserSelectMenuOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editUserSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenuOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file +{"version":3,"file":"editUserSelectMenuOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenuOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAuGE"} \ No newline at end of file diff --git a/dist/native/component/editUserSelectMenuOf.js b/dist/native/component/editUserSelectMenuOf.js index db16246b3a..4c45888987 100644 --- a/dist/native/component/editUserSelectMenuOf.js +++ b/dist/native/component/editUserSelectMenuOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/editUserSelectMenuOf.js.map b/dist/native/component/editUserSelectMenuOf.js.map index 7d34cd0988..906f80bd81 100644 --- a/dist/native/component/editUserSelectMenuOf.js.map +++ b/dist/native/component/editUserSelectMenuOf.js.map @@ -1 +1 @@ -{"version":3,"file":"editUserSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"editUserSelectMenuOf.js","sourceRoot":"","sources":["../../../src/native/component/editUserSelectMenuOf.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/component/enableButtons.d.ts.map b/dist/native/component/enableButtons.d.ts.map index 61d3ba9742..ce48e1339b 100644 --- a/dist/native/component/enableButtons.d.ts.map +++ b/dist/native/component/enableButtons.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableButtons.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableButtons.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"enableButtons.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableButtons.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/component/enableButtons.js b/dist/native/component/enableButtons.js index bbdcf6d235..42c5bbd2fa 100644 --- a/dist/native/component/enableButtons.js +++ b/dist/native/component/enableButtons.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/enableButtons.js.map b/dist/native/component/enableButtons.js.map index 85113f17c0..284c6efa83 100644 --- a/dist/native/component/enableButtons.js.map +++ b/dist/native/component/enableButtons.js.map @@ -1 +1 @@ -{"version":3,"file":"enableButtons.js","sourceRoot":"","sources":["../../../src/native/component/enableButtons.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QACrC,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QAEzE,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC9C,IAAI,CAAC,YAAY,0BAAa;gBAAE,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;QACxD,CAAC,CAAC,CAAA;QAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,CAAC,CAAC,GAAG,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAChD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;gBAC1B,IAAI,CAAC,YAAY,0BAAa;oBAAE,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;YACjF,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableButtons.js","sourceRoot":"","sources":["../../../src/native/component/enableButtons.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QACrC,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QAEzE,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAC9C,IAAI,CAAC,YAAY,0BAAa;gBAAE,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;QACxD,CAAC,CAAC,CAAA;QAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,MAAM,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,CAAC,CAAC,GAAG,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YAChD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;gBAC1B,IAAI,CAAC,YAAY,0BAAa;oBAAE,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;YACjF,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/enableButtonsOf.d.ts.map b/dist/native/component/enableButtonsOf.d.ts.map index 5f686e6113..d96345614b 100644 --- a/dist/native/component/enableButtonsOf.d.ts.map +++ b/dist/native/component/enableButtonsOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableButtonsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableButtonsOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file +{"version":3,"file":"enableButtonsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableButtonsOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file diff --git a/dist/native/component/enableButtonsOf.js b/dist/native/component/enableButtonsOf.js index 8583098db7..ed01b3bcdf 100644 --- a/dist/native/component/enableButtonsOf.js +++ b/dist/native/component/enableButtonsOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/enableButtonsOf.js.map b/dist/native/component/enableButtonsOf.js.map index 7ac4456139..3fda408141 100644 --- a/dist/native/component/enableButtonsOf.js.map +++ b/dist/native/component/enableButtonsOf.js.map @@ -1 +1 @@ -{"version":3,"file":"enableButtonsOf.js","sourceRoot":"","sources":["../../../src/native/component/enableButtonsOf.ts"],"names":[],"mappings":";;AAAA,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC;QAC7B,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE5G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,KAAK;gBAAE,SAAQ;YACnD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YAExC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBACrC,IAAI,IAAI,YAAY,0BAAa,EAAE;oBAC/B,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;iBACnD;qBAAM;oBACH,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAA;iBAChC;YACL,CAAC,CAAC,CAAA;YACF,IAAI,CAAC,KAAK,KAAK;gBAAE,MAAK;SACzB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableButtonsOf.js","sourceRoot":"","sources":["../../../src/native/component/enableButtonsOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC;QAC7B,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAyC,CAAC,CAAC,CAAA;QAE5G,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,KAAK;gBAAE,SAAQ;YACnD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YAExC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBACrC,IAAI,IAAI,YAAY,0BAAa,EAAE;oBAC/B,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;iBACnD;qBAAM;oBACH,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAA;iBAChC;YACL,CAAC,CAAC,CAAA;YACF,IAAI,CAAC,KAAK,KAAK;gBAAE,MAAK;SACzB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAA+C,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/enableComponents.d.ts.map b/dist/native/component/enableComponents.d.ts.map index 1c15a30068..875b9dc8be 100644 --- a/dist/native/component/enableComponents.d.ts.map +++ b/dist/native/component/enableComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableComponents.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableComponents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAkBE"} \ No newline at end of file +{"version":3,"file":"enableComponents.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableComponents.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAkBE"} \ No newline at end of file diff --git a/dist/native/component/enableComponents.js b/dist/native/component/enableComponents.js index 34b81557cc..f14fcf2943 100644 --- a/dist/native/component/enableComponents.js +++ b/dist/native/component/enableComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/enableComponents.js.map b/dist/native/component/enableComponents.js.map index 672ac0b0b9..1be153c41d 100644 --- a/dist/native/component/enableComponents.js.map +++ b/dist/native/component/enableComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"enableComponents.js","sourceRoot":"","sources":["../../../src/native/component/enableComponents.ts"],"names":[],"mappings":";;AAAA,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,MAAM,UAAU,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QAC3C,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;QAExE,KAAK,IAAI,IAAI,IAAI,UAAU,EAAE;YACzB,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YACjD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,IAAI,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;SACjF;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableComponents.js","sourceRoot":"","sources":["../../../src/native/component/enableComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE,CAAC,sBAAsB,CAAC;IACjC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,MAAM,UAAU,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,CAAA;QAC3C,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAA;QAExE,KAAK,IAAI,IAAI,IAAI,UAAU,EAAE;YACzB,IAAI,CAAC,CAAC,IAAI,YAAY,6BAAgB,CAAC;gBAAE,SAAQ;YACjD,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,IAAI,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;SACjF;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/enableComponentsOf.d.ts.map b/dist/native/component/enableComponentsOf.d.ts.map index 34f9bf5506..60aeec9aee 100644 --- a/dist/native/component/enableComponentsOf.d.ts.map +++ b/dist/native/component/enableComponentsOf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableComponentsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableComponentsOf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"enableComponentsOf.d.ts","sourceRoot":"","sources":["../../../src/native/component/enableComponentsOf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/component/enableComponentsOf.js b/dist/native/component/enableComponentsOf.js index 070c6cd61f..3f48480304 100644 --- a/dist/native/component/enableComponentsOf.js +++ b/dist/native/component/enableComponentsOf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/component/enableComponentsOf.js.map b/dist/native/component/enableComponentsOf.js.map index 0216f0706e..13d6c983cb 100644 --- a/dist/native/component/enableComponentsOf.js.map +++ b/dist/native/component/enableComponentsOf.js.map @@ -1 +1 @@ -{"version":3,"file":"enableComponentsOf.js","sourceRoot":"","sources":["../../../src/native/component/enableComponentsOf.ts"],"names":[],"mappings":";;AAAA,2CAAqH;AACrH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,OAAO,EAAE,CAAC,wBAAwB,CAAC;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QACtB,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAmC,CAAyC,CAAC,CAAC,CAAA;QAE9I,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACrB,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QACrF,CAAC,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAkE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACzH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableComponentsOf.js","sourceRoot":"","sources":["../../../src/native/component/enableComponentsOf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqH;AACrH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,OAAO,EAAE,CAAC,wBAAwB,CAAC;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QACtB,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,IAAI,CAAmC,CAAyC,CAAC,CAAC,CAAA;QAE9I,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACrB,MAAM,SAAS,GAAG,IAAI,6BAAgB,EAAE,CAAA;YACxC,GAAG,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QACrF,CAAC,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,EAAE,UAAkE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACzH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/component/setChannelType.d.ts.map b/dist/native/component/setChannelType.d.ts.map index ee4f261932..d2fbd2385d 100644 --- a/dist/native/component/setChannelType.d.ts.map +++ b/dist/native/component/setChannelType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setChannelType.d.ts","sourceRoot":"","sources":["../../../src/native/component/setChannelType.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,WAAW,EAAE,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;AAE1D,wBAwBE"} \ No newline at end of file +{"version":3,"file":"setChannelType.d.ts","sourceRoot":"","sources":["../../../src/native/component/setChannelType.ts"],"names":[],"mappings":"AAKA,OAAO,EAA4B,WAAW,EAAE,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;AAG1D,wBAwBE"} \ No newline at end of file diff --git a/dist/native/component/setChannelType.js b/dist/native/component/setChannelType.js index 6dd27aae2b..7f09861c66 100644 --- a/dist/native/component/setChannelType.js +++ b/dist/native/component/setChannelType.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); +const components_1 = require("../../functions/components"); exports.default = new structures_1.NativeFunction({ name: "$setChannelType", version: "1.5.0", @@ -20,7 +25,7 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [types]) { - const menu = ctx.container.actionRow?.components[0]; + const menu = (0, components_1.getLastComponent)(ctx); if (menu instanceof discord_js_1.ChannelSelectMenuBuilder) { menu.setChannelTypes(types); } diff --git a/dist/native/component/setChannelType.js.map b/dist/native/component/setChannelType.js.map index 137bf9e537..386731171e 100644 --- a/dist/native/component/setChannelType.js.map +++ b/dist/native/component/setChannelType.js.map @@ -1 +1 @@ -{"version":3,"file":"setChannelType.js","sourceRoot":"","sources":["../../../src/native/component/setChannelType.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,IAAI,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAA;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setChannelType.js","sourceRoot":"","sources":["../../../src/native/component/setChannelType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAA0D;AAC1D,2DAA6D;AAE7D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,IAAI,GAAG,IAAA,6BAAgB,EAAC,GAAG,CAAC,CAAA;QAClC,IAAI,IAAI,YAAY,qCAAwB,EAAE;YAC1C,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAA;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/and.d.ts.map b/dist/native/condition/and.d.ts.map index 533973f969..f492550b1c 100644 --- a/dist/native/condition/and.d.ts.map +++ b/dist/native/condition/and.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"and.d.ts","sourceRoot":"","sources":["../../../src/native/condition/and.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBA2BE"} \ No newline at end of file +{"version":3,"file":"and.d.ts","sourceRoot":"","sources":["../../../src/native/condition/and.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBA2BE"} \ No newline at end of file diff --git a/dist/native/condition/and.js b/dist/native/condition/and.js index f744fe8895..1831459cad 100644 --- a/dist/native/condition/and.js +++ b/dist/native/condition/and.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/condition/and.js.map b/dist/native/condition/and.js.map index 65b1b4e4c3..c867efc604 100644 --- a/dist/native/condition/and.js.map +++ b/dist/native/condition/and.js.map @@ -1 +1 @@ -{"version":3,"file":"and.js","sourceRoot":"","sources":["../../../src/native/condition/and.ts"],"names":[],"mappings":";;AAAA,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,gCAAgC;SAChD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;YAC7E,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;iBACpD,IAAI,CAAC,QAAQ,CAAC,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"and.js","sourceRoot":"","sources":["../../../src/native/condition/and.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,gCAAgC;SAChD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;YAC7E,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;iBACpD,IAAI,CAAC,QAAQ,CAAC,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SACvD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/checkCondition.d.ts.map b/dist/native/condition/checkCondition.d.ts.map index 7448ebbe43..87fa7e61dd 100644 --- a/dist/native/condition/checkCondition.d.ts.map +++ b/dist/native/condition/checkCondition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"checkCondition.d.ts","sourceRoot":"","sources":["../../../src/native/condition/checkCondition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBAyBE"} \ No newline at end of file +{"version":3,"file":"checkCondition.d.ts","sourceRoot":"","sources":["../../../src/native/condition/checkCondition.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBAyBE"} \ No newline at end of file diff --git a/dist/native/condition/checkCondition.js b/dist/native/condition/checkCondition.js index 13490c1313..7e8ae03a71 100644 --- a/dist/native/condition/checkCondition.js +++ b/dist/native/condition/checkCondition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/condition/checkCondition.js.map b/dist/native/condition/checkCondition.js.map index f5c0422279..faaa2c859a 100644 --- a/dist/native/condition/checkCondition.js.map +++ b/dist/native/condition/checkCondition.js.map @@ -1 +1 @@ -{"version":3,"file":"checkCondition.js","sourceRoot":"","sources":["../../../src/native/condition/checkCondition.ts"],"names":[],"mappings":";;AAAA,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CACvC,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"checkCondition.js","sourceRoot":"","sources":["../../../src/native/condition/checkCondition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,SAAS,EAAE,IAAI;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CACvC,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/isBoolean.d.ts.map b/dist/native/condition/isBoolean.d.ts.map index 19918bcd5b..fc563bb0a6 100644 --- a/dist/native/condition/isBoolean.d.ts.map +++ b/dist/native/condition/isBoolean.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isBoolean.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isBoolean.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"isBoolean.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isBoolean.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/condition/isBoolean.js b/dist/native/condition/isBoolean.js index 57b7e23a27..4c7facfd1a 100644 --- a/dist/native/condition/isBoolean.js +++ b/dist/native/condition/isBoolean.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/condition/isBoolean.js.map b/dist/native/condition/isBoolean.js.map index 5beac5d030..a067e2f206 100644 --- a/dist/native/condition/isBoolean.js.map +++ b/dist/native/condition/isBoolean.js.map @@ -1 +1 @@ -{"version":3,"file":"isBoolean.js","sourceRoot":"","sources":["../../../src/native/condition/isBoolean.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,MAAM,IAAI,CAAC,KAAK,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isBoolean.js","sourceRoot":"","sources":["../../../src/native/condition/isBoolean.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,MAAM,IAAI,CAAC,KAAK,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/isValidHex.d.ts.map b/dist/native/condition/isValidHex.d.ts.map index 863bfb8510..98fb3d1a0a 100644 --- a/dist/native/condition/isValidHex.d.ts.map +++ b/dist/native/condition/isValidHex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isValidHex.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isValidHex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,cAAc,UAAoB,CAAA;AAC/C,eAAO,MAAM,cAAc,GAAa,CAAA;AACxC,eAAO,MAAM,mBAAmB,QAAO,CAAA;;;;;;;;AAEvC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"isValidHex.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isValidHex.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,cAAc,UAAoB,CAAA;AAC/C,eAAO,MAAM,cAAc,GAAa,CAAA;AACxC,eAAO,MAAM,mBAAmB,QAAO,CAAA;;;;;;;;AAEvC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/condition/isValidHex.js b/dist/native/condition/isValidHex.js index 4831b7c3bf..fe6368787b 100644 --- a/dist/native/condition/isValidHex.js +++ b/dist/native/condition/isValidHex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.HexHashtagStripping = exports.MinHexIntValue = exports.MaxHexIntValue = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/condition/isValidHex.js.map b/dist/native/condition/isValidHex.js.map index 16098176f7..0a3dffa12e 100644 --- a/dist/native/condition/isValidHex.js.map +++ b/dist/native/condition/isValidHex.js.map @@ -1 +1 @@ -{"version":3,"file":"isValidHex.js","sourceRoot":"","sources":["../../../src/native/condition/isValidHex.ts"],"names":[],"mappings":";;;AAAA,iDAA0D;AAE7C,QAAA,cAAc,GAAG,QAAiB,CAAA;AAClC,QAAA,cAAc,GAAG,CAAU,CAAA;AAC3B,QAAA,mBAAmB,GAAG,IAAI,CAAA;AAEvC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iFAAiF;IAC9F,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,sBAAsB;SACtC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,GAAG,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,2BAAmB,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,sBAAc,IAAI,GAAG,IAAI,sBAAc,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isValidHex.js","sourceRoot":"","sources":["../../../src/native/condition/isValidHex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAA0D;AAE7C,QAAA,cAAc,GAAG,QAAiB,CAAA;AAClC,QAAA,cAAc,GAAG,CAAU,CAAA;AAC3B,QAAA,mBAAmB,GAAG,IAAI,CAAA;AAEvC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iFAAiF;IAC9F,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,sBAAsB;SACtC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,MAAM,GAAG,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,2BAAmB,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,sBAAc,IAAI,GAAG,IAAI,sBAAc,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/isValidLink.d.ts.map b/dist/native/condition/isValidLink.d.ts.map index 10e9e2cd6d..40e6af41b2 100644 --- a/dist/native/condition/isValidLink.d.ts.map +++ b/dist/native/condition/isValidLink.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isValidLink.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isValidLink.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,SAAS,QACiM,CAAA;;;;;;;;AAEvN,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isValidLink.d.ts","sourceRoot":"","sources":["../../../src/native/condition/isValidLink.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,SAAS,QACiM,CAAA;;;;;;;;AAEvN,wBAmBE"} \ No newline at end of file diff --git a/dist/native/condition/isValidLink.js b/dist/native/condition/isValidLink.js index 737e43d04a..a0f6ee1f08 100644 --- a/dist/native/condition/isValidLink.js +++ b/dist/native/condition/isValidLink.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.LinkRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/condition/isValidLink.js.map b/dist/native/condition/isValidLink.js.map index 2592f90b7a..28a0ef9f3c 100644 --- a/dist/native/condition/isValidLink.js.map +++ b/dist/native/condition/isValidLink.js.map @@ -1 +1 @@ -{"version":3,"file":"isValidLink.js","sourceRoot":"","sources":["../../../src/native/condition/isValidLink.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAErD,QAAA,SAAS,GAClB,mNAAmN,CAAA;AAEvN,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,WAAW,EAAE,uHAAuH;IACpI,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isValidLink.js","sourceRoot":"","sources":["../../../src/native/condition/isValidLink.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAErD,QAAA,SAAS,GAClB,mNAAmN,CAAA;AAEvN,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,WAAW,EAAE,uHAAuH;IACpI,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/condition/or.d.ts.map b/dist/native/condition/or.d.ts.map index 8b4f80c58c..f01f17730a 100644 --- a/dist/native/condition/or.d.ts.map +++ b/dist/native/condition/or.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"or.d.ts","sourceRoot":"","sources":["../../../src/native/condition/or.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBA2BE"} \ No newline at end of file +{"version":3,"file":"or.d.ts","sourceRoot":"","sources":["../../../src/native/condition/or.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAE3G,wBA2BE"} \ No newline at end of file diff --git a/dist/native/condition/or.js b/dist/native/condition/or.js index def2fbf3f5..4829f2cc9d 100644 --- a/dist/native/condition/or.js +++ b/dist/native/condition/or.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/condition/or.js.map b/dist/native/condition/or.js.map index 0a88ca0509..01611d3f06 100644 --- a/dist/native/condition/or.js.map +++ b/dist/native/condition/or.js.map @@ -1 +1 @@ -{"version":3,"file":"or.js","sourceRoot":"","sources":["../../../src/native/condition/or.ts"],"names":[],"mappings":";;AAAA,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;YAC7E,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;iBACpD,IAAI,QAAQ,CAAC,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SACrD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"or.js","sourceRoot":"","sources":["../../../src/native/condition/or.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA2G;AAE3G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;YAC7E,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;iBACpD,IAAI,QAAQ,CAAC,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SACrD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/channelCooldown.d.ts.map b/dist/native/cooldown/channelCooldown.d.ts.map index c9b0999711..9bbbd051e6 100644 --- a/dist/native/cooldown/channelCooldown.d.ts.map +++ b/dist/native/cooldown/channelCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channelCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/channelCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file +{"version":3,"file":"channelCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/channelCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file diff --git a/dist/native/cooldown/channelCooldown.js b/dist/native/cooldown/channelCooldown.js index db955d8118..8b74b98db3 100644 --- a/dist/native/cooldown/channelCooldown.js +++ b/dist/native/cooldown/channelCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/channelCooldown.js.map b/dist/native/cooldown/channelCooldown.js.map index 49e9179041..d8ef11031b 100644 --- a/dist/native/cooldown/channelCooldown.js.map +++ b/dist/native/cooldown/channelCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"channelCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/channelCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEvF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"channelCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/channelCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEvF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/cooldown.d.ts.map b/dist/native/cooldown/cooldown.d.ts.map index 5b6d275dea..5a1a957fa0 100644 --- a/dist/native/cooldown/cooldown.d.ts.map +++ b/dist/native/cooldown/cooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/cooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBA8DE"} \ No newline at end of file +{"version":3,"file":"cooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/cooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBA8DE"} \ No newline at end of file diff --git a/dist/native/cooldown/cooldown.js b/dist/native/cooldown/cooldown.js index 9972a25da1..8689e93ebb 100644 --- a/dist/native/cooldown/cooldown.js +++ b/dist/native/cooldown/cooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/cooldown.js.map b/dist/native/cooldown/cooldown.js.map index 52e9f81a75..e8687ff7d1 100644 --- a/dist/native/cooldown/cooldown.js.map +++ b/dist/native/cooldown/cooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"cooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/cooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE;QACN;;;CAGP;QACO;;;CAGP;KACI;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,KAAe,CAAC,CAAA;QAEtE,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,KAAe,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAElE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/cooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE;QACN;;;CAGP;QACO;;;CAGP;KACI;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,KAAe,CAAC,CAAA;QAEtE,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,KAAe,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAElE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteChannelCooldown.d.ts.map b/dist/native/cooldown/deleteChannelCooldown.d.ts.map index 517741751f..3370f51cac 100644 --- a/dist/native/cooldown/deleteChannelCooldown.d.ts.map +++ b/dist/native/cooldown/deleteChannelCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannelCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteChannelCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteChannelCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteChannelCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteChannelCooldown.js b/dist/native/cooldown/deleteChannelCooldown.js index 113a7e30ae..6f71e9cece 100644 --- a/dist/native/cooldown/deleteChannelCooldown.js +++ b/dist/native/cooldown/deleteChannelCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/deleteChannelCooldown.js.map b/dist/native/cooldown/deleteChannelCooldown.js.map index d99599c941..24bb901b46 100644 --- a/dist/native/cooldown/deleteChannelCooldown.js.map +++ b/dist/native/cooldown/deleteChannelCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteChannelCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteChannelCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kEAAkE;IAC/E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAA;QACxF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteChannelCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteChannelCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kEAAkE;IAC/E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAA;QACxF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteCooldown.d.ts.map b/dist/native/cooldown/deleteCooldown.d.ts.map index e33f93286a..8cc502fe88 100644 --- a/dist/native/cooldown/deleteCooldown.d.ts.map +++ b/dist/native/cooldown/deleteCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteCooldown.js b/dist/native/cooldown/deleteCooldown.js index a73f9d5684..93b8f67390 100644 --- a/dist/native/cooldown/deleteCooldown.js +++ b/dist/native/cooldown/deleteCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/deleteCooldown.js.map b/dist/native/cooldown/deleteCooldown.js.map index a7fb57a7fd..dfd324648c 100644 --- a/dist/native/cooldown/deleteCooldown.js.map +++ b/dist/native/cooldown/deleteCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteGuildCooldown.d.ts.map b/dist/native/cooldown/deleteGuildCooldown.d.ts.map index 3cf3b88cdc..8a1fbedef8 100644 --- a/dist/native/cooldown/deleteGuildCooldown.d.ts.map +++ b/dist/native/cooldown/deleteGuildCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteGuildCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteGuildCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteGuildCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteGuildCooldown.js b/dist/native/cooldown/deleteGuildCooldown.js index ba252b9604..45df8d7216 100644 --- a/dist/native/cooldown/deleteGuildCooldown.js +++ b/dist/native/cooldown/deleteGuildCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/deleteGuildCooldown.js.map b/dist/native/cooldown/deleteGuildCooldown.js.map index 07c0c029b0..9e88ea3265 100644 --- a/dist/native/cooldown/deleteGuildCooldown.js.map +++ b/dist/native/cooldown/deleteGuildCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteGuildCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteGuildCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteGuildCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAA;QACtF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteMemberCooldown.d.ts.map b/dist/native/cooldown/deleteMemberCooldown.d.ts.map index 1a6ef3a6b0..f36b2542e1 100644 --- a/dist/native/cooldown/deleteMemberCooldown.d.ts.map +++ b/dist/native/cooldown/deleteMemberCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteMemberCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteMemberCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"deleteMemberCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteMemberCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteMemberCooldown.js b/dist/native/cooldown/deleteMemberCooldown.js index 79e9d0c159..80321b925c 100644 --- a/dist/native/cooldown/deleteMemberCooldown.js +++ b/dist/native/cooldown/deleteMemberCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/deleteMemberCooldown.js.map b/dist/native/cooldown/deleteMemberCooldown.js.map index c82d6aa284..f73028fe44 100644 --- a/dist/native/cooldown/deleteMemberCooldown.js.map +++ b/dist/native/cooldown/deleteMemberCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteMemberCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteMemberCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;QAC7F,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteMemberCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteMemberCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;QAC7F,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteUserCooldown.d.ts.map b/dist/native/cooldown/deleteUserCooldown.d.ts.map index f4f3b7a0ef..566f501a12 100644 --- a/dist/native/cooldown/deleteUserCooldown.d.ts.map +++ b/dist/native/cooldown/deleteUserCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteUserCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteUserCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteUserCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/deleteUserCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/deleteUserCooldown.js b/dist/native/cooldown/deleteUserCooldown.js index 8955b151f0..2f15cb38b6 100644 --- a/dist/native/cooldown/deleteUserCooldown.js +++ b/dist/native/cooldown/deleteUserCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/deleteUserCooldown.js.map b/dist/native/cooldown/deleteUserCooldown.js.map index f0608489e6..f0c320a469 100644 --- a/dist/native/cooldown/deleteUserCooldown.js.map +++ b/dist/native/cooldown/deleteUserCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteUserCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteUserCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAA;QACrF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteUserCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/deleteUserCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAA;QACrF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/getChannelCooldownTime.d.ts.map b/dist/native/cooldown/getChannelCooldownTime.d.ts.map index 74956b09df..9092d0fb04 100644 --- a/dist/native/cooldown/getChannelCooldownTime.d.ts.map +++ b/dist/native/cooldown/getChannelCooldownTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getChannelCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getChannelCooldownTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file +{"version":3,"file":"getChannelCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getChannelCooldownTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file diff --git a/dist/native/cooldown/getChannelCooldownTime.js b/dist/native/cooldown/getChannelCooldownTime.js index 03939ba5bb..b75434a654 100644 --- a/dist/native/cooldown/getChannelCooldownTime.js +++ b/dist/native/cooldown/getChannelCooldownTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/getChannelCooldownTime.js.map b/dist/native/cooldown/getChannelCooldownTime.js.map index 0384131b78..a834c45f70 100644 --- a/dist/native/cooldown/getChannelCooldownTime.js.map +++ b/dist/native/cooldown/getChannelCooldownTime.js.map @@ -1 +1 @@ -{"version":3,"file":"getChannelCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getChannelCooldownTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,WAAW,EAAE,uFAAuF;IACpG,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getChannelCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getChannelCooldownTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,WAAW,EAAE,uFAAuF;IACpG,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/getCooldownTime.d.ts.map b/dist/native/cooldown/getCooldownTime.d.ts.map index 7b7ecbcad8..416008a116 100644 --- a/dist/native/cooldown/getCooldownTime.d.ts.map +++ b/dist/native/cooldown/getCooldownTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getCooldownTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"getCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getCooldownTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/getCooldownTime.js b/dist/native/cooldown/getCooldownTime.js index 560b7fefe0..4f8b73b4a5 100644 --- a/dist/native/cooldown/getCooldownTime.js +++ b/dist/native/cooldown/getCooldownTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/getCooldownTime.js.map b/dist/native/cooldown/getCooldownTime.js.map index a26df069c8..ca4a9042a9 100644 --- a/dist/native/cooldown/getCooldownTime.js.map +++ b/dist/native/cooldown/getCooldownTime.js.map @@ -1 +1 @@ -{"version":3,"file":"getCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getCooldownTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getCooldownTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/getGuildCooldownTime.d.ts.map b/dist/native/cooldown/getGuildCooldownTime.d.ts.map index d87ac93a16..9a4282df7c 100644 --- a/dist/native/cooldown/getGuildCooldownTime.d.ts.map +++ b/dist/native/cooldown/getGuildCooldownTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getGuildCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getGuildCooldownTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"getGuildCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getGuildCooldownTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/cooldown/getGuildCooldownTime.js b/dist/native/cooldown/getGuildCooldownTime.js index 36fcf61988..7b13181944 100644 --- a/dist/native/cooldown/getGuildCooldownTime.js +++ b/dist/native/cooldown/getGuildCooldownTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/getGuildCooldownTime.js.map b/dist/native/cooldown/getGuildCooldownTime.js.map index bd308d842a..860617a678 100644 --- a/dist/native/cooldown/getGuildCooldownTime.js.map +++ b/dist/native/cooldown/getGuildCooldownTime.js.map @@ -1 +1 @@ -{"version":3,"file":"getGuildCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getGuildCooldownTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qFAAqF;IAClG,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACpH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getGuildCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getGuildCooldownTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qFAAqF;IAClG,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACpH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/getMemberCooldownTime.d.ts.map b/dist/native/cooldown/getMemberCooldownTime.d.ts.map index 035145dcdb..7d4425e0af 100644 --- a/dist/native/cooldown/getMemberCooldownTime.d.ts.map +++ b/dist/native/cooldown/getMemberCooldownTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getMemberCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getMemberCooldownTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"getMemberCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getMemberCooldownTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/cooldown/getMemberCooldownTime.js b/dist/native/cooldown/getMemberCooldownTime.js index bbf2f07540..170e5d69aa 100644 --- a/dist/native/cooldown/getMemberCooldownTime.js +++ b/dist/native/cooldown/getMemberCooldownTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/getMemberCooldownTime.js.map b/dist/native/cooldown/getMemberCooldownTime.js.map index 271afa06ab..71744ff2ed 100644 --- a/dist/native/cooldown/getMemberCooldownTime.js.map +++ b/dist/native/cooldown/getMemberCooldownTime.js.map @@ -1 +1 @@ -{"version":3,"file":"getMemberCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getMemberCooldownTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8FAA8F;IAC3G,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getMemberCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getMemberCooldownTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8FAA8F;IAC3G,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/getUserCooldownTime.d.ts.map b/dist/native/cooldown/getUserCooldownTime.d.ts.map index f82d6c1381..f06a795f48 100644 --- a/dist/native/cooldown/getUserCooldownTime.d.ts.map +++ b/dist/native/cooldown/getUserCooldownTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getUserCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getUserCooldownTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"getUserCooldownTime.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/getUserCooldownTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/cooldown/getUserCooldownTime.js b/dist/native/cooldown/getUserCooldownTime.js index 77df759234..0d777dc5bf 100644 --- a/dist/native/cooldown/getUserCooldownTime.js +++ b/dist/native/cooldown/getUserCooldownTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/getUserCooldownTime.js.map b/dist/native/cooldown/getUserCooldownTime.js.map index 08eeb84e49..d62388b2b2 100644 --- a/dist/native/cooldown/getUserCooldownTime.js.map +++ b/dist/native/cooldown/getUserCooldownTime.js.map @@ -1 +1 @@ -{"version":3,"file":"getUserCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getUserCooldownTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oFAAoF;IACjG,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getUserCooldownTime.js","sourceRoot":"","sources":["../../../src/native/cooldown/getUserCooldownTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oFAAoF;IACjG,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/guildCooldown.d.ts.map b/dist/native/cooldown/guildCooldown.d.ts.map index 1d42893181..45223f2d76 100644 --- a/dist/native/cooldown/guildCooldown.d.ts.map +++ b/dist/native/cooldown/guildCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/guildCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAyDE"} \ No newline at end of file +{"version":3,"file":"guildCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/guildCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAyDE"} \ No newline at end of file diff --git a/dist/native/cooldown/guildCooldown.js b/dist/native/cooldown/guildCooldown.js index 094e3644dc..ffc0e45ba2 100644 --- a/dist/native/cooldown/guildCooldown.js +++ b/dist/native/cooldown/guildCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/guildCooldown.js.map b/dist/native/cooldown/guildCooldown.js.map index 1bdaf9603a..af53f975a8 100644 --- a/dist/native/cooldown/guildCooldown.js.map +++ b/dist/native/cooldown/guildCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"guildCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/guildCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAErF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/guildCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,OAAO,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAErF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/memberCooldown.d.ts.map b/dist/native/cooldown/memberCooldown.d.ts.map index 1c5ff85e9c..ec99c9aa63 100644 --- a/dist/native/cooldown/memberCooldown.d.ts.map +++ b/dist/native/cooldown/memberCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/memberCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAgEE"} \ No newline at end of file +{"version":3,"file":"memberCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/memberCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBAgEE"} \ No newline at end of file diff --git a/dist/native/cooldown/memberCooldown.js b/dist/native/cooldown/memberCooldown.js index 85533dfa8c..59b231f526 100644 --- a/dist/native/cooldown/memberCooldown.js +++ b/dist/native/cooldown/memberCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/memberCooldown.js.map b/dist/native/cooldown/memberCooldown.js.map index 42253f82e6..4a0f7795a8 100644 --- a/dist/native/cooldown/memberCooldown.js.map +++ b/dist/native/cooldown/memberCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"memberCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/memberCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;YAAE,OAAO,OAAO,CAAA;QAEvD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACxD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC;YAAE,OAAO,MAAM,CAAA;QAErD,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;QAE9F,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/memberCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACzD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;YAAE,OAAO,OAAO,CAAA;QAEvD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACxD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC;YAAE,OAAO,MAAM,CAAA;QAErD,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;QAE9F,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/cooldown/userCooldown.d.ts.map b/dist/native/cooldown/userCooldown.d.ts.map index f4e0b8dcf5..a558aee396 100644 --- a/dist/native/cooldown/userCooldown.d.ts.map +++ b/dist/native/cooldown/userCooldown.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/userCooldown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file +{"version":3,"file":"userCooldown.d.ts","sourceRoot":"","sources":["../../../src/native/cooldown/userCooldown.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElG,wBAsDE"} \ No newline at end of file diff --git a/dist/native/cooldown/userCooldown.js b/dist/native/cooldown/userCooldown.js index eb2cde6d49..da16408a75 100644 --- a/dist/native/cooldown/userCooldown.js +++ b/dist/native/cooldown/userCooldown.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/cooldown/userCooldown.js.map b/dist/native/cooldown/userCooldown.js.map index b62b3bafc4..02bf5a1a38 100644 --- a/dist/native/cooldown/userCooldown.js.map +++ b/dist/native/cooldown/userCooldown.js.map @@ -1 +1 @@ -{"version":3,"file":"userCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/userCooldown.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEpF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userCooldown.js","sourceRoot":"","sources":["../../../src/native/cooldown/userCooldown.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,EAAE,AAAD,EAAG,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAExE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC;YAAE,OAAO,GAAG,CAAA;QAE/C,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAI,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEpF,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAErD,IAAI,QAAQ,KAAK,CAAC,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,OAAO,CAAC;gBAAE,OAAO,OAAO,CAAA;YACvD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,KAAe,CAAA;YAC/C,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;SACrB;QAED,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,KAAe,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/createQueryParams.d.ts.map b/dist/native/crypto/createQueryParams.d.ts.map index fd1b0a0ed9..df6955b0e3 100644 --- a/dist/native/crypto/createQueryParams.d.ts.map +++ b/dist/native/crypto/createQueryParams.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createQueryParams.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/createQueryParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"createQueryParams.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/createQueryParams.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/crypto/createQueryParams.js b/dist/native/crypto/createQueryParams.js index 81e4c495e5..09d666b254 100644 --- a/dist/native/crypto/createQueryParams.js +++ b/dist/native/crypto/createQueryParams.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const node_querystring_1 = require("node:querystring"); diff --git a/dist/native/crypto/createQueryParams.js.map b/dist/native/crypto/createQueryParams.js.map index a7a41fbc58..72b4a8a7f6 100644 --- a/dist/native/crypto/createQueryParams.js.map +++ b/dist/native/crypto/createQueryParams.js.map @@ -1 +1 @@ -{"version":3,"file":"createQueryParams.js","sourceRoot":"","sources":["../../../src/native/crypto/createQueryParams.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,uDAA4C;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,wBAAwB;YAC9B,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,MAAM,GAAG,GAA2B,EAAE,CAAA;QACtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE;YAClD,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;SACjC;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,4BAAS,EAAC,GAAG,CAAC,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createQueryParams.js","sourceRoot":"","sources":["../../../src/native/crypto/createQueryParams.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,uDAA4C;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,wBAAwB;YAC9B,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,MAAM,GAAG,GAA2B,EAAE,CAAA;QACtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE;YAClD,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;SACjC;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,4BAAS,EAAC,GAAG,CAAC,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/decodeURI.d.ts.map b/dist/native/crypto/decodeURI.d.ts.map index 27b224ed03..79a8e0598a 100644 --- a/dist/native/crypto/decodeURI.d.ts.map +++ b/dist/native/crypto/decodeURI.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"decodeURI.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decodeURI.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"decodeURI.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decodeURI.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/crypto/decodeURI.js b/dist/native/crypto/decodeURI.js index 894b7af854..623750be67 100644 --- a/dist/native/crypto/decodeURI.js +++ b/dist/native/crypto/decodeURI.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/crypto/decodeURI.js.map b/dist/native/crypto/decodeURI.js.map index e13534d6c5..5ca5d58318 100644 --- a/dist/native/crypto/decodeURI.js.map +++ b/dist/native/crypto/decodeURI.js.map @@ -1 +1 @@ -{"version":3,"file":"decodeURI.js","sourceRoot":"","sources":["../../../src/native/crypto/decodeURI.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"decodeURI.js","sourceRoot":"","sources":["../../../src/native/crypto/decodeURI.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/decodeURIComponent.d.ts.map b/dist/native/crypto/decodeURIComponent.d.ts.map index 403a1c8b0c..ee23dded94 100644 --- a/dist/native/crypto/decodeURIComponent.d.ts.map +++ b/dist/native/crypto/decodeURIComponent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"decodeURIComponent.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decodeURIComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"decodeURIComponent.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decodeURIComponent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/crypto/decodeURIComponent.js b/dist/native/crypto/decodeURIComponent.js index 2ae6e66d6b..ec568a83f0 100644 --- a/dist/native/crypto/decodeURIComponent.js +++ b/dist/native/crypto/decodeURIComponent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/crypto/decodeURIComponent.js.map b/dist/native/crypto/decodeURIComponent.js.map index e79f5ae528..831af73826 100644 --- a/dist/native/crypto/decodeURIComponent.js.map +++ b/dist/native/crypto/decodeURIComponent.js.map @@ -1 +1 @@ -{"version":3,"file":"decodeURIComponent.js","sourceRoot":"","sources":["../../../src/native/crypto/decodeURIComponent.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"decodeURIComponent.js","sourceRoot":"","sources":["../../../src/native/crypto/decodeURIComponent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/decrypt.d.ts.map b/dist/native/crypto/decrypt.d.ts.map index 3fb10000ae..7fdcd5cedd 100644 --- a/dist/native/crypto/decrypt.d.ts.map +++ b/dist/native/crypto/decrypt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"decrypt.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decrypt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAS1D,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAMzD;;;;;;;;;;;;;;AAED,wBA0BE"} \ No newline at end of file +{"version":3,"file":"decrypt.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/decrypt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAS1D,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAMzD;;;;;;;;;;;;;;AAED,wBA0BE"} \ No newline at end of file diff --git a/dist/native/crypto/decrypt.js b/dist/native/crypto/decrypt.js index 1ebef599b8..836479a594 100644 --- a/dist/native/crypto/decrypt.js +++ b/dist/native/crypto/decrypt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.decrypt = void 0; const crypto_1 = require("crypto"); diff --git a/dist/native/crypto/decrypt.js.map b/dist/native/crypto/decrypt.js.map index e7599ac174..88cdf53e82 100644 --- a/dist/native/crypto/decrypt.js.map +++ b/dist/native/crypto/decrypt.js.map @@ -1 +1 @@ -{"version":3,"file":"decrypt.js","sourceRoot":"","sources":["../../../src/native/crypto/decrypt.ts"],"names":[],"mappings":";;;AAAA,mCAAyC;AACzC,iDAA0D;AAC1D,uCAAqC;AAErC;;GAEG;AAEH,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC,kCAAkC,EAAE,KAAK,CAAC,CAAA;AAEvE,SAAgB,OAAO,CAAC,IAAY,EAAE,GAAW;IAC7C,MAAM,gBAAgB,GAAG,IAAA,mBAAS,EAAC,GAAG,CAAC,CAAA;IACvC,MAAM,QAAQ,GAAG,IAAA,yBAAgB,EAAC,aAAa,EAAE,IAAI,UAAU,CAAC,gBAAgB,CAAC,EAAE,IAAI,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAA;IAC5G,IAAI,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAA;IACrD,SAAS,IAAI,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;IACpC,OAAO,SAAS,CAAA;AACpB,CAAC;AAND,0BAMC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"decrypt.js","sourceRoot":"","sources":["../../../src/native/crypto/decrypt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,mCAAyC;AACzC,iDAA0D;AAC1D,uCAAqC;AAErC;;GAEG;AAEH,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC,kCAAkC,EAAE,KAAK,CAAC,CAAA;AAEvE,SAAgB,OAAO,CAAC,IAAY,EAAE,GAAW;IAC7C,MAAM,gBAAgB,GAAG,IAAA,mBAAS,EAAC,GAAG,CAAC,CAAA;IACvC,MAAM,QAAQ,GAAG,IAAA,yBAAgB,EAAC,aAAa,EAAE,IAAI,UAAU,CAAC,gBAAgB,CAAC,EAAE,IAAI,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAA;IAC5G,IAAI,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAA;IACrD,SAAS,IAAI,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;IACpC,OAAO,SAAS,CAAA;AACpB,CAAC;AAND,0BAMC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/deflate.d.ts.map b/dist/native/crypto/deflate.d.ts.map index 5e03d628c1..ab03eaed2d 100644 --- a/dist/native/crypto/deflate.d.ts.map +++ b/dist/native/crypto/deflate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deflate.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/deflate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"deflate.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/deflate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/crypto/deflate.js b/dist/native/crypto/deflate.js index 6a646febba..05f4defdca 100644 --- a/dist/native/crypto/deflate.js +++ b/dist/native/crypto/deflate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const zlib_1 = require("zlib"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/deflate.js.map b/dist/native/crypto/deflate.js.map index b2f095e982..d3a3cc79bd 100644 --- a/dist/native/crypto/deflate.js.map +++ b/dist/native/crypto/deflate.js.map @@ -1 +1 @@ -{"version":3,"file":"deflate.js","sourceRoot":"","sources":["../../../src/native/crypto/deflate.ts"],"names":[],"mappings":";;AAAA,+BAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAW,EAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deflate.js","sourceRoot":"","sources":["../../../src/native/crypto/deflate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+BAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAW,EAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/encodeURI.d.ts.map b/dist/native/crypto/encodeURI.d.ts.map index 589b85b791..5a2c84bc51 100644 --- a/dist/native/crypto/encodeURI.d.ts.map +++ b/dist/native/crypto/encodeURI.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"encodeURI.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encodeURI.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"encodeURI.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encodeURI.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/crypto/encodeURI.js b/dist/native/crypto/encodeURI.js index a66a838845..79a7d03705 100644 --- a/dist/native/crypto/encodeURI.js +++ b/dist/native/crypto/encodeURI.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/crypto/encodeURI.js.map b/dist/native/crypto/encodeURI.js.map index 0ac5b0a90d..29a8cb30a9 100644 --- a/dist/native/crypto/encodeURI.js.map +++ b/dist/native/crypto/encodeURI.js.map @@ -1 +1 @@ -{"version":3,"file":"encodeURI.js","sourceRoot":"","sources":["../../../src/native/crypto/encodeURI.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"encodeURI.js","sourceRoot":"","sources":["../../../src/native/crypto/encodeURI.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/encodeURIComponent.d.ts.map b/dist/native/crypto/encodeURIComponent.d.ts.map index 9d4a4845c5..bef8a4b525 100644 --- a/dist/native/crypto/encodeURIComponent.d.ts.map +++ b/dist/native/crypto/encodeURIComponent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"encodeURIComponent.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encodeURIComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"encodeURIComponent.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encodeURIComponent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/crypto/encodeURIComponent.js b/dist/native/crypto/encodeURIComponent.js index 0cdbf6558b..19f857b96a 100644 --- a/dist/native/crypto/encodeURIComponent.js +++ b/dist/native/crypto/encodeURIComponent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/crypto/encodeURIComponent.js.map b/dist/native/crypto/encodeURIComponent.js.map index e741f3e1c6..8c00dd7379 100644 --- a/dist/native/crypto/encodeURIComponent.js.map +++ b/dist/native/crypto/encodeURIComponent.js.map @@ -1 +1 @@ -{"version":3,"file":"encodeURIComponent.js","sourceRoot":"","sources":["../../../src/native/crypto/encodeURIComponent.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"encodeURIComponent.js","sourceRoot":"","sources":["../../../src/native/crypto/encodeURIComponent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/encrypt.d.ts.map b/dist/native/crypto/encrypt.d.ts.map index ee84648527..91a1df5e32 100644 --- a/dist/native/crypto/encrypt.d.ts.map +++ b/dist/native/crypto/encrypt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"encrypt.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encrypt.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAQ1D,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,UAEpC;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAMzD;;;;;;;;;;;;;;AAED,wBA0BE"} \ No newline at end of file +{"version":3,"file":"encrypt.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/encrypt.ts"],"names":[],"mappings":";AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAQ1D,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,UAEpC;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAMzD;;;;;;;;;;;;;;AAED,wBA0BE"} \ No newline at end of file diff --git a/dist/native/crypto/encrypt.js b/dist/native/crypto/encrypt.js index 92ccf9d26c..7e555db49d 100644 --- a/dist/native/crypto/encrypt.js +++ b/dist/native/crypto/encrypt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.encrypt = exports.deriveKey = void 0; const crypto_1 = require("crypto"); diff --git a/dist/native/crypto/encrypt.js.map b/dist/native/crypto/encrypt.js.map index 6f253a3ced..cc0d72e7d2 100644 --- a/dist/native/crypto/encrypt.js.map +++ b/dist/native/crypto/encrypt.js.map @@ -1 +1 @@ -{"version":3,"file":"encrypt.js","sourceRoot":"","sources":["../../../src/native/crypto/encrypt.ts"],"names":[],"mappings":";;;AAAA,mCAAmD;AACnD,iDAA0D;AAE1D;;GAEG;AAEH,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC,kCAAkC,EAAE,KAAK,CAAC,CAAA;AAEvE,SAAgB,SAAS,CAAC,GAAW;IACjC,OAAO,IAAA,mBAAU,EAAC,GAAG,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AACtC,CAAC;AAFD,8BAEC;AAED,SAAgB,OAAO,CAAC,IAAY,EAAE,GAAW;IAC7C,MAAM,gBAAgB,GAAG,SAAS,CAAC,GAAG,CAAC,CAAA;IACvC,MAAM,MAAM,GAAG,IAAA,uBAAc,EAAC,aAAa,EAAE,IAAI,UAAU,CAAC,gBAAgB,CAAC,EAAE,IAAI,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAA;IACxG,IAAI,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAA;IACnD,SAAS,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IAChC,OAAO,SAAS,CAAA;AACpB,CAAC;AAND,0BAMC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"encrypt.js","sourceRoot":"","sources":["../../../src/native/crypto/encrypt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,mCAAmD;AACnD,iDAA0D;AAE1D;;GAEG;AAEH,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC,kCAAkC,EAAE,KAAK,CAAC,CAAA;AAEvE,SAAgB,SAAS,CAAC,GAAW;IACjC,OAAO,IAAA,mBAAU,EAAC,GAAG,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AACtC,CAAC;AAFD,8BAEC;AAED,SAAgB,OAAO,CAAC,IAAY,EAAE,GAAW;IAC7C,MAAM,gBAAgB,GAAG,SAAS,CAAC,GAAG,CAAC,CAAA;IACvC,MAAM,MAAM,GAAG,IAAA,uBAAc,EAAC,aAAa,EAAE,IAAI,UAAU,CAAC,gBAAgB,CAAC,EAAE,IAAI,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAA;IACxG,IAAI,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAA;IACnD,SAAS,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IAChC,OAAO,SAAS,CAAA;AACpB,CAAC;AAND,0BAMC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/inflate.d.ts.map b/dist/native/crypto/inflate.d.ts.map index 0332d2cfe5..4f1f2acce8 100644 --- a/dist/native/crypto/inflate.d.ts.map +++ b/dist/native/crypto/inflate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inflate.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/inflate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"inflate.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/inflate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/crypto/inflate.js b/dist/native/crypto/inflate.js index 8c09d9128a..5f26ced47c 100644 --- a/dist/native/crypto/inflate.js +++ b/dist/native/crypto/inflate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const zlib_1 = require("zlib"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/inflate.js.map b/dist/native/crypto/inflate.js.map index 544e61a792..a1a1e3c81f 100644 --- a/dist/native/crypto/inflate.js.map +++ b/dist/native/crypto/inflate.js.map @@ -1 +1 @@ -{"version":3,"file":"inflate.js","sourceRoot":"","sources":["../../../src/native/crypto/inflate.ts"],"names":[],"mappings":";;AAAA,+BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAW,EAAC,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inflate.js","sourceRoot":"","sources":["../../../src/native/crypto/inflate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAW,EAAC,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/md5.d.ts.map b/dist/native/crypto/md5.d.ts.map index 699dead416..8654375fdf 100644 --- a/dist/native/crypto/md5.d.ts.map +++ b/dist/native/crypto/md5.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"md5.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/md5.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"md5.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/md5.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/crypto/md5.js b/dist/native/crypto/md5.js index fa758570ec..8841fa0f76 100644 --- a/dist/native/crypto/md5.js +++ b/dist/native/crypto/md5.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const crypto_1 = require("crypto"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/md5.js.map b/dist/native/crypto/md5.js.map index 3ab5889232..7b3c256b71 100644 --- a/dist/native/crypto/md5.js.map +++ b/dist/native/crypto/md5.js.map @@ -1 +1 @@ -{"version":3,"file":"md5.js","sourceRoot":"","sources":["../../../src/native/crypto/md5.ts"],"names":[],"mappings":";;AAAA,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,GAAG,GAAG,IAAA,mBAAU,EAAC,KAAK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QAC/F,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"md5.js","sourceRoot":"","sources":["../../../src/native/crypto/md5.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,GAAG,GAAG,IAAA,mBAAU,EAAC,KAAK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QAC/F,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/randomBytes.d.ts.map b/dist/native/crypto/randomBytes.d.ts.map index e67c723be6..c879822bf5 100644 --- a/dist/native/crypto/randomBytes.d.ts.map +++ b/dist/native/crypto/randomBytes.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomBytes.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/randomBytes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"randomBytes.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/randomBytes.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/crypto/randomBytes.js b/dist/native/crypto/randomBytes.js index 0e994e439a..b7e94081b0 100644 --- a/dist/native/crypto/randomBytes.js +++ b/dist/native/crypto/randomBytes.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const crypto_1 = require("crypto"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/randomBytes.js.map b/dist/native/crypto/randomBytes.js.map index c52fd55cae..344cc62e4c 100644 --- a/dist/native/crypto/randomBytes.js.map +++ b/dist/native/crypto/randomBytes.js.map @@ -1 +1 @@ -{"version":3,"file":"randomBytes.js","sourceRoot":"","sources":["../../../src/native/crypto/randomBytes.ts"],"names":[],"mappings":";;AAAA,mCAAsE;AACtE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAW,EAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomBytes.js","sourceRoot":"","sources":["../../../src/native/crypto/randomBytes.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAAsE;AACtE,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAW,EAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/sha256.d.ts.map b/dist/native/crypto/sha256.d.ts.map index 5d6a8f4eb0..d37eb6a0ea 100644 --- a/dist/native/crypto/sha256.d.ts.map +++ b/dist/native/crypto/sha256.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sha256.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/sha256.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"sha256.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/sha256.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/crypto/sha256.js b/dist/native/crypto/sha256.js index 6d4b1c3c00..4e979493e7 100644 --- a/dist/native/crypto/sha256.js +++ b/dist/native/crypto/sha256.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const crypto_1 = require("crypto"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/sha256.js.map b/dist/native/crypto/sha256.js.map index 0a19ddd65a..0ce24b48f2 100644 --- a/dist/native/crypto/sha256.js.map +++ b/dist/native/crypto/sha256.js.map @@ -1 +1 @@ -{"version":3,"file":"sha256.js","sourceRoot":"","sources":["../../../src/native/crypto/sha256.ts"],"names":[],"mappings":";;AAAA,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,MAAM,GAAG,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QACrG,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sha256.js","sourceRoot":"","sources":["../../../src/native/crypto/sha256.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,MAAM,GAAG,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QACrG,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/crypto/sha512.d.ts.map b/dist/native/crypto/sha512.d.ts.map index 298256c7bc..94d5c5a9df 100644 --- a/dist/native/crypto/sha512.d.ts.map +++ b/dist/native/crypto/sha512.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sha512.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/sha512.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"sha512.d.ts","sourceRoot":"","sources":["../../../src/native/crypto/sha512.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/crypto/sha512.js b/dist/native/crypto/sha512.js index f7ccdc6e56..f1c4b50c84 100644 --- a/dist/native/crypto/sha512.js +++ b/dist/native/crypto/sha512.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const crypto_1 = require("crypto"); const structures_1 = require("../../structures"); diff --git a/dist/native/crypto/sha512.js.map b/dist/native/crypto/sha512.js.map index 7292b2ec71..d8f4eb9536 100644 --- a/dist/native/crypto/sha512.js.map +++ b/dist/native/crypto/sha512.js.map @@ -1 +1 @@ -{"version":3,"file":"sha512.js","sourceRoot":"","sources":["../../../src/native/crypto/sha512.ts"],"names":[],"mappings":";;AAAA,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,MAAM,GAAG,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QACrG,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sha512.js","sourceRoot":"","sources":["../../../src/native/crypto/sha512.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,MAAM,MAAM,GAAG,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,KAAK,CAAmB,CAAC,CAAA;QACrG,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/addField.d.ts.map b/dist/native/embed/addField.d.ts.map index 7ac43a794a..c4a9b94ab5 100644 --- a/dist/native/embed/addField.d.ts.map +++ b/dist/native/embed/addField.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/addField.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2CE"} \ No newline at end of file +{"version":3,"file":"addField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/addField.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2CE"} \ No newline at end of file diff --git a/dist/native/embed/addField.js b/dist/native/embed/addField.js index c965a626b0..dd3c8f6b21 100644 --- a/dist/native/embed/addField.js +++ b/dist/native/embed/addField.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/addField.js.map b/dist/native/embed/addField.js.map index 2265060344..8d24263943 100644 --- a/dist/native/embed/addField.js.map +++ b/dist/native/embed/addField.js.map @@ -1 +1 @@ -{"version":3,"file":"addField.js","sourceRoot":"","sources":["../../../src/native/embed/addField.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACrC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,KAAK;YACL,MAAM,EAAE,MAAM,IAAI,KAAK;SAC1B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addField.js","sourceRoot":"","sources":["../../../src/native/embed/addField.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACrC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,KAAK;YACL,MAAM,EAAE,MAAM,IAAI,KAAK;SAC1B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/author.d.ts.map b/dist/native/embed/author.d.ts.map index 7afc49d622..7d938a318f 100644 --- a/dist/native/embed/author.d.ts.map +++ b/dist/native/embed/author.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"author.d.ts","sourceRoot":"","sources":["../../../src/native/embed/author.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file +{"version":3,"file":"author.d.ts","sourceRoot":"","sources":["../../../src/native/embed/author.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file diff --git a/dist/native/embed/author.js b/dist/native/embed/author.js index e075327df5..4c19638fb4 100644 --- a/dist/native/embed/author.js +++ b/dist/native/embed/author.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/author.js.map b/dist/native/embed/author.js.map index 07481a6390..10b2c2d284 100644 --- a/dist/native/embed/author.js.map +++ b/dist/native/embed/author.js.map @@ -1 +1 @@ -{"version":3,"file":"author.js","sourceRoot":"","sources":["../../../src/native/embed/author.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,CAAC;QACvC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,OAAO,EAAE,IAAI,IAAI,SAAS;YAC1B,GAAG,EAAE,SAAS,IAAI,SAAS;SAC9B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"author.js","sourceRoot":"","sources":["../../../src/native/embed/author.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,CAAC;QACvC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,OAAO,EAAE,IAAI,IAAI,SAAS;YAC1B,GAAG,EAAE,SAAS,IAAI,SAAS;SAC9B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/color.d.ts.map b/dist/native/embed/color.d.ts.map index 4ab5e52b12..aa9e887dce 100644 --- a/dist/native/embed/color.d.ts.map +++ b/dist/native/embed/color.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"color.d.ts","sourceRoot":"","sources":["../../../src/native/embed/color.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"color.d.ts","sourceRoot":"","sources":["../../../src/native/embed/color.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/embed/color.js b/dist/native/embed/color.js index 75f2f7f90f..910927d2fb 100644 --- a/dist/native/embed/color.js +++ b/dist/native/embed/color.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/embed/color.js.map b/dist/native/embed/color.js.map index c468f5907b..b7e726b714 100644 --- a/dist/native/embed/color.js.map +++ b/dist/native/embed/color.js.map @@ -1 +1 @@ -{"version":3,"file":"color.js","sourceRoot":"","sources":["../../../src/native/embed/color.ts"],"names":[],"mappings":";;AAAA,2CAAoD;AACpD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,mBAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"color.js","sourceRoot":"","sources":["../../../src/native/embed/color.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoD;AACpD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,mBAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/deleteField.d.ts.map b/dist/native/embed/deleteField.d.ts.map index e517b53e43..12be4e1540 100644 --- a/dist/native/embed/deleteField.d.ts.map +++ b/dist/native/embed/deleteField.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/deleteField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"deleteField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/deleteField.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/embed/deleteField.js b/dist/native/embed/deleteField.js index 6e98f75798..eac65857a0 100644 --- a/dist/native/embed/deleteField.js +++ b/dist/native/embed/deleteField.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/deleteField.js.map b/dist/native/embed/deleteField.js.map index 5babd08d9a..558b2a5ae0 100644 --- a/dist/native/embed/deleteField.js.map +++ b/dist/native/embed/deleteField.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteField.js","sourceRoot":"","sources":["../../../src/native/embed/deleteField.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,EAAE,KAAK,CAAC;QAC5B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,CAAC,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteField.js","sourceRoot":"","sources":["../../../src/native/embed/deleteField.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,EAAE,KAAK,CAAC;QAC5B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,CAAC,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/description.d.ts.map b/dist/native/embed/description.d.ts.map index 1fd06d580b..9beb876417 100644 --- a/dist/native/embed/description.d.ts.map +++ b/dist/native/embed/description.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"description.d.ts","sourceRoot":"","sources":["../../../src/native/embed/description.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"description.d.ts","sourceRoot":"","sources":["../../../src/native/embed/description.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/embed/description.js b/dist/native/embed/description.js index b2bf712b24..129d49a8c9 100644 --- a/dist/native/embed/description.js +++ b/dist/native/embed/description.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/description.js.map b/dist/native/embed/description.js.map index 44fc09901a..f3ff948e3b 100644 --- a/dist/native/embed/description.js.map +++ b/dist/native/embed/description.js.map @@ -1 +1 @@ -{"version":3,"file":"description.js","sourceRoot":"","sources":["../../../src/native/embed/description.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,KAAK,CAAC;QAC7B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,IAAI,IAAI,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"description.js","sourceRoot":"","sources":["../../../src/native/embed/description.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,KAAK,CAAC;QAC7B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,IAAI,IAAI,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/editField.d.ts.map b/dist/native/embed/editField.d.ts.map index 3023ce09e6..f71990a266 100644 --- a/dist/native/embed/editField.d.ts.map +++ b/dist/native/embed/editField.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/editField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqDE"} \ No newline at end of file +{"version":3,"file":"editField.d.ts","sourceRoot":"","sources":["../../../src/native/embed/editField.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqDE"} \ No newline at end of file diff --git a/dist/native/embed/editField.js b/dist/native/embed/editField.js index 700b8bb756..559ec0d2ec 100644 --- a/dist/native/embed/editField.js +++ b/dist/native/embed/editField.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/editField.js.map b/dist/native/embed/editField.js.map index f15611158f..553a97693a 100644 --- a/dist/native/embed/editField.js.map +++ b/dist/native/embed/editField.js.map @@ -1 +1 @@ -{"version":3,"file":"editField.js","sourceRoot":"","sources":["../../../src/native/embed/editField.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACjD,MAAM,KAAK,GAAG,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,UAAU,CAAC,CAAA;QACvE,IAAI,CAAC,KAAK;YACN,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEzB,IAAI,IAAI;YACJ,KAAK,CAAC,IAAI,GAAG,IAAI,CAAA;QACrB,IAAI,KAAK;YACL,KAAK,CAAC,KAAK,GAAG,KAAK,CAAA;QACvB,IAAI,MAAM,KAAK,IAAI;YACf,KAAK,CAAC,MAAM,GAAG,MAAM,CAAA;QAEzB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editField.js","sourceRoot":"","sources":["../../../src/native/embed/editField.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;QACjD,MAAM,KAAK,GAAG,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,UAAU,CAAC,CAAA;QACvE,IAAI,CAAC,KAAK;YACN,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEzB,IAAI,IAAI;YACJ,KAAK,CAAC,IAAI,GAAG,IAAI,CAAA;QACrB,IAAI,KAAK;YACL,KAAK,CAAC,KAAK,GAAG,KAAK,CAAA;QACvB,IAAI,MAAM,KAAK,IAAI;YACf,KAAK,CAAC,MAAM,GAAG,MAAM,CAAA;QAEzB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/footer.d.ts.map b/dist/native/embed/footer.d.ts.map index e17fc0f26f..1f8c983fe6 100644 --- a/dist/native/embed/footer.d.ts.map +++ b/dist/native/embed/footer.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../../src/native/embed/footer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../../src/native/embed/footer.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/embed/footer.js b/dist/native/embed/footer.js index 88c0cfe13d..50e347ee8e 100644 --- a/dist/native/embed/footer.js +++ b/dist/native/embed/footer.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/footer.js.map b/dist/native/embed/footer.js.map index 04424709ba..7a5a94efcb 100644 --- a/dist/native/embed/footer.js.map +++ b/dist/native/embed/footer.js.map @@ -1 +1 @@ -{"version":3,"file":"footer.js","sourceRoot":"","sources":["../../../src/native/embed/footer.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC;QAC/B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,OAAO,EAAE,OAAO,IAAI,SAAS;SAChC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"footer.js","sourceRoot":"","sources":["../../../src/native/embed/footer.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC;QAC/B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtC,IAAI;YACJ,OAAO,EAAE,OAAO,IAAI,SAAS;SAChC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/image.d.ts.map b/dist/native/embed/image.d.ts.map index da64558f55..8f63c7458b 100644 --- a/dist/native/embed/image.d.ts.map +++ b/dist/native/embed/image.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/native/embed/image.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/native/embed/image.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/embed/image.js b/dist/native/embed/image.js index f9984411a0..cf2692fb18 100644 --- a/dist/native/embed/image.js +++ b/dist/native/embed/image.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/image.js.map b/dist/native/embed/image.js.map index 564ab84cdc..c5f54dc716 100644 --- a/dist/native/embed/image.js.map +++ b/dist/native/embed/image.js.map @@ -1 +1 @@ -{"version":3,"file":"image.js","sourceRoot":"","sources":["../../../src/native/embed/image.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"image.js","sourceRoot":"","sources":["../../../src/native/embed/image.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/thumbnail.d.ts.map b/dist/native/embed/thumbnail.d.ts.map index a8d615f94d..fe8e5cbd9e 100644 --- a/dist/native/embed/thumbnail.d.ts.map +++ b/dist/native/embed/thumbnail.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"thumbnail.d.ts","sourceRoot":"","sources":["../../../src/native/embed/thumbnail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"thumbnail.d.ts","sourceRoot":"","sources":["../../../src/native/embed/thumbnail.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/embed/thumbnail.js b/dist/native/embed/thumbnail.js index 5a97ff4ef1..ed5af28ca9 100644 --- a/dist/native/embed/thumbnail.js +++ b/dist/native/embed/thumbnail.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/thumbnail.js.map b/dist/native/embed/thumbnail.js.map index 13371ba9bc..74685a56da 100644 --- a/dist/native/embed/thumbnail.js.map +++ b/dist/native/embed/thumbnail.js.map @@ -1 +1 @@ -{"version":3,"file":"thumbnail.js","sourceRoot":"","sources":["../../../src/native/embed/thumbnail.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;QAC3B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,CAAA;QAC/D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"thumbnail.js","sourceRoot":"","sources":["../../../src/native/embed/thumbnail.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;QAC3B,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,CAAA;QAC/D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/timestamp.d.ts.map b/dist/native/embed/timestamp.d.ts.map index 2552de7515..7503016270 100644 --- a/dist/native/embed/timestamp.d.ts.map +++ b/dist/native/embed/timestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"timestamp.d.ts","sourceRoot":"","sources":["../../../src/native/embed/timestamp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"timestamp.d.ts","sourceRoot":"","sources":["../../../src/native/embed/timestamp.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/embed/timestamp.js b/dist/native/embed/timestamp.js index 9f21cf1ee7..428ca514e0 100644 --- a/dist/native/embed/timestamp.js +++ b/dist/native/embed/timestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/timestamp.js.map b/dist/native/embed/timestamp.js.map index 04a1c7cb32..4805f1edfe 100644 --- a/dist/native/embed/timestamp.js.map +++ b/dist/native/embed/timestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"timestamp.js","sourceRoot":"","sources":["../../../src/native/embed/timestamp.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;QAC3B,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,EAAE,CAAA;YACrC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"timestamp.js","sourceRoot":"","sources":["../../../src/native/embed/timestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;QAC3B,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,EAAE,CAAA;YACrC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/embed/title.d.ts.map b/dist/native/embed/title.d.ts.map index f4edf3b71b..a06b4a65a8 100644 --- a/dist/native/embed/title.d.ts.map +++ b/dist/native/embed/title.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"title.d.ts","sourceRoot":"","sources":["../../../src/native/embed/title.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"title.d.ts","sourceRoot":"","sources":["../../../src/native/embed/title.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/embed/title.js b/dist/native/embed/title.js index 139f162044..42c7d6c2ca 100644 --- a/dist/native/embed/title.js +++ b/dist/native/embed/title.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/embed/title.js.map b/dist/native/embed/title.js.map index 4a927f7d3b..a1abf16023 100644 --- a/dist/native/embed/title.js.map +++ b/dist/native/embed/title.js.map @@ -1 +1 @@ -{"version":3,"file":"title.js","sourceRoot":"","sources":["../../../src/native/embed/title.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,SAAS,EAAE,KAAK,CAAC;QAClC,MAAM,KAAK,GAAG,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACrE,IAAI,SAAS;YAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;QACtC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"title.js","sourceRoot":"","sources":["../../../src/native/embed/title.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,SAAS,EAAE,KAAK,CAAC;QAClC,MAAM,KAAK,GAAG,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,CAAA;QACrE,IAAI,SAAS;YAAE,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;QACtC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/addApplicationEmoji.d.ts.map b/dist/native/emoji/addApplicationEmoji.d.ts.map index 5ba5cf47cf..0c968313d2 100644 --- a/dist/native/emoji/addApplicationEmoji.d.ts.map +++ b/dist/native/emoji/addApplicationEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/addApplicationEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"addApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/addApplicationEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/emoji/addApplicationEmoji.js b/dist/native/emoji/addApplicationEmoji.js index 746dfceda4..cea82273d4 100644 --- a/dist/native/emoji/addApplicationEmoji.js +++ b/dist/native/emoji/addApplicationEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/addApplicationEmoji.js.map b/dist/native/emoji/addApplicationEmoji.js.map index 1d7fc7f9d6..3bbd1a7f6e 100644 --- a/dist/native/emoji/addApplicationEmoji.js.map +++ b/dist/native/emoji/addApplicationEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"addApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/addApplicationEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,aAAa,CAAC;QAC1C,aAAa,KAAK,IAAI,CAAA;QACtB,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC;YACrD,IAAI,EAAE,IAAI;YACV,UAAU,EAAE,IAAI;SACnB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/addApplicationEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,aAAa,CAAC;QAC1C,aAAa,KAAK,IAAI,CAAA;QACtB,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC;YACrD,IAAI,EAAE,IAAI;YACV,UAAU,EAAE,IAAI;SACnB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/addEmoji.d.ts.map b/dist/native/emoji/addEmoji.d.ts.map index 2fdd37aab1..0b3277795b 100644 --- a/dist/native/emoji/addEmoji.d.ts.map +++ b/dist/native/emoji/addEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/addEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file +{"version":3,"file":"addEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/addEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file diff --git a/dist/native/emoji/addEmoji.js b/dist/native/emoji/addEmoji.js index 1c93370ae3..8856f039c9 100644 --- a/dist/native/emoji/addEmoji.js +++ b/dist/native/emoji/addEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/addEmoji.js.map b/dist/native/emoji/addEmoji.js.map index b85e2a7e48..42abaad2b9 100644 --- a/dist/native/emoji/addEmoji.js.map +++ b/dist/native/emoji/addEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"addEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/addEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,CAAC;QACxD,MAAM,EAAE,GAAG,MAAM,KAAK,CAAC,MAAM;aACxB,MAAM,CAAC;YACJ,UAAU,EAAE,IAAI;YAChB,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/addEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,CAAC;QACxD,MAAM,EAAE,GAAG,MAAM,KAAK,CAAC,MAAM;aACxB,MAAM,CAAC;YACJ,UAAU,EAAE,IAAI;YAChB,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/deleteApplicationEmojis.d.ts.map b/dist/native/emoji/deleteApplicationEmojis.d.ts.map index 828efce663..0828b072a1 100644 --- a/dist/native/emoji/deleteApplicationEmojis.d.ts.map +++ b/dist/native/emoji/deleteApplicationEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteApplicationEmojis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"deleteApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteApplicationEmojis.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/emoji/deleteApplicationEmojis.js b/dist/native/emoji/deleteApplicationEmojis.js index c22fc0030c..a210596ed8 100644 --- a/dist/native/emoji/deleteApplicationEmojis.js +++ b/dist/native/emoji/deleteApplicationEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/deleteApplicationEmojis.js.map b/dist/native/emoji/deleteApplicationEmojis.js.map index 29199287eb..c50690b78f 100644 --- a/dist/native/emoji/deleteApplicationEmojis.js.map +++ b/dist/native/emoji/deleteApplicationEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteApplicationEmojis.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,gBAAgB;SACjC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACvB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteApplicationEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,gBAAgB;SACjC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACvB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/deleteEmojiMessageReactions.d.ts.map b/dist/native/emoji/deleteEmojiMessageReactions.d.ts.map index 3f8740a112..1528ad76b7 100644 --- a/dist/native/emoji/deleteEmojiMessageReactions.d.ts.map +++ b/dist/native/emoji/deleteEmojiMessageReactions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteEmojiMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojiMessageReactions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,gBAAgB;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file +{"version":3,"file":"deleteEmojiMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojiMessageReactions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,gBAAgB;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file diff --git a/dist/native/emoji/deleteEmojiMessageReactions.js b/dist/native/emoji/deleteEmojiMessageReactions.js index f866d4bc8e..e4966f6d31 100644 --- a/dist/native/emoji/deleteEmojiMessageReactions.js +++ b/dist/native/emoji/deleteEmojiMessageReactions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/deleteEmojiMessageReactions.js.map b/dist/native/emoji/deleteEmojiMessageReactions.js.map index ba76722575..6ea41fd048 100644 --- a/dist/native/emoji/deleteEmojiMessageReactions.js.map +++ b/dist/native/emoji/deleteEmojiMessageReactions.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteEmojiMessageReactions.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojiMessageReactions.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oGAAoG;IACjH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,MAAM,CAAC;QAC3B,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;YACxB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteEmojiMessageReactions.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojiMessageReactions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oGAAoG;IACjH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,MAAM,CAAC;QAC3B,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;YACxB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpD,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/deleteEmojis.d.ts.map b/dist/native/emoji/deleteEmojis.d.ts.map index efad4a262c..4665b2f26e 100644 --- a/dist/native/emoji/deleteEmojis.d.ts.map +++ b/dist/native/emoji/deleteEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"deleteEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojis.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/emoji/deleteEmojis.js b/dist/native/emoji/deleteEmojis.js index de3d3cfd86..dfa7d2ca1d 100644 --- a/dist/native/emoji/deleteEmojis.js +++ b/dist/native/emoji/deleteEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/deleteEmojis.js.map b/dist/native/emoji/deleteEmojis.js.map index ada72a6fcb..4e61ebc3a6 100644 --- a/dist/native/emoji/deleteEmojis.js.map +++ b/dist/native/emoji/deleteEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojis.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,wEAAwE;IACrF,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/deleteEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,wEAAwE;IACrF,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/editApplicationEmoji.d.ts.map b/dist/native/emoji/editApplicationEmoji.d.ts.map index 3c2b563358..1a0e2a491a 100644 --- a/dist/native/emoji/editApplicationEmoji.d.ts.map +++ b/dist/native/emoji/editApplicationEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/editApplicationEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"editApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/editApplicationEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/emoji/editApplicationEmoji.js b/dist/native/emoji/editApplicationEmoji.js index 56271fc4e8..926dbab445 100644 --- a/dist/native/emoji/editApplicationEmoji.js +++ b/dist/native/emoji/editApplicationEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/editApplicationEmoji.js.map b/dist/native/emoji/editApplicationEmoji.js.map index a2a4336858..36a9354407 100644 --- a/dist/native/emoji/editApplicationEmoji.js.map +++ b/dist/native/emoji/editApplicationEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"editApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/editApplicationEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,gBAAgB;SACjC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/editApplicationEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,gBAAgB;SACjC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/editEmoji.d.ts.map b/dist/native/emoji/editEmoji.d.ts.map index 3b2f8d9948..4a05fa9ed1 100644 --- a/dist/native/emoji/editEmoji.d.ts.map +++ b/dist/native/emoji/editEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/editEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file +{"version":3,"file":"editEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/editEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file diff --git a/dist/native/emoji/editEmoji.js b/dist/native/emoji/editEmoji.js index ef4be0c2a3..1ad35af20c 100644 --- a/dist/native/emoji/editEmoji.js +++ b/dist/native/emoji/editEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/editEmoji.js.map b/dist/native/emoji/editEmoji.js.map index ced846316d..181bbe20da 100644 --- a/dist/native/emoji/editEmoji.js.map +++ b/dist/native/emoji/editEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"editEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/editEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,KAAK;aACT,IAAI,CAAC;YACF,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,KAAK,EAAE,KAAK,IAAI,SAAS;SAC5B,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CACnB,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editEmoji.js","sourceRoot":"","sources":["../../../src/native/emoji/editEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,KAAK;aACT,IAAI,CAAC;YACF,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,KAAK,EAAE,KAAK,IAAI,SAAS;SAC5B,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CACnB,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emoji.d.ts.map b/dist/native/emoji/emoji.d.ts.map index 47c4159b30..dfdc47971e 100644 --- a/dist/native/emoji/emoji.d.ts.map +++ b/dist/native/emoji/emoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emoji.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emoji.js b/dist/native/emoji/emoji.js index edfece3545..cb84374449 100644 --- a/dist/native/emoji/emoji.js +++ b/dist/native/emoji/emoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/emoji.js.map b/dist/native/emoji/emoji.js.map index 599cac78a1..5323f8d103 100644 --- a/dist/native/emoji/emoji.js.map +++ b/dist/native/emoji/emoji.js.map @@ -1 +1 @@ -{"version":3,"file":"emoji.js","sourceRoot":"","sources":["../../../src/native/emoji/emoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emoji.js","sourceRoot":"","sources":["../../../src/native/emoji/emoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiAnimated.d.ts.map b/dist/native/emoji/emojiAnimated.d.ts.map index be0c48835b..6d67a812a6 100644 --- a/dist/native/emoji/emojiAnimated.d.ts.map +++ b/dist/native/emoji/emojiAnimated.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiAnimated.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiAnimated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiAnimated.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiAnimated.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiAnimated.js b/dist/native/emoji/emojiAnimated.js index 15c96e8dc6..dd0cca39f0 100644 --- a/dist/native/emoji/emojiAnimated.js +++ b/dist/native/emoji/emojiAnimated.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its animation state", + description: "The emoji to return its animation state", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiAnimated.js.map b/dist/native/emoji/emojiAnimated.js.map index 518690c660..c57929b588 100644 --- a/dist/native/emoji/emojiAnimated.js.map +++ b/dist/native/emoji/emojiAnimated.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiAnimated.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiAnimated.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiAnimated.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiAnimated.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiAuthorID.d.ts b/dist/native/emoji/emojiAuthorID.d.ts new file mode 100644 index 0000000000..39a363c985 --- /dev/null +++ b/dist/native/emoji/emojiAuthorID.d.ts @@ -0,0 +1,10 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Emoji; +}], true>; +export default _default; +//# sourceMappingURL=emojiAuthorID.d.ts.map \ No newline at end of file diff --git a/dist/native/emoji/emojiAuthorID.d.ts.map b/dist/native/emoji/emojiAuthorID.d.ts.map new file mode 100644 index 0000000000..d06e8d539d --- /dev/null +++ b/dist/native/emoji/emojiAuthorID.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"emojiAuthorID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiAuthorID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiAuthorID.js b/dist/native/emoji/emojiAuthorID.js new file mode 100644 index 0000000000..a3beb75343 --- /dev/null +++ b/dist/native/emoji/emojiAuthorID.js @@ -0,0 +1,29 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$emojiAuthorID", + version: "2.6.0", + description: "Returns the author id of an emoji", + brackets: false, + unwrap: true, + args: [ + { + name: "emoji ID", + description: "The emoji to return its author", + rest: false, + required: true, + type: structures_1.ArgType.Emoji, + }, + ], + output: structures_1.ArgType.User, + execute(ctx, [emoji]) { + emoji ??= ctx.emoji; + return this.success(emoji && "author" in emoji ? emoji.author?.id : undefined); + }, +}); +//# sourceMappingURL=emojiAuthorID.js.map \ No newline at end of file diff --git a/dist/native/emoji/emojiAuthorID.js.map b/dist/native/emoji/emojiAuthorID.js.map new file mode 100644 index 0000000000..841be8c754 --- /dev/null +++ b/dist/native/emoji/emojiAuthorID.js.map @@ -0,0 +1 @@ +{"version":3,"file":"emojiAuthorID.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiAuthorID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,QAAQ,IAAI,KAAK,CAAC,CAAC,CAAE,KAAK,CAAC,MAAsB,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiCount.d.ts.map b/dist/native/emoji/emojiCount.d.ts.map index 11a6439f4f..554120ccbc 100644 --- a/dist/native/emoji/emojiCount.d.ts.map +++ b/dist/native/emoji/emojiCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiCount.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,SAAS;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB;;;;;;;;;AAED,wBA4BE"} \ No newline at end of file +{"version":3,"file":"emojiCount.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,SAAS;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB;;;;;;;;;AAED,wBA4BE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiCount.js b/dist/native/emoji/emojiCount.js index d187a40fc8..dda28325ba 100644 --- a/dist/native/emoji/emojiCount.js +++ b/dist/native/emoji/emojiCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.EmojiType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/emoji/emojiCount.js.map b/dist/native/emoji/emojiCount.js.map index d31bf0b577..3c00b48a33 100644 --- a/dist/native/emoji/emojiCount.js.map +++ b/dist/native/emoji/emojiCount.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiCount.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiCount.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,SAGX;AAHD,WAAY,SAAS;IACjB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;AACzB,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAA;QAEtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAC5D,IAAI,KAAK,SAAS,CAAC,MAAM;YACrB,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ;YACjB,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC,QAAQ;gBACzB,CAAC,CAAC,KAAK,CAAC,QAAQ;gBAChB,CAAC,CAAE,IAAc,CAC5B,CAAC,IAAI,CAAC,CAAA;IACX,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiCount.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,SAGX;AAHD,WAAY,SAAS;IACjB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;AACzB,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAA;QAEtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAC5D,IAAI,KAAK,SAAS,CAAC,MAAM;YACrB,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ;YACjB,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC,QAAQ;gBACzB,CAAC,CAAC,KAAK,CAAC,QAAQ;gBAChB,CAAC,CAAE,IAAc,CAC5B,CAAC,IAAI,CAAC,CAAA;IACX,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiCreatedAt.d.ts.map b/dist/native/emoji/emojiCreatedAt.d.ts.map index 7174fdbc7b..83a4679fed 100644 --- a/dist/native/emoji/emojiCreatedAt.d.ts.map +++ b/dist/native/emoji/emojiCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiCreatedAt.js b/dist/native/emoji/emojiCreatedAt.js index 8100ab41af..ac3d7ed324 100644 --- a/dist/native/emoji/emojiCreatedAt.js +++ b/dist/native/emoji/emojiCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its creation timestamp", + description: "The emoji to return its creation timestamp", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiCreatedAt.js.map b/dist/native/emoji/emojiCreatedAt.js.map index f37fe4bcc5..63c109c975 100644 --- a/dist/native/emoji/emojiCreatedAt.js.map +++ b/dist/native/emoji/emojiCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiCreatedAt.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiCreatedAt.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiExists.d.ts.map b/dist/native/emoji/emojiExists.d.ts.map index 05cb6b5f11..8d60ece0b0 100644 --- a/dist/native/emoji/emojiExists.d.ts.map +++ b/dist/native/emoji/emojiExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiExists.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiExists.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiExists.js b/dist/native/emoji/emojiExists.js index e00ce213d8..e8b4d32051 100644 --- a/dist/native/emoji/emojiExists.js +++ b/dist/native/emoji/emojiExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji to check", + description: "The emoji id to check", rest: false, required: true, type: structures_1.ArgType.String, diff --git a/dist/native/emoji/emojiExists.js.map b/dist/native/emoji/emojiExists.js.map index 76acd9979e..7bba2633d5 100644 --- a/dist/native/emoji/emojiExists.js.map +++ b/dist/native/emoji/emojiExists.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiExists.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,CAAA;IAC/K,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiExists.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,CAAA;IAC/K,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiGuildID.d.ts.map b/dist/native/emoji/emojiGuildID.d.ts.map index 875c08184d..b6fc5aef41 100644 --- a/dist/native/emoji/emojiGuildID.d.ts.map +++ b/dist/native/emoji/emojiGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiGuildID.js b/dist/native/emoji/emojiGuildID.js index edfb20a822..35e2bfd543 100644 --- a/dist/native/emoji/emojiGuildID.js +++ b/dist/native/emoji/emojiGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its guild id", + description: "The emoji to return its guild id", rest: false, type: structures_1.ArgType.GuildEmoji, required: true, diff --git a/dist/native/emoji/emojiGuildID.js.map b/dist/native/emoji/emojiGuildID.js.map index e9674a6157..81442cbab9 100644 --- a/dist/native/emoji/emojiGuildID.js.map +++ b/dist/native/emoji/emojiGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiGuildID.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiGuildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiGuildID.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiID.d.ts.map b/dist/native/emoji/emojiID.d.ts.map index 98fc0e6240..2a31a4ea64 100644 --- a/dist/native/emoji/emojiID.d.ts.map +++ b/dist/native/emoji/emojiID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"emojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiID.js b/dist/native/emoji/emojiID.js index 021ddadea2..98a7fc8fd5 100644 --- a/dist/native/emoji/emojiID.js +++ b/dist/native/emoji/emojiID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/emojiID.js.map b/dist/native/emoji/emojiID.js.map index b1169e0d2f..34726a64f0 100644 --- a/dist/native/emoji/emojiID.js.map +++ b/dist/native/emoji/emojiID.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,EAAE,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,EAAE,EAAE,CAAC,CAAA;SAChK;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,EAAE,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,EAAE,EAAE,CAAC,CAAA;SAChK;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiIDs.d.ts.map b/dist/native/emoji/emojiIDs.d.ts.map index 4229b29b16..734b16c195 100644 --- a/dist/native/emoji/emojiIDs.d.ts.map +++ b/dist/native/emoji/emojiIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiIDs.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file +{"version":3,"file":"emojiIDs.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiIDs.js b/dist/native/emoji/emojiIDs.js index 51898c6a72..b8a763ac57 100644 --- a/dist/native/emoji/emojiIDs.js +++ b/dist/native/emoji/emojiIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/emoji/emojiIDs.js.map b/dist/native/emoji/emojiIDs.js.map index 2fd8b92968..f2d177c3f3 100644 --- a/dist/native/emoji/emojiIDs.js.map +++ b/dist/native/emoji/emojiIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiIDs.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiIDs.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiIdentifier.d.ts.map b/dist/native/emoji/emojiIdentifier.d.ts.map index bd0d5ad3f5..0d63124514 100644 --- a/dist/native/emoji/emojiIdentifier.d.ts.map +++ b/dist/native/emoji/emojiIdentifier.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiIdentifier.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiIdentifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiIdentifier.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiIdentifier.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiIdentifier.js b/dist/native/emoji/emojiIdentifier.js index 38b8a13bc7..372fd2d7e1 100644 --- a/dist/native/emoji/emojiIdentifier.js +++ b/dist/native/emoji/emojiIdentifier.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its identifier", + description: "The emoji to return its identifier", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiIdentifier.js.map b/dist/native/emoji/emojiIdentifier.js.map index 1366b7e736..d0c9316b6e 100644 --- a/dist/native/emoji/emojiIdentifier.js.map +++ b/dist/native/emoji/emojiIdentifier.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiIdentifier.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiIdentifier.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiIdentifier.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiIdentifier.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiName.d.ts.map b/dist/native/emoji/emojiName.d.ts.map index a142e29fcd..2c5b2e63b6 100644 --- a/dist/native/emoji/emojiName.d.ts.map +++ b/dist/native/emoji/emojiName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiName.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiName.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiName.js b/dist/native/emoji/emojiName.js index fba5a34c1a..146b63aaca 100644 --- a/dist/native/emoji/emojiName.js +++ b/dist/native/emoji/emojiName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its name", + description: "The emoji to return its name", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiName.js.map b/dist/native/emoji/emojiName.js.map index e07e7543f0..5a4d5d345d 100644 --- a/dist/native/emoji/emojiName.js.map +++ b/dist/native/emoji/emojiName.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiName.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiName.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiNames.d.ts.map b/dist/native/emoji/emojiNames.d.ts.map index 8838d5cecc..6fd4d5a7a1 100644 --- a/dist/native/emoji/emojiNames.d.ts.map +++ b/dist/native/emoji/emojiNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiNames.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"emojiNames.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiNames.js b/dist/native/emoji/emojiNames.js index da56085295..19e94291d8 100644 --- a/dist/native/emoji/emojiNames.js +++ b/dist/native/emoji/emojiNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/emoji/emojiNames.js.map b/dist/native/emoji/emojiNames.js.map index eeb8264ad1..fdce42f8d3 100644 --- a/dist/native/emoji/emojiNames.js.map +++ b/dist/native/emoji/emojiNames.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiNames.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiNames.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACtG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiNames.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACtG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRawData.d.ts.map b/dist/native/emoji/emojiRawData.d.ts.map index 0769ff251a..ef9f6b00e2 100644 --- a/dist/native/emoji/emojiRawData.d.ts.map +++ b/dist/native/emoji/emojiRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiRawData.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiRawData.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRawData.js b/dist/native/emoji/emojiRawData.js index aa1099ea43..8c8b4a83c6 100644 --- a/dist/native/emoji/emojiRawData.js +++ b/dist/native/emoji/emojiRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -6,7 +10,7 @@ exports.default = new structures_1.NativeFunction({ version: "1.5.0", description: "Returns the raw data of an emoji", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "emoji ID", @@ -18,7 +22,7 @@ exports.default = new structures_1.NativeFunction({ ], output: structures_1.ArgType.Json, execute(ctx, [emoji]) { - return this.successJSON(emoji.toJSON()); + return this.successJSON((emoji ?? ctx.emoji)?.toJSON()); }, }); //# sourceMappingURL=emojiRawData.js.map \ No newline at end of file diff --git a/dist/native/emoji/emojiRawData.js.map b/dist/native/emoji/emojiRawData.js.map index 84e8165e16..5781951d55 100644 --- a/dist/native/emoji/emojiRawData.js.map +++ b/dist/native/emoji/emojiRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiRawData.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiRawData.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRequiresColons.d.ts.map b/dist/native/emoji/emojiRequiresColons.d.ts.map index 7d240f29b3..9107ac56ab 100644 --- a/dist/native/emoji/emojiRequiresColons.d.ts.map +++ b/dist/native/emoji/emojiRequiresColons.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiRequiresColons.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRequiresColons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"emojiRequiresColons.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRequiresColons.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRequiresColons.js b/dist/native/emoji/emojiRequiresColons.js index 61c1b0dd31..adeae456aa 100644 --- a/dist/native/emoji/emojiRequiresColons.js +++ b/dist/native/emoji/emojiRequiresColons.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its colons state", + description: "The emoji to return its colons state", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiRequiresColons.js.map b/dist/native/emoji/emojiRequiresColons.js.map index dd533090c5..ca755561e9 100644 --- a/dist/native/emoji/emojiRequiresColons.js.map +++ b/dist/native/emoji/emojiRequiresColons.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiRequiresColons.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRequiresColons.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,gBAAgB,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiRequiresColons.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRequiresColons.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,gBAAgB,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRoles.d.ts.map b/dist/native/emoji/emojiRoles.d.ts.map index 59746b659a..674f41d2a6 100644 --- a/dist/native/emoji/emojiRoles.d.ts.map +++ b/dist/native/emoji/emojiRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiRoles.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRoles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"emojiRoles.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiRoles.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiRoles.js b/dist/native/emoji/emojiRoles.js index b8c0cb6c07..c96ea14de3 100644 --- a/dist/native/emoji/emojiRoles.js +++ b/dist/native/emoji/emojiRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -15,7 +19,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its roles", + description: "The emoji to return its roles", rest: false, type: structures_1.ArgType.GuildEmoji, required: true, diff --git a/dist/native/emoji/emojiRoles.js.map b/dist/native/emoji/emojiRoles.js.map index 2aaf92aaa2..eb713c5a3d 100644 --- a/dist/native/emoji/emojiRoles.js.map +++ b/dist/native/emoji/emojiRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiRoles.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRoles.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,KAAK,GAAG,EAAE,IAAI,GAAG,CAAC,KAAK,CAAA;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,OAAO,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACrH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiRoles.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,MAAM,KAAK,GAAG,EAAE,IAAI,GAAG,CAAC,KAAK,CAAA;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,OAAO,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACrH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/emojiURL.d.ts.map b/dist/native/emoji/emojiURL.d.ts.map index 8662413e18..444e040680 100644 --- a/dist/native/emoji/emojiURL.d.ts.map +++ b/dist/native/emoji/emojiURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emojiURL.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"emojiURL.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/emojiURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/emojiURL.js b/dist/native/emoji/emojiURL.js index fd8c3fc37b..0df7320a39 100644 --- a/dist/native/emoji/emojiURL.js +++ b/dist/native/emoji/emojiURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -11,7 +15,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its url", + description: "The emoji to return its url", rest: false, type: structures_1.ArgType.Emoji, required: true, diff --git a/dist/native/emoji/emojiURL.js.map b/dist/native/emoji/emojiURL.js.map index c5a4c36541..86292e360a 100644 --- a/dist/native/emoji/emojiURL.js.map +++ b/dist/native/emoji/emojiURL.js.map @@ -1 +1 @@ -{"version":3,"file":"emojiURL.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiURL.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emojiURL.js","sourceRoot":"","sources":["../../../src/native/emoji/emojiURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/fetchApplicationEmojis.d.ts.map b/dist/native/emoji/fetchApplicationEmojis.d.ts.map index 92c91590fa..ee8bb9eaab 100644 --- a/dist/native/emoji/fetchApplicationEmojis.d.ts.map +++ b/dist/native/emoji/fetchApplicationEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/fetchApplicationEmojis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"fetchApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/fetchApplicationEmojis.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/emoji/fetchApplicationEmojis.js b/dist/native/emoji/fetchApplicationEmojis.js index 33c2761da9..f9b40b026f 100644 --- a/dist/native/emoji/fetchApplicationEmojis.js +++ b/dist/native/emoji/fetchApplicationEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/fetchApplicationEmojis.js.map b/dist/native/emoji/fetchApplicationEmojis.js.map index e61c519e66..2911415f5a 100644 --- a/dist/native/emoji/fetchApplicationEmojis.js.map +++ b/dist/native/emoji/fetchApplicationEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/fetchApplicationEmojis.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,sBAAsB,EAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/fetchApplicationEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,sBAAsB,EAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/getApplicationEmojis.d.ts.map b/dist/native/emoji/getApplicationEmojis.d.ts.map index 37c6a79c7a..10920e00a7 100644 --- a/dist/native/emoji/getApplicationEmojis.d.ts.map +++ b/dist/native/emoji/getApplicationEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/getApplicationEmojis.ts"],"names":[],"mappings":"AACA,OAAO,EAA8B,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AACxG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"getApplicationEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/getApplicationEmojis.ts"],"names":[],"mappings":"AAMA,OAAO,EAA8B,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AACxG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/emoji/getApplicationEmojis.js b/dist/native/emoji/getApplicationEmojis.js index e4ca125d62..710c58b2e0 100644 --- a/dist/native/emoji/getApplicationEmojis.js +++ b/dist/native/emoji/getApplicationEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/emoji/getApplicationEmojis.js.map b/dist/native/emoji/getApplicationEmojis.js.map index 47011f458d..7147cd8c13 100644 --- a/dist/native/emoji/getApplicationEmojis.js.map +++ b/dist/native/emoji/getApplicationEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"getApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/getApplicationEmojis.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,wEAAwG;AACxG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2CAAwB;SACjC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,6CAA0B,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getApplicationEmojis.js","sourceRoot":"","sources":["../../../src/native/emoji/getApplicationEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,wEAAwG;AACxG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2CAAwB;SACjC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,6CAA0B,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/randomApplicationEmojiID.d.ts.map b/dist/native/emoji/randomApplicationEmojiID.d.ts.map index 220935cb1e..52509f3e19 100644 --- a/dist/native/emoji/randomApplicationEmojiID.d.ts.map +++ b/dist/native/emoji/randomApplicationEmojiID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomApplicationEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomApplicationEmojiID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"randomApplicationEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomApplicationEmojiID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/emoji/randomApplicationEmojiID.js b/dist/native/emoji/randomApplicationEmojiID.js index d2a38da9f0..870f9fdbc8 100644 --- a/dist/native/emoji/randomApplicationEmojiID.js +++ b/dist/native/emoji/randomApplicationEmojiID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/randomApplicationEmojiID.js.map b/dist/native/emoji/randomApplicationEmojiID.js.map index 75b1ff2ed6..75a590b587 100644 --- a/dist/native/emoji/randomApplicationEmojiID.js.map +++ b/dist/native/emoji/randomApplicationEmojiID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomApplicationEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomApplicationEmojiID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomApplicationEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomApplicationEmojiID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/randomEmojiID.d.ts.map b/dist/native/emoji/randomEmojiID.d.ts.map index bf4ef12ecc..6e62025208 100644 --- a/dist/native/emoji/randomEmojiID.d.ts.map +++ b/dist/native/emoji/randomEmojiID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomEmojiID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"randomEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomEmojiID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/emoji/randomEmojiID.js b/dist/native/emoji/randomEmojiID.js index 99a39a6d27..b6cab73ba2 100644 --- a/dist/native/emoji/randomEmojiID.js +++ b/dist/native/emoji/randomEmojiID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/randomEmojiID.js.map b/dist/native/emoji/randomEmojiID.js.map index 6ae429a5fe..6f2ed1a8a8 100644 --- a/dist/native/emoji/randomEmojiID.js.map +++ b/dist/native/emoji/randomEmojiID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomEmojiID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomEmojiID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/emoji/randomGuildEmojiID.d.ts.map b/dist/native/emoji/randomGuildEmojiID.d.ts.map index 7c5fd0befa..1ef97cb5c3 100644 --- a/dist/native/emoji/randomGuildEmojiID.d.ts.map +++ b/dist/native/emoji/randomGuildEmojiID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomGuildEmojiID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"randomGuildEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/emoji/randomGuildEmojiID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/emoji/randomGuildEmojiID.js b/dist/native/emoji/randomGuildEmojiID.js index da0ef01098..388287197f 100644 --- a/dist/native/emoji/randomGuildEmojiID.js +++ b/dist/native/emoji/randomGuildEmojiID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/emoji/randomGuildEmojiID.js.map b/dist/native/emoji/randomGuildEmojiID.js.map index e8771ebf73..74aee8b16e 100644 --- a/dist/native/emoji/randomGuildEmojiID.js.map +++ b/dist/native/emoji/randomGuildEmojiID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomGuildEmojiID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomGuildEmojiID.js","sourceRoot":"","sources":["../../../src/native/emoji/randomGuildEmojiID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementConsume.d.ts.map b/dist/native/entitlement/entitlementConsume.d.ts.map index 0d9054d29c..566ee5aa5a 100644 --- a/dist/native/entitlement/entitlementConsume.d.ts.map +++ b/dist/native/entitlement/entitlementConsume.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementConsume.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementConsume.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"entitlementConsume.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementConsume.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementConsume.js b/dist/native/entitlement/entitlementConsume.js index bc5a165811..d30760f33b 100644 --- a/dist/native/entitlement/entitlementConsume.js +++ b/dist/native/entitlement/entitlementConsume.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementConsume.js.map b/dist/native/entitlement/entitlementConsume.js.map index 7805a03c33..304c0e754b 100644 --- a/dist/native/entitlement/entitlementConsume.js.map +++ b/dist/native/entitlement/entitlementConsume.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementConsume.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementConsume.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAC/F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementConsume.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementConsume.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAC/F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementEndTimestamp.d.ts.map b/dist/native/entitlement/entitlementEndTimestamp.d.ts.map index f96f7be19a..6c36684081 100644 --- a/dist/native/entitlement/entitlementEndTimestamp.d.ts.map +++ b/dist/native/entitlement/entitlementEndTimestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementEndTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementEndTimestamp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementEndTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementEndTimestamp.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementEndTimestamp.js b/dist/native/entitlement/entitlementEndTimestamp.js index 59c2f59a89..30a6f5cf21 100644 --- a/dist/native/entitlement/entitlementEndTimestamp.js +++ b/dist/native/entitlement/entitlementEndTimestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementEndTimestamp.js.map b/dist/native/entitlement/entitlementEndTimestamp.js.map index 302282ff00..3d988eb8f0 100644 --- a/dist/native/entitlement/entitlementEndTimestamp.js.map +++ b/dist/native/entitlement/entitlementEndTimestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementEndTimestamp.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementEndTimestamp.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,aAAa,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementEndTimestamp.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementEndTimestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,aAAa,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementGuildID.d.ts.map b/dist/native/entitlement/entitlementGuildID.d.ts.map index 40710bb857..94f006fe9f 100644 --- a/dist/native/entitlement/entitlementGuildID.d.ts.map +++ b/dist/native/entitlement/entitlementGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementGuildID.js b/dist/native/entitlement/entitlementGuildID.js index bf0a6fb02b..0c3411e1e6 100644 --- a/dist/native/entitlement/entitlementGuildID.js +++ b/dist/native/entitlement/entitlementGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementGuildID.js.map b/dist/native/entitlement/entitlementGuildID.js.map index c65d049d15..9db4a375da 100644 --- a/dist/native/entitlement/entitlementGuildID.js.map +++ b/dist/native/entitlement/entitlementGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementGuildID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementGuildID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementGuildID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementID.d.ts.map b/dist/native/entitlement/entitlementID.d.ts.map index de62f68114..e8e69f71ac 100644 --- a/dist/native/entitlement/entitlementID.d.ts.map +++ b/dist/native/entitlement/entitlementID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementID.js b/dist/native/entitlement/entitlementID.js index dec0588838..fb9905b7e8 100644 --- a/dist/native/entitlement/entitlementID.js +++ b/dist/native/entitlement/entitlementID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementID.js.map b/dist/native/entitlement/entitlementID.js.map index 9f824e38b0..4f0508ff35 100644 --- a/dist/native/entitlement/entitlementID.js.map +++ b/dist/native/entitlement/entitlementID.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,EAAE,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,EAAE,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsActive.d.ts.map b/dist/native/entitlement/entitlementIsActive.d.ts.map index 7f6388bc41..e6df015b15 100644 --- a/dist/native/entitlement/entitlementIsActive.d.ts.map +++ b/dist/native/entitlement/entitlementIsActive.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsActive.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsActive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementIsActive.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsActive.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsActive.js b/dist/native/entitlement/entitlementIsActive.js index dacb143ddc..4ce52b1de7 100644 --- a/dist/native/entitlement/entitlementIsActive.js +++ b/dist/native/entitlement/entitlementIsActive.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementIsActive.js.map b/dist/native/entitlement/entitlementIsActive.js.map index 680a6299c3..d3a66fcf5e 100644 --- a/dist/native/entitlement/entitlementIsActive.js.map +++ b/dist/native/entitlement/entitlementIsActive.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsActive.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsActive.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementIsActive.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsActive.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsConsumed.d.ts.map b/dist/native/entitlement/entitlementIsConsumed.d.ts.map index 5bdd029bf5..6d62642a48 100644 --- a/dist/native/entitlement/entitlementIsConsumed.d.ts.map +++ b/dist/native/entitlement/entitlementIsConsumed.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsConsumed.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsConsumed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementIsConsumed.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsConsumed.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsConsumed.js b/dist/native/entitlement/entitlementIsConsumed.js index 5873fabc18..6ac866c305 100644 --- a/dist/native/entitlement/entitlementIsConsumed.js +++ b/dist/native/entitlement/entitlementIsConsumed.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementIsConsumed.js.map b/dist/native/entitlement/entitlementIsConsumed.js.map index 4f97e92343..29eaa69959 100644 --- a/dist/native/entitlement/entitlementIsConsumed.js.map +++ b/dist/native/entitlement/entitlementIsConsumed.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsConsumed.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsConsumed.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementIsConsumed.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsConsumed.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsDeleted.d.ts.map b/dist/native/entitlement/entitlementIsDeleted.d.ts.map index c9ed1e3de3..d6387292f6 100644 --- a/dist/native/entitlement/entitlementIsDeleted.d.ts.map +++ b/dist/native/entitlement/entitlementIsDeleted.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsDeleted.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsDeleted.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementIsDeleted.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsDeleted.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsDeleted.js b/dist/native/entitlement/entitlementIsDeleted.js index a105b8a794..e3c447f02e 100644 --- a/dist/native/entitlement/entitlementIsDeleted.js +++ b/dist/native/entitlement/entitlementIsDeleted.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementIsDeleted.js.map b/dist/native/entitlement/entitlementIsDeleted.js.map index 3a39247cfe..a2c90a36c2 100644 --- a/dist/native/entitlement/entitlementIsDeleted.js.map +++ b/dist/native/entitlement/entitlementIsDeleted.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsDeleted.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsDeleted.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementIsDeleted.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsDeleted.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsGuildSubscription.d.ts.map b/dist/native/entitlement/entitlementIsGuildSubscription.d.ts.map index 9edb66b19c..877ad9ac93 100644 --- a/dist/native/entitlement/entitlementIsGuildSubscription.d.ts.map +++ b/dist/native/entitlement/entitlementIsGuildSubscription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsGuildSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsGuildSubscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementIsGuildSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsGuildSubscription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsGuildSubscription.js b/dist/native/entitlement/entitlementIsGuildSubscription.js index 77f694ff46..35a81cbac0 100644 --- a/dist/native/entitlement/entitlementIsGuildSubscription.js +++ b/dist/native/entitlement/entitlementIsGuildSubscription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementIsGuildSubscription.js.map b/dist/native/entitlement/entitlementIsGuildSubscription.js.map index 5d72208d21..361d847f8f 100644 --- a/dist/native/entitlement/entitlementIsGuildSubscription.js.map +++ b/dist/native/entitlement/entitlementIsGuildSubscription.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsGuildSubscription.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsGuildSubscription.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementIsGuildSubscription.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsGuildSubscription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsUserSubscription.d.ts.map b/dist/native/entitlement/entitlementIsUserSubscription.d.ts.map index ffc642b0b3..fac7b480a1 100644 --- a/dist/native/entitlement/entitlementIsUserSubscription.d.ts.map +++ b/dist/native/entitlement/entitlementIsUserSubscription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsUserSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsUserSubscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementIsUserSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsUserSubscription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementIsUserSubscription.js b/dist/native/entitlement/entitlementIsUserSubscription.js index 428bf93e28..a6ede9dbc1 100644 --- a/dist/native/entitlement/entitlementIsUserSubscription.js +++ b/dist/native/entitlement/entitlementIsUserSubscription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementIsUserSubscription.js.map b/dist/native/entitlement/entitlementIsUserSubscription.js.map index cb9795cdf3..225d7fbbce 100644 --- a/dist/native/entitlement/entitlementIsUserSubscription.js.map +++ b/dist/native/entitlement/entitlementIsUserSubscription.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementIsUserSubscription.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsUserSubscription.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementIsUserSubscription.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementIsUserSubscription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementSkuID.d.ts.map b/dist/native/entitlement/entitlementSkuID.d.ts.map index 2a3efaa244..6fe5d51b20 100644 --- a/dist/native/entitlement/entitlementSkuID.d.ts.map +++ b/dist/native/entitlement/entitlementSkuID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementSkuID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementSkuID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementSkuID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementSkuID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementSkuID.js b/dist/native/entitlement/entitlementSkuID.js index a003159190..92bbef715b 100644 --- a/dist/native/entitlement/entitlementSkuID.js +++ b/dist/native/entitlement/entitlementSkuID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementSkuID.js.map b/dist/native/entitlement/entitlementSkuID.js.map index 97c965fea2..f6d8fac3df 100644 --- a/dist/native/entitlement/entitlementSkuID.js.map +++ b/dist/native/entitlement/entitlementSkuID.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementSkuID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementSkuID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,KAAK,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementSkuID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementSkuID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,KAAK,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementStartTimestamp.d.ts.map b/dist/native/entitlement/entitlementStartTimestamp.d.ts.map index 6ada970f1a..2df553300c 100644 --- a/dist/native/entitlement/entitlementStartTimestamp.d.ts.map +++ b/dist/native/entitlement/entitlementStartTimestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementStartTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementStartTimestamp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementStartTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementStartTimestamp.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementStartTimestamp.js b/dist/native/entitlement/entitlementStartTimestamp.js index b3d6ab5544..1bb6869287 100644 --- a/dist/native/entitlement/entitlementStartTimestamp.js +++ b/dist/native/entitlement/entitlementStartTimestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementStartTimestamp.js.map b/dist/native/entitlement/entitlementStartTimestamp.js.map index 7951a65108..ce76b26744 100644 --- a/dist/native/entitlement/entitlementStartTimestamp.js.map +++ b/dist/native/entitlement/entitlementStartTimestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementStartTimestamp.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementStartTimestamp.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,eAAe,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementStartTimestamp.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementStartTimestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,eAAe,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementType.d.ts.map b/dist/native/entitlement/entitlementType.d.ts.map index cf69a2f127..548df2a39e 100644 --- a/dist/native/entitlement/entitlementType.d.ts.map +++ b/dist/native/entitlement/entitlementType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementType.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementType.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementType.js b/dist/native/entitlement/entitlementType.js index 34e8ab642c..35c2355e3f 100644 --- a/dist/native/entitlement/entitlementType.js +++ b/dist/native/entitlement/entitlementType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/entitlement/entitlementType.js.map b/dist/native/entitlement/entitlementType.js.map index a37d82714a..a7ac666e90 100644 --- a/dist/native/entitlement/entitlementType.js.map +++ b/dist/native/entitlement/entitlementType.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementType.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementType.ts"],"names":[],"mappings":";;AAAA,2CAA4C;AAC5C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,4BAAe;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,4BAAe,CAAC,GAAG,CAAC,WAAW,EAAE,IAAK,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementType.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4C;AAC5C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,4BAAe;IACvB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,4BAAe,CAAC,GAAG,CAAC,WAAW,EAAE,IAAK,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementUserID.d.ts.map b/dist/native/entitlement/entitlementUserID.d.ts.map index eedb46eb8b..1ab291dc62 100644 --- a/dist/native/entitlement/entitlementUserID.d.ts.map +++ b/dist/native/entitlement/entitlementUserID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlementUserID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementUserID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"entitlementUserID.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementUserID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/entitlement/entitlementUserID.js b/dist/native/entitlement/entitlementUserID.js index 59303894ff..717c33e7de 100644 --- a/dist/native/entitlement/entitlementUserID.js +++ b/dist/native/entitlement/entitlementUserID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/entitlementUserID.js.map b/dist/native/entitlement/entitlementUserID.js.map index 6d2843b78a..52dc31195e 100644 --- a/dist/native/entitlement/entitlementUserID.js.map +++ b/dist/native/entitlement/entitlementUserID.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlementUserID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementUserID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlementUserID.js","sourceRoot":"","sources":["../../../src/native/entitlement/entitlementUserID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/hasAllEntitlements.d.ts.map b/dist/native/entitlement/hasAllEntitlements.d.ts.map index d0783a9ea4..8a9438788d 100644 --- a/dist/native/entitlement/hasAllEntitlements.d.ts.map +++ b/dist/native/entitlement/hasAllEntitlements.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasAllEntitlements.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasAllEntitlements.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file +{"version":3,"file":"hasAllEntitlements.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasAllEntitlements.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file diff --git a/dist/native/entitlement/hasAllEntitlements.js b/dist/native/entitlement/hasAllEntitlements.js index 782bc038e2..356512eb16 100644 --- a/dist/native/entitlement/hasAllEntitlements.js +++ b/dist/native/entitlement/hasAllEntitlements.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/hasAllEntitlements.js.map b/dist/native/entitlement/hasAllEntitlements.js.map index cc7b3f8ad2..f03ebd98f3 100644 --- a/dist/native/entitlement/hasAllEntitlements.js.map +++ b/dist/native/entitlement/hasAllEntitlements.js.map @@ -1 +1 @@ -{"version":3,"file":"hasAllEntitlements.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasAllEntitlements.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,WAAW,EAAE,wEAAwE;IACrF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasAllEntitlements.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasAllEntitlements.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,WAAW,EAAE,wEAAwE;IACrF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/hasAnyEntitlement.d.ts.map b/dist/native/entitlement/hasAnyEntitlement.d.ts.map index 0e53035615..045c976001 100644 --- a/dist/native/entitlement/hasAnyEntitlement.d.ts.map +++ b/dist/native/entitlement/hasAnyEntitlement.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasAnyEntitlement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file +{"version":3,"file":"hasAnyEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasAnyEntitlement.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file diff --git a/dist/native/entitlement/hasAnyEntitlement.js b/dist/native/entitlement/hasAnyEntitlement.js index 136520419b..55876b17c3 100644 --- a/dist/native/entitlement/hasAnyEntitlement.js +++ b/dist/native/entitlement/hasAnyEntitlement.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/hasAnyEntitlement.js.map b/dist/native/entitlement/hasAnyEntitlement.js.map index 54b032f1ec..434283393b 100644 --- a/dist/native/entitlement/hasAnyEntitlement.js.map +++ b/dist/native/entitlement/hasAnyEntitlement.js.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyEntitlement.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasAnyEntitlement.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,WAAW,EAAE,wEAAwE;IACrF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasAnyEntitlement.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasAnyEntitlement.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,WAAW,EAAE,wEAAwE;IACrF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/entitlement/hasEntitlement.d.ts.map b/dist/native/entitlement/hasEntitlement.d.ts.map index 9832c36b86..9b05649023 100644 --- a/dist/native/entitlement/hasEntitlement.d.ts.map +++ b/dist/native/entitlement/hasEntitlement.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasEntitlement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file +{"version":3,"file":"hasEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/entitlement/hasEntitlement.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file diff --git a/dist/native/entitlement/hasEntitlement.js b/dist/native/entitlement/hasEntitlement.js index 992c1c3d55..ec461deec9 100644 --- a/dist/native/entitlement/hasEntitlement.js +++ b/dist/native/entitlement/hasEntitlement.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/entitlement/hasEntitlement.js.map b/dist/native/entitlement/hasEntitlement.js.map index 69e9318e68..112c575b78 100644 --- a/dist/native/entitlement/hasEntitlement.js.map +++ b/dist/native/entitlement/hasEntitlement.js.map @@ -1 +1 @@ -{"version":3,"file":"hasEntitlement.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasEntitlement.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,4BAA4B;KAC/B;IACD,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasEntitlement.js","sourceRoot":"","sources":["../../../src/native/entitlement/hasEntitlement.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,4BAA4B;KAC/B;IACD,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/createScheduledEvent.d.ts b/dist/native/event/createScheduledEvent.d.ts new file mode 100644 index 0000000000..419a1642e9 --- /dev/null +++ b/dist/native/event/createScheduledEvent.d.ts @@ -0,0 +1,45 @@ +import { GuildScheduledEventEntityType } from "discord.js"; +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Enum; + enum: typeof GuildScheduledEventEntityType; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Date; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Date; +}, { + name: string; + description: string; + rest: false; + type: ArgType.URL; +}], true>; +export default _default; +//# sourceMappingURL=createScheduledEvent.d.ts.map \ No newline at end of file diff --git a/dist/native/event/createScheduledEvent.d.ts.map b/dist/native/event/createScheduledEvent.d.ts.map new file mode 100644 index 0000000000..37433149c9 --- /dev/null +++ b/dist/native/event/createScheduledEvent.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"createScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/event/createScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,6BAA6B,EAA6E,MAAM,YAAY,CAAA;AACrI,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0EE"} \ No newline at end of file diff --git a/dist/native/event/createScheduledEvent.js b/dist/native/event/createScheduledEvent.js new file mode 100644 index 0000000000..0167045203 --- /dev/null +++ b/dist/native/event/createScheduledEvent.js @@ -0,0 +1,82 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$createScheduledEvent", + version: "2.6.0", + description: "Creates a new scheduled event on a guild, returns event id", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to create scheduled event on", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "name", + description: "The name of the scheduled event", + rest: false, + required: true, + type: structures_1.ArgType.String, + }, + { + name: "description", + description: "The description of the scheduled event", + rest: false, + type: structures_1.ArgType.String, + }, + { + name: "type", + description: "The entity type of the scheduled event", + rest: false, + required: true, + type: structures_1.ArgType.Enum, + enum: discord_js_1.GuildScheduledEventEntityType, + }, + { + name: "start", + description: "The start time of the scheduled event", + rest: false, + required: true, + type: structures_1.ArgType.Date, + }, + { + name: "end", + description: "The end time of the scheduled event", + rest: false, + type: structures_1.ArgType.Date, + }, + { + name: "cover", + description: "The cover image of the scheduled event", + rest: false, + type: structures_1.ArgType.URL, + }, + ], + output: structures_1.ArgType.ScheduledEvent, + async execute(ctx, [guild, name, desc, type, start, end, cover]) { + const event = await guild.scheduledEvents.create({ + name, + entityType: type, + privacyLevel: discord_js_1.GuildScheduledEventPrivacyLevel.GuildOnly, + scheduledStartTime: start, + scheduledEndTime: end || undefined, + description: desc || undefined, + image: cover || undefined, + channel: ctx.scheduledEvent.channel, + entityMetadata: ctx.scheduledEvent.entityMetadata, + reason: ctx.reason + }).catch(ctx.noop); + ctx.clearScheduledEventOptions(); + return this.success(event?.id); + }, +}); +//# sourceMappingURL=createScheduledEvent.js.map \ No newline at end of file diff --git a/dist/native/event/createScheduledEvent.js.map b/dist/native/event/createScheduledEvent.js.map new file mode 100644 index 0000000000..7934757b19 --- /dev/null +++ b/dist/native/event/createScheduledEvent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"createScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/event/createScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqI;AACrI,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0CAA6B;SACtC;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,GAAG;SACpB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,cAAc;IAC9B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,CAAC;QAC3D,MAAM,KAAK,GAAG,MAAM,KAAK,CAAC,eAAe,CAAC,MAAM,CAAC;YAC7C,IAAI;YACJ,UAAU,EAAE,IAAI;YAChB,YAAY,EAAE,4CAA+B,CAAC,SAAS;YACvD,kBAAkB,EAAE,KAAK;YACzB,gBAAgB,EAAE,GAAG,IAAI,SAAS;YAClC,WAAW,EAAE,IAAI,IAAI,SAAS;YAC9B,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,OAAO,EAAE,GAAG,CAAC,cAAc,CAAC,OAAO;YACnC,cAAc,EAAE,GAAG,CAAC,cAAc,CAAC,cAAc;YACjD,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,0BAA0B,EAAE,CAAA;QAEhC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/deleteScheduledEvent.d.ts b/dist/native/event/deleteScheduledEvent.d.ts new file mode 100644 index 0000000000..6cc57265ed --- /dev/null +++ b/dist/native/event/deleteScheduledEvent.d.ts @@ -0,0 +1,17 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.ScheduledEvent; + pointer: number; +}], true>; +export default _default; +//# sourceMappingURL=deleteScheduledEvent.d.ts.map \ No newline at end of file diff --git a/dist/native/event/deleteScheduledEvent.d.ts.map b/dist/native/event/deleteScheduledEvent.d.ts.map new file mode 100644 index 0000000000..9ea3e506fe --- /dev/null +++ b/dist/native/event/deleteScheduledEvent.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"deleteScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/event/deleteScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/event/deleteScheduledEvent.js b/dist/native/event/deleteScheduledEvent.js new file mode 100644 index 0000000000..744ca66ec4 --- /dev/null +++ b/dist/native/event/deleteScheduledEvent.js @@ -0,0 +1,43 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$deleteScheduledEvent", + version: "2.6.0", + description: "Deletes a scheduled event from a guild, returns bool", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to delete scheduled event from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to delete", + rest: false, + required: true, + type: structures_1.ArgType.ScheduledEvent, + pointer: 0, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [, event]) { + try { + await event.delete(); + } + catch (error) { + ctx.noop(error); + return this.success(false); + } + return this.success(true); + }, +}); +//# sourceMappingURL=deleteScheduledEvent.js.map \ No newline at end of file diff --git a/dist/native/event/deleteScheduledEvent.js.map b/dist/native/event/deleteScheduledEvent.js.map new file mode 100644 index 0000000000..372f5edbba --- /dev/null +++ b/dist/native/event/deleteScheduledEvent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"deleteScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/event/deleteScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QACxB,IAAI;YACA,MAAM,KAAK,CAAC,MAAM,EAAE,CAAA;SACvB;QAAC,OAAO,KAAK,EAAE;YACZ,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/editScheduledEvent.d.ts b/dist/native/event/editScheduledEvent.d.ts new file mode 100644 index 0000000000..abd89f4ce3 --- /dev/null +++ b/dist/native/event/editScheduledEvent.d.ts @@ -0,0 +1,49 @@ +import { GuildScheduledEventEntityType } from "discord.js"; +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.ScheduledEvent; + pointer: number; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Enum; + enum: typeof GuildScheduledEventEntityType; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Date; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Date; +}, { + name: string; + description: string; + rest: false; + type: ArgType.URL; +}], true>; +export default _default; +//# sourceMappingURL=editScheduledEvent.d.ts.map \ No newline at end of file diff --git a/dist/native/event/editScheduledEvent.d.ts.map b/dist/native/event/editScheduledEvent.d.ts.map new file mode 100644 index 0000000000..2a2c4d209d --- /dev/null +++ b/dist/native/event/editScheduledEvent.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"editScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/event/editScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA8EE"} \ No newline at end of file diff --git a/dist/native/event/editScheduledEvent.js b/dist/native/event/editScheduledEvent.js new file mode 100644 index 0000000000..18a24701f5 --- /dev/null +++ b/dist/native/event/editScheduledEvent.js @@ -0,0 +1,86 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$editScheduledEvent", + version: "2.6.0", + description: "Edits an existing scheduled event on a guild, returns bool", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to edit scheduled event on", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to edit", + rest: false, + required: true, + type: structures_1.ArgType.ScheduledEvent, + pointer: 0, + }, + { + name: "name", + description: "The new name for the scheduled event", + rest: false, + type: structures_1.ArgType.String, + }, + { + name: "description", + description: "The new description for the scheduled event", + rest: false, + type: structures_1.ArgType.String, + }, + { + name: "type", + description: "The new entity type for the scheduled event", + rest: false, + type: structures_1.ArgType.Enum, + enum: discord_js_1.GuildScheduledEventEntityType, + }, + { + name: "start", + description: "The new start time for the scheduled event", + rest: false, + type: structures_1.ArgType.Date, + }, + { + name: "end", + description: "The new end time for the scheduled event", + rest: false, + type: structures_1.ArgType.Date, + }, + { + name: "cover", + description: "The new cover image for the scheduled event", + rest: false, + type: structures_1.ArgType.URL, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [, event, name, desc, type, start, end, cover]) { + const edit = await event.edit({ + name: name || undefined, + description: desc || undefined, + entityType: type || undefined, + scheduledStartTime: start || undefined, + scheduledEndTime: end || undefined, + image: cover || undefined, + channel: ctx.scheduledEvent.channel, + entityMetadata: ctx.scheduledEvent.entityMetadata, + reason: ctx.reason + }).catch(ctx.noop); + ctx.clearScheduledEventOptions(); + return this.success(!!edit); + }, +}); +//# sourceMappingURL=editScheduledEvent.js.map \ No newline at end of file diff --git a/dist/native/event/editScheduledEvent.js.map b/dist/native/event/editScheduledEvent.js.map new file mode 100644 index 0000000000..3868f6812b --- /dev/null +++ b/dist/native/event/editScheduledEvent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"editScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/event/editScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0D;AAC1D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0CAA6B;SACtC;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,GAAG;SACpB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,CAAC;QAC7D,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC;YAC1B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,IAAI,IAAI,SAAS;YAC9B,UAAU,EAAE,IAAI,IAAI,SAAS;YAC7B,kBAAkB,EAAE,KAAK,IAAI,SAAS;YACtC,gBAAgB,EAAE,GAAG,IAAI,SAAS;YAClC,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,OAAO,EAAE,GAAG,CAAC,cAAc,CAAC,OAAO;YACnC,cAAc,EAAE,GAAG,CAAC,cAAc,CAAC,cAAc;YACjD,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,GAAG,CAAC,0BAA0B,EAAE,CAAA;QAEhC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/getScheduledEvent.d.ts b/dist/native/event/getScheduledEvent.d.ts new file mode 100644 index 0000000000..b1d27e25d0 --- /dev/null +++ b/dist/native/event/getScheduledEvent.d.ts @@ -0,0 +1,24 @@ +import { ArgType, NativeFunction } from "../../structures"; +import { ScheduledEventProperty } from "../../properties/scheduledEvent"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.ScheduledEvent; + pointer: number; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Enum; + enum: typeof ScheduledEventProperty; +}], true>; +export default _default; +//# sourceMappingURL=getScheduledEvent.d.ts.map \ No newline at end of file diff --git a/dist/native/event/getScheduledEvent.d.ts.map b/dist/native/event/getScheduledEvent.d.ts.map new file mode 100644 index 0000000000..f459069fcd --- /dev/null +++ b/dist/native/event/getScheduledEvent.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"getScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/event/getScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;;;;;;;;;;;;;;;;;;;;;AAElG,wBAsCE"} \ No newline at end of file diff --git a/dist/native/event/getScheduledEvent.js b/dist/native/event/getScheduledEvent.js new file mode 100644 index 0000000000..e44a71f41c --- /dev/null +++ b/dist/native/event/getScheduledEvent.js @@ -0,0 +1,49 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +const scheduledEvent_1 = require("../../properties/scheduledEvent"); +exports.default = new structures_1.NativeFunction({ + name: "$getScheduledEvent", + version: "2.6.0", + description: "Returns a scheduled event of a guild", + unwrap: true, + brackets: false, + args: [ + { + name: "guild ID", + description: "The guild to get scheduled event from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to get", + rest: false, + required: true, + type: structures_1.ArgType.ScheduledEvent, + pointer: 0, + }, + { + name: "property", + description: "The property of the scheduled event to return", + rest: false, + type: structures_1.ArgType.Enum, + enum: scheduledEvent_1.ScheduledEventProperty + }, + ], + output: [ + structures_1.ArgType.Json, + structures_1.ArgType.Unknown + ], + execute(ctx, [, event, prop]) { + if (prop) + return this.success(scheduledEvent_1.ScheduledEventProperties[prop](event)); + return this.successJSON(event); + }, +}); +//# sourceMappingURL=getScheduledEvent.js.map \ No newline at end of file diff --git a/dist/native/event/getScheduledEvent.js.map b/dist/native/event/getScheduledEvent.js.map new file mode 100644 index 0000000000..d310901ea7 --- /dev/null +++ b/dist/native/event/getScheduledEvent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"getScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/event/getScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,oEAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;SAC/B;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC;QACxB,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAA;QACpE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/setScheduledEventChannel.d.ts b/dist/native/event/setScheduledEventChannel.d.ts new file mode 100644 index 0000000000..f7b4af7189 --- /dev/null +++ b/dist/native/event/setScheduledEventChannel.d.ts @@ -0,0 +1,12 @@ +import { BaseChannel } from "discord.js"; +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Channel; + check: (i: BaseChannel) => boolean; +}], true>; +export default _default; +//# sourceMappingURL=setScheduledEventChannel.d.ts.map \ No newline at end of file diff --git a/dist/native/event/setScheduledEventChannel.d.ts.map b/dist/native/event/setScheduledEventChannel.d.ts.map new file mode 100644 index 0000000000..255bf1c483 --- /dev/null +++ b/dist/native/event/setScheduledEventChannel.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setScheduledEventChannel.d.ts","sourceRoot":"","sources":["../../../src/native/event/setScheduledEventChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAqB,MAAM,YAAY,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;AAblC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/event/setScheduledEventChannel.js b/dist/native/event/setScheduledEventChannel.js new file mode 100644 index 0000000000..e4e86dcdd3 --- /dev/null +++ b/dist/native/event/setScheduledEventChannel.js @@ -0,0 +1,29 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setScheduledEventChannel", + version: "2.6.0", + description: "Sets a channel for the current scheduled event", + unwrap: true, + brackets: true, + args: [ + { + name: "channel ID", + description: "The voice channel of the scheduled event", + rest: false, + required: true, + type: structures_1.ArgType.Channel, + check: (i) => i.isVoiceBased() + }, + ], + execute(ctx, [channel]) { + ctx.scheduledEvent.channel = channel; + return this.success(); + }, +}); +//# sourceMappingURL=setScheduledEventChannel.js.map \ No newline at end of file diff --git a/dist/native/event/setScheduledEventChannel.js.map b/dist/native/event/setScheduledEventChannel.js.map new file mode 100644 index 0000000000..bf33f51390 --- /dev/null +++ b/dist/native/event/setScheduledEventChannel.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setScheduledEventChannel.js","sourceRoot":"","sources":["../../../src/native/event/setScheduledEventChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,cAAc,CAAC,OAAO,GAAG,OAA4B,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/event/setScheduledEventLocation.d.ts b/dist/native/event/setScheduledEventLocation.d.ts new file mode 100644 index 0000000000..60503f94bc --- /dev/null +++ b/dist/native/event/setScheduledEventLocation.d.ts @@ -0,0 +1,10 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.String; +}], true>; +export default _default; +//# sourceMappingURL=setScheduledEventLocation.d.ts.map \ No newline at end of file diff --git a/dist/native/event/setScheduledEventLocation.d.ts.map b/dist/native/event/setScheduledEventLocation.d.ts.map new file mode 100644 index 0000000000..a82427565d --- /dev/null +++ b/dist/native/event/setScheduledEventLocation.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setScheduledEventLocation.d.ts","sourceRoot":"","sources":["../../../src/native/event/setScheduledEventLocation.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/event/setScheduledEventLocation.js b/dist/native/event/setScheduledEventLocation.js new file mode 100644 index 0000000000..063f6b62b8 --- /dev/null +++ b/dist/native/event/setScheduledEventLocation.js @@ -0,0 +1,29 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setScheduledEventLocation", + version: "2.6.0", + description: "Sets a location for the current scheduled event", + unwrap: true, + brackets: true, + args: [ + { + name: "location", + description: "The location of the scheduled event", + rest: false, + required: true, + type: structures_1.ArgType.String, + }, + ], + execute(ctx, [location]) { + ctx.scheduledEvent.entityMetadata ??= {}; + ctx.scheduledEvent.entityMetadata.location = location; + return this.success(); + }, +}); +//# sourceMappingURL=setScheduledEventLocation.js.map \ No newline at end of file diff --git a/dist/native/event/setScheduledEventLocation.js.map b/dist/native/event/setScheduledEventLocation.js.map new file mode 100644 index 0000000000..4348ec021d --- /dev/null +++ b/dist/native/event/setScheduledEventLocation.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setScheduledEventLocation.js","sourceRoot":"","sources":["../../../src/native/event/setScheduledEventLocation.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACnB,GAAG,CAAC,cAAc,CAAC,cAAc,KAAK,EAAE,CAAA;QACxC,GAAG,CAAC,cAAc,CAAC,cAAc,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACrD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/appendFile.d.ts.map b/dist/native/file/appendFile.d.ts.map index 1883aafd67..f8251f5f46 100644 --- a/dist/native/file/appendFile.d.ts.map +++ b/dist/native/file/appendFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"appendFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/appendFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"appendFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/appendFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/file/appendFile.js b/dist/native/file/appendFile.js index 4fe027d1e0..c7a776bc38 100644 --- a/dist/native/file/appendFile.js +++ b/dist/native/file/appendFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/appendFile.js.map b/dist/native/file/appendFile.js.map index 5c490f138a..449e12bea3 100644 --- a/dist/native/file/appendFile.js.map +++ b/dist/native/file/appendFile.js.map @@ -1 +1 @@ -{"version":3,"file":"appendFile.js","sourceRoot":"","sources":["../../../src/native/file/appendFile.ts"],"names":[],"mappings":";;AAAA,2BAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QAC/B,oCAAoC;QACpC,IAAA,mBAAc,EAAC,IAAI,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAEjF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"appendFile.js","sourceRoot":"","sources":["../../../src/native/file/appendFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QAC/B,oCAAoC;QACpC,IAAA,mBAAc,EAAC,IAAI,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAEjF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/copyFile.d.ts.map b/dist/native/file/copyFile.d.ts.map index 4443668de5..75d728db6c 100644 --- a/dist/native/file/copyFile.d.ts.map +++ b/dist/native/file/copyFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"copyFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/copyFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"copyFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/copyFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/file/copyFile.js b/dist/native/file/copyFile.js index 26a27cccd8..befb960704 100644 --- a/dist/native/file/copyFile.js +++ b/dist/native/file/copyFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/copyFile.js.map b/dist/native/file/copyFile.js.map index b0c32f6e9d..0f97f2f9e6 100644 --- a/dist/native/file/copyFile.js.map +++ b/dist/native/file/copyFile.js.map @@ -1 +1 @@ -{"version":3,"file":"copyFile.js","sourceRoot":"","sources":["../../../src/native/file/copyFile.ts"],"names":[],"mappings":";;AAAA,2BAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,IAAI,IAAA,aAAQ,EAAC,GAAG,CAAC,CAAC,WAAW,EAAE;YAC3B,IAAA,WAAM,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;;YAEhB,IAAA,iBAAY,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"copyFile.js","sourceRoot":"","sources":["../../../src/native/file/copyFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,IAAI,IAAA,aAAQ,EAAC,GAAG,CAAC,CAAC,WAAW,EAAE;YAC3B,IAAA,WAAM,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;;YAEhB,IAAA,iBAAY,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/deleteFile.d.ts.map b/dist/native/file/deleteFile.d.ts.map index 5cf841f949..8ab68397fb 100644 --- a/dist/native/file/deleteFile.d.ts.map +++ b/dist/native/file/deleteFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/deleteFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"deleteFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/deleteFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/file/deleteFile.js b/dist/native/file/deleteFile.js index 5a4c49336d..5b9a27a102 100644 --- a/dist/native/file/deleteFile.js +++ b/dist/native/file/deleteFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/deleteFile.js.map b/dist/native/file/deleteFile.js.map index 849d0f1685..4b651f34db 100644 --- a/dist/native/file/deleteFile.js.map +++ b/dist/native/file/deleteFile.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteFile.js","sourceRoot":"","sources":["../../../src/native/file/deleteFile.ts"],"names":[],"mappings":";;AAAA,2BAA2B;AAC3B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,oCAAoC;QACpC,IAAA,WAAM,EAAC,IAAI,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;QAEjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteFile.js","sourceRoot":"","sources":["../../../src/native/file/deleteFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA2B;AAC3B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,oCAAoC;QACpC,IAAA,WAAM,EAAC,IAAI,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;QAEjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileAccessedAt.d.ts.map b/dist/native/file/fileAccessedAt.d.ts.map index df5a92601b..4a0d817248 100644 --- a/dist/native/file/fileAccessedAt.d.ts.map +++ b/dist/native/file/fileAccessedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileAccessedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileAccessedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileAccessedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileAccessedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileAccessedAt.js b/dist/native/file/fileAccessedAt.js index 255d17ab57..15d28d2d31 100644 --- a/dist/native/file/fileAccessedAt.js +++ b/dist/native/file/fileAccessedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileAccessedAt.js.map b/dist/native/file/fileAccessedAt.js.map index 77645a728c..ad5797a974 100644 --- a/dist/native/file/fileAccessedAt.js.map +++ b/dist/native/file/fileAccessedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"fileAccessedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileAccessedAt.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileAccessedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileAccessedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileBlockCount.d.ts.map b/dist/native/file/fileBlockCount.d.ts.map index cb1235a6bb..0ae175f8c8 100644 --- a/dist/native/file/fileBlockCount.d.ts.map +++ b/dist/native/file/fileBlockCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileBlockCount.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileBlockCount.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileBlockCount.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileBlockCount.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileBlockCount.js b/dist/native/file/fileBlockCount.js index dab3aa6f69..9cd5364df7 100644 --- a/dist/native/file/fileBlockCount.js +++ b/dist/native/file/fileBlockCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileBlockCount.js.map b/dist/native/file/fileBlockCount.js.map index e11c464fc7..690ea7fd8e 100644 --- a/dist/native/file/fileBlockCount.js.map +++ b/dist/native/file/fileBlockCount.js.map @@ -1 +1 @@ -{"version":3,"file":"fileBlockCount.js","sourceRoot":"","sources":["../../../src/native/file/fileBlockCount.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileBlockCount.js","sourceRoot":"","sources":["../../../src/native/file/fileBlockCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileBlockSize.d.ts.map b/dist/native/file/fileBlockSize.d.ts.map index 9ca294289e..2637395b40 100644 --- a/dist/native/file/fileBlockSize.d.ts.map +++ b/dist/native/file/fileBlockSize.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileBlockSize.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileBlockSize.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileBlockSize.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileBlockSize.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileBlockSize.js b/dist/native/file/fileBlockSize.js index 69f6f3937d..22c449e10f 100644 --- a/dist/native/file/fileBlockSize.js +++ b/dist/native/file/fileBlockSize.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileBlockSize.js.map b/dist/native/file/fileBlockSize.js.map index 95013631c1..95bb6084d1 100644 --- a/dist/native/file/fileBlockSize.js.map +++ b/dist/native/file/fileBlockSize.js.map @@ -1 +1 @@ -{"version":3,"file":"fileBlockSize.js","sourceRoot":"","sources":["../../../src/native/file/fileBlockSize.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileBlockSize.js","sourceRoot":"","sources":["../../../src/native/file/fileBlockSize.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileChangedAt.d.ts.map b/dist/native/file/fileChangedAt.d.ts.map index 9b4ae9e6c7..23f7a4aa3c 100644 --- a/dist/native/file/fileChangedAt.d.ts.map +++ b/dist/native/file/fileChangedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileChangedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileChangedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileChangedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileChangedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileChangedAt.js b/dist/native/file/fileChangedAt.js index ef9c56d50c..fbdb221054 100644 --- a/dist/native/file/fileChangedAt.js +++ b/dist/native/file/fileChangedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileChangedAt.js.map b/dist/native/file/fileChangedAt.js.map index e20d5aea06..1189030e29 100644 --- a/dist/native/file/fileChangedAt.js.map +++ b/dist/native/file/fileChangedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"fileChangedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileChangedAt.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileChangedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileChangedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileCreatedAt.d.ts.map b/dist/native/file/fileCreatedAt.d.ts.map index b6dce5bd59..b837b09373 100644 --- a/dist/native/file/fileCreatedAt.d.ts.map +++ b/dist/native/file/fileCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileCreatedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileCreatedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileCreatedAt.js b/dist/native/file/fileCreatedAt.js index d430a84bbd..2cc320fa95 100644 --- a/dist/native/file/fileCreatedAt.js +++ b/dist/native/file/fileCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileCreatedAt.js.map b/dist/native/file/fileCreatedAt.js.map index 4dfe61c480..8dcd4680f1 100644 --- a/dist/native/file/fileCreatedAt.js.map +++ b/dist/native/file/fileCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"fileCreatedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileCreatedAt.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,WAAW,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileCreatedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,WAAW,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileExists.d.ts.map b/dist/native/file/fileExists.d.ts.map index 11a2774e86..17da964644 100644 --- a/dist/native/file/fileExists.d.ts.map +++ b/dist/native/file/fileExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileExists.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileExists.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileExists.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileExists.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileExists.js b/dist/native/file/fileExists.js index 8fa8843247..fb815d043d 100644 --- a/dist/native/file/fileExists.js +++ b/dist/native/file/fileExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileExists.js.map b/dist/native/file/fileExists.js.map index b4e5f629fd..6dea86a0bf 100644 --- a/dist/native/file/fileExists.js.map +++ b/dist/native/file/fileExists.js.map @@ -1 +1 @@ -{"version":3,"file":"fileExists.js","sourceRoot":"","sources":["../../../src/native/file/fileExists.ts"],"names":[],"mappings":";;AAAA,2BAA+B;AAC/B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,eAAU,EAAC,IAAI,CAAC,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileExists.js","sourceRoot":"","sources":["../../../src/native/file/fileExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA+B;AAC/B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,eAAU,EAAC,IAAI,CAAC,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileModifiedAt.d.ts.map b/dist/native/file/fileModifiedAt.d.ts.map index e4b0d5ec0a..e28763fe26 100644 --- a/dist/native/file/fileModifiedAt.d.ts.map +++ b/dist/native/file/fileModifiedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileModifiedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileModifiedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileModifiedAt.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileModifiedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileModifiedAt.js b/dist/native/file/fileModifiedAt.js index 2c42eee6a2..545bf2118d 100644 --- a/dist/native/file/fileModifiedAt.js +++ b/dist/native/file/fileModifiedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileModifiedAt.js.map b/dist/native/file/fileModifiedAt.js.map index de5bde6066..654d60d2e8 100644 --- a/dist/native/file/fileModifiedAt.js.map +++ b/dist/native/file/fileModifiedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"fileModifiedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileModifiedAt.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileModifiedAt.js","sourceRoot":"","sources":["../../../src/native/file/fileModifiedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iEAAiE;IAC9E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/fileSize.d.ts.map b/dist/native/file/fileSize.d.ts.map index 0a0a697f76..0deff3c5b0 100644 --- a/dist/native/file/fileSize.d.ts.map +++ b/dist/native/file/fileSize.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fileSize.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileSize.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fileSize.d.ts","sourceRoot":"","sources":["../../../src/native/file/fileSize.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/fileSize.js b/dist/native/file/fileSize.js index c0fb7f3462..5c7d65f13f 100644 --- a/dist/native/file/fileSize.js +++ b/dist/native/file/fileSize.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/fileSize.js.map b/dist/native/file/fileSize.js.map index 27bbdb646f..edd5dce87c 100644 --- a/dist/native/file/fileSize.js.map +++ b/dist/native/file/fileSize.js.map @@ -1 +1 @@ -{"version":3,"file":"fileSize.js","sourceRoot":"","sources":["../../../src/native/file/fileSize.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fileSize.js","sourceRoot":"","sources":["../../../src/native/file/fileSize.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/isDirectory.d.ts.map b/dist/native/file/isDirectory.d.ts.map index 4560eb0f22..625f9ec19f 100644 --- a/dist/native/file/isDirectory.d.ts.map +++ b/dist/native/file/isDirectory.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isDirectory.d.ts","sourceRoot":"","sources":["../../../src/native/file/isDirectory.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isDirectory.d.ts","sourceRoot":"","sources":["../../../src/native/file/isDirectory.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/isDirectory.js b/dist/native/file/isDirectory.js index 29c5068ce1..35a340bb09 100644 --- a/dist/native/file/isDirectory.js +++ b/dist/native/file/isDirectory.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/isDirectory.js.map b/dist/native/file/isDirectory.js.map index b4c2e84540..650c5791ba 100644 --- a/dist/native/file/isDirectory.js.map +++ b/dist/native/file/isDirectory.js.map @@ -1 +1 @@ -{"version":3,"file":"isDirectory.js","sourceRoot":"","sources":["../../../src/native/file/isDirectory.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isDirectory.js","sourceRoot":"","sources":["../../../src/native/file/isDirectory.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/isFile.d.ts.map b/dist/native/file/isFile.d.ts.map index a5af94b2cc..95db4c134b 100644 --- a/dist/native/file/isFile.d.ts.map +++ b/dist/native/file/isFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/isFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/isFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/isFile.js b/dist/native/file/isFile.js index c9121bd669..112bda0a76 100644 --- a/dist/native/file/isFile.js +++ b/dist/native/file/isFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/isFile.js.map b/dist/native/file/isFile.js.map index b9aa98a23c..7d01050eba 100644 --- a/dist/native/file/isFile.js.map +++ b/dist/native/file/isFile.js.map @@ -1 +1 @@ -{"version":3,"file":"isFile.js","sourceRoot":"","sources":["../../../src/native/file/isFile.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,MAAM,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isFile.js","sourceRoot":"","sources":["../../../src/native/file/isFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,MAAM,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/isSymbolicLink.d.ts.map b/dist/native/file/isSymbolicLink.d.ts.map index d66628dbf9..d59f213f83 100644 --- a/dist/native/file/isSymbolicLink.d.ts.map +++ b/dist/native/file/isSymbolicLink.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isSymbolicLink.d.ts","sourceRoot":"","sources":["../../../src/native/file/isSymbolicLink.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isSymbolicLink.d.ts","sourceRoot":"","sources":["../../../src/native/file/isSymbolicLink.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/isSymbolicLink.js b/dist/native/file/isSymbolicLink.js index fb5e4ccb8d..32af797b70 100644 --- a/dist/native/file/isSymbolicLink.js +++ b/dist/native/file/isSymbolicLink.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/isSymbolicLink.js.map b/dist/native/file/isSymbolicLink.js.map index 393f43fa00..c9870d2443 100644 --- a/dist/native/file/isSymbolicLink.js.map +++ b/dist/native/file/isSymbolicLink.js.map @@ -1 +1 @@ -{"version":3,"file":"isSymbolicLink.js","sourceRoot":"","sources":["../../../src/native/file/isSymbolicLink.ts"],"names":[],"mappings":";;AAAA,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isSymbolicLink.js","sourceRoot":"","sources":["../../../src/native/file/isSymbolicLink.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAQ,EAAC,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/mkdir.d.ts.map b/dist/native/file/mkdir.d.ts.map index b34d06057c..fb798dd020 100644 --- a/dist/native/file/mkdir.d.ts.map +++ b/dist/native/file/mkdir.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mkdir.d.ts","sourceRoot":"","sources":["../../../src/native/file/mkdir.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file +{"version":3,"file":"mkdir.d.ts","sourceRoot":"","sources":["../../../src/native/file/mkdir.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file diff --git a/dist/native/file/mkdir.js b/dist/native/file/mkdir.js index 45275f4edc..1ee32aea29 100644 --- a/dist/native/file/mkdir.js +++ b/dist/native/file/mkdir.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/mkdir.js.map b/dist/native/file/mkdir.js.map index 8fa6d7a5cc..023267f3a1 100644 --- a/dist/native/file/mkdir.js.map +++ b/dist/native/file/mkdir.js.map @@ -1 +1 @@ -{"version":3,"file":"mkdir.js","sourceRoot":"","sources":["../../../src/native/file/mkdir.ts"],"names":[],"mappings":";;AAAA,2BAA8B;AAC9B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAA,cAAS,EAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mkdir.js","sourceRoot":"","sources":["../../../src/native/file/mkdir.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA8B;AAC9B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAA,cAAS,EAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/mktdir.d.ts.map b/dist/native/file/mktdir.d.ts.map index 40e27a48fe..2aa4fd8743 100644 --- a/dist/native/file/mktdir.d.ts.map +++ b/dist/native/file/mktdir.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mktdir.d.ts","sourceRoot":"","sources":["../../../src/native/file/mktdir.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"mktdir.d.ts","sourceRoot":"","sources":["../../../src/native/file/mktdir.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/file/mktdir.js b/dist/native/file/mktdir.js index fb2854e0d8..ded164f63c 100644 --- a/dist/native/file/mktdir.js +++ b/dist/native/file/mktdir.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/mktdir.js.map b/dist/native/file/mktdir.js.map index 208d22f1a7..7f6cebbd37 100644 --- a/dist/native/file/mktdir.js.map +++ b/dist/native/file/mktdir.js.map @@ -1 +1 @@ -{"version":3,"file":"mktdir.js","sourceRoot":"","sources":["../../../src/native/file/mktdir.ts"],"names":[],"mappings":";;AAAA,2BAAgC;AAChC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;QACd,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,gBAAW,EAAC,MAAM,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mktdir.js","sourceRoot":"","sources":["../../../src/native/file/mktdir.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAgC;AAChC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,cAAc;QACd,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,gBAAW,EAAC,MAAM,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/moveFile.d.ts.map b/dist/native/file/moveFile.d.ts.map index 485c062e1e..4035223cc1 100644 --- a/dist/native/file/moveFile.d.ts.map +++ b/dist/native/file/moveFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"moveFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/moveFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"moveFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/moveFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/file/moveFile.js b/dist/native/file/moveFile.js index 784dc51936..dc972f2723 100644 --- a/dist/native/file/moveFile.js +++ b/dist/native/file/moveFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/moveFile.js.map b/dist/native/file/moveFile.js.map index 9035184089..c7f8d3e5a7 100644 --- a/dist/native/file/moveFile.js.map +++ b/dist/native/file/moveFile.js.map @@ -1 +1 @@ -{"version":3,"file":"moveFile.js","sourceRoot":"","sources":["../../../src/native/file/moveFile.ts"],"names":[],"mappings":";;AAAA,2BAA2D;AAC3D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,IAAI,IAAA,aAAQ,EAAC,GAAG,CAAC,CAAC,WAAW,EAAE;YAC3B,IAAA,WAAM,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;;YAEhB,IAAA,iBAAY,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC1B,IAAA,WAAM,EAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"moveFile.js","sourceRoot":"","sources":["../../../src/native/file/moveFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA2D;AAC3D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,IAAI,IAAA,aAAQ,EAAC,GAAG,CAAC,CAAC,WAAW,EAAE;YAC3B,IAAA,WAAM,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;;YAEhB,IAAA,iBAAY,EAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC1B,IAAA,WAAM,EAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/pathJoin.d.ts.map b/dist/native/file/pathJoin.d.ts.map index a204e138fb..36ecf0b8f5 100644 --- a/dist/native/file/pathJoin.d.ts.map +++ b/dist/native/file/pathJoin.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pathJoin.d.ts","sourceRoot":"","sources":["../../../src/native/file/pathJoin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"pathJoin.d.ts","sourceRoot":"","sources":["../../../src/native/file/pathJoin.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/pathJoin.js b/dist/native/file/pathJoin.js index d9f47ac571..5cf50e038a 100644 --- a/dist/native/file/pathJoin.js +++ b/dist/native/file/pathJoin.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/file/pathJoin.js.map b/dist/native/file/pathJoin.js.map index 8258d254a0..0d266389a8 100644 --- a/dist/native/file/pathJoin.js.map +++ b/dist/native/file/pathJoin.js.map @@ -1 +1 @@ -{"version":3,"file":"pathJoin.js","sourceRoot":"","sources":["../../../src/native/file/pathJoin.ts"],"names":[],"mappings":";;;;;AAAA,gDAAuB;AACvB,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pathJoin.js","sourceRoot":"","sources":["../../../src/native/file/pathJoin.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,gDAAuB;AACvB,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/pathResolve.d.ts.map b/dist/native/file/pathResolve.d.ts.map index 43bcb508b2..83b014f416 100644 --- a/dist/native/file/pathResolve.d.ts.map +++ b/dist/native/file/pathResolve.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pathResolve.d.ts","sourceRoot":"","sources":["../../../src/native/file/pathResolve.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"pathResolve.d.ts","sourceRoot":"","sources":["../../../src/native/file/pathResolve.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/file/pathResolve.js b/dist/native/file/pathResolve.js index fad7afdb02..dcb017e594 100644 --- a/dist/native/file/pathResolve.js +++ b/dist/native/file/pathResolve.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/file/pathResolve.js.map b/dist/native/file/pathResolve.js.map index 0b9cd293ae..06fc2e2ca0 100644 --- a/dist/native/file/pathResolve.js.map +++ b/dist/native/file/pathResolve.js.map @@ -1 +1 @@ -{"version":3,"file":"pathResolve.js","sourceRoot":"","sources":["../../../src/native/file/pathResolve.ts"],"names":[],"mappings":";;;;;AAAA,gDAAuB;AACvB,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pathResolve.js","sourceRoot":"","sources":["../../../src/native/file/pathResolve.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,gDAAuB;AACvB,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/readDir.d.ts.map b/dist/native/file/readDir.d.ts.map index 63c2792789..ee7f391430 100644 --- a/dist/native/file/readDir.d.ts.map +++ b/dist/native/file/readDir.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"readDir.d.ts","sourceRoot":"","sources":["../../../src/native/file/readDir.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAGlE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"readDir.d.ts","sourceRoot":"","sources":["../../../src/native/file/readDir.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAGlE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/file/readDir.js b/dist/native/file/readDir.js index bf32d48b69..1a24768942 100644 --- a/dist/native/file/readDir.js +++ b/dist/native/file/readDir.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/file/readDir.js.map b/dist/native/file/readDir.js.map index 4125f28c33..d310979359 100644 --- a/dist/native/file/readDir.js.map +++ b/dist/native/file/readDir.js.map @@ -1 +1 @@ -{"version":3,"file":"readDir.js","sourceRoot":"","sources":["../../../src/native/file/readDir.ts"],"names":[],"mappings":";;;;;AAAA,2BAAgC;AAChC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAkB;KAC1B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,QAAQ,CAAC;QAC9B,MAAM,IAAI,GAAG,IAAA,gBAAW,EAAC,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QACrF,IAAI,GAAG;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"readDir.js","sourceRoot":"","sources":["../../../src/native/file/readDir.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2BAAgC;AAChC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAkB;KAC1B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,QAAQ,CAAC;QAC9B,MAAM,IAAI,GAAG,IAAA,gBAAW,EAAC,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QACrF,IAAI,GAAG;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/readFile.d.ts.map b/dist/native/file/readFile.d.ts.map index 8cc17d5070..77ff0b7308 100644 --- a/dist/native/file/readFile.d.ts.map +++ b/dist/native/file/readFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"readFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/readFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"readFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/readFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/file/readFile.js b/dist/native/file/readFile.js index 03c52ee48c..45b4415404 100644 --- a/dist/native/file/readFile.js +++ b/dist/native/file/readFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/readFile.js.map b/dist/native/file/readFile.js.map index cd7684d8c4..188879ba26 100644 --- a/dist/native/file/readFile.js.map +++ b/dist/native/file/readFile.js.map @@ -1 +1 @@ -{"version":3,"file":"readFile.js","sourceRoot":"","sources":["../../../src/native/file/readFile.ts"],"names":[],"mappings":";;AAAA,2BAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,QAAQ,CAAC;QACzB,oCAAoC;QACpC,MAAM,GAAG,GAAG,IAAA,iBAAY,EAAC,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAErF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"readFile.js","sourceRoot":"","sources":["../../../src/native/file/readFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,QAAQ,CAAC;QACzB,oCAAoC;QACpC,MAAM,GAAG,GAAG,IAAA,iBAAY,EAAC,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAErF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/renameFile.d.ts.map b/dist/native/file/renameFile.d.ts.map index e7cc2577df..35bb3ff8d4 100644 --- a/dist/native/file/renameFile.d.ts.map +++ b/dist/native/file/renameFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"renameFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/renameFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"renameFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/renameFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/file/renameFile.js b/dist/native/file/renameFile.js index 008169cbfb..e4e2f8092c 100644 --- a/dist/native/file/renameFile.js +++ b/dist/native/file/renameFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/renameFile.js.map b/dist/native/file/renameFile.js.map index 14de666cc3..dab1d93892 100644 --- a/dist/native/file/renameFile.js.map +++ b/dist/native/file/renameFile.js.map @@ -1 +1 @@ -{"version":3,"file":"renameFile.js","sourceRoot":"","sources":["../../../src/native/file/renameFile.ts"],"names":[],"mappings":";;AAAA,2BAA+B;AAC/B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QAC3B,IAAA,eAAU,EAAC,OAAO,EAAE,OAAO,CAAC,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"renameFile.js","sourceRoot":"","sources":["../../../src/native/file/renameFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAA+B;AAC/B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QAC3B,IAAA,eAAU,EAAC,OAAO,EAAE,OAAO,CAAC,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/symlink.d.ts.map b/dist/native/file/symlink.d.ts.map index 29001d05c1..b7d7631c6d 100644 --- a/dist/native/file/symlink.d.ts.map +++ b/dist/native/file/symlink.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"symlink.d.ts","sourceRoot":"","sources":["../../../src/native/file/symlink.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"symlink.d.ts","sourceRoot":"","sources":["../../../src/native/file/symlink.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/file/symlink.js b/dist/native/file/symlink.js index 6b29bf0c98..614c8d2665 100644 --- a/dist/native/file/symlink.js +++ b/dist/native/file/symlink.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/symlink.js.map b/dist/native/file/symlink.js.map index c387ca44f2..038ac4abcd 100644 --- a/dist/native/file/symlink.js.map +++ b/dist/native/file/symlink.js.map @@ -1 +1 @@ -{"version":3,"file":"symlink.js","sourceRoot":"","sources":["../../../src/native/file/symlink.ts"],"names":[],"mappings":";;AAAA,2BAAgC;AAChC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,KAAK,CAAE;QAC3B,IAAA,gBAAW,EAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"symlink.js","sourceRoot":"","sources":["../../../src/native/file/symlink.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAgC;AAChC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,EAAE,KAAK,CAAE;QAC3B,IAAA,gBAAW,EAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/truncateFile.d.ts.map b/dist/native/file/truncateFile.d.ts.map index 031a57508a..2162e55833 100644 --- a/dist/native/file/truncateFile.d.ts.map +++ b/dist/native/file/truncateFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"truncateFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/truncateFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"truncateFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/truncateFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/file/truncateFile.js b/dist/native/file/truncateFile.js index 9fdb77c8b8..4593de8372 100644 --- a/dist/native/file/truncateFile.js +++ b/dist/native/file/truncateFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/truncateFile.js.map b/dist/native/file/truncateFile.js.map index f16ee7c714..2f0d6b1f4f 100644 --- a/dist/native/file/truncateFile.js.map +++ b/dist/native/file/truncateFile.js.map @@ -1 +1 @@ -{"version":3,"file":"truncateFile.js","sourceRoot":"","sources":["../../../src/native/file/truncateFile.ts"],"names":[],"mappings":";;AAAA,2BAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,oCAAoC;QACpC,IAAA,iBAAY,EAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAExB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"truncateFile.js","sourceRoot":"","sources":["../../../src/native/file/truncateFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAiC;AACjC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,oCAAoC;QACpC,IAAA,iBAAY,EAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAExB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/file/writeFile.d.ts.map b/dist/native/file/writeFile.d.ts.map index a7b492fd67..6084dd4e28 100644 --- a/dist/native/file/writeFile.d.ts.map +++ b/dist/native/file/writeFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"writeFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/writeFile.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"writeFile.d.ts","sourceRoot":"","sources":["../../../src/native/file/writeFile.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/file/writeFile.js b/dist/native/file/writeFile.js index e01952a4c5..bfa468e07b 100644 --- a/dist/native/file/writeFile.js +++ b/dist/native/file/writeFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const structures_1 = require("../../structures"); diff --git a/dist/native/file/writeFile.js.map b/dist/native/file/writeFile.js.map index b9d5cd38f5..8297a33dd9 100644 --- a/dist/native/file/writeFile.js.map +++ b/dist/native/file/writeFile.js.map @@ -1 +1 @@ -{"version":3,"file":"writeFile.js","sourceRoot":"","sources":["../../../src/native/file/writeFile.ts"],"names":[],"mappings":";;AAAA,2BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QAC/B,oCAAoC;QACpC,IAAA,kBAAa,EAAC,IAAI,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAEhF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"writeFile.js","sourceRoot":"","sources":["../../../src/native/file/writeFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QAC/B,oCAAoC;QACpC,IAAA,kBAAa,EAAC,IAAI,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAG,QAA2B,IAAI,OAAO,EAAE,CAAC,CAAA;QAEhF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/bold.d.ts.map b/dist/native/formatting/bold.d.ts.map index 776b9ccde4..06f469c144 100644 --- a/dist/native/formatting/bold.d.ts.map +++ b/dist/native/formatting/bold.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bold.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/bold.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,eAAe,QAAY,CAAA;;;;;;;;AAExC,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bold.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/bold.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,eAAe,QAAY,CAAA;;;;;;;;AAExC,wBAmBE"} \ No newline at end of file diff --git a/dist/native/formatting/bold.js b/dist/native/formatting/bold.js index e8080d0f66..2e743300dc 100644 --- a/dist/native/formatting/bold.js +++ b/dist/native/formatting/bold.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BoldEscapeRegex = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/formatting/bold.js.map b/dist/native/formatting/bold.js.map index 4c5b12959a..3159fff21f 100644 --- a/dist/native/formatting/bold.js.map +++ b/dist/native/formatting/bold.js.map @@ -1 +1 @@ -{"version":3,"file":"bold.js","sourceRoot":"","sources":["../../../src/native/formatting/bold.ts"],"names":[],"mappings":";;;AAAA,2CAAiC;AACjC,iDAA0D;AAE7C,QAAA,eAAe,GAAG,SAAS,CAAA;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAI,EAAC,GAAG,CAAC,OAAO,CAAC,uBAAe,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bold.js","sourceRoot":"","sources":["../../../src/native/formatting/bold.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAiC;AACjC,iDAA0D;AAE7C,QAAA,eAAe,GAAG,SAAS,CAAA;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAI,EAAC,GAAG,CAAC,OAAO,CAAC,uBAAe,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/codeBlock.d.ts.map b/dist/native/formatting/codeBlock.d.ts.map index 154ec8134c..adfbf84ec9 100644 --- a/dist/native/formatting/codeBlock.d.ts.map +++ b/dist/native/formatting/codeBlock.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"codeBlock.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/codeBlock.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAG1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"codeBlock.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/codeBlock.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAG1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/formatting/codeBlock.js b/dist/native/formatting/codeBlock.js index 31ebf3cf78..046f3dd7de 100644 --- a/dist/native/formatting/codeBlock.js +++ b/dist/native/formatting/codeBlock.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/formatting/codeBlock.js.map b/dist/native/formatting/codeBlock.js.map index 15bf342eb8..b7e67d60a4 100644 --- a/dist/native/formatting/codeBlock.js.map +++ b/dist/native/formatting/codeBlock.js.map @@ -1 +1 @@ -{"version":3,"file":"codeBlock.js","sourceRoot":"","sources":["../../../src/native/formatting/codeBlock.ts"],"names":[],"mappings":";;AAAA,2CAA4C;AAC5C,iDAA0D;AAC1D,6CAAkD;AAElD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QACtB,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,gCAAmB,EAAE,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,CAAC;YACF,IAAA,sBAAS,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC;YACtB,IAAA,sBAAS,EAAC,GAAG,CAAC,CACrB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"codeBlock.js","sourceRoot":"","sources":["../../../src/native/formatting/codeBlock.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4C;AAC5C,iDAA0D;AAC1D,6CAAkD;AAElD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QACtB,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,gCAAmB,EAAE,MAAM,CAAC,CAAA;QAC9C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,CAAC;YACF,IAAA,sBAAS,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC;YACtB,IAAA,sBAAS,EAAC,GAAG,CAAC,CACrB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/hyperlink.d.ts.map b/dist/native/formatting/hyperlink.d.ts.map index 6be5e92a67..4eaffe78c9 100644 --- a/dist/native/formatting/hyperlink.d.ts.map +++ b/dist/native/formatting/hyperlink.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hyperlink.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/hyperlink.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,eAAe,QAAY,CAAA;;;;;;;;;;;;;;AAExC,wBA0BE"} \ No newline at end of file +{"version":3,"file":"hyperlink.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/hyperlink.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,eAAe,QAAY,CAAA;;;;;;;;;;;;;;AAExC,wBA0BE"} \ No newline at end of file diff --git a/dist/native/formatting/hyperlink.js b/dist/native/formatting/hyperlink.js index 1b02a9f092..b1d33754a7 100644 --- a/dist/native/formatting/hyperlink.js +++ b/dist/native/formatting/hyperlink.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BoldEscapeRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/formatting/hyperlink.js.map b/dist/native/formatting/hyperlink.js.map index 16f856564f..fd55c77742 100644 --- a/dist/native/formatting/hyperlink.js.map +++ b/dist/native/formatting/hyperlink.js.map @@ -1 +1 @@ -{"version":3,"file":"hyperlink.js","sourceRoot":"","sources":["../../../src/native/formatting/hyperlink.ts"],"names":[],"mappings":";;;AACA,iDAA0D;AAE7C,QAAA,eAAe,GAAG,SAAS,CAAA;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,KAAK,GAAG,GAAG,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hyperlink.js","sourceRoot":"","sources":["../../../src/native/formatting/hyperlink.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,iDAA0D;AAE7C,QAAA,eAAe,GAAG,SAAS,CAAA;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,KAAK,GAAG,GAAG,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/inlineCode.d.ts.map b/dist/native/formatting/inlineCode.d.ts.map index ce5c3bdf0e..9f87e3fccb 100644 --- a/dist/native/formatting/inlineCode.d.ts.map +++ b/dist/native/formatting/inlineCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inlineCode.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/inlineCode.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,mBAAmB,QAAW,CAAA;;;;;;;;AAE3C,wBAwBE"} \ No newline at end of file +{"version":3,"file":"inlineCode.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/inlineCode.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,mBAAmB,QAAW,CAAA;;;;;;;;AAE3C,wBAwBE"} \ No newline at end of file diff --git a/dist/native/formatting/inlineCode.js b/dist/native/formatting/inlineCode.js index f8fc9e6167..907419544f 100644 --- a/dist/native/formatting/inlineCode.js +++ b/dist/native/formatting/inlineCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.MarkdownEscapeRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/formatting/inlineCode.js.map b/dist/native/formatting/inlineCode.js.map index 30f4da9e6f..432e53e85a 100644 --- a/dist/native/formatting/inlineCode.js.map +++ b/dist/native/formatting/inlineCode.js.map @@ -1 +1 @@ -{"version":3,"file":"inlineCode.js","sourceRoot":"","sources":["../../../src/native/formatting/inlineCode.ts"],"names":[],"mappings":";;;AACA,iDAA0D;AAE7C,QAAA,mBAAmB,GAAG,QAAQ,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE;QACL,SAAS;QACT,WAAW;KACd;IACD,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAEhB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,2BAAmB,EAAE,MAAM,CAAC,IAAI,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inlineCode.js","sourceRoot":"","sources":["../../../src/native/formatting/inlineCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,iDAA0D;AAE7C,QAAA,mBAAmB,GAAG,QAAQ,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE;QACL,SAAS;QACT,WAAW;KACd;IACD,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAEhB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,2BAAmB,EAAE,MAAM,CAAC,IAAI,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/italic.d.ts.map b/dist/native/formatting/italic.d.ts.map index 39ed2d7dea..f338ba15be 100644 --- a/dist/native/formatting/italic.d.ts.map +++ b/dist/native/formatting/italic.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"italic.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/italic.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,iBAAiB,QAAc,CAAA;;;;;;;;AAE5C,wBAmBE"} \ No newline at end of file +{"version":3,"file":"italic.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/italic.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,iBAAiB,QAAc,CAAA;;;;;;;;AAE5C,wBAmBE"} \ No newline at end of file diff --git a/dist/native/formatting/italic.js b/dist/native/formatting/italic.js index 1f61d06492..155ea8e037 100644 --- a/dist/native/formatting/italic.js +++ b/dist/native/formatting/italic.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ItalicEscapeRegex = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/formatting/italic.js.map b/dist/native/formatting/italic.js.map index 2d763ee51b..5c08ffd885 100644 --- a/dist/native/formatting/italic.js.map +++ b/dist/native/formatting/italic.js.map @@ -1 +1 @@ -{"version":3,"file":"italic.js","sourceRoot":"","sources":["../../../src/native/formatting/italic.ts"],"names":[],"mappings":";;;AAAA,2CAAmC;AACnC,iDAA0D;AAE7C,QAAA,iBAAiB,GAAG,WAAW,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,mBAAM,EAAC,GAAG,CAAC,OAAO,CAAC,yBAAiB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"italic.js","sourceRoot":"","sources":["../../../src/native/formatting/italic.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAmC;AACnC,iDAA0D;AAE7C,QAAA,iBAAiB,GAAG,WAAW,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,mBAAM,EAAC,GAAG,CAAC,OAAO,CAAC,yBAAiB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/spoiler.d.ts.map b/dist/native/formatting/spoiler.d.ts.map index 7f65d52654..b847d799f1 100644 --- a/dist/native/formatting/spoiler.d.ts.map +++ b/dist/native/formatting/spoiler.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"spoiler.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/spoiler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,kBAAkB,QAAY,CAAA;;;;;;;;AAE3C,wBAmBE"} \ No newline at end of file +{"version":3,"file":"spoiler.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/spoiler.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,kBAAkB,QAAY,CAAA;;;;;;;;AAE3C,wBAmBE"} \ No newline at end of file diff --git a/dist/native/formatting/spoiler.js b/dist/native/formatting/spoiler.js index 7f1d1f0748..d7985b94ab 100644 --- a/dist/native/formatting/spoiler.js +++ b/dist/native/formatting/spoiler.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.SpoilerEscapeRegex = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/formatting/spoiler.js.map b/dist/native/formatting/spoiler.js.map index 8de3091e0f..a353247aad 100644 --- a/dist/native/formatting/spoiler.js.map +++ b/dist/native/formatting/spoiler.js.map @@ -1 +1 @@ -{"version":3,"file":"spoiler.js","sourceRoot":"","sources":["../../../src/native/formatting/spoiler.ts"],"names":[],"mappings":";;;AAAA,2CAA0C;AAC1C,iDAA0D;AAE7C,QAAA,kBAAkB,GAAG,SAAS,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAO,EAAC,GAAG,CAAC,OAAO,CAAC,0BAAkB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"spoiler.js","sourceRoot":"","sources":["../../../src/native/formatting/spoiler.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAA0C;AAC1C,iDAA0D;AAE7C,QAAA,kBAAkB,GAAG,SAAS,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAO,EAAC,GAAG,CAAC,OAAO,CAAC,0BAAkB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/strikethrough.d.ts.map b/dist/native/formatting/strikethrough.d.ts.map index c1f44827b0..14956a8301 100644 --- a/dist/native/formatting/strikethrough.d.ts.map +++ b/dist/native/formatting/strikethrough.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/strikethrough.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,wBAAwB,QAAW,CAAA;;;;;;;;AAEhD,wBAmBE"} \ No newline at end of file +{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/strikethrough.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,wBAAwB,QAAW,CAAA;;;;;;;;AAEhD,wBAmBE"} \ No newline at end of file diff --git a/dist/native/formatting/strikethrough.js b/dist/native/formatting/strikethrough.js index 2f10ce34bb..d3051aed88 100644 --- a/dist/native/formatting/strikethrough.js +++ b/dist/native/formatting/strikethrough.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.StrikeThroughEscapeRegex = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/formatting/strikethrough.js.map b/dist/native/formatting/strikethrough.js.map index 7ea50a6f12..7c7b91b600 100644 --- a/dist/native/formatting/strikethrough.js.map +++ b/dist/native/formatting/strikethrough.js.map @@ -1 +1 @@ -{"version":3,"file":"strikethrough.js","sourceRoot":"","sources":["../../../src/native/formatting/strikethrough.ts"],"names":[],"mappings":";;;AAAA,2CAAgD;AAChD,iDAA0D;AAE7C,QAAA,wBAAwB,GAAG,QAAQ,CAAA;AAEhD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mEAAmE;YAChF,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,0BAAa,EAAC,GAAG,CAAC,OAAO,CAAC,gCAAwB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"strikethrough.js","sourceRoot":"","sources":["../../../src/native/formatting/strikethrough.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAgD;AAChD,iDAA0D;AAE7C,QAAA,wBAAwB,GAAG,QAAQ,CAAA;AAEhD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mEAAmE;YAChF,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,0BAAa,EAAC,GAAG,CAAC,OAAO,CAAC,gCAAwB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/subtext.d.ts.map b/dist/native/formatting/subtext.d.ts.map index 23d80f8a59..a2e8053e65 100644 --- a/dist/native/formatting/subtext.d.ts.map +++ b/dist/native/formatting/subtext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"subtext.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/subtext.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"subtext.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/subtext.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/formatting/subtext.js b/dist/native/formatting/subtext.js index beb2571cc2..f65e8f2c4d 100644 --- a/dist/native/formatting/subtext.js +++ b/dist/native/formatting/subtext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/formatting/subtext.js.map b/dist/native/formatting/subtext.js.map index 6f4e97aa1f..c7f1278529 100644 --- a/dist/native/formatting/subtext.js.map +++ b/dist/native/formatting/subtext.js.map @@ -1 +1 @@ -{"version":3,"file":"subtext.js","sourceRoot":"","sources":["../../../src/native/formatting/subtext.ts"],"names":[],"mappings":";;AAAA,2CAAoC;AACpC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"subtext.js","sourceRoot":"","sources":["../../../src/native/formatting/subtext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoC;AACpC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,oBAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/formatting/underline.d.ts.map b/dist/native/formatting/underline.d.ts.map index f125e04a49..b4daeeb6d3 100644 --- a/dist/native/formatting/underline.d.ts.map +++ b/dist/native/formatting/underline.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"underline.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/underline.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,oBAAoB,QAAW,CAAA;;;;;;;;AAE5C,wBAoBE"} \ No newline at end of file +{"version":3,"file":"underline.d.ts","sourceRoot":"","sources":["../../../src/native/formatting/underline.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,eAAO,MAAM,oBAAoB,QAAW,CAAA;;;;;;;;AAE5C,wBAoBE"} \ No newline at end of file diff --git a/dist/native/formatting/underline.js b/dist/native/formatting/underline.js index 2792c9b7b8..426fdb2b5a 100644 --- a/dist/native/formatting/underline.js +++ b/dist/native/formatting/underline.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.UnderlineEscapeRegex = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/formatting/underline.js.map b/dist/native/formatting/underline.js.map index e6a36caa91..2155080649 100644 --- a/dist/native/formatting/underline.js.map +++ b/dist/native/formatting/underline.js.map @@ -1 +1 @@ -{"version":3,"file":"underline.js","sourceRoot":"","sources":["../../../src/native/formatting/underline.ts"],"names":[],"mappings":";;;AAAA,2CAAsC;AACtC,iDAA0D;AAE7C,QAAA,oBAAoB,GAAG,QAAQ,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,2BAA2B;IACxC,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iEAAiE;YAC9E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,sBAAS,EAAC,GAAG,CAAC,OAAO,CAAC,4BAAoB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"underline.js","sourceRoot":"","sources":["../../../src/native/formatting/underline.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAsC;AACtC,iDAA0D;AAE7C,QAAA,oBAAoB,GAAG,QAAQ,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,2BAA2B;IACxC,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iEAAiE;YAC9E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,sBAAS,EAAC,GAAG,CAAC,OAAO,CAAC,4BAAoB,EAAE,MAAM,CAAC,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/createGuild.d.ts.map b/dist/native/guild/createGuild.d.ts.map index 913334c572..6051267200 100644 --- a/dist/native/guild/createGuild.d.ts.map +++ b/dist/native/guild/createGuild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createGuild.d.ts","sourceRoot":"","sources":["../../../src/native/guild/createGuild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"createGuild.d.ts","sourceRoot":"","sources":["../../../src/native/guild/createGuild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/createGuild.js b/dist/native/guild/createGuild.js index d84686d37e..d55877cc2a 100644 --- a/dist/native/guild/createGuild.js +++ b/dist/native/guild/createGuild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/createGuild.js.map b/dist/native/guild/createGuild.js.map index 767e1434c5..760d894870 100644 --- a/dist/native/guild/createGuild.js.map +++ b/dist/native/guild/createGuild.js.map @@ -1 +1 @@ -{"version":3,"file":"createGuild.js","sourceRoot":"","sources":["../../../src/native/guild/createGuild.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,GAAG;SACpB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QACrC,MAAM,KAAK,GAAG,MAAM,CAAC,QAAQ;YACzB,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC;YAC/D,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAC7D,CAAA;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createGuild.js","sourceRoot":"","sources":["../../../src/native/guild/createGuild.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,GAAG;SACpB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC;QACrC,MAAM,KAAK,GAAG,MAAM,CAAC,QAAQ;YACzB,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC;YAC/D,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAC7D,CAAA;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/createGuildTemplate.d.ts.map b/dist/native/guild/createGuildTemplate.d.ts.map index 330c5fdd03..a9a901438e 100644 --- a/dist/native/guild/createGuildTemplate.d.ts.map +++ b/dist/native/guild/createGuildTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/createGuildTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"createGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/createGuildTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/createGuildTemplate.js b/dist/native/guild/createGuildTemplate.js index 5ecbe98c6b..efe769df19 100644 --- a/dist/native/guild/createGuildTemplate.js +++ b/dist/native/guild/createGuildTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/createGuildTemplate.js.map b/dist/native/guild/createGuildTemplate.js.map index 39024a1b97..e197550823 100644 --- a/dist/native/guild/createGuildTemplate.js.map +++ b/dist/native/guild/createGuildTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"createGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/createGuildTemplate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,cAAc,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/createGuildTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,cAAc,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IACpG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuild.d.ts.map b/dist/native/guild/deleteGuild.d.ts.map index 0c9c485c02..512f613c15 100644 --- a/dist/native/guild/deleteGuild.d.ts.map +++ b/dist/native/guild/deleteGuild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuild.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"deleteGuild.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuild.js b/dist/native/guild/deleteGuild.js index b7cfa029b0..7bf8b11968 100644 --- a/dist/native/guild/deleteGuild.js +++ b/dist/native/guild/deleteGuild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/deleteGuild.js.map b/dist/native/guild/deleteGuild.js.map index b51d3d7db5..db209418ba 100644 --- a/dist/native/guild/deleteGuild.js.map +++ b/dist/native/guild/deleteGuild.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuild.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuild.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,EAAE,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteGuild.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuild.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,EAAE,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuildApplicationCommands.d.ts.map b/dist/native/guild/deleteGuildApplicationCommands.d.ts.map index b93ce4f582..b5fbfca183 100644 --- a/dist/native/guild/deleteGuildApplicationCommands.d.ts.map +++ b/dist/native/guild/deleteGuildApplicationCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildApplicationCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAYE"} \ No newline at end of file +{"version":3,"file":"deleteGuildApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildApplicationCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAYE"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuildApplicationCommands.js b/dist/native/guild/deleteGuildApplicationCommands.js index 672e1752d1..478c6a6363 100644 --- a/dist/native/guild/deleteGuildApplicationCommands.js +++ b/dist/native/guild/deleteGuildApplicationCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/deleteGuildApplicationCommands.js.map b/dist/native/guild/deleteGuildApplicationCommands.js.map index 346fc70c73..97eabb6620 100644 --- a/dist/native/guild/deleteGuildApplicationCommands.js.map +++ b/dist/native/guild/deleteGuildApplicationCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildApplicationCommands.ts"],"names":[],"mappings":";;AAAA,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,CAAC,gBAAG,CAAC,aAAa,CAAC,SAAS,EAAE,mCAAmC,CAAC,CAAC;IACzE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteGuildApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildApplicationCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,CAAC,gBAAG,CAAC,aAAa,CAAC,SAAS,EAAE,mCAAmC,CAAC,CAAC;IACzE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuildTemplate.d.ts.map b/dist/native/guild/deleteGuildTemplate.d.ts.map index be144e1078..b9b14ab107 100644 --- a/dist/native/guild/deleteGuildTemplate.d.ts.map +++ b/dist/native/guild/deleteGuildTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"deleteGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/deleteGuildTemplate.js b/dist/native/guild/deleteGuildTemplate.js index 0f0fe8f9a6..d6fd51776f 100644 --- a/dist/native/guild/deleteGuildTemplate.js +++ b/dist/native/guild/deleteGuildTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/deleteGuildTemplate.js.map b/dist/native/guild/deleteGuildTemplate.js.map index 9c064ebff6..52c166b7dd 100644 --- a/dist/native/guild/deleteGuildTemplate.js.map +++ b/dist/native/guild/deleteGuildTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildTemplate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/deleteGuildTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/editGuildTemplate.d.ts.map b/dist/native/guild/editGuildTemplate.d.ts.map index 128305648c..a095886c6b 100644 --- a/dist/native/guild/editGuildTemplate.d.ts.map +++ b/dist/native/guild/editGuildTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/editGuildTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"editGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/editGuildTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/editGuildTemplate.js b/dist/native/guild/editGuildTemplate.js index 79b6ed7714..365dc467e0 100644 --- a/dist/native/guild/editGuildTemplate.js +++ b/dist/native/guild/editGuildTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/editGuildTemplate.js.map b/dist/native/guild/editGuildTemplate.js.map index 3c31680b6f..a18f007ed8 100644 --- a/dist/native/guild/editGuildTemplate.js.map +++ b/dist/native/guild/editGuildTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"editGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/editGuildTemplate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC;QACrC,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,CAAC;YAC7B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,IAAI,IAAI,SAAS;SACjC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/editGuildTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC;QACrC,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,CAAC;YAC7B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,IAAI,IAAI,SAAS;SACjC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/getGuildInvite.d.ts.map b/dist/native/guild/getGuildInvite.d.ts.map index 6cca14cf1f..b5621d4016 100644 --- a/dist/native/guild/getGuildInvite.d.ts.map +++ b/dist/native/guild/getGuildInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getGuildInvite.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;;;;;;;AAE1E,wBAsCE"} \ No newline at end of file +{"version":3,"file":"getGuildInvite.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;;;;;;;AAE1E,wBAsCE"} \ No newline at end of file diff --git a/dist/native/guild/getGuildInvite.js b/dist/native/guild/getGuildInvite.js index ee3aec8ab3..40c189fa53 100644 --- a/dist/native/guild/getGuildInvite.js +++ b/dist/native/guild/getGuildInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const invite_1 = require("../../properties/invite"); diff --git a/dist/native/guild/getGuildInvite.js.map b/dist/native/guild/getGuildInvite.js.map index 7c711155a9..761591c393 100644 --- a/dist/native/guild/getGuildInvite.js.map +++ b/dist/native/guild/getGuildInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"getGuildInvite.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildInvite.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC9D,IAAI,IAAI,IAAI,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getGuildInvite.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC9D,IAAI,IAAI,IAAI,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/getGuildPreview.d.ts.map b/dist/native/guild/getGuildPreview.d.ts.map index 7f7fa5411c..594fd41411 100644 --- a/dist/native/guild/getGuildPreview.d.ts.map +++ b/dist/native/guild/getGuildPreview.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getGuildPreview.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildPreview.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AACrF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"getGuildPreview.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildPreview.ts"],"names":[],"mappings":"AAKA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AACrF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/getGuildPreview.js b/dist/native/guild/getGuildPreview.js index eb93653d86..7f2f8ae0dc 100644 --- a/dist/native/guild/getGuildPreview.js +++ b/dist/native/guild/getGuildPreview.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const guild_1 = require("../../properties/guild"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/getGuildPreview.js.map b/dist/native/guild/getGuildPreview.js.map index 5bed9c2773..6862c1fa2d 100644 --- a/dist/native/guild/getGuildPreview.js.map +++ b/dist/native/guild/getGuildPreview.js.map @@ -1 +1 @@ -{"version":3,"file":"getGuildPreview.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildPreview.ts"],"names":[],"mappings":";;AAAA,kDAAqF;AACrF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAoB;SAC7B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,YAAY,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;QACxI,IAAI,OAAO,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,8BAAsB,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAA;QACpF,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getGuildPreview.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildPreview.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAqF;AACrF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAoB;SAC7B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,YAAY,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;QACxI,IAAI,OAAO,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,8BAAsB,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAA;QACpF,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/getGuildTemplate.d.ts.map b/dist/native/guild/getGuildTemplate.d.ts.map index 431ba81681..82a80b39ee 100644 --- a/dist/native/guild/getGuildTemplate.d.ts.map +++ b/dist/native/guild/getGuildTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gBAAgB;IACxB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,QAAQ,cAAc;IACtB,SAAS,qBAAqB;IAC9B,gBAAgB,qBAAqB;IACrC,GAAG,QAAQ;IACX,UAAU,eAAe;IACzB,QAAQ,aAAa;CACxB;;;;;;;;;;;;;;AAED,wBAgCE"} \ No newline at end of file +{"version":3,"file":"getGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/getGuildTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gBAAgB;IACxB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,QAAQ,cAAc;IACtB,SAAS,qBAAqB;IAC9B,gBAAgB,qBAAqB;IACrC,GAAG,QAAQ;IACX,UAAU,eAAe;IACzB,QAAQ,aAAa;CACxB;;;;;;;;;;;;;;AAED,wBAgCE"} \ No newline at end of file diff --git a/dist/native/guild/getGuildTemplate.js b/dist/native/guild/getGuildTemplate.js index fb6e5debd5..b78ab69ce1 100644 --- a/dist/native/guild/getGuildTemplate.js +++ b/dist/native/guild/getGuildTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.TemplateProperty = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/guild/getGuildTemplate.js.map b/dist/native/guild/getGuildTemplate.js.map index a24b97adc7..0211e0c16c 100644 --- a/dist/native/guild/getGuildTemplate.js.map +++ b/dist/native/guild/getGuildTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"getGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildTemplate.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,iCAAa,CAAA;IACb,iCAAa,CAAA;IACb,+CAA2B,CAAA;IAC3B,uCAAmB,CAAA;IACnB,0CAAsB,CAAA;IACtB,kDAA8B,CAAA;IAC9B,yDAAqC,CAAA;IACrC,+BAAW,CAAA;IACX,6CAAyB,CAAA;IACzB,yCAAqB,CAAA;AACzB,CAAC,EAXW,gBAAgB,gCAAhB,gBAAgB,QAW3B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gBAAgB;SACzB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,QAAQ,EAAE,IAAI,CAAE;QACjC,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/getGuildTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,iCAAa,CAAA;IACb,iCAAa,CAAA;IACb,+CAA2B,CAAA;IAC3B,uCAAmB,CAAA;IACnB,0CAAsB,CAAA;IACtB,kDAA8B,CAAA;IAC9B,yDAAqC,CAAA;IACrC,+BAAW,CAAA;IACX,6CAAyB,CAAA;IACzB,yCAAqB,CAAA;AACzB,CAAC,EAXW,gBAAgB,gCAAhB,gBAAgB,QAW3B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gBAAgB;SACzB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,QAAQ,EAAE,IAAI,CAAE;QACjC,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildAfkChannelID.d.ts.map b/dist/native/guild/guildAfkChannelID.d.ts.map index 7bfa817def..ec2a5f4f4a 100644 --- a/dist/native/guild/guildAfkChannelID.d.ts.map +++ b/dist/native/guild/guildAfkChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAfkChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAfkChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildAfkChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAfkChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildAfkChannelID.js b/dist/native/guild/guildAfkChannelID.js index fddd9a1713..e325c28114 100644 --- a/dist/native/guild/guildAfkChannelID.js +++ b/dist/native/guild/guildAfkChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildAfkChannelID.js.map b/dist/native/guild/guildAfkChannelID.js.map index b9a3b4dd74..a43aa42e88 100644 --- a/dist/native/guild/guildAfkChannelID.js.map +++ b/dist/native/guild/guildAfkChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAfkChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildAfkChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,YAAY,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAfkChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildAfkChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,YAAY,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildAfkTimeout.d.ts.map b/dist/native/guild/guildAfkTimeout.d.ts.map index ae912b5b75..94e986a7ba 100644 --- a/dist/native/guild/guildAfkTimeout.d.ts.map +++ b/dist/native/guild/guildAfkTimeout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAfkTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAfkTimeout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildAfkTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAfkTimeout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildAfkTimeout.js b/dist/native/guild/guildAfkTimeout.js index bd22db8ba1..6e1caf7c29 100644 --- a/dist/native/guild/guildAfkTimeout.js +++ b/dist/native/guild/guildAfkTimeout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildAfkTimeout.js.map b/dist/native/guild/guildAfkTimeout.js.map index 2cb7643b5c..00af5f5673 100644 --- a/dist/native/guild/guildAfkTimeout.js.map +++ b/dist/native/guild/guildAfkTimeout.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAfkTimeout.js","sourceRoot":"","sources":["../../../src/native/guild/guildAfkTimeout.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAfkTimeout.js","sourceRoot":"","sources":["../../../src/native/guild/guildAfkTimeout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildApproximateMemberCount.d.ts.map b/dist/native/guild/guildApproximateMemberCount.d.ts.map index f0edf6dcc0..23db8738d7 100644 --- a/dist/native/guild/guildApproximateMemberCount.d.ts.map +++ b/dist/native/guild/guildApproximateMemberCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildApproximateMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildApproximateMemberCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildApproximateMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildApproximateMemberCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildApproximateMemberCount.js b/dist/native/guild/guildApproximateMemberCount.js index 5f25997dd4..17da483692 100644 --- a/dist/native/guild/guildApproximateMemberCount.js +++ b/dist/native/guild/guildApproximateMemberCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildApproximateMemberCount.js.map b/dist/native/guild/guildApproximateMemberCount.js.map index 3236f911a1..909c468237 100644 --- a/dist/native/guild/guildApproximateMemberCount.js.map +++ b/dist/native/guild/guildApproximateMemberCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildApproximateMemberCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildApproximateMemberCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,sBAAsB,IAAI,CAAC,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildApproximateMemberCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildApproximateMemberCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,sBAAsB,IAAI,CAAC,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildApproximatePresenceCount.d.ts.map b/dist/native/guild/guildApproximatePresenceCount.d.ts.map index bc6cb629e9..00054b7ecb 100644 --- a/dist/native/guild/guildApproximatePresenceCount.d.ts.map +++ b/dist/native/guild/guildApproximatePresenceCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildApproximatePresenceCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildApproximatePresenceCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildApproximatePresenceCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildApproximatePresenceCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildApproximatePresenceCount.js b/dist/native/guild/guildApproximatePresenceCount.js index 3196163475..8677aa6344 100644 --- a/dist/native/guild/guildApproximatePresenceCount.js +++ b/dist/native/guild/guildApproximatePresenceCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildApproximatePresenceCount.js.map b/dist/native/guild/guildApproximatePresenceCount.js.map index 00a958b134..6cac099bad 100644 --- a/dist/native/guild/guildApproximatePresenceCount.js.map +++ b/dist/native/guild/guildApproximatePresenceCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildApproximatePresenceCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildApproximatePresenceCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iCAAiC;KACpC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,wBAAwB,IAAI,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildApproximatePresenceCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildApproximatePresenceCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iCAAiC;KACpC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,wBAAwB,IAAI,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildAutomodRules.d.ts.map b/dist/native/guild/guildAutomodRules.d.ts.map index 925b868561..4a70b16b35 100644 --- a/dist/native/guild/guildAutomodRules.d.ts.map +++ b/dist/native/guild/guildAutomodRules.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAutomodRules.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAutomodRules.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAyB,MAAM,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;AAGzF,wBA2CE"} \ No newline at end of file +{"version":3,"file":"guildAutomodRules.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAutomodRules.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAyB,MAAM,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;AAGzF,wBA2CE"} \ No newline at end of file diff --git a/dist/native/guild/guildAutomodRules.js b/dist/native/guild/guildAutomodRules.js index 80662ba820..307e10e10d 100644 --- a/dist/native/guild/guildAutomodRules.js +++ b/dist/native/guild/guildAutomodRules.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildAutomodRules.js.map b/dist/native/guild/guildAutomodRules.js.map index 93f2754049..2e9fcd2118 100644 --- a/dist/native/guild/guildAutomodRules.js.map +++ b/dist/native/guild/guildAutomodRules.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAutomodRules.js","sourceRoot":"","sources":["../../../src/native/guild/guildAutomodRules.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,8DAAyF;AACzF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;SAC5B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtF,IAAI,KAAK,IAAI,IAAI,EAAE;YACf,MAAM,IAAI,GAAG,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;YACtE,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;SACzH;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAutomodRules.js","sourceRoot":"","sources":["../../../src/native/guild/guildAutomodRules.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,8DAAyF;AACzF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;SAC5B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtF,IAAI,KAAK,IAAI,IAAI,EAAE;YACf,MAAM,IAAI,GAAG,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;YACtE,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;SACzH;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildAvailable.d.ts.map b/dist/native/guild/guildAvailable.d.ts.map index 4b0a422206..bdf686e2d7 100644 --- a/dist/native/guild/guildAvailable.d.ts.map +++ b/dist/native/guild/guildAvailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildAvailable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildAvailable.js b/dist/native/guild/guildAvailable.js index 1e5b97f125..f2cc6a4c8b 100644 --- a/dist/native/guild/guildAvailable.js +++ b/dist/native/guild/guildAvailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildAvailable.js.map b/dist/native/guild/guildAvailable.js.map index 487e4ea815..1bea505201 100644 --- a/dist/native/guild/guildAvailable.js.map +++ b/dist/native/guild/guildAvailable.js.map @@ -1 +1 @@ -{"version":3,"file":"guildAvailable.js","sourceRoot":"","sources":["../../../src/native/guild/guildAvailable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildAvailable.js","sourceRoot":"","sources":["../../../src/native/guild/guildAvailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBanReason.d.ts.map b/dist/native/guild/guildBanReason.d.ts.map index 85cd25652b..1717765276 100644 --- a/dist/native/guild/guildBanReason.d.ts.map +++ b/dist/native/guild/guildBanReason.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBanReason.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBanReason.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"guildBanReason.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBanReason.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/guildBanReason.js b/dist/native/guild/guildBanReason.js index 9a91e8390c..4a86345e7e 100644 --- a/dist/native/guild/guildBanReason.js +++ b/dist/native/guild/guildBanReason.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBanReason.js.map b/dist/native/guild/guildBanReason.js.map index 28af5f12f6..ebc923117f 100644 --- a/dist/native/guild/guildBanReason.js.map +++ b/dist/native/guild/guildBanReason.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBanReason.js","sourceRoot":"","sources":["../../../src/native/guild/guildBanReason.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;QAClB,eAAe;QACf,oBAAoB;QACpB,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,gCAAgC;IAC7C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,IAAI,CAAC,IAAI,CAAC,SAAS;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,CAAA;QAE7D,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBanReason.js","sourceRoot":"","sources":["../../../src/native/guild/guildBanReason.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;QAClB,eAAe;QACf,oBAAoB;QACpB,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,gCAAgC;IAC7C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,IAAI,CAAC,IAAI,CAAC,SAAS;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,CAAA;QAE7D,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBannedMembers.d.ts.map b/dist/native/guild/guildBannedMembers.d.ts.map index 1e51126d75..a79db8cc26 100644 --- a/dist/native/guild/guildBannedMembers.d.ts.map +++ b/dist/native/guild/guildBannedMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBannedMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBannedMembers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"guildBannedMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBannedMembers.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/guild/guildBannedMembers.js b/dist/native/guild/guildBannedMembers.js index 320529c510..df037fe15b 100644 --- a/dist/native/guild/guildBannedMembers.js +++ b/dist/native/guild/guildBannedMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildBannedMembers.js.map b/dist/native/guild/guildBannedMembers.js.map index 57ea273cf4..0fc0d06208 100644 --- a/dist/native/guild/guildBannedMembers.js.map +++ b/dist/native/guild/guildBannedMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBannedMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildBannedMembers.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AAEzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,uCAAuC;SACvD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,CAAE;QACzB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,MAAM,IAAI,GAAG,MAAM,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBannedMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildBannedMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AAEzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,uCAAuC;SACvD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,CAAE;QACzB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,MAAM,IAAI,GAAG,MAAM,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAClD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBanner.d.ts.map b/dist/native/guild/guildBanner.d.ts.map index 4c3f1ceff4..7a688ceed6 100644 --- a/dist/native/guild/guildBanner.d.ts.map +++ b/dist/native/guild/guildBanner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBanner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBanner.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"guildBanner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBanner.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/guildBanner.js b/dist/native/guild/guildBanner.js index ed7ddc9ce8..a5d223e18c 100644 --- a/dist/native/guild/guildBanner.js +++ b/dist/native/guild/guildBanner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBanner.js.map b/dist/native/guild/guildBanner.js.map index a6595f7b2d..ef1e5ab4be 100644 --- a/dist/native/guild/guildBanner.js.map +++ b/dist/native/guild/guildBanner.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBanner.js","sourceRoot":"","sources":["../../../src/native/guild/guildBanner.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,eAAe;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBanner.js","sourceRoot":"","sources":["../../../src/native/guild/guildBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,eAAe;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostCount.d.ts.map b/dist/native/guild/guildBoostCount.d.ts.map index 99644d975e..8494f2b2ec 100644 --- a/dist/native/guild/guildBoostCount.d.ts.map +++ b/dist/native/guild/guildBoostCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildBoostCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostCount.js b/dist/native/guild/guildBoostCount.js index a8ed54cfc7..ee1a15728a 100644 --- a/dist/native/guild/guildBoostCount.js +++ b/dist/native/guild/guildBoostCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBoostCount.js.map b/dist/native/guild/guildBoostCount.js.map index 7b0f79aa48..3727e2c6f6 100644 --- a/dist/native/guild/guildBoostCount.js.map +++ b/dist/native/guild/guildBoostCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,wBAAwB,IAAI,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBoostCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,wBAAwB,IAAI,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostLevel.d.ts.map b/dist/native/guild/guildBoostLevel.d.ts.map index 60919083df..63c9cd0dd3 100644 --- a/dist/native/guild/guildBoostLevel.d.ts.map +++ b/dist/native/guild/guildBoostLevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostLevel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildBoostLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostLevel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostLevel.js b/dist/native/guild/guildBoostLevel.js index 185c84eab8..6b3968fb71 100644 --- a/dist/native/guild/guildBoostLevel.js +++ b/dist/native/guild/guildBoostLevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBoostLevel.js.map b/dist/native/guild/guildBoostLevel.js.map index 9d70e9fb0f..888db99ef8 100644 --- a/dist/native/guild/guildBoostLevel.js.map +++ b/dist/native/guild/guildBoostLevel.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostLevel.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBoostLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostLevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostProgressBarEnabled.d.ts.map b/dist/native/guild/guildBoostProgressBarEnabled.d.ts.map index 29887e20ca..1b3639ff14 100644 --- a/dist/native/guild/guildBoostProgressBarEnabled.d.ts.map +++ b/dist/native/guild/guildBoostProgressBarEnabled.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostProgressBarEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostProgressBarEnabled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildBoostProgressBarEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostProgressBarEnabled.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostProgressBarEnabled.js b/dist/native/guild/guildBoostProgressBarEnabled.js index ee62510f70..cdb26537cc 100644 --- a/dist/native/guild/guildBoostProgressBarEnabled.js +++ b/dist/native/guild/guildBoostProgressBarEnabled.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBoostProgressBarEnabled.js.map b/dist/native/guild/guildBoostProgressBarEnabled.js.map index 3390f745d0..2f384859e1 100644 --- a/dist/native/guild/guildBoostProgressBarEnabled.js.map +++ b/dist/native/guild/guildBoostProgressBarEnabled.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostProgressBarEnabled.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostProgressBarEnabled.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,yBAAyB,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBoostProgressBarEnabled.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostProgressBarEnabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,yBAAyB,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostRoleID.d.ts.map b/dist/native/guild/guildBoostRoleID.d.ts.map index 89cbf0b7e1..04d5ed2ed2 100644 --- a/dist/native/guild/guildBoostRoleID.d.ts.map +++ b/dist/native/guild/guildBoostRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildBoostRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoostRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildBoostRoleID.js b/dist/native/guild/guildBoostRoleID.js index fc9552095b..0e11e1572e 100644 --- a/dist/native/guild/guildBoostRoleID.js +++ b/dist/native/guild/guildBoostRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBoostRoleID.js.map b/dist/native/guild/guildBoostRoleID.js.map index 813273abf5..37eeea3efd 100644 --- a/dist/native/guild/guildBoostRoleID.js.map +++ b/dist/native/guild/guildBoostRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBoostRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,qBAAqB,EAAE,EAAE,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBoostRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoostRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,qBAAqB,EAAE,EAAE,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBoosterIDs.d.ts.map b/dist/native/guild/guildBoosterIDs.d.ts.map index acfcec0d02..e858ed1763 100644 --- a/dist/native/guild/guildBoosterIDs.d.ts.map +++ b/dist/native/guild/guildBoosterIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBoosterIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoosterIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildBoosterIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBoosterIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildBoosterIDs.js b/dist/native/guild/guildBoosterIDs.js index 211c1bf40a..950fb22e2e 100644 --- a/dist/native/guild/guildBoosterIDs.js +++ b/dist/native/guild/guildBoosterIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildBoosterIDs.js.map b/dist/native/guild/guildBoosterIDs.js.map index 006ef23159..bcc93f9c16 100644 --- a/dist/native/guild/guildBoosterIDs.js.map +++ b/dist/native/guild/guildBoosterIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBoosterIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoosterIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,qBAAqB,EAAE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBoosterIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildBoosterIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,qBAAqB,EAAE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildBotCount.d.ts.map b/dist/native/guild/guildBotCount.d.ts.map index 64c9c0027d..66b4b6fbef 100644 --- a/dist/native/guild/guildBotCount.d.ts.map +++ b/dist/native/guild/guildBotCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildBotCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBotCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildBotCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildBotCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/guildBotCount.js b/dist/native/guild/guildBotCount.js index d67d90cda6..c93ffd03df 100644 --- a/dist/native/guild/guildBotCount.js +++ b/dist/native/guild/guildBotCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildBotCount.js.map b/dist/native/guild/guildBotCount.js.map index 5e03972383..5f25d515f2 100644 --- a/dist/native/guild/guildBotCount.js.map +++ b/dist/native/guild/guildBotCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildBotCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildBotCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildBotCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildBotCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelCount.d.ts.map b/dist/native/guild/guildChannelCount.d.ts.map index cdeff96759..14632b6b92 100644 --- a/dist/native/guild/guildChannelCount.d.ts.map +++ b/dist/native/guild/guildChannelCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"guildChannelCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelCount.js b/dist/native/guild/guildChannelCount.js index 9b8a1cab31..c8b9a68e11 100644 --- a/dist/native/guild/guildChannelCount.js +++ b/dist/native/guild/guildChannelCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildChannelCount.js.map b/dist/native/guild/guildChannelCount.js.map index 9827e2c22a..36c9d6c5ff 100644 --- a/dist/native/guild/guildChannelCount.js.map +++ b/dist/native/guild/guildChannelCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelCount.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC;QAC5B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC;aACrJ,IAAI,CACZ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildChannelCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAW;YACjB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC;QAC5B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC;aACrJ,IAAI,CACZ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelExists.d.ts.map b/dist/native/guild/guildChannelExists.d.ts.map index 42e746bfc3..32fcf92f5a 100644 --- a/dist/native/guild/guildChannelExists.d.ts.map +++ b/dist/native/guild/guildChannelExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildChannelExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelExists.js b/dist/native/guild/guildChannelExists.js index 347d5e6471..7a8dbbbf8a 100644 --- a/dist/native/guild/guildChannelExists.js +++ b/dist/native/guild/guildChannelExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildChannelExists.js.map b/dist/native/guild/guildChannelExists.js.map index beb3734159..eb6ddb4ca2 100644 --- a/dist/native/guild/guildChannelExists.js.map +++ b/dist/native/guild/guildChannelExists.js.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildChannelExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelIDs.d.ts.map b/dist/native/guild/guildChannelIDs.d.ts.map index f6d587266e..302b42c1c5 100644 --- a/dist/native/guild/guildChannelIDs.d.ts.map +++ b/dist/native/guild/guildChannelIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildChannelIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildChannelIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildChannelIDs.js b/dist/native/guild/guildChannelIDs.js index 0320a00cae..5df3f9d32e 100644 --- a/dist/native/guild/guildChannelIDs.js +++ b/dist/native/guild/guildChannelIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildChannelIDs.js.map b/dist/native/guild/guildChannelIDs.js.map index 7ee38d32b7..7e90cd8dd7 100644 --- a/dist/native/guild/guildChannelIDs.js.map +++ b/dist/native/guild/guildChannelIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildChannelIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,uCAAuC;IACpD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,mCAAmC;SACnD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildChannelIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildChannelIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,uCAAuC;IACpD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,mCAAmC;SACnD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildCount.d.ts.map b/dist/native/guild/guildCount.d.ts.map index af7853dea3..80c6c90364 100644 --- a/dist/native/guild/guildCount.d.ts.map +++ b/dist/native/guild/guildCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file +{"version":3,"file":"guildCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file diff --git a/dist/native/guild/guildCount.js b/dist/native/guild/guildCount.js index 335aeed4be..a84212a220 100644 --- a/dist/native/guild/guildCount.js +++ b/dist/native/guild/guildCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildCount.js.map b/dist/native/guild/guildCount.js.map index 36bee237b0..e6207bdee2 100644 --- a/dist/native/guild/guildCount.js.map +++ b/dist/native/guild/guildCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,cAAc;QACd,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,cAAc;QACd,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildCreatedAt.d.ts.map b/dist/native/guild/guildCreatedAt.d.ts.map index 0985cb4165..e3f8878a6d 100644 --- a/dist/native/guild/guildCreatedAt.d.ts.map +++ b/dist/native/guild/guildCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildCreatedAt.js b/dist/native/guild/guildCreatedAt.js index ccadc328b9..cce378b907 100644 --- a/dist/native/guild/guildCreatedAt.js +++ b/dist/native/guild/guildCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildCreatedAt.js.map b/dist/native/guild/guildCreatedAt.js.map index 553eb3c5ba..363e28bb17 100644 --- a/dist/native/guild/guildCreatedAt.js.map +++ b/dist/native/guild/guildCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"guildCreatedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildCreatedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildDefaultMessageNotifications.d.ts.map b/dist/native/guild/guildDefaultMessageNotifications.d.ts.map index 3b558f0e0e..cbf21f29de 100644 --- a/dist/native/guild/guildDefaultMessageNotifications.d.ts.map +++ b/dist/native/guild/guildDefaultMessageNotifications.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDefaultMessageNotifications.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDefaultMessageNotifications.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildDefaultMessageNotifications.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDefaultMessageNotifications.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildDefaultMessageNotifications.js b/dist/native/guild/guildDefaultMessageNotifications.js index 200b03f285..683aac3950 100644 --- a/dist/native/guild/guildDefaultMessageNotifications.js +++ b/dist/native/guild/guildDefaultMessageNotifications.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildDefaultMessageNotifications.js.map b/dist/native/guild/guildDefaultMessageNotifications.js.map index 838d8fcab4..4a007f434f 100644 --- a/dist/native/guild/guildDefaultMessageNotifications.js.map +++ b/dist/native/guild/guildDefaultMessageNotifications.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDefaultMessageNotifications.js","sourceRoot":"","sources":["../../../src/native/guild/guildDefaultMessageNotifications.ts"],"names":[],"mappings":";;AAAA,2CAA6D;AAC7D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mCAAmC;IACzC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oCAAoC;KACvC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,6CAAgC;IACxC,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,6CAAgC,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,2BAA2B,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDefaultMessageNotifications.js","sourceRoot":"","sources":["../../../src/native/guild/guildDefaultMessageNotifications.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6D;AAC7D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mCAAmC;IACzC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oCAAoC;KACvC;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,6CAAgC;IACxC,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,6CAAgC,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,2BAA2B,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildDescription.d.ts.map b/dist/native/guild/guildDescription.d.ts.map index a627795e88..483039852f 100644 --- a/dist/native/guild/guildDescription.d.ts.map +++ b/dist/native/guild/guildDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDescription.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDescription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildDescription.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildDescription.js b/dist/native/guild/guildDescription.js index 3fe81687fe..adc80554e7 100644 --- a/dist/native/guild/guildDescription.js +++ b/dist/native/guild/guildDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildDescription.js.map b/dist/native/guild/guildDescription.js.map index 41f6b7d0a4..9d332ef94d 100644 --- a/dist/native/guild/guildDescription.js.map +++ b/dist/native/guild/guildDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDescription.js","sourceRoot":"","sources":["../../../src/native/guild/guildDescription.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDescription.js","sourceRoot":"","sources":["../../../src/native/guild/guildDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildDiscoverySplash.d.ts.map b/dist/native/guild/guildDiscoverySplash.d.ts.map index db22446480..5083d49069 100644 --- a/dist/native/guild/guildDiscoverySplash.d.ts.map +++ b/dist/native/guild/guildDiscoverySplash.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDiscoverySplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDiscoverySplash.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"guildDiscoverySplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDiscoverySplash.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/guildDiscoverySplash.js b/dist/native/guild/guildDiscoverySplash.js index f8b0ed05a9..7b75d38d87 100644 --- a/dist/native/guild/guildDiscoverySplash.js +++ b/dist/native/guild/guildDiscoverySplash.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildDiscoverySplash.js.map b/dist/native/guild/guildDiscoverySplash.js.map index 30c14aa48a..577f918595 100644 --- a/dist/native/guild/guildDiscoverySplash.js.map +++ b/dist/native/guild/guildDiscoverySplash.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDiscoverySplash.js","sourceRoot":"","sources":["../../../src/native/guild/guildDiscoverySplash.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,kBAAkB,CAAC;YACjC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDiscoverySplash.js","sourceRoot":"","sources":["../../../src/native/guild/guildDiscoverySplash.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,kBAAkB,CAAC;YACjC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildDmSpamDetectedAt.d.ts.map b/dist/native/guild/guildDmSpamDetectedAt.d.ts.map index 1e89b16b66..1ab3b51680 100644 --- a/dist/native/guild/guildDmSpamDetectedAt.d.ts.map +++ b/dist/native/guild/guildDmSpamDetectedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDmSpamDetectedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDmSpamDetectedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildDmSpamDetectedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDmSpamDetectedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildDmSpamDetectedAt.js b/dist/native/guild/guildDmSpamDetectedAt.js index 72cf028f52..dc22038177 100644 --- a/dist/native/guild/guildDmSpamDetectedAt.js +++ b/dist/native/guild/guildDmSpamDetectedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildDmSpamDetectedAt.js.map b/dist/native/guild/guildDmSpamDetectedAt.js.map index 499e16e574..73f7191a9a 100644 --- a/dist/native/guild/guildDmSpamDetectedAt.js.map +++ b/dist/native/guild/guildDmSpamDetectedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDmSpamDetectedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildDmSpamDetectedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDmSpamDetectedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildDmSpamDetectedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildDmsDisabledUntil.d.ts.map b/dist/native/guild/guildDmsDisabledUntil.d.ts.map index 539e490d8e..b337e44e27 100644 --- a/dist/native/guild/guildDmsDisabledUntil.d.ts.map +++ b/dist/native/guild/guildDmsDisabledUntil.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildDmsDisabledUntil.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDmsDisabledUntil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildDmsDisabledUntil.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildDmsDisabledUntil.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildDmsDisabledUntil.js b/dist/native/guild/guildDmsDisabledUntil.js index 1cd9a6b20c..9490dac1a3 100644 --- a/dist/native/guild/guildDmsDisabledUntil.js +++ b/dist/native/guild/guildDmsDisabledUntil.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildDmsDisabledUntil.js.map b/dist/native/guild/guildDmsDisabledUntil.js.map index fa030a3fcd..c7278b1f55 100644 --- a/dist/native/guild/guildDmsDisabledUntil.js.map +++ b/dist/native/guild/guildDmsDisabledUntil.js.map @@ -1 +1 @@ -{"version":3,"file":"guildDmsDisabledUntil.js","sourceRoot":"","sources":["../../../src/native/guild/guildDmsDisabledUntil.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildDmsDisabledUntil.js","sourceRoot":"","sources":["../../../src/native/guild/guildDmsDisabledUntil.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiCount.d.ts.map b/dist/native/guild/guildEmojiCount.d.ts.map index 23c57405d8..80e97347df 100644 --- a/dist/native/guild/guildEmojiCount.d.ts.map +++ b/dist/native/guild/guildEmojiCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;;;;;;;;;;;;;;AAE/C,wBAsCE"} \ No newline at end of file +{"version":3,"file":"guildEmojiCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;;;;;;;;;;;;;;AAE/C,wBAsCE"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiCount.js b/dist/native/guild/guildEmojiCount.js index 0d14c00890..780fdebc8b 100644 --- a/dist/native/guild/guildEmojiCount.js +++ b/dist/native/guild/guildEmojiCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const emojiCount_1 = require("../emoji/emojiCount"); diff --git a/dist/native/guild/guildEmojiCount.js.map b/dist/native/guild/guildEmojiCount.js.map index 7cf2b03d58..cf07c0efb5 100644 --- a/dist/native/guild/guildEmojiCount.js.map +++ b/dist/native/guild/guildEmojiCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,oDAA+C;AAE/C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAA;QAEjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAC5D,IAAI,KAAK,sBAAS,CAAC,MAAM;YACrB,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ;YACjB,CAAC,CAAC,IAAI,KAAK,sBAAS,CAAC,QAAQ;gBACzB,CAAC,CAAC,KAAK,CAAC,QAAQ;gBAChB,CAAC,CAAE,IAAc,CAC5B,CAAC,IAAI,CAAC,CAAA;IACX,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildEmojiCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,oDAA+C;AAE/C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAA;QAEjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAC5D,IAAI,KAAK,sBAAS,CAAC,MAAM;YACrB,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ;YACjB,CAAC,CAAC,IAAI,KAAK,sBAAS,CAAC,QAAQ;gBACzB,CAAC,CAAC,KAAK,CAAC,QAAQ;gBAChB,CAAC,CAAE,IAAc,CAC5B,CAAC,IAAI,CAAC,CAAA;IACX,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiExists.d.ts.map b/dist/native/guild/guildEmojiExists.d.ts.map index c9acc166ce..772217ed35 100644 --- a/dist/native/guild/guildEmojiExists.d.ts.map +++ b/dist/native/guild/guildEmojiExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildEmojiExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiExists.js b/dist/native/guild/guildEmojiExists.js index 40237d548f..2f53a5c084 100644 --- a/dist/native/guild/guildEmojiExists.js +++ b/dist/native/guild/guildEmojiExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildEmojiExists.js.map b/dist/native/guild/guildEmojiExists.js.map index ed1cc45d12..431bb685af 100644 --- a/dist/native/guild/guildEmojiExists.js.map +++ b/dist/native/guild/guildEmojiExists.js.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildEmojiExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiIDs.d.ts.map b/dist/native/guild/guildEmojiIDs.d.ts.map index 97fa30fff6..0a5c9f6b8d 100644 --- a/dist/native/guild/guildEmojiIDs.d.ts.map +++ b/dist/native/guild/guildEmojiIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildEmojiIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiIDs.js b/dist/native/guild/guildEmojiIDs.js index 5b377be60d..0ffe71197b 100644 --- a/dist/native/guild/guildEmojiIDs.js +++ b/dist/native/guild/guildEmojiIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildEmojiIDs.js.map b/dist/native/guild/guildEmojiIDs.js.map index c7c89430d4..5850a65653 100644 --- a/dist/native/guild/guildEmojiIDs.js.map +++ b/dist/native/guild/guildEmojiIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,qCAAqC;IAClD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildEmojiIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,qCAAqC;IAClD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,iCAAiC;SACjD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiLimit.d.ts.map b/dist/native/guild/guildEmojiLimit.d.ts.map index f94efb3d9d..b4c0ac3ce0 100644 --- a/dist/native/guild/guildEmojiLimit.d.ts.map +++ b/dist/native/guild/guildEmojiLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"guildEmojiLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojiLimit.js b/dist/native/guild/guildEmojiLimit.js index c5579b242b..1d9115abb3 100644 --- a/dist/native/guild/guildEmojiLimit.js +++ b/dist/native/guild/guildEmojiLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildEmojiLimit.js.map b/dist/native/guild/guildEmojiLimit.js.map index 3bd72e9220..15af1ad296 100644 --- a/dist/native/guild/guildEmojiLimit.js.map +++ b/dist/native/guild/guildEmojiLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojiLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiLimit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,GAAG;YACL,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,GAAG;gBACL,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,GAAG;oBACL,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,GAAG;wBACL,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildEmojiLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojiLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,GAAG;YACL,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,GAAG;gBACL,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,GAAG;oBACL,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,GAAG;wBACL,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojis.d.ts.map b/dist/native/guild/guildEmojis.d.ts.map index b3861d76ee..39bf685097 100644 --- a/dist/native/guild/guildEmojis.d.ts.map +++ b/dist/native/guild/guildEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojis.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildEmojis.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildEmojis.js b/dist/native/guild/guildEmojis.js index 80d96901a4..368653e293 100644 --- a/dist/native/guild/guildEmojis.js +++ b/dist/native/guild/guildEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildEmojis.js.map b/dist/native/guild/guildEmojis.js.map index 7b9116d236..4b70a4976d 100644 --- a/dist/native/guild/guildEmojis.js.map +++ b/dist/native/guild/guildEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"guildEmojis.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojis.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,kCAAkC;IAC/C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,6BAA6B;SAC7C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildEmojis.js","sourceRoot":"","sources":["../../../src/native/guild/guildEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,kCAAkC;IAC/C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,6BAA6B;SAC7C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildExists.d.ts.map b/dist/native/guild/guildExists.d.ts.map index d99f7f1c8b..fb3c1728a0 100644 --- a/dist/native/guild/guildExists.d.ts.map +++ b/dist/native/guild/guildExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildExists.js b/dist/native/guild/guildExists.js index 15f0df6912..4bd46a7593 100644 --- a/dist/native/guild/guildExists.js +++ b/dist/native/guild/guildExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildExists.js.map b/dist/native/guild/guildExists.js.map index da3a8bccf6..2e6cf9ab51 100644 --- a/dist/native/guild/guildExists.js.map +++ b/dist/native/guild/guildExists.js.map @@ -1 +1 @@ -{"version":3,"file":"guildExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildExplicitContentFilter.d.ts.map b/dist/native/guild/guildExplicitContentFilter.d.ts.map index 5093f742ce..c13f2f3f03 100644 --- a/dist/native/guild/guildExplicitContentFilter.d.ts.map +++ b/dist/native/guild/guildExplicitContentFilter.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildExplicitContentFilter.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildExplicitContentFilter.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildExplicitContentFilter.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildExplicitContentFilter.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildExplicitContentFilter.js b/dist/native/guild/guildExplicitContentFilter.js index e07bb163fc..490a18c8cc 100644 --- a/dist/native/guild/guildExplicitContentFilter.js +++ b/dist/native/guild/guildExplicitContentFilter.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildExplicitContentFilter.js.map b/dist/native/guild/guildExplicitContentFilter.js.map index 06eaf7571c..5001eb2af9 100644 --- a/dist/native/guild/guildExplicitContentFilter.js.map +++ b/dist/native/guild/guildExplicitContentFilter.js.map @@ -1 +1 @@ -{"version":3,"file":"guildExplicitContentFilter.js","sourceRoot":"","sources":["../../../src/native/guild/guildExplicitContentFilter.ts"],"names":[],"mappings":";;AAAA,2CAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,8BAA8B;KACjC;IACD,MAAM,EAAE,uCAA0B;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,uCAA0B,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildExplicitContentFilter.js","sourceRoot":"","sources":["../../../src/native/guild/guildExplicitContentFilter.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,8BAA8B;KACjC;IACD,MAAM,EAAE,uCAA0B;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,uCAA0B,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildFeatures.d.ts.map b/dist/native/guild/guildFeatures.d.ts.map index 330fe4f3c5..c730ecc732 100644 --- a/dist/native/guild/guildFeatures.d.ts.map +++ b/dist/native/guild/guildFeatures.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildFeatures.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"guildFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildFeatures.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/guild/guildFeatures.js b/dist/native/guild/guildFeatures.js index 0045c2e1d3..279e18dc65 100644 --- a/dist/native/guild/guildFeatures.js +++ b/dist/native/guild/guildFeatures.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildFeatures.js.map b/dist/native/guild/guildFeatures.js.map index 50694c2acd..9394765413 100644 --- a/dist/native/guild/guildFeatures.js.map +++ b/dist/native/guild/guildFeatures.js.map @@ -1 +1 @@ -{"version":3,"file":"guildFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildFeatures.ts"],"names":[],"mappings":";;;;;AAAA,2CAAyC;AACzC,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildFeatures.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAyC;AACzC,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildHasAnyFeatures.d.ts.map b/dist/native/guild/guildHasAnyFeatures.d.ts.map index d4749e0b56..5d81b84d7c 100644 --- a/dist/native/guild/guildHasAnyFeatures.d.ts.map +++ b/dist/native/guild/guildHasAnyFeatures.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildHasAnyFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasAnyFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBAgCE"} \ No newline at end of file +{"version":3,"file":"guildHasAnyFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasAnyFeatures.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBAgCE"} \ No newline at end of file diff --git a/dist/native/guild/guildHasAnyFeatures.js b/dist/native/guild/guildHasAnyFeatures.js index b0ccacdd40..7cc1b3544c 100644 --- a/dist/native/guild/guildHasAnyFeatures.js +++ b/dist/native/guild/guildHasAnyFeatures.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildHasAnyFeatures.js.map b/dist/native/guild/guildHasAnyFeatures.js.map index f4ec99dcc3..dd3bd887bb 100644 --- a/dist/native/guild/guildHasAnyFeatures.js.map +++ b/dist/native/guild/guildHasAnyFeatures.js.map @@ -1 +1 @@ -{"version":3,"file":"guildHasAnyFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasAnyFeatures.ts"],"names":[],"mappings":";;AAAA,2CAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,qBAAqB;QACrB,sBAAsB;QACtB,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,QAAQ,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildHasAnyFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasAnyFeatures.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,qBAAqB;QACrB,sBAAsB;QACtB,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,QAAQ,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildHasFeatures.d.ts.map b/dist/native/guild/guildHasFeatures.d.ts.map index ad57fe7778..7536754c0d 100644 --- a/dist/native/guild/guildHasFeatures.d.ts.map +++ b/dist/native/guild/guildHasFeatures.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildHasFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"guildHasFeatures.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasFeatures.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/guild/guildHasFeatures.js b/dist/native/guild/guildHasFeatures.js index d08f4064e2..80f1c24e3a 100644 --- a/dist/native/guild/guildHasFeatures.js +++ b/dist/native/guild/guildHasFeatures.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildHasFeatures.js.map b/dist/native/guild/guildHasFeatures.js.map index 6e47e0e44a..11ff686322 100644 --- a/dist/native/guild/guildHasFeatures.js.map +++ b/dist/native/guild/guildHasFeatures.js.map @@ -1 +1 @@ -{"version":3,"file":"guildHasFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasFeatures.ts"],"names":[],"mappings":";;AAAA,2CAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,QAAQ,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildHasFeatures.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasFeatures.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,WAAW,EAAE,2BAA2B;SAC3C;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,QAAQ,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildHasTemplate.d.ts.map b/dist/native/guild/guildHasTemplate.d.ts.map index 4659ada819..d1838ecb81 100644 --- a/dist/native/guild/guildHasTemplate.d.ts.map +++ b/dist/native/guild/guildHasTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildHasTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildHasTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHasTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildHasTemplate.js b/dist/native/guild/guildHasTemplate.js index e90ee572f1..58f32cfe40 100644 --- a/dist/native/guild/guildHasTemplate.js +++ b/dist/native/guild/guildHasTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildHasTemplate.js.map b/dist/native/guild/guildHasTemplate.js.map index 93cd5f8a6a..c2d5be9899 100644 --- a/dist/native/guild/guildHasTemplate.js.map +++ b/dist/native/guild/guildHasTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildHasTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasTemplate.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildHasTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/guildHasTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildHighestRoleID.d.ts.map b/dist/native/guild/guildHighestRoleID.d.ts.map index aa42b40208..8989ceb4e2 100644 --- a/dist/native/guild/guildHighestRoleID.d.ts.map +++ b/dist/native/guild/guildHighestRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildHighestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHighestRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildHighestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildHighestRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildHighestRoleID.js b/dist/native/guild/guildHighestRoleID.js index 000a301c47..0280166650 100644 --- a/dist/native/guild/guildHighestRoleID.js +++ b/dist/native/guild/guildHighestRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildHighestRoleID.js.map b/dist/native/guild/guildHighestRoleID.js.map index e9b7d6f575..216b63d423 100644 --- a/dist/native/guild/guildHighestRoleID.js.map +++ b/dist/native/guild/guildHighestRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildHighestRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildHighestRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildHighestRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildHighestRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildID.d.ts.map b/dist/native/guild/guildID.d.ts.map index b8120d369d..846c35c3ba 100644 --- a/dist/native/guild/guildID.d.ts.map +++ b/dist/native/guild/guildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/guild/guildID.js b/dist/native/guild/guildID.js index e063e5c1f2..25f7f04dbe 100644 --- a/dist/native/guild/guildID.js +++ b/dist/native/guild/guildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildID.js.map b/dist/native/guild/guildID.js.map index d0013a9db9..8663d719bf 100644 --- a/dist/native/guild/guildID.js.map +++ b/dist/native/guild/guildID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildID.js","sourceRoot":"","sources":["../../../src/native/guild/guildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;QACnF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildID.js","sourceRoot":"","sources":["../../../src/native/guild/guildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;QACnF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildIDs.d.ts.map b/dist/native/guild/guildIDs.d.ts.map index bad4d389c6..867fffe179 100644 --- a/dist/native/guild/guildIDs.d.ts.map +++ b/dist/native/guild/guildIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildIDs.js b/dist/native/guild/guildIDs.js index 9ef9767cf0..759c30b8f3 100644 --- a/dist/native/guild/guildIDs.js +++ b/dist/native/guild/guildIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildIDs.js.map b/dist/native/guild/guildIDs.js.map index 951b32832b..fa84795d30 100644 --- a/dist/native/guild/guildIDs.js.map +++ b/dist/native/guild/guildIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,YAAY;KACf;IACD,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildIcon.d.ts.map b/dist/native/guild/guildIcon.d.ts.map index 3a26b4c940..83483354fc 100644 --- a/dist/native/guild/guildIcon.d.ts.map +++ b/dist/native/guild/guildIcon.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildIcon.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildIcon.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"guildIcon.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildIcon.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/guildIcon.js b/dist/native/guild/guildIcon.js index 16d83181ea..5c9a85646a 100644 --- a/dist/native/guild/guildIcon.js +++ b/dist/native/guild/guildIcon.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildIcon.js.map b/dist/native/guild/guildIcon.js.map index 569ed4ee9c..8c56146061 100644 --- a/dist/native/guild/guildIcon.js.map +++ b/dist/native/guild/guildIcon.js.map @@ -1 +1 @@ -{"version":3,"file":"guildIcon.js","sourceRoot":"","sources":["../../../src/native/guild/guildIcon.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC;YAC1B,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildIcon.js","sourceRoot":"","sources":["../../../src/native/guild/guildIcon.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC;YAC1B,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildInviteExists.d.ts.map b/dist/native/guild/guildInviteExists.d.ts.map index 5c1e1e657b..75b36eb39f 100644 --- a/dist/native/guild/guildInviteExists.d.ts.map +++ b/dist/native/guild/guildInviteExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildInviteExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInviteExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"guildInviteExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInviteExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/guild/guildInviteExists.js b/dist/native/guild/guildInviteExists.js index 6d91676c74..23afbbe5f2 100644 --- a/dist/native/guild/guildInviteExists.js +++ b/dist/native/guild/guildInviteExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildInviteExists.js.map b/dist/native/guild/guildInviteExists.js.map index 781f808a9e..93491b35fc 100644 --- a/dist/native/guild/guildInviteExists.js.map +++ b/dist/native/guild/guildInviteExists.js.map @@ -1 +1 @@ -{"version":3,"file":"guildInviteExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildInviteExists.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildInviteExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildInviteExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildInvites.d.ts.map b/dist/native/guild/guildInvites.d.ts.map index fc90be7c77..22c68af7fd 100644 --- a/dist/native/guild/guildInvites.d.ts.map +++ b/dist/native/guild/guildInvites.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildInvites.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInvites.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAG1D,wBAwCE"} \ No newline at end of file +{"version":3,"file":"guildInvites.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInvites.ts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAG1D,wBAwCE"} \ No newline at end of file diff --git a/dist/native/guild/guildInvites.js b/dist/native/guild/guildInvites.js index 07ded0adfb..44584a54ee 100644 --- a/dist/native/guild/guildInvites.js +++ b/dist/native/guild/guildInvites.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildInvites.js.map b/dist/native/guild/guildInvites.js.map index eb192ea5a8..9ca687aa65 100644 --- a/dist/native/guild/guildInvites.js.map +++ b/dist/native/guild/guildInvites.js.map @@ -1 +1 @@ -{"version":3,"file":"guildInvites.js","sourceRoot":"","sources":["../../../src/native/guild/guildInvites.ts"],"names":[],"mappings":";;;;;AAAA,oDAA0E;AAC1E,iDAA0D;AAC1D,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,gCAAgC;SAChD;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,uBAAc;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,wCAAwC;SACxD;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,OAAO,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC3E,IAAI,OAAO,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QACzG,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildInvites.js","sourceRoot":"","sources":["../../../src/native/guild/guildInvites.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,oDAA0E;AAC1E,iDAA0D;AAC1D,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,gCAAgC;SAChD;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,uBAAc;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,wCAAwC;SACxD;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,OAAO,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC3E,IAAI,OAAO,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QACzG,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildInvitesDisabledUntil.d.ts.map b/dist/native/guild/guildInvitesDisabledUntil.d.ts.map index af6cc1a135..60a4a2ed5d 100644 --- a/dist/native/guild/guildInvitesDisabledUntil.d.ts.map +++ b/dist/native/guild/guildInvitesDisabledUntil.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildInvitesDisabledUntil.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInvitesDisabledUntil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildInvitesDisabledUntil.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildInvitesDisabledUntil.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildInvitesDisabledUntil.js b/dist/native/guild/guildInvitesDisabledUntil.js index bb91749d7b..7facceb47a 100644 --- a/dist/native/guild/guildInvitesDisabledUntil.js +++ b/dist/native/guild/guildInvitesDisabledUntil.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildInvitesDisabledUntil.js.map b/dist/native/guild/guildInvitesDisabledUntil.js.map index a2dbd6a6b5..d085283292 100644 --- a/dist/native/guild/guildInvitesDisabledUntil.js.map +++ b/dist/native/guild/guildInvitesDisabledUntil.js.map @@ -1 +1 @@ -{"version":3,"file":"guildInvitesDisabledUntil.js","sourceRoot":"","sources":["../../../src/native/guild/guildInvitesDisabledUntil.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,oBAAoB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildInvitesDisabledUntil.js","sourceRoot":"","sources":["../../../src/native/guild/guildInvitesDisabledUntil.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,oBAAoB,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildLarge.d.ts.map b/dist/native/guild/guildLarge.d.ts.map index 1616565a38..5a159616ca 100644 --- a/dist/native/guild/guildLarge.d.ts.map +++ b/dist/native/guild/guildLarge.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildLarge.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildLarge.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLarge.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildLarge.js b/dist/native/guild/guildLarge.js index 1f68b58474..5da6953776 100644 --- a/dist/native/guild/guildLarge.js +++ b/dist/native/guild/guildLarge.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildLarge.js.map b/dist/native/guild/guildLarge.js.map index 2482c7bf37..3a1170bec0 100644 --- a/dist/native/guild/guildLarge.js.map +++ b/dist/native/guild/guildLarge.js.map @@ -1 +1 @@ -{"version":3,"file":"guildLarge.js","sourceRoot":"","sources":["../../../src/native/guild/guildLarge.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildLarge.js","sourceRoot":"","sources":["../../../src/native/guild/guildLarge.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildLeave.d.ts.map b/dist/native/guild/guildLeave.d.ts.map index cf310d464b..e717a679a6 100644 --- a/dist/native/guild/guildLeave.d.ts.map +++ b/dist/native/guild/guildLeave.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildLeave.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLeave.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildLeave.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLeave.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/guildLeave.js b/dist/native/guild/guildLeave.js index 29dd2a9a77..92d4e23ef3 100644 --- a/dist/native/guild/guildLeave.js +++ b/dist/native/guild/guildLeave.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildLeave.js.map b/dist/native/guild/guildLeave.js.map index 45ef1a972d..80100526ce 100644 --- a/dist/native/guild/guildLeave.js.map +++ b/dist/native/guild/guildLeave.js.map @@ -1 +1 @@ -{"version":3,"file":"guildLeave.js","sourceRoot":"","sources":["../../../src/native/guild/guildLeave.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildLeave.js","sourceRoot":"","sources":["../../../src/native/guild/guildLeave.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildLowestRoleID.d.ts.map b/dist/native/guild/guildLowestRoleID.d.ts.map index 518d370567..6d59bae395 100644 --- a/dist/native/guild/guildLowestRoleID.d.ts.map +++ b/dist/native/guild/guildLowestRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildLowestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLowestRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file +{"version":3,"file":"guildLowestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildLowestRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAyBE"} \ No newline at end of file diff --git a/dist/native/guild/guildLowestRoleID.js b/dist/native/guild/guildLowestRoleID.js index 8c6b3521e8..6f7dc81422 100644 --- a/dist/native/guild/guildLowestRoleID.js +++ b/dist/native/guild/guildLowestRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildLowestRoleID.js.map b/dist/native/guild/guildLowestRoleID.js.map index 52b5823637..c6636110a7 100644 --- a/dist/native/guild/guildLowestRoleID.js.map +++ b/dist/native/guild/guildLowestRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildLowestRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildLowestRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,KAAK,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,CAAA;QAEtH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,IAAI,KAAK,EAAE,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildLowestRoleID.js","sourceRoot":"","sources":["../../../src/native/guild/guildLowestRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,KAAK,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,CAAA;QAEtH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,IAAI,KAAK,EAAE,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMFALevel.d.ts.map b/dist/native/guild/guildMFALevel.d.ts.map index d957b99bcd..ac9266856e 100644 --- a/dist/native/guild/guildMFALevel.d.ts.map +++ b/dist/native/guild/guildMFALevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMFALevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMFALevel.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMFALevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMFALevel.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMFALevel.js b/dist/native/guild/guildMFALevel.js index b6d37c9dff..4b65768ba7 100644 --- a/dist/native/guild/guildMFALevel.js +++ b/dist/native/guild/guildMFALevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildMFALevel.js.map b/dist/native/guild/guildMFALevel.js.map index f89b89d54a..21397a934a 100644 --- a/dist/native/guild/guildMFALevel.js.map +++ b/dist/native/guild/guildMFALevel.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMFALevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildMFALevel.ts"],"names":[],"mappings":";;AAAA,2CAAwG;AACxG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,0BAAa;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMFALevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildMFALevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwG;AACxG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,0BAAa;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMaxStageVideoChannelUsers.d.ts.map b/dist/native/guild/guildMaxStageVideoChannelUsers.d.ts.map index 16b5b89bee..a26af4a4bc 100644 --- a/dist/native/guild/guildMaxStageVideoChannelUsers.d.ts.map +++ b/dist/native/guild/guildMaxStageVideoChannelUsers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMaxStageVideoChannelUsers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaxStageVideoChannelUsers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMaxStageVideoChannelUsers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaxStageVideoChannelUsers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMaxStageVideoChannelUsers.js b/dist/native/guild/guildMaxStageVideoChannelUsers.js index 3f02cd44e7..92c915fec1 100644 --- a/dist/native/guild/guildMaxStageVideoChannelUsers.js +++ b/dist/native/guild/guildMaxStageVideoChannelUsers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildMaxStageVideoChannelUsers.js.map b/dist/native/guild/guildMaxStageVideoChannelUsers.js.map index a987e65dca..879f807db6 100644 --- a/dist/native/guild/guildMaxStageVideoChannelUsers.js.map +++ b/dist/native/guild/guildMaxStageVideoChannelUsers.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMaxStageVideoChannelUsers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaxStageVideoChannelUsers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kCAAkC;KACrC;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,yBAAyB,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMaxStageVideoChannelUsers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaxStageVideoChannelUsers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kCAAkC;KACrC;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,yBAAyB,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMaxVideoChannelUsers.d.ts.map b/dist/native/guild/guildMaxVideoChannelUsers.d.ts.map index 67392f469e..037ba12775 100644 --- a/dist/native/guild/guildMaxVideoChannelUsers.d.ts.map +++ b/dist/native/guild/guildMaxVideoChannelUsers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMaxVideoChannelUsers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaxVideoChannelUsers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMaxVideoChannelUsers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaxVideoChannelUsers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMaxVideoChannelUsers.js b/dist/native/guild/guildMaxVideoChannelUsers.js index 68651f92e8..6c12743544 100644 --- a/dist/native/guild/guildMaxVideoChannelUsers.js +++ b/dist/native/guild/guildMaxVideoChannelUsers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildMaxVideoChannelUsers.js.map b/dist/native/guild/guildMaxVideoChannelUsers.js.map index e85501ac5c..4961ce2ff4 100644 --- a/dist/native/guild/guildMaxVideoChannelUsers.js.map +++ b/dist/native/guild/guildMaxVideoChannelUsers.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMaxVideoChannelUsers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaxVideoChannelUsers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,oBAAoB,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMaxVideoChannelUsers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaxVideoChannelUsers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,oBAAoB,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumBitrate.d.ts.map b/dist/native/guild/guildMaximumBitrate.d.ts.map index 074bc552c0..6cac5a3d21 100644 --- a/dist/native/guild/guildMaximumBitrate.d.ts.map +++ b/dist/native/guild/guildMaximumBitrate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumBitrate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMaximumBitrate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumBitrate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumBitrate.js b/dist/native/guild/guildMaximumBitrate.js index 1d646bba90..2af4c8b8ba 100644 --- a/dist/native/guild/guildMaximumBitrate.js +++ b/dist/native/guild/guildMaximumBitrate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildMaximumBitrate.js.map b/dist/native/guild/guildMaximumBitrate.js.map index e1b5213842..75e80247b1 100644 --- a/dist/native/guild/guildMaximumBitrate.js.map +++ b/dist/native/guild/guildMaximumBitrate.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumBitrate.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumBitrate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMaximumBitrate.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumBitrate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumMembers.d.ts.map b/dist/native/guild/guildMaximumMembers.d.ts.map index 5a37af97f6..9d42feaf6d 100644 --- a/dist/native/guild/guildMaximumMembers.d.ts.map +++ b/dist/native/guild/guildMaximumMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumMembers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMaximumMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumMembers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumMembers.js b/dist/native/guild/guildMaximumMembers.js index a23c65b214..2a7cc9464f 100644 --- a/dist/native/guild/guildMaximumMembers.js +++ b/dist/native/guild/guildMaximumMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildMaximumMembers.js.map b/dist/native/guild/guildMaximumMembers.js.map index 35aff3d80f..f6118bad2d 100644 --- a/dist/native/guild/guildMaximumMembers.js.map +++ b/dist/native/guild/guildMaximumMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumMembers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMaximumMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumPresences.d.ts.map b/dist/native/guild/guildMaximumPresences.d.ts.map index ff363eebbb..2859bf7b8d 100644 --- a/dist/native/guild/guildMaximumPresences.d.ts.map +++ b/dist/native/guild/guildMaximumPresences.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumPresences.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumPresences.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildMaximumPresences.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumPresences.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildMaximumPresences.js b/dist/native/guild/guildMaximumPresences.js index a1d1597c61..2ef535377f 100644 --- a/dist/native/guild/guildMaximumPresences.js +++ b/dist/native/guild/guildMaximumPresences.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildMaximumPresences.js.map b/dist/native/guild/guildMaximumPresences.js.map index 3419e81418..d864ad8bf0 100644 --- a/dist/native/guild/guildMaximumPresences.js.map +++ b/dist/native/guild/guildMaximumPresences.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMaximumPresences.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumPresences.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMaximumPresences.js","sourceRoot":"","sources":["../../../src/native/guild/guildMaximumPresences.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMemberCount.d.ts.map b/dist/native/guild/guildMemberCount.d.ts.map index 11def09a1c..25981af5d1 100644 --- a/dist/native/guild/guildMemberCount.d.ts.map +++ b/dist/native/guild/guildMemberCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMemberCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,cAAc;IACtB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;CACtB;;;;;;;;;;;;;;;;;;;AAED,wBA8CE"} \ No newline at end of file +{"version":3,"file":"guildMemberCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMemberCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,cAAc;IACtB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;CACtB;;;;;;;;;;;;;;;;;;;AAED,wBA8CE"} \ No newline at end of file diff --git a/dist/native/guild/guildMemberCount.js b/dist/native/guild/guildMemberCount.js index 08f380b17f..0e05db3b33 100644 --- a/dist/native/guild/guildMemberCount.js +++ b/dist/native/guild/guildMemberCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.PresenceStatus = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildMemberCount.js.map b/dist/native/guild/guildMemberCount.js.map index 07a8d548ec..0ab240d26e 100644 --- a/dist/native/guild/guildMemberCount.js.map +++ b/dist/native/guild/guildMemberCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildMemberCount.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,cAKX;AALD,WAAY,cAAc;IACtB,mCAAiB,CAAA;IACjB,+BAAa,CAAA;IACb,6BAAW,CAAA;IACX,qCAAmB,CAAA;AACvB,CAAC,EALW,cAAc,8BAAd,cAAc,QAKzB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;QACpB,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,cAAc;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,CAAC;QAChC,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,KAAK,IAAI,CAAA;QAEb,IAAI,QAAQ,EAAE;YACV,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;gBACrD,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAA;gBACtC,OAAO,CAAC,QAAQ,KAAK,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,KAAK,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YACtI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;SACX;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildMemberCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,cAKX;AALD,WAAY,cAAc;IACtB,mCAAiB,CAAA;IACjB,+BAAa,CAAA;IACb,6BAAW,CAAA;IACX,qCAAmB,CAAA;AACvB,CAAC,EALW,cAAc,8BAAd,cAAc,QAKzB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;QACpB,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,cAAc;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,CAAC;QAChC,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,KAAK,IAAI,CAAA;QAEb,IAAI,QAAQ,EAAE;YACV,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;gBACrD,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAA;gBACtC,OAAO,CAAC,QAAQ,KAAK,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,KAAK,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YACtI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;SACX;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildMemberIDs.d.ts.map b/dist/native/guild/guildMemberIDs.d.ts.map index 1afae5a7f4..517a4d9121 100644 --- a/dist/native/guild/guildMemberIDs.d.ts.map +++ b/dist/native/guild/guildMemberIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMemberIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"guildMemberIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildMemberIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/guild/guildMemberIDs.js b/dist/native/guild/guildMemberIDs.js index 4b64f3bb3c..04841ce9cb 100644 --- a/dist/native/guild/guildMemberIDs.js +++ b/dist/native/guild/guildMemberIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildMemberIDs.js.map b/dist/native/guild/guildMemberIDs.js.map index 725dc78338..ef7025597d 100644 --- a/dist/native/guild/guildMemberIDs.js.map +++ b/dist/native/guild/guildMemberIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildMemberIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildMemberIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;KACrB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,gCAAgC;SAChD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,CAAE;QACnB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildMemberIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildMemberIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;KACrB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,gCAAgC;SAChD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,CAAE;QACnB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildNSFWLevel.d.ts.map b/dist/native/guild/guildNSFWLevel.d.ts.map index f2c4488a59..849bd63dfa 100644 --- a/dist/native/guild/guildNSFWLevel.d.ts.map +++ b/dist/native/guild/guildNSFWLevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildNSFWLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNSFWLevel.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildNSFWLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNSFWLevel.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildNSFWLevel.js b/dist/native/guild/guildNSFWLevel.js index 24b9faaa0e..c174dfd684 100644 --- a/dist/native/guild/guildNSFWLevel.js +++ b/dist/native/guild/guildNSFWLevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildNSFWLevel.js.map b/dist/native/guild/guildNSFWLevel.js.map index ced5f387c5..71b66dedbd 100644 --- a/dist/native/guild/guildNSFWLevel.js.map +++ b/dist/native/guild/guildNSFWLevel.js.map @@ -1 +1 @@ -{"version":3,"file":"guildNSFWLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildNSFWLevel.ts"],"names":[],"mappings":";;AAAA,2CAAwH;AACxH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,2BAAc;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAc,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildNSFWLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildNSFWLevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwH;AACxH,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,2BAAc;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAc,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildName.d.ts.map b/dist/native/guild/guildName.d.ts.map index 8271d3ca6a..578c0ba67b 100644 --- a/dist/native/guild/guildName.d.ts.map +++ b/dist/native/guild/guildName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildName.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildName.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildName.js b/dist/native/guild/guildName.js index 68f3d9975e..9946050d3b 100644 --- a/dist/native/guild/guildName.js +++ b/dist/native/guild/guildName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildName.js.map b/dist/native/guild/guildName.js.map index 27140c5ae3..9985f1edda 100644 --- a/dist/native/guild/guildName.js.map +++ b/dist/native/guild/guildName.js.map @@ -1 +1 @@ -{"version":3,"file":"guildName.js","sourceRoot":"","sources":["../../../src/native/guild/guildName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildName.js","sourceRoot":"","sources":["../../../src/native/guild/guildName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildNameAcronym.d.ts.map b/dist/native/guild/guildNameAcronym.d.ts.map index 2f37b2abfa..209e122bf0 100644 --- a/dist/native/guild/guildNameAcronym.d.ts.map +++ b/dist/native/guild/guildNameAcronym.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildNameAcronym.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNameAcronym.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildNameAcronym.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNameAcronym.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildNameAcronym.js b/dist/native/guild/guildNameAcronym.js index d68dffded1..d6da9a2cc8 100644 --- a/dist/native/guild/guildNameAcronym.js +++ b/dist/native/guild/guildNameAcronym.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildNameAcronym.js.map b/dist/native/guild/guildNameAcronym.js.map index acb4c9c2ee..bb10485a60 100644 --- a/dist/native/guild/guildNameAcronym.js.map +++ b/dist/native/guild/guildNameAcronym.js.map @@ -1 +1 @@ -{"version":3,"file":"guildNameAcronym.js","sourceRoot":"","sources":["../../../src/native/guild/guildNameAcronym.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildNameAcronym.js","sourceRoot":"","sources":["../../../src/native/guild/guildNameAcronym.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildNames.d.ts.map b/dist/native/guild/guildNames.d.ts.map index 2c347988f7..450b2230a6 100644 --- a/dist/native/guild/guildNames.d.ts.map +++ b/dist/native/guild/guildNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildNames.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildNames.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildNames.js b/dist/native/guild/guildNames.js index abe739479f..249adc0986 100644 --- a/dist/native/guild/guildNames.js +++ b/dist/native/guild/guildNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildNames.js.map b/dist/native/guild/guildNames.js.map index d7a76dbd5e..91d1ecd3d4 100644 --- a/dist/native/guild/guildNames.js.map +++ b/dist/native/guild/guildNames.js.map @@ -1 +1 @@ -{"version":3,"file":"guildNames.js","sourceRoot":"","sources":["../../../src/native/guild/guildNames.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildNames.js","sourceRoot":"","sources":["../../../src/native/guild/guildNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildOwnerID.d.ts.map b/dist/native/guild/guildOwnerID.d.ts.map index 9843b52554..41f642d139 100644 --- a/dist/native/guild/guildOwnerID.d.ts.map +++ b/dist/native/guild/guildOwnerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildOwnerID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildOwnerID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildOwnerID.js b/dist/native/guild/guildOwnerID.js index eb2cc50b4c..9bdaa08c22 100644 --- a/dist/native/guild/guildOwnerID.js +++ b/dist/native/guild/guildOwnerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildOwnerID.js.map b/dist/native/guild/guildOwnerID.js.map index bd801448f7..d39a588674 100644 --- a/dist/native/guild/guildOwnerID.js.map +++ b/dist/native/guild/guildOwnerID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildOwnerID.js","sourceRoot":"","sources":["../../../src/native/guild/guildOwnerID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildOwnerID.js","sourceRoot":"","sources":["../../../src/native/guild/guildOwnerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildPartnered.d.ts.map b/dist/native/guild/guildPartnered.d.ts.map index 8779506c99..a90c4fb09d 100644 --- a/dist/native/guild/guildPartnered.d.ts.map +++ b/dist/native/guild/guildPartnered.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildPartnered.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPartnered.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildPartnered.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPartnered.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildPartnered.js b/dist/native/guild/guildPartnered.js index be510a5fbf..99133e8de8 100644 --- a/dist/native/guild/guildPartnered.js +++ b/dist/native/guild/guildPartnered.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildPartnered.js.map b/dist/native/guild/guildPartnered.js.map index e9ee798025..9466b7e780 100644 --- a/dist/native/guild/guildPartnered.js.map +++ b/dist/native/guild/guildPartnered.js.map @@ -1 +1 @@ -{"version":3,"file":"guildPartnered.js","sourceRoot":"","sources":["../../../src/native/guild/guildPartnered.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildPartnered.js","sourceRoot":"","sources":["../../../src/native/guild/guildPartnered.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildPreferredLocale.d.ts.map b/dist/native/guild/guildPreferredLocale.d.ts.map index 69e170c24e..750dd0e421 100644 --- a/dist/native/guild/guildPreferredLocale.d.ts.map +++ b/dist/native/guild/guildPreferredLocale.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildPreferredLocale.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPreferredLocale.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildPreferredLocale.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPreferredLocale.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildPreferredLocale.js b/dist/native/guild/guildPreferredLocale.js index ad3e77a7f0..c573c6ac7b 100644 --- a/dist/native/guild/guildPreferredLocale.js +++ b/dist/native/guild/guildPreferredLocale.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildPreferredLocale.js.map b/dist/native/guild/guildPreferredLocale.js.map index b95900ce18..a959c8a731 100644 --- a/dist/native/guild/guildPreferredLocale.js.map +++ b/dist/native/guild/guildPreferredLocale.js.map @@ -1 +1 @@ -{"version":3,"file":"guildPreferredLocale.js","sourceRoot":"","sources":["../../../src/native/guild/guildPreferredLocale.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,mBAAM;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildPreferredLocale.js","sourceRoot":"","sources":["../../../src/native/guild/guildPreferredLocale.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,mBAAM;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildPublicUpdatesChannelID.d.ts.map b/dist/native/guild/guildPublicUpdatesChannelID.d.ts.map index ba1fc80c40..842d27ee4d 100644 --- a/dist/native/guild/guildPublicUpdatesChannelID.d.ts.map +++ b/dist/native/guild/guildPublicUpdatesChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildPublicUpdatesChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPublicUpdatesChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"guildPublicUpdatesChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildPublicUpdatesChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/guild/guildPublicUpdatesChannelID.js b/dist/native/guild/guildPublicUpdatesChannelID.js index 956846d986..b15c64742b 100644 --- a/dist/native/guild/guildPublicUpdatesChannelID.js +++ b/dist/native/guild/guildPublicUpdatesChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildPublicUpdatesChannelID.js.map b/dist/native/guild/guildPublicUpdatesChannelID.js.map index 3069422cd0..38cfd93b9b 100644 --- a/dist/native/guild/guildPublicUpdatesChannelID.js.map +++ b/dist/native/guild/guildPublicUpdatesChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildPublicUpdatesChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildPublicUpdatesChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,CAAC,+BAA+B,CAAC;IAC1C,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,sBAAsB,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildPublicUpdatesChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildPublicUpdatesChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,CAAC,+BAA+B,CAAC;IAC1C,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,sBAAsB,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildRaidDetectedAt.d.ts.map b/dist/native/guild/guildRaidDetectedAt.d.ts.map index 1edcc33c32..19b51443bf 100644 --- a/dist/native/guild/guildRaidDetectedAt.d.ts.map +++ b/dist/native/guild/guildRaidDetectedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildRaidDetectedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRaidDetectedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildRaidDetectedAt.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRaidDetectedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildRaidDetectedAt.js b/dist/native/guild/guildRaidDetectedAt.js index 5e848b1038..fda62d1328 100644 --- a/dist/native/guild/guildRaidDetectedAt.js +++ b/dist/native/guild/guildRaidDetectedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildRaidDetectedAt.js.map b/dist/native/guild/guildRaidDetectedAt.js.map index 328e1344d5..72dd30465f 100644 --- a/dist/native/guild/guildRaidDetectedAt.js.map +++ b/dist/native/guild/guildRaidDetectedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"guildRaidDetectedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildRaidDetectedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,cAAc,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildRaidDetectedAt.js","sourceRoot":"","sources":["../../../src/native/guild/guildRaidDetectedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,cAAc,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildRawData.d.ts.map b/dist/native/guild/guildRawData.d.ts.map index ac9c9fc90a..1a8235ed76 100644 --- a/dist/native/guild/guildRawData.d.ts.map +++ b/dist/native/guild/guildRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildRawData.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildRawData.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildRawData.js b/dist/native/guild/guildRawData.js index 3723f1fa6a..a52ea423e4 100644 --- a/dist/native/guild/guildRawData.js +++ b/dist/native/guild/guildRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildRawData.js.map b/dist/native/guild/guildRawData.js.map index 67a35fb969..aa3bb8b472 100644 --- a/dist/native/guild/guildRawData.js.map +++ b/dist/native/guild/guildRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"guildRawData.js","sourceRoot":"","sources":["../../../src/native/guild/guildRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildRawData.js","sourceRoot":"","sources":["../../../src/native/guild/guildRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildRoleCount.d.ts.map b/dist/native/guild/guildRoleCount.d.ts.map index 9ef03a9e4e..6b26ce5561 100644 --- a/dist/native/guild/guildRoleCount.d.ts.map +++ b/dist/native/guild/guildRoleCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildRoleCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRoleCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildRoleCount.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRoleCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/guildRoleCount.js b/dist/native/guild/guildRoleCount.js index 724942ac0d..c4517a8a02 100644 --- a/dist/native/guild/guildRoleCount.js +++ b/dist/native/guild/guildRoleCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildRoleCount.js.map b/dist/native/guild/guildRoleCount.js.map index 3b32ee700f..2dd2e67db0 100644 --- a/dist/native/guild/guildRoleCount.js.map +++ b/dist/native/guild/guildRoleCount.js.map @@ -1 +1 @@ -{"version":3,"file":"guildRoleCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildRoleCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildRoleCount.js","sourceRoot":"","sources":["../../../src/native/guild/guildRoleCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildRoleIDs.d.ts b/dist/native/guild/guildRoleIDs.d.ts index 5c1cf164ea..30de904955 100644 --- a/dist/native/guild/guildRoleIDs.d.ts +++ b/dist/native/guild/guildRoleIDs.d.ts @@ -1,15 +1,20 @@ import { ArgType, NativeFunction } from "../../structures"; declare const _default: NativeFunction<[{ name: string; + description: string; rest: false; required: true; type: ArgType.Guild; - description: string; }, { name: string; description: string; rest: false; type: ArgType.String; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Boolean; }], true>; export default _default; //# sourceMappingURL=guildRoleIDs.d.ts.map \ No newline at end of file diff --git a/dist/native/guild/guildRoleIDs.d.ts.map b/dist/native/guild/guildRoleIDs.d.ts.map index 495fdab2ce..7ba04228e3 100644 --- a/dist/native/guild/guildRoleIDs.d.ts.map +++ b/dist/native/guild/guildRoleIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildRoleIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRoleIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildRoleIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRoleIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAE1D,wBAwCE"} \ No newline at end of file diff --git a/dist/native/guild/guildRoleIDs.js b/dist/native/guild/guildRoleIDs.js index 5edf142b1e..b677f89d68 100644 --- a/dist/native/guild/guildRoleIDs.js +++ b/dist/native/guild/guildRoleIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -8,31 +12,40 @@ const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$guildRoleIDs", version: "1.3.0", - unwrap: true, + description: "Returns every role id of the guild", aliases: [ - "$serverRoleIDs" + "$serverRoleIDs", + "$roleIDs" ], - output: (0, array_1.default)(), + unwrap: true, brackets: false, - description: "Returns every role id of the guild", args: [ { name: "guild ID", + description: "The guild to get role ids from", rest: false, required: true, type: structures_1.ArgType.Guild, - description: "The guild to get role ids from" }, { name: "separator", description: "The separator to use for every role", rest: false, type: structures_1.ArgType.String + }, + { + name: "everyone", + description: "Whether to include the @everyone role, defaults to true", + rest: false, + type: structures_1.ArgType.Boolean } ], - execute(ctx, [guild, sep]) { - guild ??= ctx.guild; - return this.success(guild?.roles.cache.map(x => x.id).join(sep ?? ", ")); + output: (0, array_1.default)(), + execute(ctx, [guild, sep, everyone]) { + return this.success((guild ?? ctx.guild)?.roles.cache + .filter((x) => everyone !== false || x.guild.id !== x.id) + .map((x) => x.id) + .join(sep ?? ", ")); }, }); //# sourceMappingURL=guildRoleIDs.js.map \ No newline at end of file diff --git a/dist/native/guild/guildRoleIDs.js.map b/dist/native/guild/guildRoleIDs.js.map index 40c1f47500..dae17749a9 100644 --- a/dist/native/guild/guildRoleIDs.js.map +++ b/dist/native/guild/guildRoleIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildRoleIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildRoleIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,oCAAoC;IACjD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,gCAAgC;SAChD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildRoleIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildRoleIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,OAAO,EAAE;QACL,gBAAgB;QAChB,UAAU;KACb;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,EAAE,QAAQ,CAAE;QACjC,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,KAAK,KAAK,IAAI,CAAC,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC;aACxD,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;aAChB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildRulesChannelID.d.ts.map b/dist/native/guild/guildRulesChannelID.d.ts.map index 36c365b739..0863ae9f7d 100644 --- a/dist/native/guild/guildRulesChannelID.d.ts.map +++ b/dist/native/guild/guildRulesChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildRulesChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRulesChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildRulesChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildRulesChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildRulesChannelID.js b/dist/native/guild/guildRulesChannelID.js index 743182c834..c93d12766a 100644 --- a/dist/native/guild/guildRulesChannelID.js +++ b/dist/native/guild/guildRulesChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildRulesChannelID.js.map b/dist/native/guild/guildRulesChannelID.js.map index 1ce5e682b1..e1019a7a60 100644 --- a/dist/native/guild/guildRulesChannelID.js.map +++ b/dist/native/guild/guildRulesChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildRulesChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildRulesChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildRulesChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildRulesChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,uBAAuB;KAC1B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildSafetyAlertsChannelID.d.ts.map b/dist/native/guild/guildSafetyAlertsChannelID.d.ts.map index 8620f6c723..00d7bcc614 100644 --- a/dist/native/guild/guildSafetyAlertsChannelID.d.ts.map +++ b/dist/native/guild/guildSafetyAlertsChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSafetyAlertsChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSafetyAlertsChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildSafetyAlertsChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSafetyAlertsChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildSafetyAlertsChannelID.js b/dist/native/guild/guildSafetyAlertsChannelID.js index 4a834a68c4..4bdf011c6f 100644 --- a/dist/native/guild/guildSafetyAlertsChannelID.js +++ b/dist/native/guild/guildSafetyAlertsChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildSafetyAlertsChannelID.js.map b/dist/native/guild/guildSafetyAlertsChannelID.js.map index b74773c502..938f3580e8 100644 --- a/dist/native/guild/guildSafetyAlertsChannelID.js.map +++ b/dist/native/guild/guildSafetyAlertsChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSafetyAlertsChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildSafetyAlertsChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,8BAA8B;KACjC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,qBAAqB,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSafetyAlertsChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildSafetyAlertsChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,6BAA6B;IACnC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,8BAA8B;KACjC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,qBAAqB,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildScheduledEvents.d.ts b/dist/native/guild/guildScheduledEvents.d.ts new file mode 100644 index 0000000000..a2a7f6fb09 --- /dev/null +++ b/dist/native/guild/guildScheduledEvents.d.ts @@ -0,0 +1,22 @@ +import { ArgType, NativeFunction } from "../../structures"; +import { ScheduledEventProperty } from "../../properties/scheduledEvent"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Enum; + enum: typeof ScheduledEventProperty; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; +}], true>; +export default _default; +//# sourceMappingURL=guildScheduledEvents.d.ts.map \ No newline at end of file diff --git a/dist/native/guild/guildScheduledEvents.d.ts.map b/dist/native/guild/guildScheduledEvents.d.ts.map new file mode 100644 index 0000000000..56c7ab70e7 --- /dev/null +++ b/dist/native/guild/guildScheduledEvents.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"guildScheduledEvents.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildScheduledEvents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;;;;;;;;;;;;;;;;;;;AAGlG,wBAsCE"} \ No newline at end of file diff --git a/dist/native/guild/guildScheduledEvents.js b/dist/native/guild/guildScheduledEvents.js new file mode 100644 index 0000000000..66c0e8063b --- /dev/null +++ b/dist/native/guild/guildScheduledEvents.js @@ -0,0 +1,52 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +const scheduledEvent_1 = require("../../properties/scheduledEvent"); +const array_1 = __importDefault(require("../../functions/array")); +exports.default = new structures_1.NativeFunction({ + name: "$guildScheduledEvents", + version: "2.6.0", + description: "Returns all scheduled events of a guild", + unwrap: true, + brackets: false, + args: [ + { + name: "guild ID", + description: "The guild to get scheduled events from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "property", + description: "The property of the scheduled events to return", + rest: false, + type: structures_1.ArgType.Enum, + enum: scheduledEvent_1.ScheduledEventProperty + }, + { + name: "separator", + description: "The separator to use for each property", + rest: false, + type: structures_1.ArgType.String, + }, + ], + output: [ + structures_1.ArgType.Json, + (0, array_1.default)() + ], + async execute(ctx, [guild, prop, sep]) { + const events = await (guild ?? ctx.guild)?.scheduledEvents?.fetch().catch(ctx.noop); + if (prop) + return this.success(events?.map((x) => scheduledEvent_1.ScheduledEventProperties[prop](x)).join(sep ?? ", ")); + return this.successJSON(events); + }, +}); +//# sourceMappingURL=guildScheduledEvents.js.map \ No newline at end of file diff --git a/dist/native/guild/guildScheduledEvents.js.map b/dist/native/guild/guildScheduledEvents.js.map new file mode 100644 index 0000000000..e52c0498a5 --- /dev/null +++ b/dist/native/guild/guildScheduledEvents.js.map @@ -0,0 +1 @@ +{"version":3,"file":"guildScheduledEvents.js","sourceRoot":"","sources":["../../../src/native/guild/guildScheduledEvents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,oEAAkG;AAClG,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;SAC/B;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnF,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QACtG,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildShardID.d.ts.map b/dist/native/guild/guildShardID.d.ts.map index 93e8024bd5..0c63ceb2ef 100644 --- a/dist/native/guild/guildShardID.d.ts.map +++ b/dist/native/guild/guildShardID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildShardID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildShardID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildShardID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildShardID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildShardID.js b/dist/native/guild/guildShardID.js index dc58a85fe2..b60fed19c2 100644 --- a/dist/native/guild/guildShardID.js +++ b/dist/native/guild/guildShardID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildShardID.js.map b/dist/native/guild/guildShardID.js.map index face4fc0f4..7ffeb0717f 100644 --- a/dist/native/guild/guildShardID.js.map +++ b/dist/native/guild/guildShardID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildShardID.js","sourceRoot":"","sources":["../../../src/native/guild/guildShardID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildShardID.js","sourceRoot":"","sources":["../../../src/native/guild/guildShardID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildSoundboardLimit.d.ts.map b/dist/native/guild/guildSoundboardLimit.d.ts.map index 954b828c57..58fe833375 100644 --- a/dist/native/guild/guildSoundboardLimit.d.ts.map +++ b/dist/native/guild/guildSoundboardLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"guildSoundboardLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/guild/guildSoundboardLimit.js b/dist/native/guild/guildSoundboardLimit.js index 1ea164d23b..93cebe3a69 100644 --- a/dist/native/guild/guildSoundboardLimit.js +++ b/dist/native/guild/guildSoundboardLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildSoundboardLimit.js.map b/dist/native/guild/guildSoundboardLimit.js.map index bdc43cfbe5..2befa63f23 100644 --- a/dist/native/guild/guildSoundboardLimit.js.map +++ b/dist/native/guild/guildSoundboardLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardLimit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,EAAE;gBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,EAAE;oBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,EAAE;wBACJ,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSoundboardLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,EAAE;gBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,EAAE;oBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,EAAE;wBACJ,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildSoundboardSounds.d.ts.map b/dist/native/guild/guildSoundboardSounds.d.ts.map index 8c85cac526..9da13d87e0 100644 --- a/dist/native/guild/guildSoundboardSounds.d.ts.map +++ b/dist/native/guild/guildSoundboardSounds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSounds.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardSounds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;AAE3F,wBAqCE"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSounds.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardSounds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;AAE3F,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/guildSoundboardSounds.js b/dist/native/guild/guildSoundboardSounds.js index 2fb83198e5..62d3d5cbba 100644 --- a/dist/native/guild/guildSoundboardSounds.js +++ b/dist/native/guild/guildSoundboardSounds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildSoundboardSounds.js.map b/dist/native/guild/guildSoundboardSounds.js.map index d167b638f5..eae2dccd39 100644 --- a/dist/native/guild/guildSoundboardSounds.js.map +++ b/dist/native/guild/guildSoundboardSounds.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSoundboardSounds.js","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardSounds.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kEAAyC;AACzC,kDAA2F;AAE3F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;SAChC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACnF,IAAI,MAAM,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAChH,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSoundboardSounds.js","sourceRoot":"","sources":["../../../src/native/guild/guildSoundboardSounds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kEAAyC;AACzC,kDAA2F;AAE3F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;SAChC;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACnF,IAAI,MAAM,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAChH,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildSplashURL.d.ts.map b/dist/native/guild/guildSplashURL.d.ts.map index 833f197128..cbddbab59d 100644 --- a/dist/native/guild/guildSplashURL.d.ts.map +++ b/dist/native/guild/guildSplashURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSplashURL.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSplashURL.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"guildSplashURL.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSplashURL.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/guild/guildSplashURL.js b/dist/native/guild/guildSplashURL.js index 5aaf7748bc..f71fc55daa 100644 --- a/dist/native/guild/guildSplashURL.js +++ b/dist/native/guild/guildSplashURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildSplashURL.js.map b/dist/native/guild/guildSplashURL.js.map index 703946b272..2f8a39768f 100644 --- a/dist/native/guild/guildSplashURL.js.map +++ b/dist/native/guild/guildSplashURL.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSplashURL.js","sourceRoot":"","sources":["../../../src/native/guild/guildSplashURL.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSplashURL.js","sourceRoot":"","sources":["../../../src/native/guild/guildSplashURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,SAAS,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildStageInstances.d.ts.map b/dist/native/guild/guildStageInstances.d.ts.map index 03d0609417..058bba0060 100644 --- a/dist/native/guild/guildStageInstances.d.ts.map +++ b/dist/native/guild/guildStageInstances.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildStageInstances.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStageInstances.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"guildStageInstances.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStageInstances.ts"],"names":[],"mappings":"AAMA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/guildStageInstances.js b/dist/native/guild/guildStageInstances.js index ea6135ca07..74739e8518 100644 --- a/dist/native/guild/guildStageInstances.js +++ b/dist/native/guild/guildStageInstances.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildStageInstances.js.map b/dist/native/guild/guildStageInstances.js.map index 9568177b90..633260e2a3 100644 --- a/dist/native/guild/guildStageInstances.js.map +++ b/dist/native/guild/guildStageInstances.js.map @@ -1 +1 @@ -{"version":3,"file":"guildStageInstances.js","sourceRoot":"","sources":["../../../src/native/guild/guildStageInstances.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,SAAS,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,KAAK,CAAA;QAC3D,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC/F,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildStageInstances.js","sourceRoot":"","sources":["../../../src/native/guild/guildStageInstances.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAE;QACnC,MAAM,SAAS,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,KAAK,CAAA;QAC3D,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC/F,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerExists.d.ts.map b/dist/native/guild/guildStickerExists.d.ts.map index f74c43e426..3885340134 100644 --- a/dist/native/guild/guildStickerExists.d.ts.map +++ b/dist/native/guild/guildStickerExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildStickerExists.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerExists.js b/dist/native/guild/guildStickerExists.js index 268122ec68..1494245d27 100644 --- a/dist/native/guild/guildStickerExists.js +++ b/dist/native/guild/guildStickerExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildStickerExists.js.map b/dist/native/guild/guildStickerExists.js.map index efa2c46e38..bf83b9be87 100644 --- a/dist/native/guild/guildStickerExists.js.map +++ b/dist/native/guild/guildStickerExists.js.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildStickerExists.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerIDs.d.ts.map b/dist/native/guild/guildStickerIDs.d.ts.map index a1ea52f1ca..80ffae14ac 100644 --- a/dist/native/guild/guildStickerIDs.d.ts.map +++ b/dist/native/guild/guildStickerIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"guildStickerIDs.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerIDs.js b/dist/native/guild/guildStickerIDs.js index fda0b138dc..f4e3c82362 100644 --- a/dist/native/guild/guildStickerIDs.js +++ b/dist/native/guild/guildStickerIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildStickerIDs.js.map b/dist/native/guild/guildStickerIDs.js.map index 62ede19662..89168bb11b 100644 --- a/dist/native/guild/guildStickerIDs.js.map +++ b/dist/native/guild/guildStickerIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,uCAAuC;IACpD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,mCAAmC;SACnD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildStickerIDs.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,uCAAuC;IACpD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,mCAAmC;SACnD;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerLimit.d.ts.map b/dist/native/guild/guildStickerLimit.d.ts.map index 20d1fa0499..219196b4f6 100644 --- a/dist/native/guild/guildStickerLimit.d.ts.map +++ b/dist/native/guild/guildStickerLimit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerLimit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"guildStickerLimit.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildStickerLimit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/guild/guildStickerLimit.js b/dist/native/guild/guildStickerLimit.js index 38b46dc861..e8b6056916 100644 --- a/dist/native/guild/guildStickerLimit.js +++ b/dist/native/guild/guildStickerLimit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildStickerLimit.js.map b/dist/native/guild/guildStickerLimit.js.map index 1e3b3336ff..10efd3771a 100644 --- a/dist/native/guild/guildStickerLimit.js.map +++ b/dist/native/guild/guildStickerLimit.js.map @@ -1 +1 @@ -{"version":3,"file":"guildStickerLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerLimit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,EAAE;gBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,EAAE;oBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,EAAE;wBACJ,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildStickerLimit.js","sourceRoot":"","sources":["../../../src/native/guild/guildStickerLimit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,IAAI,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,WAAW,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,CAAC;YACN,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,IAAI,KAAK,CAAC;gBACR,CAAC,CAAC,EAAE;gBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;oBACR,CAAC,CAAC,EAAE;oBACJ,CAAC,CAAC,IAAI,KAAK,CAAC;wBACR,CAAC,CAAC,EAAE;wBACJ,CAAC,CAAC,SAAS,CAC9B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildSystemChannelID.d.ts.map b/dist/native/guild/guildSystemChannelID.d.ts.map index 6897d64abb..9791e40fc3 100644 --- a/dist/native/guild/guildSystemChannelID.d.ts.map +++ b/dist/native/guild/guildSystemChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildSystemChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSystemChannelID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildSystemChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildSystemChannelID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildSystemChannelID.js b/dist/native/guild/guildSystemChannelID.js index ea17cb7598..62087a6a7b 100644 --- a/dist/native/guild/guildSystemChannelID.js +++ b/dist/native/guild/guildSystemChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildSystemChannelID.js.map b/dist/native/guild/guildSystemChannelID.js.map index 124a8c573d..aa371a8ada 100644 --- a/dist/native/guild/guildSystemChannelID.js.map +++ b/dist/native/guild/guildSystemChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildSystemChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildSystemChannelID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildSystemChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildSystemChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildTemplateCode.d.ts.map b/dist/native/guild/guildTemplateCode.d.ts.map index 79880d337d..9193e7ffd4 100644 --- a/dist/native/guild/guildTemplateCode.d.ts.map +++ b/dist/native/guild/guildTemplateCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildTemplateCode.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildTemplateCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildTemplateCode.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildTemplateCode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/guildTemplateCode.js b/dist/native/guild/guildTemplateCode.js index 1872a67579..ea2ef8cfcb 100644 --- a/dist/native/guild/guildTemplateCode.js +++ b/dist/native/guild/guildTemplateCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildTemplateCode.js.map b/dist/native/guild/guildTemplateCode.js.map index bb4eb7df43..80c1a84451 100644 --- a/dist/native/guild/guildTemplateCode.js.map +++ b/dist/native/guild/guildTemplateCode.js.map @@ -1 +1 @@ -{"version":3,"file":"guildTemplateCode.js","sourceRoot":"","sources":["../../../src/native/guild/guildTemplateCode.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,MAAM,QAAQ,GAAG,CAAC,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,CAAA;QACxF,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildTemplateCode.js","sourceRoot":"","sources":["../../../src/native/guild/guildTemplateCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,QAAQ;IACxB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,MAAM,QAAQ,GAAG,CAAC,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,CAAA;QACxF,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildTimedOutMembers.d.ts.map b/dist/native/guild/guildTimedOutMembers.d.ts.map index afd61c22f6..2159715da8 100644 --- a/dist/native/guild/guildTimedOutMembers.d.ts.map +++ b/dist/native/guild/guildTimedOutMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildTimedOutMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildTimedOutMembers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"guildTimedOutMembers.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildTimedOutMembers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/guild/guildTimedOutMembers.js b/dist/native/guild/guildTimedOutMembers.js index 6b4fea0af0..01ab92b1d7 100644 --- a/dist/native/guild/guildTimedOutMembers.js +++ b/dist/native/guild/guildTimedOutMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildTimedOutMembers.js.map b/dist/native/guild/guildTimedOutMembers.js.map index 21f2a87475..a0e0fc1ba0 100644 --- a/dist/native/guild/guildTimedOutMembers.js.map +++ b/dist/native/guild/guildTimedOutMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"guildTimedOutMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildTimedOutMembers.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,uBAAuB,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildTimedOutMembers.js","sourceRoot":"","sources":["../../../src/native/guild/guildTimedOutMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,uBAAuB,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildVanityCode.d.ts.map b/dist/native/guild/guildVanityCode.d.ts.map index 35a3686722..1d57f389fa 100644 --- a/dist/native/guild/guildVanityCode.d.ts.map +++ b/dist/native/guild/guildVanityCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildVanityCode.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVanityCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"guildVanityCode.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVanityCode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/guild/guildVanityCode.js b/dist/native/guild/guildVanityCode.js index 982073262e..0fd8301b06 100644 --- a/dist/native/guild/guildVanityCode.js +++ b/dist/native/guild/guildVanityCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildVanityCode.js.map b/dist/native/guild/guildVanityCode.js.map index 1f2175ad34..887317d5af 100644 --- a/dist/native/guild/guildVanityCode.js.map +++ b/dist/native/guild/guildVanityCode.js.map @@ -1 +1 @@ -{"version":3,"file":"guildVanityCode.js","sourceRoot":"","sources":["../../../src/native/guild/guildVanityCode.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,aAAa,IAAI,CAAC,MAAM,KAAK,EAAE,eAAe,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildVanityCode.js","sourceRoot":"","sources":["../../../src/native/guild/guildVanityCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,aAAa,IAAI,CAAC,MAAM,KAAK,EAAE,eAAe,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildVanityUses.d.ts.map b/dist/native/guild/guildVanityUses.d.ts.map index 583fbd79a9..db786824c3 100644 --- a/dist/native/guild/guildVanityUses.d.ts.map +++ b/dist/native/guild/guildVanityUses.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildVanityUses.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVanityUses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"guildVanityUses.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVanityUses.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/guild/guildVanityUses.js b/dist/native/guild/guildVanityUses.js index 624cf582e7..6eec62b447 100644 --- a/dist/native/guild/guildVanityUses.js +++ b/dist/native/guild/guildVanityUses.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildVanityUses.js.map b/dist/native/guild/guildVanityUses.js.map index f33cc7ebb4..c4ab8210c3 100644 --- a/dist/native/guild/guildVanityUses.js.map +++ b/dist/native/guild/guildVanityUses.js.map @@ -1 +1 @@ -{"version":3,"file":"guildVanityUses.js","sourceRoot":"","sources":["../../../src/native/guild/guildVanityUses.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,MAAM,KAAK,EAAE,eAAe,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildVanityUses.js","sourceRoot":"","sources":["../../../src/native/guild/guildVanityUses.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QACtB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,MAAM,GAAG,MAAM,KAAK,EAAE,eAAe,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildVerificationLevel.d.ts.map b/dist/native/guild/guildVerificationLevel.d.ts.map index 5b5a37c496..37a16abda8 100644 --- a/dist/native/guild/guildVerificationLevel.d.ts.map +++ b/dist/native/guild/guildVerificationLevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildVerificationLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVerificationLevel.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildVerificationLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVerificationLevel.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildVerificationLevel.js b/dist/native/guild/guildVerificationLevel.js index ad818d8e16..fc0df704fa 100644 --- a/dist/native/guild/guildVerificationLevel.js +++ b/dist/native/guild/guildVerificationLevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/guildVerificationLevel.js.map b/dist/native/guild/guildVerificationLevel.js.map index d4d06d4ee1..5af131fba6 100644 --- a/dist/native/guild/guildVerificationLevel.js.map +++ b/dist/native/guild/guildVerificationLevel.js.map @@ -1 +1 @@ -{"version":3,"file":"guildVerificationLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildVerificationLevel.ts"],"names":[],"mappings":";;AAAA,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,mCAAsB;IAC9B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAsB,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,iBAAiB,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildVerificationLevel.js","sourceRoot":"","sources":["../../../src/native/guild/guildVerificationLevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,mCAAsB;IAC9B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAsB,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,iBAAiB,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildVerified.d.ts.map b/dist/native/guild/guildVerified.d.ts.map index 4b4653bffe..3e6924acd1 100644 --- a/dist/native/guild/guildVerified.d.ts.map +++ b/dist/native/guild/guildVerified.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildVerified.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVerified.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildVerified.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildVerified.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildVerified.js b/dist/native/guild/guildVerified.js index d1e6b707b4..28f84bcc09 100644 --- a/dist/native/guild/guildVerified.js +++ b/dist/native/guild/guildVerified.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildVerified.js.map b/dist/native/guild/guildVerified.js.map index 110aed824b..046b4d7ab6 100644 --- a/dist/native/guild/guildVerified.js.map +++ b/dist/native/guild/guildVerified.js.map @@ -1 +1 @@ -{"version":3,"file":"guildVerified.js","sourceRoot":"","sources":["../../../src/native/guild/guildVerified.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildVerified.js","sourceRoot":"","sources":["../../../src/native/guild/guildVerified.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildWebhooks.d.ts.map b/dist/native/guild/guildWebhooks.d.ts.map index a77a1635a9..b5b736f15d 100644 --- a/dist/native/guild/guildWebhooks.d.ts.map +++ b/dist/native/guild/guildWebhooks.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildWebhooks.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWebhooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;;;;;;;;;;;;;AAE7E,wBAqCE"} \ No newline at end of file +{"version":3,"file":"guildWebhooks.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWebhooks.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;;;;;;;;;;;;;AAE7E,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/guildWebhooks.js b/dist/native/guild/guildWebhooks.js index db26338821..1777b78fa1 100644 --- a/dist/native/guild/guildWebhooks.js +++ b/dist/native/guild/guildWebhooks.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/guild/guildWebhooks.js.map b/dist/native/guild/guildWebhooks.js.map index ca59467b7e..e078d2e2fe 100644 --- a/dist/native/guild/guildWebhooks.js.map +++ b/dist/native/guild/guildWebhooks.js.map @@ -1 +1 @@ -{"version":3,"file":"guildWebhooks.js","sourceRoot":"","sources":["../../../src/native/guild/guildWebhooks.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kEAAyC;AACzC,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,QAAQ,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC5E,IAAI,IAAI,IAAI,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC5G,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildWebhooks.js","sourceRoot":"","sources":["../../../src/native/guild/guildWebhooks.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kEAAyC;AACzC,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,QAAQ,GAAG,MAAM,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC5E,IAAI,IAAI,IAAI,QAAQ;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;QAC5G,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildWidgetChannelEnabled.d.ts.map b/dist/native/guild/guildWidgetChannelEnabled.d.ts.map index 5b064e18b8..0a3f36092e 100644 --- a/dist/native/guild/guildWidgetChannelEnabled.d.ts.map +++ b/dist/native/guild/guildWidgetChannelEnabled.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildWidgetChannelEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelEnabled.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildWidgetChannelEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelEnabled.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildWidgetChannelEnabled.js b/dist/native/guild/guildWidgetChannelEnabled.js index b80128d316..a74b5a3b41 100644 --- a/dist/native/guild/guildWidgetChannelEnabled.js +++ b/dist/native/guild/guildWidgetChannelEnabled.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildWidgetChannelEnabled.js.map b/dist/native/guild/guildWidgetChannelEnabled.js.map index d17e1af81f..bff1b16847 100644 --- a/dist/native/guild/guildWidgetChannelEnabled.js.map +++ b/dist/native/guild/guildWidgetChannelEnabled.js.map @@ -1 +1 @@ -{"version":3,"file":"guildWidgetChannelEnabled.js","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelEnabled.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildWidgetChannelEnabled.js","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelEnabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,aAAa,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/guildWidgetChannelID.d.ts.map b/dist/native/guild/guildWidgetChannelID.d.ts.map index b5bc11f733..728129a1c3 100644 --- a/dist/native/guild/guildWidgetChannelID.d.ts.map +++ b/dist/native/guild/guildWidgetChannelID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guildWidgetChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelID.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"guildWidgetChannelID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/guildWidgetChannelID.js b/dist/native/guild/guildWidgetChannelID.js index 72b7834323..4ed38b7249 100644 --- a/dist/native/guild/guildWidgetChannelID.js +++ b/dist/native/guild/guildWidgetChannelID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/guildWidgetChannelID.js.map b/dist/native/guild/guildWidgetChannelID.js.map index 3d6cf0138c..45c1aa1be5 100644 --- a/dist/native/guild/guildWidgetChannelID.js.map +++ b/dist/native/guild/guildWidgetChannelID.js.map @@ -1 +1 @@ -{"version":3,"file":"guildWidgetChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"guildWidgetChannelID.js","sourceRoot":"","sources":["../../../src/native/guild/guildWidgetChannelID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/randomGuildID.d.ts.map b/dist/native/guild/randomGuildID.d.ts.map index bac4994680..53303039f2 100644 --- a/dist/native/guild/randomGuildID.d.ts.map +++ b/dist/native/guild/randomGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/randomGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"randomGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/guild/randomGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/guild/randomGuildID.js b/dist/native/guild/randomGuildID.js index 3030edb32c..7196019876 100644 --- a/dist/native/guild/randomGuildID.js +++ b/dist/native/guild/randomGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/randomGuildID.js.map b/dist/native/guild/randomGuildID.js.map index f67a2499bf..200aa58bdd 100644 --- a/dist/native/guild/randomGuildID.js.map +++ b/dist/native/guild/randomGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomGuildID.js","sourceRoot":"","sources":["../../../src/native/guild/randomGuildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomGuildID.js","sourceRoot":"","sources":["../../../src/native/guild/randomGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/registerGuildApplicationCommands.d.ts.map b/dist/native/guild/registerGuildApplicationCommands.d.ts.map index 9cb13f315c..baba6f3d00 100644 --- a/dist/native/guild/registerGuildApplicationCommands.d.ts.map +++ b/dist/native/guild/registerGuildApplicationCommands.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"registerGuildApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/guild/registerGuildApplicationCommands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAYE"} \ No newline at end of file +{"version":3,"file":"registerGuildApplicationCommands.d.ts","sourceRoot":"","sources":["../../../src/native/guild/registerGuildApplicationCommands.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAYE"} \ No newline at end of file diff --git a/dist/native/guild/registerGuildApplicationCommands.js b/dist/native/guild/registerGuildApplicationCommands.js index b7f541d3af..59f5ed6782 100644 --- a/dist/native/guild/registerGuildApplicationCommands.js +++ b/dist/native/guild/registerGuildApplicationCommands.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/registerGuildApplicationCommands.js.map b/dist/native/guild/registerGuildApplicationCommands.js.map index d51be61ee4..0cbbab913d 100644 --- a/dist/native/guild/registerGuildApplicationCommands.js.map +++ b/dist/native/guild/registerGuildApplicationCommands.js.map @@ -1 +1 @@ -{"version":3,"file":"registerGuildApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/guild/registerGuildApplicationCommands.ts"],"names":[],"mappings":";;AAAA,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mCAAmC;IACzC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,CAAC,gBAAG,CAAC,aAAa,CAAC,SAAS,EAAE,mCAAmC,CAAC,CAAC;IACzE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"registerGuildApplicationCommands.js","sourceRoot":"","sources":["../../../src/native/guild/registerGuildApplicationCommands.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mCAAmC;IACzC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,CAAC,gBAAG,CAAC,aAAa,CAAC,SAAS,EAAE,mCAAmC,CAAC,CAAC;IACzE,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACnG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildAFKChannel.d.ts.map b/dist/native/guild/setGuildAFKChannel.d.ts.map index ee8a78684a..3a1d6a5a2d 100644 --- a/dist/native/guild/setGuildAFKChannel.d.ts.map +++ b/dist/native/guild/setGuildAFKChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildAFKChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA6B,MAAM,YAAY,CAAA;AACnE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file +{"version":3,"file":"setGuildAFKChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA6B,MAAM,YAAY,CAAA;AACnE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildAFKChannel.js b/dist/native/guild/setGuildAFKChannel.js index 0c680162df..3584867546 100644 --- a/dist/native/guild/setGuildAFKChannel.js +++ b/dist/native/guild/setGuildAFKChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildAFKChannel.js.map b/dist/native/guild/setGuildAFKChannel.js.map index 9d8d7bb2ab..7a9757d0a2 100644 --- a/dist/native/guild/setGuildAFKChannel.js.map +++ b/dist/native/guild/setGuildAFKChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildAFKChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKChannel.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;YAC5D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,aAAa,CAAC,OAAuB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildAFKChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,UAAU;YAC5D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,aAAa,CAAC,OAAuB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildAFKTimeout.d.ts.map b/dist/native/guild/setGuildAFKTimeout.d.ts.map index 795fb990c7..dcb41651e9 100644 --- a/dist/native/guild/setGuildAFKTimeout.d.ts.map +++ b/dist/native/guild/setGuildAFKTimeout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildAFKTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKTimeout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildAFKTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKTimeout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildAFKTimeout.js b/dist/native/guild/setGuildAFKTimeout.js index c27cdb8d06..91baba368b 100644 --- a/dist/native/guild/setGuildAFKTimeout.js +++ b/dist/native/guild/setGuildAFKTimeout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildAFKTimeout.js.map b/dist/native/guild/setGuildAFKTimeout.js.map index 60d39b83c0..d9d3610fe7 100644 --- a/dist/native/guild/setGuildAFKTimeout.js.map +++ b/dist/native/guild/setGuildAFKTimeout.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildAFKTimeout.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKTimeout.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,aAAa,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildAFKTimeout.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildAFKTimeout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,aAAa,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildBanner.d.ts.map b/dist/native/guild/setGuildBanner.d.ts.map index 4a8d54e3ce..1892a50c0d 100644 --- a/dist/native/guild/setGuildBanner.d.ts.map +++ b/dist/native/guild/setGuildBanner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildBanner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildBanner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setGuildBanner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildBanner.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildBanner.js b/dist/native/guild/setGuildBanner.js index 3ec8f783a1..f4ef67572c 100644 --- a/dist/native/guild/setGuildBanner.js +++ b/dist/native/guild/setGuildBanner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildBanner.js.map b/dist/native/guild/setGuildBanner.js.map index d6eb199a47..d5d8923c5d 100644 --- a/dist/native/guild/setGuildBanner.js.map +++ b/dist/native/guild/setGuildBanner.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildBanner.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildBanner.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildBanner.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildBoostProgressBar.d.ts.map b/dist/native/guild/setGuildBoostProgressBar.d.ts.map index ffdec08e7f..218aea3e45 100644 --- a/dist/native/guild/setGuildBoostProgressBar.d.ts.map +++ b/dist/native/guild/setGuildBoostProgressBar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildBoostProgressBar.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildBoostProgressBar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildBoostProgressBar.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildBoostProgressBar.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildBoostProgressBar.js b/dist/native/guild/setGuildBoostProgressBar.js index 492e556e41..df3cb9e9e2 100644 --- a/dist/native/guild/setGuildBoostProgressBar.js +++ b/dist/native/guild/setGuildBoostProgressBar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildBoostProgressBar.js.map b/dist/native/guild/setGuildBoostProgressBar.js.map index 4f69289d45..e59f0d384f 100644 --- a/dist/native/guild/setGuildBoostProgressBar.js.map +++ b/dist/native/guild/setGuildBoostProgressBar.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildBoostProgressBar.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildBoostProgressBar.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE;QACL,4BAA4B;KAC/B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sDAAsD;YACnE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,4BAA4B,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildBoostProgressBar.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildBoostProgressBar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE;QACL,4BAA4B;KAC/B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sDAAsD;YACnE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,4BAA4B,CAAC,OAAO,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDefaultMessageNotifications.d.ts.map b/dist/native/guild/setGuildDefaultMessageNotifications.d.ts.map index 5dcc0ccfd5..1b9fb3ba2c 100644 --- a/dist/native/guild/setGuildDefaultMessageNotifications.d.ts.map +++ b/dist/native/guild/setGuildDefaultMessageNotifications.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildDefaultMessageNotifications.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildDefaultMessageNotifications.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,MAAM,YAAY,CAAA;AAC7D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildDefaultMessageNotifications.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildDefaultMessageNotifications.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gCAAgC,EAAE,MAAM,YAAY,CAAA;AAC7D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDefaultMessageNotifications.js b/dist/native/guild/setGuildDefaultMessageNotifications.js index a275e56f90..fc3c125ce0 100644 --- a/dist/native/guild/setGuildDefaultMessageNotifications.js +++ b/dist/native/guild/setGuildDefaultMessageNotifications.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildDefaultMessageNotifications.js.map b/dist/native/guild/setGuildDefaultMessageNotifications.js.map index 8498d0e05a..0d5cf5da21 100644 --- a/dist/native/guild/setGuildDefaultMessageNotifications.js.map +++ b/dist/native/guild/setGuildDefaultMessageNotifications.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildDefaultMessageNotifications.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildDefaultMessageNotifications.ts"],"names":[],"mappings":";;AAAA,2CAA6D;AAC7D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sCAAsC;IAC5C,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,uCAAuC;KAC1C;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6CAAgC;SACzC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,8BAA8B,CAAC,OAAO,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildDefaultMessageNotifications.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildDefaultMessageNotifications.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6D;AAC7D,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sCAAsC;IAC5C,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,uCAAuC;KAC1C;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6CAAgC;SACzC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,8BAA8B,CAAC,OAAO,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDiscoverySplash.d.ts.map b/dist/native/guild/setGuildDiscoverySplash.d.ts.map index 57456aca20..716a1156a5 100644 --- a/dist/native/guild/setGuildDiscoverySplash.d.ts.map +++ b/dist/native/guild/setGuildDiscoverySplash.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildDiscoverySplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildDiscoverySplash.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setGuildDiscoverySplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildDiscoverySplash.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDiscoverySplash.js b/dist/native/guild/setGuildDiscoverySplash.js index 3af6665ded..9258af7977 100644 --- a/dist/native/guild/setGuildDiscoverySplash.js +++ b/dist/native/guild/setGuildDiscoverySplash.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildDiscoverySplash.js.map b/dist/native/guild/setGuildDiscoverySplash.js.map index 84b29d7710..6b084dc621 100644 --- a/dist/native/guild/setGuildDiscoverySplash.js.map +++ b/dist/native/guild/setGuildDiscoverySplash.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildDiscoverySplash.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildDiscoverySplash.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildDiscoverySplash.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildDiscoverySplash.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDmsDisabled.d.ts b/dist/native/guild/setGuildDmsDisabled.d.ts new file mode 100644 index 0000000000..530c8d9779 --- /dev/null +++ b/dist/native/guild/setGuildDmsDisabled.d.ts @@ -0,0 +1,15 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Time; +}], true>; +export default _default; +//# sourceMappingURL=setGuildDmsDisabled.d.ts.map \ No newline at end of file diff --git a/dist/native/guild/setGuildDmsDisabled.d.ts.map b/dist/native/guild/setGuildDmsDisabled.d.ts.map new file mode 100644 index 0000000000..19da5b68f4 --- /dev/null +++ b/dist/native/guild/setGuildDmsDisabled.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setGuildDmsDisabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildDmsDisabled.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildDmsDisabled.js b/dist/native/guild/setGuildDmsDisabled.js new file mode 100644 index 0000000000..1932bad3e0 --- /dev/null +++ b/dist/native/guild/setGuildDmsDisabled.js @@ -0,0 +1,38 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setGuildDmsDisabled", + version: "2.6.0", + description: "Sets the guild's DMs activity disabled for a specific duration, returns bool", + aliases: ["$setServerDmsDisabled"], + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to disable DMs for", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "duration", + description: "The duration for disabling DMs, omit to enable DMs again", + rest: false, + type: structures_1.ArgType.Time, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [guild, ms]) { + return this.success((await guild.setIncidentActions({ + dmsDisabledUntil: ms ? Date.now() + ms : null, + invitesDisabledUntil: guild.incidentsData?.invitesDisabledUntil + }).catch(() => false)) !== false); + }, +}); +//# sourceMappingURL=setGuildDmsDisabled.js.map \ No newline at end of file diff --git a/dist/native/guild/setGuildDmsDisabled.js.map b/dist/native/guild/setGuildDmsDisabled.js.map new file mode 100644 index 0000000000..0b67e23af4 --- /dev/null +++ b/dist/native/guild/setGuildDmsDisabled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setGuildDmsDisabled.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildDmsDisabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8EAA8E;IAC3F,OAAO,EAAE,CAAC,uBAAuB,CAAC;IAClC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC;YAChD,gBAAgB,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI;YAC7C,oBAAoB,EAAE,KAAK,CAAC,aAAa,EAAE,oBAAoB;SAClE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildExplicitContentFilter.d.ts.map b/dist/native/guild/setGuildExplicitContentFilter.d.ts.map index 7d2b4a0395..a16fc70f8d 100644 --- a/dist/native/guild/setGuildExplicitContentFilter.d.ts.map +++ b/dist/native/guild/setGuildExplicitContentFilter.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildExplicitContentFilter.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildExplicitContentFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildExplicitContentFilter.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildExplicitContentFilter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,0BAA0B,EAAE,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildExplicitContentFilter.js b/dist/native/guild/setGuildExplicitContentFilter.js index cc81330386..6f48164c07 100644 --- a/dist/native/guild/setGuildExplicitContentFilter.js +++ b/dist/native/guild/setGuildExplicitContentFilter.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildExplicitContentFilter.js.map b/dist/native/guild/setGuildExplicitContentFilter.js.map index 5a321ec181..40a2f176b2 100644 --- a/dist/native/guild/setGuildExplicitContentFilter.js.map +++ b/dist/native/guild/setGuildExplicitContentFilter.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildExplicitContentFilter.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildExplicitContentFilter.ts"],"names":[],"mappings":";;AAAA,2CAAuD;AACvD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iCAAiC;KACpC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAA0B;SACnC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,wBAAwB,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAClI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildExplicitContentFilter.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildExplicitContentFilter.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAuD;AACvD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iCAAiC;KACpC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAA0B;SACnC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,wBAAwB,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAClI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildIcon.d.ts.map b/dist/native/guild/setGuildIcon.d.ts.map index 2404ad50d6..439f2aa4e8 100644 --- a/dist/native/guild/setGuildIcon.d.ts.map +++ b/dist/native/guild/setGuildIcon.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildIcon.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildIcon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setGuildIcon.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildIcon.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildIcon.js b/dist/native/guild/setGuildIcon.js index 1df3391148..748000cbdd 100644 --- a/dist/native/guild/setGuildIcon.js +++ b/dist/native/guild/setGuildIcon.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildIcon.js.map b/dist/native/guild/setGuildIcon.js.map index 2575eed196..4df3fa0480 100644 --- a/dist/native/guild/setGuildIcon.js.map +++ b/dist/native/guild/setGuildIcon.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildIcon.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildIcon.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildIcon.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildIcon.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,0BAA0B;SAC1C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildInvitesDisabled.d.ts b/dist/native/guild/setGuildInvitesDisabled.d.ts new file mode 100644 index 0000000000..2d51874399 --- /dev/null +++ b/dist/native/guild/setGuildInvitesDisabled.d.ts @@ -0,0 +1,15 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Time; +}], true>; +export default _default; +//# sourceMappingURL=setGuildInvitesDisabled.d.ts.map \ No newline at end of file diff --git a/dist/native/guild/setGuildInvitesDisabled.d.ts.map b/dist/native/guild/setGuildInvitesDisabled.d.ts.map new file mode 100644 index 0000000000..2dc88c86a6 --- /dev/null +++ b/dist/native/guild/setGuildInvitesDisabled.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"setGuildInvitesDisabled.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildInvitesDisabled.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildInvitesDisabled.js b/dist/native/guild/setGuildInvitesDisabled.js new file mode 100644 index 0000000000..65f66598c2 --- /dev/null +++ b/dist/native/guild/setGuildInvitesDisabled.js @@ -0,0 +1,38 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$setGuildInvitesDisabled", + version: "2.6.0", + description: "Sets the guild's invites disabled for a specific duration, returns bool", + aliases: ["$setServerInvitesDisabled"], + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to disable invites for", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "duration", + description: "The duration for disabling invites, omit to enable invites again", + rest: false, + type: structures_1.ArgType.Time, + }, + ], + output: structures_1.ArgType.Boolean, + async execute(ctx, [guild, ms]) { + return this.success((await guild.setIncidentActions({ + invitesDisabledUntil: ms ? Date.now() + ms : null, + dmsDisabledUntil: guild.incidentsData?.dmsDisabledUntil + }).catch(() => false)) !== false); + }, +}); +//# sourceMappingURL=setGuildInvitesDisabled.js.map \ No newline at end of file diff --git a/dist/native/guild/setGuildInvitesDisabled.js.map b/dist/native/guild/setGuildInvitesDisabled.js.map new file mode 100644 index 0000000000..e2fdc65dc2 --- /dev/null +++ b/dist/native/guild/setGuildInvitesDisabled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setGuildInvitesDisabled.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildInvitesDisabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,OAAO,EAAE,CAAC,2BAA2B,CAAC;IACtC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC;YAChD,oBAAoB,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI;YACjD,gBAAgB,EAAE,KAAK,CAAC,aAAa,EAAE,gBAAgB;SAC1D,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildMFALevel.d.ts.map b/dist/native/guild/setGuildMFALevel.d.ts.map index 9464b506a4..cf72f6245a 100644 --- a/dist/native/guild/setGuildMFALevel.d.ts.map +++ b/dist/native/guild/setGuildMFALevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildMFALevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildMFALevel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setGuildMFALevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildMFALevel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildMFALevel.js b/dist/native/guild/setGuildMFALevel.js index 3b8777497f..a30e7e3993 100644 --- a/dist/native/guild/setGuildMFALevel.js +++ b/dist/native/guild/setGuildMFALevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildMFALevel.js.map b/dist/native/guild/setGuildMFALevel.js.map index e42705c8f5..07be0bff64 100644 --- a/dist/native/guild/setGuildMFALevel.js.map +++ b/dist/native/guild/setGuildMFALevel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildMFALevel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildMFALevel.ts"],"names":[],"mappings":";;AAAA,2CAA0C;AAC1C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildMFALevel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildMFALevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0C;AAC1C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAa;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildName.d.ts.map b/dist/native/guild/setGuildName.d.ts.map index ce6e16ab13..32adebfdee 100644 --- a/dist/native/guild/setGuildName.d.ts.map +++ b/dist/native/guild/setGuildName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildName.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildName.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildName.js b/dist/native/guild/setGuildName.js index 9a0ae54f34..8dad810bde 100644 --- a/dist/native/guild/setGuildName.js +++ b/dist/native/guild/setGuildName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildName.js.map b/dist/native/guild/setGuildName.js.map index dc956ce38c..96c883b742 100644 --- a/dist/native/guild/setGuildName.js.map +++ b/dist/native/guild/setGuildName.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildName.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,uBAAuB;SACvC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildName.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,uBAAuB;SACvC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildOwner.d.ts.map b/dist/native/guild/setGuildOwner.d.ts.map index 15d8028303..1a879d1455 100644 --- a/dist/native/guild/setGuildOwner.d.ts.map +++ b/dist/native/guild/setGuildOwner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildOwner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildOwner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"setGuildOwner.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildOwner.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildOwner.js b/dist/native/guild/setGuildOwner.js index 5eb346052e..51e5e08d39 100644 --- a/dist/native/guild/setGuildOwner.js +++ b/dist/native/guild/setGuildOwner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildOwner.js.map b/dist/native/guild/setGuildOwner.js.map index 56af885484..6b94743c8d 100644 --- a/dist/native/guild/setGuildOwner.js.map +++ b/dist/native/guild/setGuildOwner.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildOwner.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildOwner.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildOwner.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildOwner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPausedInvites.d.ts.map b/dist/native/guild/setGuildPausedInvites.d.ts.map index fa9e7eb64d..29f5ec2645 100644 --- a/dist/native/guild/setGuildPausedInvites.d.ts.map +++ b/dist/native/guild/setGuildPausedInvites.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPausedInvites.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPausedInvites.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"setGuildPausedInvites.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPausedInvites.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPausedInvites.js b/dist/native/guild/setGuildPausedInvites.js index 5a917818a4..8a09856166 100644 --- a/dist/native/guild/setGuildPausedInvites.js +++ b/dist/native/guild/setGuildPausedInvites.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildPausedInvites.js.map b/dist/native/guild/setGuildPausedInvites.js.map index 8d29cf3d21..67f1059725 100644 --- a/dist/native/guild/setGuildPausedInvites.js.map +++ b/dist/native/guild/setGuildPausedInvites.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPausedInvites.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPausedInvites.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildPausedInvites.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPausedInvites.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPreferredLocale.d.ts.map b/dist/native/guild/setGuildPreferredLocale.d.ts.map index a1af7daff9..bbbcc66dd4 100644 --- a/dist/native/guild/setGuildPreferredLocale.d.ts.map +++ b/dist/native/guild/setGuildPreferredLocale.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPreferredLocale.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPreferredLocale.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AACnC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildPreferredLocale.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPreferredLocale.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AACnC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPreferredLocale.js b/dist/native/guild/setGuildPreferredLocale.js index de238c9452..e9f3ba4b45 100644 --- a/dist/native/guild/setGuildPreferredLocale.js +++ b/dist/native/guild/setGuildPreferredLocale.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildPreferredLocale.js.map b/dist/native/guild/setGuildPreferredLocale.js.map index 2663a44358..dffa21284d 100644 --- a/dist/native/guild/setGuildPreferredLocale.js.map +++ b/dist/native/guild/setGuildPreferredLocale.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPreferredLocale.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPreferredLocale.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAM;SACf;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildPreferredLocale.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPreferredLocale.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,2BAA2B;KAC9B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAM;SACf;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,kBAAkB,CAAC,MAAM,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC5H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPublicUpdatesChannel.d.ts.map b/dist/native/guild/setGuildPublicUpdatesChannel.d.ts.map index d3301c76e3..d148f4e538 100644 --- a/dist/native/guild/setGuildPublicUpdatesChannel.d.ts.map +++ b/dist/native/guild/setGuildPublicUpdatesChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPublicUpdatesChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPublicUpdatesChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file +{"version":3,"file":"setGuildPublicUpdatesChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildPublicUpdatesChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildPublicUpdatesChannel.js b/dist/native/guild/setGuildPublicUpdatesChannel.js index 168c8769be..c579d1da5d 100644 --- a/dist/native/guild/setGuildPublicUpdatesChannel.js +++ b/dist/native/guild/setGuildPublicUpdatesChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildPublicUpdatesChannel.js.map b/dist/native/guild/setGuildPublicUpdatesChannel.js.map index 22b4b95bdd..5acb835b8b 100644 --- a/dist/native/guild/setGuildPublicUpdatesChannel.js.map +++ b/dist/native/guild/setGuildPublicUpdatesChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildPublicUpdatesChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPublicUpdatesChannel.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,uBAAuB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACjJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildPublicUpdatesChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildPublicUpdatesChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gCAAgC;KACnC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,uBAAuB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACjJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildRulesChannel.d.ts.map b/dist/native/guild/setGuildRulesChannel.d.ts.map index 2ef081b643..77a4819e86 100644 --- a/dist/native/guild/setGuildRulesChannel.d.ts.map +++ b/dist/native/guild/setGuildRulesChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildRulesChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildRulesChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file +{"version":3,"file":"setGuildRulesChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildRulesChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildRulesChannel.js b/dist/native/guild/setGuildRulesChannel.js index a47e45d3ef..e478eb8c38 100644 --- a/dist/native/guild/setGuildRulesChannel.js +++ b/dist/native/guild/setGuildRulesChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildRulesChannel.js.map b/dist/native/guild/setGuildRulesChannel.js.map index 19f313cc35..7d1c020e81 100644 --- a/dist/native/guild/setGuildRulesChannel.js.map +++ b/dist/native/guild/setGuildRulesChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildRulesChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildRulesChannel.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,eAAe,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildRulesChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildRulesChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,wBAAwB;KAC3B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,eAAe,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSafetyAlertsChannel.d.ts.map b/dist/native/guild/setGuildSafetyAlertsChannel.d.ts.map index 78b65f23b1..d140cb084e 100644 --- a/dist/native/guild/setGuildSafetyAlertsChannel.d.ts.map +++ b/dist/native/guild/setGuildSafetyAlertsChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSafetyAlertsChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSafetyAlertsChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file +{"version":3,"file":"setGuildSafetyAlertsChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSafetyAlertsChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSafetyAlertsChannel.js b/dist/native/guild/setGuildSafetyAlertsChannel.js index c5303ed601..7dbb5a88b3 100644 --- a/dist/native/guild/setGuildSafetyAlertsChannel.js +++ b/dist/native/guild/setGuildSafetyAlertsChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildSafetyAlertsChannel.js.map b/dist/native/guild/setGuildSafetyAlertsChannel.js.map index 15027e7f72..9ceac5c2c9 100644 --- a/dist/native/guild/setGuildSafetyAlertsChannel.js.map +++ b/dist/native/guild/setGuildSafetyAlertsChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSafetyAlertsChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSafetyAlertsChannel.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,sBAAsB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildSafetyAlertsChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSafetyAlertsChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,+BAA+B;KAClC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,sBAAsB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSplash.d.ts.map b/dist/native/guild/setGuildSplash.d.ts.map index 2934860b39..7aad958a06 100644 --- a/dist/native/guild/setGuildSplash.d.ts.map +++ b/dist/native/guild/setGuildSplash.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSplash.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"setGuildSplash.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSplash.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSplash.js b/dist/native/guild/setGuildSplash.js index 1b8a468fcb..f09afd3de7 100644 --- a/dist/native/guild/setGuildSplash.js +++ b/dist/native/guild/setGuildSplash.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/setGuildSplash.js.map b/dist/native/guild/setGuildSplash.js.map index 65629a7b91..007b442899 100644 --- a/dist/native/guild/setGuildSplash.js.map +++ b/dist/native/guild/setGuildSplash.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSplash.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSplash.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildSplash.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSplash.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,IAAI,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSystemChannel.d.ts.map b/dist/native/guild/setGuildSystemChannel.d.ts.map index e06fad0c28..4a4fb105e4 100644 --- a/dist/native/guild/setGuildSystemChannel.d.ts.map +++ b/dist/native/guild/setGuildSystemChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSystemChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSystemChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file +{"version":3,"file":"setGuildSystemChannel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildSystemChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA4B,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;AAtBlC,wBAoCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildSystemChannel.js b/dist/native/guild/setGuildSystemChannel.js index cb2cc90b33..6575fecc3e 100644 --- a/dist/native/guild/setGuildSystemChannel.js +++ b/dist/native/guild/setGuildSystemChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildSystemChannel.js.map b/dist/native/guild/setGuildSystemChannel.js.map index 40b3a37dc4..1b900b23fc 100644 --- a/dist/native/guild/setGuildSystemChannel.js.map +++ b/dist/native/guild/setGuildSystemChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildSystemChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSystemChannel.ts"],"names":[],"mappings":";;AAAA,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildSystemChannel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildSystemChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkE;AAClE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,SAAS;YAC3D,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,CAAC;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,gBAAgB,CAAC,OAAsB,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildVerificationLevel.d.ts.map b/dist/native/guild/setGuildVerificationLevel.d.ts.map index 2ae083733d..47ecd20722 100644 --- a/dist/native/guild/setGuildVerificationLevel.d.ts.map +++ b/dist/native/guild/setGuildVerificationLevel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildVerificationLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildVerificationLevel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"setGuildVerificationLevel.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildVerificationLevel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildVerificationLevel.js b/dist/native/guild/setGuildVerificationLevel.js index c36c0313b6..cfff87cd39 100644 --- a/dist/native/guild/setGuildVerificationLevel.js +++ b/dist/native/guild/setGuildVerificationLevel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildVerificationLevel.js.map b/dist/native/guild/setGuildVerificationLevel.js.map index a547b0aaa0..decf4c4709 100644 --- a/dist/native/guild/setGuildVerificationLevel.js.map +++ b/dist/native/guild/setGuildVerificationLevel.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildVerificationLevel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildVerificationLevel.ts"],"names":[],"mappings":";;AAAA,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAsB;SAC/B;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,oBAAoB,CAAC,KAAK,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildVerificationLevel.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildVerificationLevel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,6BAA6B;KAChC;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAsB;SAC/B;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,oBAAoB,CAAC,KAAK,IAAI,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/setGuildWidgetSettings.d.ts.map b/dist/native/guild/setGuildWidgetSettings.d.ts.map index c37c0fd694..e71ef3d609 100644 --- a/dist/native/guild/setGuildWidgetSettings.d.ts.map +++ b/dist/native/guild/setGuildWidgetSettings.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setGuildWidgetSettings.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildWidgetSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwH,MAAM,YAAY,CAAA;AAC9J,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;;;;;AAtBlC,wBA+CE"} \ No newline at end of file +{"version":3,"file":"setGuildWidgetSettings.d.ts","sourceRoot":"","sources":["../../../src/native/guild/setGuildWidgetSettings.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwH,MAAM,YAAY,CAAA;AAC9J,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;eAwB3C,WAAW;;;;;;;;;;;;AAtBlC,wBA+CE"} \ No newline at end of file diff --git a/dist/native/guild/setGuildWidgetSettings.js b/dist/native/guild/setGuildWidgetSettings.js index bb91cf3b14..010d39146a 100644 --- a/dist/native/guild/setGuildWidgetSettings.js +++ b/dist/native/guild/setGuildWidgetSettings.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/guild/setGuildWidgetSettings.js.map b/dist/native/guild/setGuildWidgetSettings.js.map index e2c9270a8b..a6e99e89e1 100644 --- a/dist/native/guild/setGuildWidgetSettings.js.map +++ b/dist/native/guild/setGuildWidgetSettings.js.map @@ -1 +1 @@ -{"version":3,"file":"setGuildWidgetSettings.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildWidgetSettings.ts"],"names":[],"mappings":";;AAAA,2CAA8J;AAC9J,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,yBAAY,IAAI,CAAC,CAAC,CAAC,YAAY,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,YAAY,4BAAe,CAAC,CAAC;SAC5H;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,iBAAiB,CAC9C;YACI,OAAO,EAAE,IAAmF,IAAI,IAAI;YACpG,OAAO,EAAE,OAAO,IAAI,KAAK,CAAC,aAAa,IAAI,KAAK;SACnD,EACD,MAAM,IAAI,GAAG,CAAC,MAAM,CACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setGuildWidgetSettings.js","sourceRoot":"","sources":["../../../src/native/guild/setGuildWidgetSettings.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8J;AAC9J,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,0BAA0B;KAC7B;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,yBAAY,IAAI,CAAC,CAAC,CAAC,YAAY,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,YAAY,4BAAe,CAAC,CAAC;SAC5H;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,KAAK,CAAC,iBAAiB,CAC9C;YACI,OAAO,EAAE,IAAmF,IAAI,IAAI;YACpG,OAAO,EAAE,OAAO,IAAI,KAAK,CAAC,aAAa,IAAI,KAAK;SACnD,EACD,MAAM,IAAI,GAAG,CAAC,MAAM,CACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/guild/syncGuildTemplate.d.ts.map b/dist/native/guild/syncGuildTemplate.d.ts.map index a05cfe149b..beacf54c3a 100644 --- a/dist/native/guild/syncGuildTemplate.d.ts.map +++ b/dist/native/guild/syncGuildTemplate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"syncGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/syncGuildTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file +{"version":3,"file":"syncGuildTemplate.d.ts","sourceRoot":"","sources":["../../../src/native/guild/syncGuildTemplate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/guild/syncGuildTemplate.js b/dist/native/guild/syncGuildTemplate.js index c4a2ad4650..f80fac50ff 100644 --- a/dist/native/guild/syncGuildTemplate.js +++ b/dist/native/guild/syncGuildTemplate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/guild/syncGuildTemplate.js.map b/dist/native/guild/syncGuildTemplate.js.map index f16b1102f6..e572b0e038 100644 --- a/dist/native/guild/syncGuildTemplate.js.map +++ b/dist/native/guild/syncGuildTemplate.js.map @@ -1 +1 @@ -{"version":3,"file":"syncGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/syncGuildTemplate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"syncGuildTemplate.js","sourceRoot":"","sources":["../../../src/native/guild/syncGuildTemplate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpAddForm.d.ts.map b/dist/native/http/httpAddForm.d.ts.map index 9623e50e94..61ded2bae9 100644 --- a/dist/native/http/httpAddForm.d.ts.map +++ b/dist/native/http/httpAddForm.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpAddForm.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAddForm.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"httpAddForm.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAddForm.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/http/httpAddForm.js b/dist/native/http/httpAddForm.js index b7ca901ed2..b22ab1b87f 100644 --- a/dist/native/http/httpAddForm.js +++ b/dist/native/http/httpAddForm.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const undici_1 = require("undici"); const structures_1 = require("../../structures"); diff --git a/dist/native/http/httpAddForm.js.map b/dist/native/http/httpAddForm.js.map index 52b483c74a..776d594808 100644 --- a/dist/native/http/httpAddForm.js.map +++ b/dist/native/http/httpAddForm.js.map @@ -1 +1 @@ -{"version":3,"file":"httpAddForm.js","sourceRoot":"","sources":["../../../src/native/http/httpAddForm.ts"],"names":[],"mappings":";;AAAA,mCAAiC;AACjC,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,iBAAQ,EAAE,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpAddForm.js","sourceRoot":"","sources":["../../../src/native/http/httpAddForm.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAAiC;AACjC,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,iBAAQ,EAAE,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpAddHeader.d.ts.map b/dist/native/http/httpAddHeader.d.ts.map index ccc8f9d67f..7bca6e6de3 100644 --- a/dist/native/http/httpAddHeader.d.ts.map +++ b/dist/native/http/httpAddHeader.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpAddHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAddHeader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA4BE"} \ No newline at end of file +{"version":3,"file":"httpAddHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAddHeader.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA4BE"} \ No newline at end of file diff --git a/dist/native/http/httpAddHeader.js b/dist/native/http/httpAddHeader.js index 0360b8ff73..a247135c77 100644 --- a/dist/native/http/httpAddHeader.js +++ b/dist/native/http/httpAddHeader.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpAddHeader.js.map b/dist/native/http/httpAddHeader.js.map index fc77ede51d..38071c4ec7 100644 --- a/dist/native/http/httpAddHeader.js.map +++ b/dist/native/http/httpAddHeader.js.map @@ -1 +1 @@ -{"version":3,"file":"httpAddHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpAddHeader.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC9B,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO;YAAE,GAAG,CAAC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAA;QAC5C,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,KAAK,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpAddHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpAddHeader.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC9B,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO;YAAE,GAAG,CAAC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAA;QAC5C,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,KAAK,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpAppendFile.d.ts.map b/dist/native/http/httpAppendFile.d.ts.map index b78f35420b..39e5c84244 100644 --- a/dist/native/http/httpAppendFile.d.ts.map +++ b/dist/native/http/httpAppendFile.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpAppendFile.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAppendFile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file +{"version":3,"file":"httpAppendFile.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAppendFile.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file diff --git a/dist/native/http/httpAppendFile.js b/dist/native/http/httpAppendFile.js index 814c95376e..4761eaa81d 100644 --- a/dist/native/http/httpAppendFile.js +++ b/dist/native/http/httpAppendFile.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/http/httpAppendFile.js.map b/dist/native/http/httpAppendFile.js.map index 6ef7fe253b..93db43e9f2 100644 --- a/dist/native/http/httpAppendFile.js.map +++ b/dist/native/http/httpAppendFile.js.map @@ -1 +1 @@ -{"version":3,"file":"httpAppendFile.js","sourceRoot":"","sources":["../../../src/native/http/httpAppendFile.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,wBAAwB;SACxC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QACtB,aAAa;QACb,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,UAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,IAAK,CAAC,CAAA;QAC7E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpAppendFile.js","sourceRoot":"","sources":["../../../src/native/http/httpAppendFile.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,UAAU;YACxB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,wBAAwB;SACxC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,IAAI,CAAE;QACtB,aAAa;QACb,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,UAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,IAAK,CAAC,CAAA;QAC7E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpAppendValue.d.ts.map b/dist/native/http/httpAppendValue.d.ts.map index e48295ad1e..63fcfe5d17 100644 --- a/dist/native/http/httpAppendValue.d.ts.map +++ b/dist/native/http/httpAppendValue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpAppendValue.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAppendValue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"httpAppendValue.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpAppendValue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/http/httpAppendValue.js b/dist/native/http/httpAppendValue.js index e1bb4bbfa5..305486b639 100644 --- a/dist/native/http/httpAppendValue.js +++ b/dist/native/http/httpAppendValue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/http/httpAppendValue.js.map b/dist/native/http/httpAppendValue.js.map index be4aceeb41..bf851ab73a 100644 --- a/dist/native/http/httpAppendValue.js.map +++ b/dist/native/http/httpAppendValue.js.map @@ -1 +1 @@ -{"version":3,"file":"httpAppendValue.js","sourceRoot":"","sources":["../../../src/native/http/httpAppendValue.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kBAAkB;SAClC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpAppendValue.js","sourceRoot":"","sources":["../../../src/native/http/httpAppendValue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kBAAkB;SAClC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,CAAE;QACrB,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpGetHeader.d.ts.map b/dist/native/http/httpGetHeader.d.ts.map index 82fff2b6c2..8677895245 100644 --- a/dist/native/http/httpGetHeader.d.ts.map +++ b/dist/native/http/httpGetHeader.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpGetHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpGetHeader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"httpGetHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpGetHeader.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/http/httpGetHeader.js b/dist/native/http/httpGetHeader.js index 018b653666..970e6ff493 100644 --- a/dist/native/http/httpGetHeader.js +++ b/dist/native/http/httpGetHeader.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpGetHeader.js.map b/dist/native/http/httpGetHeader.js.map index 1a0a8cda99..c7a36da7d5 100644 --- a/dist/native/http/httpGetHeader.js.map +++ b/dist/native/http/httpGetHeader.js.map @@ -1 +1 @@ -{"version":3,"file":"httpGetHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpGetHeader.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpGetHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpGetHeader.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpPing.d.ts.map b/dist/native/http/httpPing.d.ts.map index f41c1fbd25..1f68ec9e36 100644 --- a/dist/native/http/httpPing.d.ts.map +++ b/dist/native/http/httpPing.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpPing.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpPing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAEnF,wBAWE"} \ No newline at end of file +{"version":3,"file":"httpPing.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpPing.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAEnF,wBAWE"} \ No newline at end of file diff --git a/dist/native/http/httpPing.js b/dist/native/http/httpPing.js index a7aa357072..ac93b6d135 100644 --- a/dist/native/http/httpPing.js +++ b/dist/native/http/httpPing.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpPing.js.map b/dist/native/http/httpPing.js.map index 8f395b03a6..39340da062 100644 --- a/dist/native/http/httpPing.js.map +++ b/dist/native/http/httpPing.js.map @@ -1 +1 @@ -{"version":3,"file":"httpPing.js","sourceRoot":"","sources":["../../../src/native/http/httpPing.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpPing.js","sourceRoot":"","sources":["../../../src/native/http/httpPing.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpRemoveHeader.d.ts.map b/dist/native/http/httpRemoveHeader.d.ts.map index d854171641..af1565ef55 100644 --- a/dist/native/http/httpRemoveHeader.d.ts.map +++ b/dist/native/http/httpRemoveHeader.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpRemoveHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpRemoveHeader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"httpRemoveHeader.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpRemoveHeader.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/http/httpRemoveHeader.js b/dist/native/http/httpRemoveHeader.js index 81f85680a1..9d8ea01ab6 100644 --- a/dist/native/http/httpRemoveHeader.js +++ b/dist/native/http/httpRemoveHeader.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpRemoveHeader.js.map b/dist/native/http/httpRemoveHeader.js.map index 839a2aafea..4f758a2f35 100644 --- a/dist/native/http/httpRemoveHeader.js.map +++ b/dist/native/http/httpRemoveHeader.js.map @@ -1 +1 @@ -{"version":3,"file":"httpRemoveHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpRemoveHeader.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,GAAG,CAAC,IAAI,CAAC,OAAO;YAAE,OAAO,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;QACnD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpRemoveHeader.js","sourceRoot":"","sources":["../../../src/native/http/httpRemoveHeader.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,GAAG,CAAC,IAAI,CAAC,OAAO;YAAE,OAAO,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;QACnD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpRequest.d.ts.map b/dist/native/http/httpRequest.d.ts.map index f3a6f4a4db..fa83f581f1 100644 --- a/dist/native/http/httpRequest.d.ts.map +++ b/dist/native/http/httpRequest.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpRequest.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;;;;;;;AAInF,wBAiEE"} \ No newline at end of file +{"version":3,"file":"httpRequest.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpRequest.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;;;;;;;AAInF,wBAiEE"} \ No newline at end of file diff --git a/dist/native/http/httpRequest.js b/dist/native/http/httpRequest.js index b440e082e7..d556c89a61 100644 --- a/dist/native/http/httpRequest.js +++ b/dist/native/http/httpRequest.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); const undici_1 = require("undici"); diff --git a/dist/native/http/httpRequest.js.map b/dist/native/http/httpRequest.js.map index 810f011ab2..6be29bcaed 100644 --- a/dist/native/http/httpRequest.js.map +++ b/dist/native/http/httpRequest.js.map @@ -1 +1 @@ -{"version":3,"file":"httpRequest.js","sourceRoot":"","sources":["../../../src/native/http/httpRequest.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"httpRequest.js","sourceRoot":"","sources":["../../../src/native/http/httpRequest.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/http/httpResult.d.ts.map b/dist/native/http/httpResult.d.ts.map index 3a83282518..37db79deda 100644 --- a/dist/native/http/httpResult.d.ts.map +++ b/dist/native/http/httpResult.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpResult.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpResult.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"httpResult.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpResult.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAyBE"} \ No newline at end of file diff --git a/dist/native/http/httpResult.js b/dist/native/http/httpResult.js index 49d6789d92..33c412b5e3 100644 --- a/dist/native/http/httpResult.js +++ b/dist/native/http/httpResult.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpResult.js.map b/dist/native/http/httpResult.js.map index bac6ed7b90..0a813bb82e 100644 --- a/dist/native/http/httpResult.js.map +++ b/dist/native/http/httpResult.js.map @@ -1 +1 @@ -{"version":3,"file":"httpResult.js","sourceRoot":"","sources":["../../../src/native/http/httpResult.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,MAAM,EAAE;QACJ,wBAAO,CAAC,IAAI;QACZ,wBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YACf,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAA;QAC5D,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpResult.js","sourceRoot":"","sources":["../../../src/native/http/httpResult.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,MAAM,EAAE;QACJ,wBAAO,CAAC,IAAI;QACZ,wBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,CAAC,IAAI,CAAC,SAAS;YACf,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAA;QAC5D,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpSetBody.d.ts.map b/dist/native/http/httpSetBody.d.ts.map index b13af149e6..cfdcb07d84 100644 --- a/dist/native/http/httpSetBody.d.ts.map +++ b/dist/native/http/httpSetBody.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpSetBody.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpSetBody.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"httpSetBody.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpSetBody.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/http/httpSetBody.js b/dist/native/http/httpSetBody.js index cb83524e84..d5a0a78fae 100644 --- a/dist/native/http/httpSetBody.js +++ b/dist/native/http/httpSetBody.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/http/httpSetBody.js.map b/dist/native/http/httpSetBody.js.map index 3cbc711a6c..258e8dc7a5 100644 --- a/dist/native/http/httpSetBody.js.map +++ b/dist/native/http/httpSetBody.js.map @@ -1 +1 @@ -{"version":3,"file":"httpSetBody.js","sourceRoot":"","sources":["../../../src/native/http/httpSetBody.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpSetBody.js","sourceRoot":"","sources":["../../../src/native/http/httpSetBody.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/http/httpSetContentType.d.ts.map b/dist/native/http/httpSetContentType.d.ts.map index d65c78057b..e21281fb9c 100644 --- a/dist/native/http/httpSetContentType.d.ts.map +++ b/dist/native/http/httpSetContentType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"httpSetContentType.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpSetContentType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;AAEnF,wBAoBE"} \ No newline at end of file +{"version":3,"file":"httpSetContentType.d.ts","sourceRoot":"","sources":["../../../src/native/http/httpSetContentType.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;AAEnF,wBAoBE"} \ No newline at end of file diff --git a/dist/native/http/httpSetContentType.js b/dist/native/http/httpSetContentType.js index e6dce02410..2074078d29 100644 --- a/dist/native/http/httpSetContentType.js +++ b/dist/native/http/httpSetContentType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); diff --git a/dist/native/http/httpSetContentType.js.map b/dist/native/http/httpSetContentType.js.map index e1735eecc0..1b5b2a51f9 100644 --- a/dist/native/http/httpSetContentType.js.map +++ b/dist/native/http/httpSetContentType.js.map @@ -1 +1 @@ -{"version":3,"file":"httpSetContentType.js","sourceRoot":"","sources":["../../../src/native/http/httpSetContentType.ts"],"names":[],"mappings":";;AAAA,iDAAkD;AAClD,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAe;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"httpSetContentType.js","sourceRoot":"","sources":["../../../src/native/http/httpSetContentType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkD;AAClD,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,4BAAe;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandDescription.d.ts.map b/dist/native/interaction/applicationCommandDescription.d.ts.map index 4965d0f7c5..b22b12ac28 100644 --- a/dist/native/interaction/applicationCommandDescription.d.ts.map +++ b/dist/native/interaction/applicationCommandDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandDescription.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDescription.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"applicationCommandDescription.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDescription.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandDescription.js b/dist/native/interaction/applicationCommandDescription.js index e96f1a9c66..8ed815f72e 100644 --- a/dist/native/interaction/applicationCommandDescription.js +++ b/dist/native/interaction/applicationCommandDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationCommandDescription.js.map b/dist/native/interaction/applicationCommandDescription.js.map index 91c4d47728..318f1d85d4 100644 --- a/dist/native/interaction/applicationCommandDescription.js.map +++ b/dist/native/interaction/applicationCommandDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandDescription.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDescription.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandDescription.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gCAAgC;IACtC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandDisplay.d.ts.map b/dist/native/interaction/applicationCommandDisplay.d.ts.map index aa405382a0..1096806f6a 100644 --- a/dist/native/interaction/applicationCommandDisplay.d.ts.map +++ b/dist/native/interaction/applicationCommandDisplay.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandDisplay.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDisplay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"applicationCommandDisplay.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDisplay.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandDisplay.js b/dist/native/interaction/applicationCommandDisplay.js index 1a08030008..9efffa4002 100644 --- a/dist/native/interaction/applicationCommandDisplay.js +++ b/dist/native/interaction/applicationCommandDisplay.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationCommandDisplay.js.map b/dist/native/interaction/applicationCommandDisplay.js.map index 684810e771..a3afc54d96 100644 --- a/dist/native/interaction/applicationCommandDisplay.js.map +++ b/dist/native/interaction/applicationCommandDisplay.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandDisplay.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDisplay.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,QAAQ,CAAE;QACrB,QAAQ,KAAK,KAAK,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandDisplay.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandDisplay.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,uDAAuD;YACpE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,QAAQ,CAAE;QACrB,QAAQ,KAAK,KAAK,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandID.d.ts.map b/dist/native/interaction/applicationCommandID.d.ts.map index 68dfb26997..d778566f8c 100644 --- a/dist/native/interaction/applicationCommandID.d.ts.map +++ b/dist/native/interaction/applicationCommandID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandID.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandID.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"applicationCommandID.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandID.js b/dist/native/interaction/applicationCommandID.js index 5abe25544f..64003bd3d1 100644 --- a/dist/native/interaction/applicationCommandID.js +++ b/dist/native/interaction/applicationCommandID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationCommandID.js.map b/dist/native/interaction/applicationCommandID.js.map index 1face7d08f..c9cdf8dc9e 100644 --- a/dist/native/interaction/applicationCommandID.js.map +++ b/dist/native/interaction/applicationCommandID.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandID.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;SAClE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandID.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;SAClE;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandName.d.ts.map b/dist/native/interaction/applicationCommandName.d.ts.map index 0616f1cb0d..0f948ba1ae 100644 --- a/dist/native/interaction/applicationCommandName.d.ts.map +++ b/dist/native/interaction/applicationCommandName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"applicationCommandName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandName.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandName.js b/dist/native/interaction/applicationCommandName.js index 2f5000e00d..2358d93402 100644 --- a/dist/native/interaction/applicationCommandName.js +++ b/dist/native/interaction/applicationCommandName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationCommandName.js.map b/dist/native/interaction/applicationCommandName.js.map index 2508f33b6c..415f429937 100644 --- a/dist/native/interaction/applicationCommandName.js.map +++ b/dist/native/interaction/applicationCommandName.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandName.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SAC1D;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAClH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SAC1D;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAClH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandOptions.d.ts.map b/dist/native/interaction/applicationCommandOptions.d.ts.map index 59165fd406..a95b5da2a5 100644 --- a/dist/native/interaction/applicationCommandOptions.d.ts.map +++ b/dist/native/interaction/applicationCommandOptions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandOptions.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandOptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"applicationCommandOptions.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandOptions.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationCommandOptions.js b/dist/native/interaction/applicationCommandOptions.js index 78b5668888..fb13bc3ad7 100644 --- a/dist/native/interaction/applicationCommandOptions.js +++ b/dist/native/interaction/applicationCommandOptions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationCommandOptions.js.map b/dist/native/interaction/applicationCommandOptions.js.map index a54589393e..447ed4cc02 100644 --- a/dist/native/interaction/applicationCommandOptions.js.map +++ b/dist/native/interaction/applicationCommandOptions.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationCommandOptions.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandOptions.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationCommandOptions.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationCommandOptions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC/E,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationSubCommandGroupName.d.ts.map b/dist/native/interaction/applicationSubCommandGroupName.d.ts.map index eb5244a207..e703f2e640 100644 --- a/dist/native/interaction/applicationSubCommandGroupName.d.ts.map +++ b/dist/native/interaction/applicationSubCommandGroupName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationSubCommandGroupName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandGroupName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"applicationSubCommandGroupName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandGroupName.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationSubCommandGroupName.js b/dist/native/interaction/applicationSubCommandGroupName.js index 2fb6813177..297f29720c 100644 --- a/dist/native/interaction/applicationSubCommandGroupName.js +++ b/dist/native/interaction/applicationSubCommandGroupName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationSubCommandGroupName.js.map b/dist/native/interaction/applicationSubCommandGroupName.js.map index 9cfa9ab0fd..a01809ec46 100644 --- a/dist/native/interaction/applicationSubCommandGroupName.js.map +++ b/dist/native/interaction/applicationSubCommandGroupName.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationSubCommandGroupName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandGroupName.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,IAAI,oBAAoB,IAAI,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3L,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationSubCommandGroupName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandGroupName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iCAAiC;IACvC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,IAAI,oBAAoB,IAAI,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC3L,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/applicationSubCommandName.d.ts.map b/dist/native/interaction/applicationSubCommandName.d.ts.map index 4222a8ac0a..68d23f46ce 100644 --- a/dist/native/interaction/applicationSubCommandName.d.ts.map +++ b/dist/native/interaction/applicationSubCommandName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationSubCommandName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"applicationSubCommandName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandName.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/applicationSubCommandName.js b/dist/native/interaction/applicationSubCommandName.js index 9b9bdf9956..6a75408435 100644 --- a/dist/native/interaction/applicationSubCommandName.js +++ b/dist/native/interaction/applicationSubCommandName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/applicationSubCommandName.js.map b/dist/native/interaction/applicationSubCommandName.js.map index f54f335e0f..73e670f466 100644 --- a/dist/native/interaction/applicationSubCommandName.js.map +++ b/dist/native/interaction/applicationSubCommandName.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationSubCommandName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandName.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,IAAI,eAAe,IAAI,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationSubCommandName.js","sourceRoot":"","sources":["../../../src/native/interaction/applicationSubCommandName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,IAAI,eAAe,IAAI,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/authorizingIntegrationOwners.d.ts.map b/dist/native/interaction/authorizingIntegrationOwners.d.ts.map index 055bedffe8..27470f3a80 100644 --- a/dist/native/interaction/authorizingIntegrationOwners.d.ts.map +++ b/dist/native/interaction/authorizingIntegrationOwners.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"authorizingIntegrationOwners.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/authorizingIntegrationOwners.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gCAAgC;IACxC,KAAK,IAAA;IACL,IAAI,IAAA;CACP;;;;;;;;;AAED,wBAyBE"} \ No newline at end of file +{"version":3,"file":"authorizingIntegrationOwners.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/authorizingIntegrationOwners.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gCAAgC;IACxC,KAAK,IAAA;IACL,IAAI,IAAA;CACP;;;;;;;;;AAED,wBAyBE"} \ No newline at end of file diff --git a/dist/native/interaction/authorizingIntegrationOwners.js b/dist/native/interaction/authorizingIntegrationOwners.js index b87a736686..fc6b723f81 100644 --- a/dist/native/interaction/authorizingIntegrationOwners.js +++ b/dist/native/interaction/authorizingIntegrationOwners.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthorizingIntegrationOwnersType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/interaction/authorizingIntegrationOwners.js.map b/dist/native/interaction/authorizingIntegrationOwners.js.map index 1a00a80e6d..e7010ec109 100644 --- a/dist/native/interaction/authorizingIntegrationOwners.js.map +++ b/dist/native/interaction/authorizingIntegrationOwners.js.map @@ -1 +1 @@ -{"version":3,"file":"authorizingIntegrationOwners.js","sourceRoot":"","sources":["../../../src/native/interaction/authorizingIntegrationOwners.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,gCAGX;AAHD,WAAY,gCAAgC;IACxC,yFAAK,CAAA;IACL,uFAAI,CAAA;AACR,CAAC,EAHW,gCAAgC,gDAAhC,gCAAgC,QAG3C;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sDAAsD;YACnE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAgC;SACzC;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,KAAK;KAChB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,MAAM,GAAG,GAAG,CAAC,WAAW,IAAI,8BAA8B,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAA;QAC9I,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"authorizingIntegrationOwners.js","sourceRoot":"","sources":["../../../src/native/interaction/authorizingIntegrationOwners.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,gCAGX;AAHD,WAAY,gCAAgC;IACxC,yFAAK,CAAA;IACL,uFAAI,CAAA;AACR,CAAC,EAHW,gCAAgC,gDAAhC,gCAAgC,QAG3C;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,+BAA+B;IACrC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sDAAsD;YACnE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAgC;SACzC;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,KAAK;KAChB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,MAAM,GAAG,GAAG,CAAC,WAAW,IAAI,8BAA8B,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAA;QAC9I,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/autocomplete.d.ts.map b/dist/native/interaction/autocomplete.d.ts.map index 68faadb5c5..4922b3ac85 100644 --- a/dist/native/interaction/autocomplete.d.ts.map +++ b/dist/native/interaction/autocomplete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/autocomplete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file +{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/autocomplete.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/autocomplete.js b/dist/native/interaction/autocomplete.js index c4f50891ce..91df988c53 100644 --- a/dist/native/interaction/autocomplete.js +++ b/dist/native/interaction/autocomplete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/autocomplete.js.map b/dist/native/interaction/autocomplete.js.map index 29a3615120..7ac24768b1 100644 --- a/dist/native/interaction/autocomplete.js.map +++ b/dist/native/interaction/autocomplete.js.map @@ -1 +1 @@ -{"version":3,"file":"autocomplete.js","sourceRoot":"","sources":["../../../src/native/interaction/autocomplete.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"autocomplete.js","sourceRoot":"","sources":["../../../src/native/interaction/autocomplete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/context.d.ts.map b/dist/native/interaction/context.d.ts.map index 56bdc2e8e1..4cc8644f55 100644 --- a/dist/native/interaction/context.d.ts.map +++ b/dist/native/interaction/context.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/context.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/interaction/context.js b/dist/native/interaction/context.js index 91dc7e3a87..4b4a2ebb5a 100644 --- a/dist/native/interaction/context.js +++ b/dist/native/interaction/context.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/interaction/context.js.map b/dist/native/interaction/context.js.map index eb9fe124ae..35e1bc2e51 100644 --- a/dist/native/interaction/context.js.map +++ b/dist/native/interaction/context.js.map @@ -1 +1 @@ -{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/native/interaction/context.ts"],"names":[],"mappings":";;AAAA,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,mCAAsB;IAC9B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,mCAAsB,CAAC,GAAG,CAAC,WAAW,CAAC,OAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/native/interaction/context.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmD;AACnD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,mCAAsB;IAC9B,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,mCAAsB,CAAC,GAAG,CAAC,WAAW,CAAC,OAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/customID.d.ts.map b/dist/native/interaction/customID.d.ts.map index f126b5127e..ea25ae83bc 100644 --- a/dist/native/interaction/customID.d.ts.map +++ b/dist/native/interaction/customID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"customID.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/customID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBASE"} \ No newline at end of file +{"version":3,"file":"customID.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/customID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/customID.js b/dist/native/interaction/customID.js index 6051b6dd55..1b971d2776 100644 --- a/dist/native/interaction/customID.js +++ b/dist/native/interaction/customID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/interaction/customID.js.map b/dist/native/interaction/customID.js.map index fca545058b..1a4e380187 100644 --- a/dist/native/interaction/customID.js.map +++ b/dist/native/interaction/customID.js.map @@ -1 +1 @@ -{"version":3,"file":"customID.js","sourceRoot":"","sources":["../../../src/native/interaction/customID.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,UAAU,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"customID.js","sourceRoot":"","sources":["../../../src/native/interaction/customID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,UAAU,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/defer.d.ts.map b/dist/native/interaction/defer.d.ts.map index b212310adf..2b8385b459 100644 --- a/dist/native/interaction/defer.d.ts.map +++ b/dist/native/interaction/defer.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"defer.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/defer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAaE"} \ No newline at end of file +{"version":3,"file":"defer.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/defer.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAaE"} \ No newline at end of file diff --git a/dist/native/interaction/defer.js b/dist/native/interaction/defer.js index f3bf393de3..627b89d123 100644 --- a/dist/native/interaction/defer.js +++ b/dist/native/interaction/defer.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/interaction/defer.js.map b/dist/native/interaction/defer.js.map index 8b66a1a170..b3555607f5 100644 --- a/dist/native/interaction/defer.js.map +++ b/dist/native/interaction/defer.js.map @@ -1 +1 @@ -{"version":3,"file":"defer.js","sourceRoot":"","sources":["../../../src/native/interaction/defer.ts"],"names":[],"mappings":";;AAAA,2CAAyC;AACzC,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,EAAE;YAClD,MAAM,GAAG,CAAC,WAAW,CAAC,UAAU,CAAC;gBAC7B,KAAK,EAAE,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,yBAAY,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS;aACtE,CAAC,CAAA;SACL;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"defer.js","sourceRoot":"","sources":["../../../src/native/interaction/defer.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyC;AACzC,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,EAAE;YAClD,MAAM,GAAG,CAAC,WAAW,CAAC,UAAU,CAAC;gBAC7B,KAAK,EAAE,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,yBAAY,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS;aACtE,CAAC,CAAA;SACL;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/deferUpdate.d.ts.map b/dist/native/interaction/deferUpdate.d.ts.map index 1be1233683..f76d046f04 100644 --- a/dist/native/interaction/deferUpdate.d.ts.map +++ b/dist/native/interaction/deferUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deferUpdate.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/deferUpdate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAWE"} \ No newline at end of file +{"version":3,"file":"deferUpdate.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/deferUpdate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAWE"} \ No newline at end of file diff --git a/dist/native/interaction/deferUpdate.js b/dist/native/interaction/deferUpdate.js index 861edd2b38..059058b95a 100644 --- a/dist/native/interaction/deferUpdate.js +++ b/dist/native/interaction/deferUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/deferUpdate.js.map b/dist/native/interaction/deferUpdate.js.map index bdef74d817..ea5eeb6207 100644 --- a/dist/native/interaction/deferUpdate.js.map +++ b/dist/native/interaction/deferUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"deferUpdate.js","sourceRoot":"","sources":["../../../src/native/interaction/deferUpdate.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,aAAa,IAAI,GAAG,CAAC,WAAW,EAAE;YACrD,MAAM,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,CAAA;SACtC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deferUpdate.js","sourceRoot":"","sources":["../../../src/native/interaction/deferUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,aAAa,IAAI,GAAG,CAAC,WAAW,EAAE;YACrD,MAAM,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,CAAA;SACtC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/ephemeral.d.ts.map b/dist/native/interaction/ephemeral.d.ts.map index 071c1a159d..cd4127356e 100644 --- a/dist/native/interaction/ephemeral.d.ts.map +++ b/dist/native/interaction/ephemeral.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ephemeral.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/ephemeral.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file +{"version":3,"file":"ephemeral.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/ephemeral.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/ephemeral.js b/dist/native/interaction/ephemeral.js index ea461fa036..3fd48e4f6a 100644 --- a/dist/native/interaction/ephemeral.js +++ b/dist/native/interaction/ephemeral.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/ephemeral.js.map b/dist/native/interaction/ephemeral.js.map index d0db10d14b..820577ef84 100644 --- a/dist/native/interaction/ephemeral.js.map +++ b/dist/native/interaction/ephemeral.js.map @@ -1 +1 @@ -{"version":3,"file":"ephemeral.js","sourceRoot":"","sources":["../../../src/native/interaction/ephemeral.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,IAAI,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ephemeral.js","sourceRoot":"","sources":["../../../src/native/interaction/ephemeral.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,IAAI,CAAA;QAC9B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/focusedOptionName.d.ts.map b/dist/native/interaction/focusedOptionName.d.ts.map index 8497c36fba..34399b430b 100644 --- a/dist/native/interaction/focusedOptionName.d.ts.map +++ b/dist/native/interaction/focusedOptionName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"focusedOptionName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file +{"version":3,"file":"focusedOptionName.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file diff --git a/dist/native/interaction/focusedOptionName.js b/dist/native/interaction/focusedOptionName.js index 4d1d29a9f1..a0c5252d0c 100644 --- a/dist/native/interaction/focusedOptionName.js +++ b/dist/native/interaction/focusedOptionName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/focusedOptionName.js.map b/dist/native/interaction/focusedOptionName.js.map index 854ca4eed3..87eff0c104 100644 --- a/dist/native/interaction/focusedOptionName.js.map +++ b/dist/native/interaction/focusedOptionName.js.map @@ -1 +1 @@ -{"version":3,"file":"focusedOptionName.js","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAChG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"focusedOptionName.js","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAChG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/focusedOptionValue.d.ts.map b/dist/native/interaction/focusedOptionValue.d.ts.map index cc37909a1b..7ed58709ad 100644 --- a/dist/native/interaction/focusedOptionValue.d.ts.map +++ b/dist/native/interaction/focusedOptionValue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"focusedOptionValue.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionValue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file +{"version":3,"file":"focusedOptionValue.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionValue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAWE"} \ No newline at end of file diff --git a/dist/native/interaction/focusedOptionValue.js b/dist/native/interaction/focusedOptionValue.js index 0d1455b180..b24a0aea01 100644 --- a/dist/native/interaction/focusedOptionValue.js +++ b/dist/native/interaction/focusedOptionValue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/focusedOptionValue.js.map b/dist/native/interaction/focusedOptionValue.js.map index 49871a5f9b..5c3acdea89 100644 --- a/dist/native/interaction/focusedOptionValue.js.map +++ b/dist/native/interaction/focusedOptionValue.js.map @@ -1 +1 @@ -{"version":3,"file":"focusedOptionValue.js","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionValue.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CACjG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"focusedOptionValue.js","sourceRoot":"","sources":["../../../src/native/interaction/focusedOptionValue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CACjG,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/input.d.ts b/dist/native/interaction/input.d.ts index 4fc15d5f76..10d58bd599 100644 --- a/dist/native/interaction/input.d.ts +++ b/dist/native/interaction/input.d.ts @@ -5,6 +5,11 @@ declare const _default: NativeFunction<[{ rest: false; type: ArgType.String; required: true; +}, { + name: string; + description: string; + rest: false; + type: ArgType.String; }], true>; export default _default; //# sourceMappingURL=input.d.ts.map \ No newline at end of file diff --git a/dist/native/interaction/input.d.ts.map b/dist/native/interaction/input.d.ts.map index a121b4ed46..7817bb8921 100644 --- a/dist/native/interaction/input.d.ts.map +++ b/dist/native/interaction/input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/input.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/interaction/input.js b/dist/native/interaction/input.js index bf19825750..bb1587dd1f 100644 --- a/dist/native/interaction/input.js +++ b/dist/native/interaction/input.js @@ -1,24 +1,41 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$input", version: "1.0.0", - description: "Returns a value from a text field", + description: "Returns the value from a modal field", brackets: true, unwrap: true, - output: structures_1.ArgType.String, args: [ { name: "custom ID", - description: "The custom id to get the input field value", + description: "The custom id to get its field value", rest: false, type: structures_1.ArgType.String, required: true, }, + { + name: "separator", + description: "The separator to use in case of array", + rest: false, + type: structures_1.ArgType.String, + }, ], - execute(ctx, [id]) { - return this.success(ctx.interaction?.isModalSubmit() ? ctx.interaction.fields.getTextInputValue(id) : undefined); + output: structures_1.ArgType.String, + execute(ctx, [id, sep]) { + if (!ctx.interaction?.isModalSubmit()) + return this.success(); + const field = ctx.interaction.fields.getField(id); + return this.success("value" in field + ? field.value + : "attachments" in field + ? field.attachments.map((x) => x.url).join(sep ?? ", ") + : field.values.join(sep ?? ", ")); }, }); //# sourceMappingURL=input.js.map \ No newline at end of file diff --git a/dist/native/interaction/input.js.map b/dist/native/interaction/input.js.map index ad2296a2dc..84c703cfe6 100644 --- a/dist/native/interaction/input.js.map +++ b/dist/native/interaction/input.js.map @@ -1 +1 @@ -{"version":3,"file":"input.js","sourceRoot":"","sources":["../../../src/native/interaction/input.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,WAAW,EAAE,aAAa,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAC9F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"input.js","sourceRoot":"","sources":["../../../src/native/interaction/input.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC;QAClB,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,aAAa,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC5D,MAAM,KAAK,GAAG,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,CACf,OAAO,IAAI,KAAK;YACZ,CAAC,CAAC,KAAK,CAAC,KAAK;YACb,CAAC,CAAC,aAAa,IAAI,KAAK;gBACpB,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;gBACvD,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAC3C,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionDelete.d.ts.map b/dist/native/interaction/interactionDelete.d.ts.map index 1ebdbf4f47..f2d512b841 100644 --- a/dist/native/interaction/interactionDelete.d.ts.map +++ b/dist/native/interaction/interactionDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionDelete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionDelete.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file +{"version":3,"file":"interactionDelete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionDelete.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionDelete.js b/dist/native/interaction/interactionDelete.js index 0111cd6435..25bdd760b0 100644 --- a/dist/native/interaction/interactionDelete.js +++ b/dist/native/interaction/interactionDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionDelete.js.map b/dist/native/interaction/interactionDelete.js.map index e9473369c6..944b89763d 100644 --- a/dist/native/interaction/interactionDelete.js.map +++ b/dist/native/interaction/interactionDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionDelete.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionDelete.ts"],"names":[],"mappings":";;AACA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE;YAC9B,MAAM,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionDelete.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE;YAC9B,MAAM,GAAG,CAAC,WAAW,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionFollowUp.d.ts.map b/dist/native/interaction/interactionFollowUp.d.ts.map index d0fea90f64..8560ef941a 100644 --- a/dist/native/interaction/interactionFollowUp.d.ts.map +++ b/dist/native/interaction/interactionFollowUp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionFollowUp.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionFollowUp.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"interactionFollowUp.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionFollowUp.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionFollowUp.js b/dist/native/interaction/interactionFollowUp.js index 03b2d96ab9..1d856d1937 100644 --- a/dist/native/interaction/interactionFollowUp.js +++ b/dist/native/interaction/interactionFollowUp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionFollowUp.js.map b/dist/native/interaction/interactionFollowUp.js.map index ac9eff5a9f..aca99105de 100644 --- a/dist/native/interaction/interactionFollowUp.js.map +++ b/dist/native/interaction/interactionFollowUp.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionFollowUp.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionFollowUp.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,eAAe,CAAC;QACzC,GAAG,CAAC,SAAS,CAAC,YAAY,GAAG,eAAe,IAAI,KAAK,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,IAAI,CAAA;QAC7B,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAE5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAE9D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionFollowUp.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionFollowUp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,6DAA6D;YAC1E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,eAAe,CAAC;QACzC,GAAG,CAAC,SAAS,CAAC,YAAY,GAAG,eAAe,IAAI,KAAK,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,IAAI,CAAA;QAC7B,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAE5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAE9D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionRawData.d.ts.map b/dist/native/interaction/interactionRawData.d.ts.map index d73d106298..b98fc9b933 100644 --- a/dist/native/interaction/interactionRawData.d.ts.map +++ b/dist/native/interaction/interactionRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionRawData.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"interactionRawData.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionRawData.js b/dist/native/interaction/interactionRawData.js index e0622b362f..898680726e 100644 --- a/dist/native/interaction/interactionRawData.js +++ b/dist/native/interaction/interactionRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionRawData.js.map b/dist/native/interaction/interactionRawData.js.map index 1cb5098002..a6e72eb67e 100644 --- a/dist/native/interaction/interactionRawData.js.map +++ b/dist/native/interaction/interactionRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionRawData.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,EAAE,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionRawData.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,EAAE,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionReply.d.ts.map b/dist/native/interaction/interactionReply.d.ts.map index 29daeac06b..4247b9511a 100644 --- a/dist/native/interaction/interactionReply.d.ts.map +++ b/dist/native/interaction/interactionReply.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionReply.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionReply.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"interactionReply.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionReply.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionReply.js b/dist/native/interaction/interactionReply.js index 6cb0db7f62..6c6fb7da80 100644 --- a/dist/native/interaction/interactionReply.js +++ b/dist/native/interaction/interactionReply.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionReply.js.map b/dist/native/interaction/interactionReply.js.map index f21bc8ae8c..00b11439c3 100644 --- a/dist/native/interaction/interactionReply.js.map +++ b/dist/native/interaction/interactionReply.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionReply.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionReply.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,eAAe,CAAC;QACzC,GAAG,CAAC,SAAS,CAAC,YAAY,GAAG,eAAe,IAAI,KAAK,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAE5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionReply.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionReply.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,eAAe,CAAC;QACzC,GAAG,CAAC,SAAS,CAAC,YAAY,GAAG,eAAe,IAAI,KAAK,CAAA;QACrD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAE5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,KAAK,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionRequirePremium.d.ts.map b/dist/native/interaction/interactionRequirePremium.d.ts.map index db3a3a7248..ab745e413e 100644 --- a/dist/native/interaction/interactionRequirePremium.d.ts.map +++ b/dist/native/interaction/interactionRequirePremium.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionRequirePremium.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionRequirePremium.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEzD,wBAcE"} \ No newline at end of file +{"version":3,"file":"interactionRequirePremium.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionRequirePremium.ts"],"names":[],"mappings":"AAKA,OAAO,EAAU,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEzD,wBAcE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionRequirePremium.js b/dist/native/interaction/interactionRequirePremium.js index b115886ec6..13c2891d61 100644 --- a/dist/native/interaction/interactionRequirePremium.js +++ b/dist/native/interaction/interactionRequirePremium.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionRequirePremium.js.map b/dist/native/interaction/interactionRequirePremium.js.map index 9a1ac4a3e8..37481a33b1 100644 --- a/dist/native/interaction/interactionRequirePremium.js.map +++ b/dist/native/interaction/interactionRequirePremium.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionRequirePremium.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionRequirePremium.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,UAAU,EAAE,IAAI;IAChB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,mBAAM,CAAC,UAAU,CACb,kLAAkL,CACrL,CAAA;QACD,IAAI,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE;YAC9B,MAAM,GAAG,CAAC,WAAW,CAAC,mBAAmB,EAAE,CAAA;QAC/C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionRequirePremium.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionRequirePremium.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,UAAU,EAAE,IAAI;IAChB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,mBAAM,CAAC,UAAU,CACb,kLAAkL,CACrL,CAAA;QACD,IAAI,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE;YAC9B,MAAM,GAAG,CAAC,WAAW,CAAC,mBAAmB,EAAE,CAAA;QAC/C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/interactionUpdate.d.ts.map b/dist/native/interaction/interactionUpdate.d.ts.map index e4e0ff51ba..5c4883ac22 100644 --- a/dist/native/interaction/interactionUpdate.d.ts.map +++ b/dist/native/interaction/interactionUpdate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"interactionUpdate.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionUpdate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"interactionUpdate.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/interactionUpdate.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/interaction/interactionUpdate.js b/dist/native/interaction/interactionUpdate.js index 26d70696cc..b85a1ab434 100644 --- a/dist/native/interaction/interactionUpdate.js +++ b/dist/native/interaction/interactionUpdate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/interactionUpdate.js.map b/dist/native/interaction/interactionUpdate.js.map index 4519195453..c7e268306e 100644 --- a/dist/native/interaction/interactionUpdate.js.map +++ b/dist/native/interaction/interactionUpdate.js.map @@ -1 +1 @@ -{"version":3,"file":"interactionUpdate.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionUpdate.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,MAAM,GAAG,IAAI,CAAA;QAE3B,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"interactionUpdate.js","sourceRoot":"","sources":["../../../src/native/interaction/interactionUpdate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,MAAM,GAAG,IAAI,CAAA;QAE3B,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;YACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isActivityCommand.d.ts.map b/dist/native/interaction/isActivityCommand.d.ts.map index 1a9f086c3f..d358d0c686 100644 --- a/dist/native/interaction/isActivityCommand.d.ts.map +++ b/dist/native/interaction/isActivityCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isActivityCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isActivityCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isActivityCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isActivityCommand.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isActivityCommand.js b/dist/native/interaction/isActivityCommand.js index 86f23d29a5..58d02aa451 100644 --- a/dist/native/interaction/isActivityCommand.js +++ b/dist/native/interaction/isActivityCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isActivityCommand.js.map b/dist/native/interaction/isActivityCommand.js.map index 4d070c1512..1d48cacd75 100644 --- a/dist/native/interaction/isActivityCommand.js.map +++ b/dist/native/interaction/isActivityCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"isActivityCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isActivityCommand.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,0BAA0B,EAAE,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isActivityCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isActivityCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,0BAA0B,EAAE,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isAnySelectMenu.d.ts.map b/dist/native/interaction/isAnySelectMenu.d.ts.map index da0b0007f3..619c4690f1 100644 --- a/dist/native/interaction/isAnySelectMenu.d.ts.map +++ b/dist/native/interaction/isAnySelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isAnySelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isAnySelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isAnySelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isAnySelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isAnySelectMenu.js b/dist/native/interaction/isAnySelectMenu.js index ec7fd6212c..ed80178a9c 100644 --- a/dist/native/interaction/isAnySelectMenu.js +++ b/dist/native/interaction/isAnySelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isAnySelectMenu.js.map b/dist/native/interaction/isAnySelectMenu.js.map index 4b41f8eee8..728141588e 100644 --- a/dist/native/interaction/isAnySelectMenu.js.map +++ b/dist/native/interaction/isAnySelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isAnySelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isAnySelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isAnySelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isAnySelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isAutocomplete.d.ts.map b/dist/native/interaction/isAutocomplete.d.ts.map index e0266009f7..fd4e91c6bb 100644 --- a/dist/native/interaction/isAutocomplete.d.ts.map +++ b/dist/native/interaction/isAutocomplete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isAutocomplete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isAutocomplete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isAutocomplete.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isAutocomplete.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isAutocomplete.js b/dist/native/interaction/isAutocomplete.js index 280edf637c..19d409f518 100644 --- a/dist/native/interaction/isAutocomplete.js +++ b/dist/native/interaction/isAutocomplete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isAutocomplete.js.map b/dist/native/interaction/isAutocomplete.js.map index 3850abbdb3..179dc94b46 100644 --- a/dist/native/interaction/isAutocomplete.js.map +++ b/dist/native/interaction/isAutocomplete.js.map @@ -1 +1 @@ -{"version":3,"file":"isAutocomplete.js","sourceRoot":"","sources":["../../../src/native/interaction/isAutocomplete.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isAutocomplete.js","sourceRoot":"","sources":["../../../src/native/interaction/isAutocomplete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,cAAc,EAAE,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isButton.d.ts.map b/dist/native/interaction/isButton.d.ts.map index c58ee83b2f..1311f72978 100644 --- a/dist/native/interaction/isButton.d.ts.map +++ b/dist/native/interaction/isButton.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isButton.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isButton.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isButton.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isButton.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isButton.js b/dist/native/interaction/isButton.js index 88bd771dfc..ddd59e7a3a 100644 --- a/dist/native/interaction/isButton.js +++ b/dist/native/interaction/isButton.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isButton.js.map b/dist/native/interaction/isButton.js.map index 152761c542..705bbdfdf7 100644 --- a/dist/native/interaction/isButton.js.map +++ b/dist/native/interaction/isButton.js.map @@ -1 +1 @@ -{"version":3,"file":"isButton.js","sourceRoot":"","sources":["../../../src/native/interaction/isButton.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isButton.js","sourceRoot":"","sources":["../../../src/native/interaction/isButton.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isChannelSelectMenu.d.ts.map b/dist/native/interaction/isChannelSelectMenu.d.ts.map index 2dccc81fac..a8f0842946 100644 --- a/dist/native/interaction/isChannelSelectMenu.d.ts.map +++ b/dist/native/interaction/isChannelSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isChannelSelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isChannelSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isChannelSelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isChannelSelectMenu.js b/dist/native/interaction/isChannelSelectMenu.js index f04f39bc29..acb9d270aa 100644 --- a/dist/native/interaction/isChannelSelectMenu.js +++ b/dist/native/interaction/isChannelSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isChannelSelectMenu.js.map b/dist/native/interaction/isChannelSelectMenu.js.map index 497d52be4f..1ec4188247 100644 --- a/dist/native/interaction/isChannelSelectMenu.js.map +++ b/dist/native/interaction/isChannelSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isChannelSelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,EAAE,CAAC,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isChannelSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isChannelSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,EAAE,CAAC,CAAC,CAAA;IACxE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isCommand.d.ts.map b/dist/native/interaction/isCommand.d.ts.map index 36ede09dd0..7cda6e0e4e 100644 --- a/dist/native/interaction/isCommand.d.ts.map +++ b/dist/native/interaction/isCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isCommand.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isCommand.js b/dist/native/interaction/isCommand.js index 569ea17415..ddf2f2ef48 100644 --- a/dist/native/interaction/isCommand.js +++ b/dist/native/interaction/isCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isCommand.js.map b/dist/native/interaction/isCommand.js.map index e29d0c2984..6d1774d529 100644 --- a/dist/native/interaction/isCommand.js.map +++ b/dist/native/interaction/isCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"isCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isCommand.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isContextMenu.d.ts.map b/dist/native/interaction/isContextMenu.d.ts.map index 3a643943ff..f63854a077 100644 --- a/dist/native/interaction/isContextMenu.d.ts.map +++ b/dist/native/interaction/isContextMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isContextMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isContextMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isContextMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isContextMenu.js b/dist/native/interaction/isContextMenu.js index c91a7bff5e..f5f181a810 100644 --- a/dist/native/interaction/isContextMenu.js +++ b/dist/native/interaction/isContextMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isContextMenu.js.map b/dist/native/interaction/isContextMenu.js.map index 7456ca343f..c3b21a8685 100644 --- a/dist/native/interaction/isContextMenu.js.map +++ b/dist/native/interaction/isContextMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isContextMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isContextMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isContextMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isContextMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isMentionableSelectMenu.d.ts.map b/dist/native/interaction/isMentionableSelectMenu.d.ts.map index fcd7f6fdc4..39546540d7 100644 --- a/dist/native/interaction/isMentionableSelectMenu.d.ts.map +++ b/dist/native/interaction/isMentionableSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isMentionableSelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isMentionableSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isMentionableSelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isMentionableSelectMenu.js b/dist/native/interaction/isMentionableSelectMenu.js index 103b7b5145..8b77cb92a2 100644 --- a/dist/native/interaction/isMentionableSelectMenu.js +++ b/dist/native/interaction/isMentionableSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isMentionableSelectMenu.js.map b/dist/native/interaction/isMentionableSelectMenu.js.map index e72443128a..c926720891 100644 --- a/dist/native/interaction/isMentionableSelectMenu.js.map +++ b/dist/native/interaction/isMentionableSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isMentionableSelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,uBAAuB,EAAE,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isMentionableSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isMentionableSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,uBAAuB,EAAE,CAAC,CAAC,CAAA;IAC5E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isModal.d.ts.map b/dist/native/interaction/isModal.d.ts.map index 3d913fb135..b7e4eda31e 100644 --- a/dist/native/interaction/isModal.d.ts.map +++ b/dist/native/interaction/isModal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isModal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isModal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isModal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isModal.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isModal.js b/dist/native/interaction/isModal.js index 34f66884d0..b345a3e90d 100644 --- a/dist/native/interaction/isModal.js +++ b/dist/native/interaction/isModal.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isModal.js.map b/dist/native/interaction/isModal.js.map index ba75cc0825..f7386eee97 100644 --- a/dist/native/interaction/isModal.js.map +++ b/dist/native/interaction/isModal.js.map @@ -1 +1 @@ -{"version":3,"file":"isModal.js","sourceRoot":"","sources":["../../../src/native/interaction/isModal.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,aAAa,EAAE,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isModal.js","sourceRoot":"","sources":["../../../src/native/interaction/isModal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,aAAa,EAAE,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isRepliable.d.ts.map b/dist/native/interaction/isRepliable.d.ts.map index 4c548add73..06649a0f0f 100644 --- a/dist/native/interaction/isRepliable.d.ts.map +++ b/dist/native/interaction/isRepliable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isRepliable.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isRepliable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isRepliable.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isRepliable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isRepliable.js b/dist/native/interaction/isRepliable.js index 1368eb2540..3e2bc34b75 100644 --- a/dist/native/interaction/isRepliable.js +++ b/dist/native/interaction/isRepliable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isRepliable.js.map b/dist/native/interaction/isRepliable.js.map index 45034b2883..e1107702d6 100644 --- a/dist/native/interaction/isRepliable.js.map +++ b/dist/native/interaction/isRepliable.js.map @@ -1 +1 @@ -{"version":3,"file":"isRepliable.js","sourceRoot":"","sources":["../../../src/native/interaction/isRepliable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isRepliable.js","sourceRoot":"","sources":["../../../src/native/interaction/isRepliable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,WAAW,EAAE,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isRoleSelectMenu.d.ts.map b/dist/native/interaction/isRoleSelectMenu.d.ts.map index 559ec91955..562c1f3127 100644 --- a/dist/native/interaction/isRoleSelectMenu.d.ts.map +++ b/dist/native/interaction/isRoleSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isRoleSelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isRoleSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isRoleSelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isRoleSelectMenu.js b/dist/native/interaction/isRoleSelectMenu.js index bcd8905f0c..fd2d906290 100644 --- a/dist/native/interaction/isRoleSelectMenu.js +++ b/dist/native/interaction/isRoleSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isRoleSelectMenu.js.map b/dist/native/interaction/isRoleSelectMenu.js.map index 8fe426aa70..5d5a6966c3 100644 --- a/dist/native/interaction/isRoleSelectMenu.js.map +++ b/dist/native/interaction/isRoleSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isRoleSelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isRoleSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isRoleSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isSlashCommand.d.ts.map b/dist/native/interaction/isSlashCommand.d.ts.map index 7c3e02adc7..e0abfc16c7 100644 --- a/dist/native/interaction/isSlashCommand.d.ts.map +++ b/dist/native/interaction/isSlashCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isSlashCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isSlashCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isSlashCommand.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isSlashCommand.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isSlashCommand.js b/dist/native/interaction/isSlashCommand.js index d7b018dedd..7e040dae8b 100644 --- a/dist/native/interaction/isSlashCommand.js +++ b/dist/native/interaction/isSlashCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isSlashCommand.js.map b/dist/native/interaction/isSlashCommand.js.map index f7ad0ce640..9ff7c134bf 100644 --- a/dist/native/interaction/isSlashCommand.js.map +++ b/dist/native/interaction/isSlashCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"isSlashCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isSlashCommand.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isSlashCommand.js","sourceRoot":"","sources":["../../../src/native/interaction/isSlashCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isStringSelectMenu.d.ts.map b/dist/native/interaction/isStringSelectMenu.d.ts.map index 44a6f1195e..d6128a5a98 100644 --- a/dist/native/interaction/isStringSelectMenu.d.ts.map +++ b/dist/native/interaction/isStringSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isStringSelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isStringSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isStringSelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isStringSelectMenu.js b/dist/native/interaction/isStringSelectMenu.js index fa9371685d..571fb67715 100644 --- a/dist/native/interaction/isStringSelectMenu.js +++ b/dist/native/interaction/isStringSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isStringSelectMenu.js.map b/dist/native/interaction/isStringSelectMenu.js.map index 908eacffaf..1ad0131270 100644 --- a/dist/native/interaction/isStringSelectMenu.js.map +++ b/dist/native/interaction/isStringSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isStringSelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isStringSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isStringSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,kBAAkB,EAAE,CAAC,CAAC,CAAA;IACvE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/isUserSelectMenu.d.ts.map b/dist/native/interaction/isUserSelectMenu.d.ts.map index 16d6e299ff..8c500d0330 100644 --- a/dist/native/interaction/isUserSelectMenu.d.ts.map +++ b/dist/native/interaction/isUserSelectMenu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isUserSelectMenu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"isUserSelectMenu.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/isUserSelectMenu.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/interaction/isUserSelectMenu.js b/dist/native/interaction/isUserSelectMenu.js index 086d30bcf7..be4e8d1816 100644 --- a/dist/native/interaction/isUserSelectMenu.js +++ b/dist/native/interaction/isUserSelectMenu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/isUserSelectMenu.js.map b/dist/native/interaction/isUserSelectMenu.js.map index 67a8ee7453..eca8a15f8b 100644 --- a/dist/native/interaction/isUserSelectMenu.js.map +++ b/dist/native/interaction/isUserSelectMenu.js.map @@ -1 +1 @@ -{"version":3,"file":"isUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isUserSelectMenu.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isUserSelectMenu.js","sourceRoot":"","sources":["../../../src/native/interaction/isUserSelectMenu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/launchActivity.d.ts.map b/dist/native/interaction/launchActivity.d.ts.map index ea567acbf8..1b3d3a5940 100644 --- a/dist/native/interaction/launchActivity.d.ts.map +++ b/dist/native/interaction/launchActivity.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"launchActivity.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/launchActivity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAWE"} \ No newline at end of file +{"version":3,"file":"launchActivity.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/launchActivity.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAWE"} \ No newline at end of file diff --git a/dist/native/interaction/launchActivity.js b/dist/native/interaction/launchActivity.js index a200a316fc..286ddf715d 100644 --- a/dist/native/interaction/launchActivity.js +++ b/dist/native/interaction/launchActivity.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/launchActivity.js.map b/dist/native/interaction/launchActivity.js.map index 69c92777af..e1c637788f 100644 --- a/dist/native/interaction/launchActivity.js.map +++ b/dist/native/interaction/launchActivity.js.map @@ -1 +1 @@ -{"version":3,"file":"launchActivity.js","sourceRoot":"","sources":["../../../src/native/interaction/launchActivity.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,gBAAgB,IAAI,GAAG,CAAC,WAAW,EAAE;YACxD,MAAM,GAAG,CAAC,WAAW,CAAC,cAAc,EAAE,CAAA;SACzC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"launchActivity.js","sourceRoot":"","sources":["../../../src/native/interaction/launchActivity.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,gBAAgB,IAAI,GAAG,CAAC,WAAW,EAAE;YACxD,MAAM,GAAG,CAAC,WAAW,CAAC,cAAc,EAAE,CAAA;SACzC;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/locale.d.ts.map b/dist/native/interaction/locale.d.ts.map index 1ab11c40ee..47d77ece15 100644 --- a/dist/native/interaction/locale.d.ts.map +++ b/dist/native/interaction/locale.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"locale.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/locale.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAG1E,wBAYE"} \ No newline at end of file +{"version":3,"file":"locale.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/locale.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAG1E,wBAYE"} \ No newline at end of file diff --git a/dist/native/interaction/locale.js b/dist/native/interaction/locale.js index 901f40f8bb..c31106391d 100644 --- a/dist/native/interaction/locale.js +++ b/dist/native/interaction/locale.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); diff --git a/dist/native/interaction/locale.js.map b/dist/native/interaction/locale.js.map index 952a43da9f..53063ca512 100644 --- a/dist/native/interaction/locale.js.map +++ b/dist/native/interaction/locale.js.map @@ -1 +1 @@ -{"version":3,"file":"locale.js","sourceRoot":"","sources":["../../../src/native/interaction/locale.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AACnC,8EAA0E;AAG1E,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,mBAAM;IACd,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"locale.js","sourceRoot":"","sources":["../../../src/native/interaction/locale.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmC;AACnC,8EAA0E;AAG1E,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,mBAAM;IACd,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/modal.d.ts.map b/dist/native/interaction/modal.d.ts.map index 60eceaa723..c0d6954129 100644 --- a/dist/native/interaction/modal.d.ts.map +++ b/dist/native/interaction/modal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/modal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/modal.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/interaction/modal.js b/dist/native/interaction/modal.js index e6ac1840e9..5a9609f0c4 100644 --- a/dist/native/interaction/modal.js +++ b/dist/native/interaction/modal.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -25,7 +29,8 @@ exports.default = new structures_1.NativeFunction({ }, ], execute(ctx, [id, title]) { - ctx.container.modal = new discord_js_1.ModalBuilder().setCustomId(id).setTitle(title); + if (ctx.interaction) + ctx.container.modal = new discord_js_1.ModalBuilder().setCustomId(id).setTitle(title); return this.success(); }, }); diff --git a/dist/native/interaction/modal.js.map b/dist/native/interaction/modal.js.map index 12247c223b..1a2a96db6b 100644 --- a/dist/native/interaction/modal.js.map +++ b/dist/native/interaction/modal.js.map @@ -1 +1 @@ -{"version":3,"file":"modal.js","sourceRoot":"","sources":["../../../src/native/interaction/modal.ts"],"names":[],"mappings":";;AAAA,2CAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,CAAC;QACpB,GAAG,CAAC,SAAS,CAAC,KAAK,GAAG,IAAI,yBAAY,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;QAExE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"modal.js","sourceRoot":"","sources":["../../../src/native/interaction/modal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,CAAC;QACpB,IAAI,GAAG,CAAC,WAAW;YAAE,GAAG,CAAC,SAAS,CAAC,KAAK,GAAG,IAAI,yBAAY,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;QAE7F,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/option.d.ts.map b/dist/native/interaction/option.d.ts.map index c46cf348c7..61d81e4f4d 100644 --- a/dist/native/interaction/option.d.ts.map +++ b/dist/native/interaction/option.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"option.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/option.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"option.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/option.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/interaction/option.js b/dist/native/interaction/option.js index e91b1d6c2d..2b294f56a4 100644 --- a/dist/native/interaction/option.js +++ b/dist/native/interaction/option.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/interaction/option.js.map b/dist/native/interaction/option.js.map index 31478640de..c48ff9e7e2 100644 --- a/dist/native/interaction/option.js.map +++ b/dist/native/interaction/option.js.map @@ -1 +1 @@ -{"version":3,"file":"option.js","sourceRoot":"","sources":["../../../src/native/interaction/option.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QACvG,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,UAAU,EAAE,GAAG,IAAI,IAAI,EAAE,KAAK,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"option.js","sourceRoot":"","sources":["../../../src/native/interaction/option.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,WAAW,IAAI,SAAS,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;QACvG,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,UAAU,EAAE,GAAG,IAAI,IAAI,EAAE,KAAK,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/selectMenuValues.d.ts.map b/dist/native/interaction/selectMenuValues.d.ts.map index c05827a436..e5329ae907 100644 --- a/dist/native/interaction/selectMenuValues.d.ts.map +++ b/dist/native/interaction/selectMenuValues.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"selectMenuValues.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/selectMenuValues.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"selectMenuValues.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/selectMenuValues.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/interaction/selectMenuValues.js b/dist/native/interaction/selectMenuValues.js index c79d23646d..659c2c6ed5 100644 --- a/dist/native/interaction/selectMenuValues.js +++ b/dist/native/interaction/selectMenuValues.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/interaction/selectMenuValues.js.map b/dist/native/interaction/selectMenuValues.js.map index 6bc672faeb..a5744f30e1 100644 --- a/dist/native/interaction/selectMenuValues.js.map +++ b/dist/native/interaction/selectMenuValues.js.map @@ -1 +1 @@ -{"version":3,"file":"selectMenuValues.js","sourceRoot":"","sources":["../../../src/native/interaction/selectMenuValues.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC9C,MAAM,MAAM,GAAG,GAAG,CAAC,WAAW,CAAC,MAAM,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAM,CAAC,KAAK,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"selectMenuValues.js","sourceRoot":"","sources":["../../../src/native/interaction/selectMenuValues.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC9C,MAAM,MAAM,GAAG,GAAG,CAAC,WAAW,CAAC,MAAM,CAAA;QACrC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAM,CAAC,KAAK,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/showModal.d.ts.map b/dist/native/interaction/showModal.d.ts.map index 32dda13001..fa439677f6 100644 --- a/dist/native/interaction/showModal.d.ts.map +++ b/dist/native/interaction/showModal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"showModal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/showModal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAaE"} \ No newline at end of file +{"version":3,"file":"showModal.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/showModal.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAaE"} \ No newline at end of file diff --git a/dist/native/interaction/showModal.js b/dist/native/interaction/showModal.js index 8ed2f227cf..19c74ee9b2 100644 --- a/dist/native/interaction/showModal.js +++ b/dist/native/interaction/showModal.js @@ -1,10 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$showModal", version: "1.4.0", - description: "Submits the modal", + description: "Shows the modal immediately", unwrap: false, async execute(ctx) { if (ctx.interaction && "showModal" in ctx.interaction && ctx.container.modal) { diff --git a/dist/native/interaction/showModal.js.map b/dist/native/interaction/showModal.js.map index 5f2f5454d0..0d93af83f8 100644 --- a/dist/native/interaction/showModal.js.map +++ b/dist/native/interaction/showModal.js.map @@ -1 +1 @@ -{"version":3,"file":"showModal.js","sourceRoot":"","sources":["../../../src/native/interaction/showModal.ts"],"names":[],"mappings":";;AACA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,WAAW,IAAI,GAAG,CAAC,WAAW,IAAI,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE;YAC1E,MAAM,GAAG,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;SACxB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"showModal.js","sourceRoot":"","sources":["../../../src/native/interaction/showModal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,KAAK;IACb,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,GAAG,CAAC,WAAW,IAAI,WAAW,IAAI,GAAG,CAAC,WAAW,IAAI,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE;YAC1E,MAAM,GAAG,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACpE,GAAG,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;SACxB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/targetMember.d.ts.map b/dist/native/interaction/targetMember.d.ts.map index 21b5a365ed..2399b84d9c 100644 --- a/dist/native/interaction/targetMember.d.ts.map +++ b/dist/native/interaction/targetMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"targetMember.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;AAE1E,wBA0BE"} \ No newline at end of file +{"version":3,"file":"targetMember.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;AAE1E,wBA0BE"} \ No newline at end of file diff --git a/dist/native/interaction/targetMember.js b/dist/native/interaction/targetMember.js index abe8573c7a..744421fc02 100644 --- a/dist/native/interaction/targetMember.js +++ b/dist/native/interaction/targetMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const member_1 = require("../../properties/member"); diff --git a/dist/native/interaction/targetMember.js.map b/dist/native/interaction/targetMember.js.map index 80144189bf..15e490c7a0 100644 --- a/dist/native/interaction/targetMember.js.map +++ b/dist/native/interaction/targetMember.js.map @@ -1 +1 @@ -{"version":3,"file":"targetMember.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMember.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,wBAAwB,EAAE,CAAC,CAAC,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,YAAY,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"targetMember.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,wBAAwB,EAAE,CAAC,CAAC,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,YAAY,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/targetMessage.d.ts.map b/dist/native/interaction/targetMessage.d.ts.map index 9d5686b11d..2c94d39fd6 100644 --- a/dist/native/interaction/targetMessage.d.ts.map +++ b/dist/native/interaction/targetMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"targetMessage.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;;;;;;;;AAE7E,wBA0BE"} \ No newline at end of file +{"version":3,"file":"targetMessage.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;;;;;;;;AAE7E,wBA0BE"} \ No newline at end of file diff --git a/dist/native/interaction/targetMessage.js b/dist/native/interaction/targetMessage.js index b5f2861e41..67ea1ad5a8 100644 --- a/dist/native/interaction/targetMessage.js +++ b/dist/native/interaction/targetMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const message_1 = require("../../properties/message"); diff --git a/dist/native/interaction/targetMessage.js.map b/dist/native/interaction/targetMessage.js.map index 94ac0c3d41..57bb60af4d 100644 --- a/dist/native/interaction/targetMessage.js.map +++ b/dist/native/interaction/targetMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"targetMessage.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMessage.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,2BAA2B,EAAE,CAAC,CAAC,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"targetMessage.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,2BAA2B,EAAE,CAAC,CAAC,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/interaction/targetMessageEmbeds.d.ts.map b/dist/native/interaction/targetMessageEmbeds.d.ts.map index 7e6d35a873..011ab7aeee 100644 --- a/dist/native/interaction/targetMessageEmbeds.d.ts.map +++ b/dist/native/interaction/targetMessageEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"targetMessageEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMessageEmbeds.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBA6CE"} \ No newline at end of file +{"version":3,"file":"targetMessageEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/interaction/targetMessageEmbeds.ts"],"names":[],"mappings":"AAMA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBA6CE"} \ No newline at end of file diff --git a/dist/native/interaction/targetMessageEmbeds.js b/dist/native/interaction/targetMessageEmbeds.js index f56dc8df9e..067491360e 100644 --- a/dist/native/interaction/targetMessageEmbeds.js +++ b/dist/native/interaction/targetMessageEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const embed_1 = require("../../properties/embed"); diff --git a/dist/native/interaction/targetMessageEmbeds.js.map b/dist/native/interaction/targetMessageEmbeds.js.map index e3f9d3be56..34c09b6e7c 100644 --- a/dist/native/interaction/targetMessageEmbeds.js.map +++ b/dist/native/interaction/targetMessageEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"targetMessageEmbeds.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMessageEmbeds.ts"],"names":[],"mappings":";;AAAA,2CAAgD;AAChD,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,UAAU,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,2BAA2B,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE1E,MAAM,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC,aAAa,CAAA;QAC7C,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;QAEvF,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAsB,CAAA;QACxD,IAAI,IAAI,KAAK,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"targetMessageEmbeds.js","sourceRoot":"","sources":["../../../src/native/interaction/targetMessageEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgD;AAChD,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,OAAO,EAAE,CAAC,qBAAqB,CAAC;IAChC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,UAAU,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,2BAA2B,EAAE;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE1E,MAAM,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC,aAAa,CAAA;QAC7C,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;QAEvF,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAsB,CAAA;QACxD,IAAI,IAAI,KAAK,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/invite/deleteInvite.d.ts.map b/dist/native/invite/deleteInvite.d.ts.map index 14dcd979ef..0757ca0dd9 100644 --- a/dist/native/invite/deleteInvite.d.ts.map +++ b/dist/native/invite/deleteInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteInvite.d.ts","sourceRoot":"","sources":["../../../src/native/invite/deleteInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"deleteInvite.d.ts","sourceRoot":"","sources":["../../../src/native/invite/deleteInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/invite/deleteInvite.js b/dist/native/invite/deleteInvite.js index 848ed65867..5927a0981a 100644 --- a/dist/native/invite/deleteInvite.js +++ b/dist/native/invite/deleteInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/invite/deleteInvite.js.map b/dist/native/invite/deleteInvite.js.map index e79889202e..e0619b381a 100644 --- a/dist/native/invite/deleteInvite.js.map +++ b/dist/native/invite/deleteInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteInvite.js","sourceRoot":"","sources":["../../../src/native/invite/deleteInvite.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QAC7B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteInvite.js","sourceRoot":"","sources":["../../../src/native/invite/deleteInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QAC7B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/invite/getInvite.d.ts.map b/dist/native/invite/getInvite.d.ts.map index c46062cc1d..16bbb09d2f 100644 --- a/dist/native/invite/getInvite.d.ts.map +++ b/dist/native/invite/getInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getInvite.d.ts","sourceRoot":"","sources":["../../../src/native/invite/getInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;AAE1E,wBA+BE"} \ No newline at end of file +{"version":3,"file":"getInvite.d.ts","sourceRoot":"","sources":["../../../src/native/invite/getInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;;;;;;;;;;;;;;AAE1E,wBA+BE"} \ No newline at end of file diff --git a/dist/native/invite/getInvite.js b/dist/native/invite/getInvite.js index 92e90af1f1..51d70a06a8 100644 --- a/dist/native/invite/getInvite.js +++ b/dist/native/invite/getInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const invite_1 = require("../../properties/invite"); diff --git a/dist/native/invite/getInvite.js.map b/dist/native/invite/getInvite.js.map index d8e63c9f19..561f2fa951 100644 --- a/dist/native/invite/getInvite.js.map +++ b/dist/native/invite/getInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"getInvite.js","sourceRoot":"","sources":["../../../src/native/invite/getInvite.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjE,IAAI,IAAI,IAAI,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getInvite.js","sourceRoot":"","sources":["../../../src/native/invite/getInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,oDAA0E;AAE1E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACjE,IAAI,IAAI,IAAI,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;QACvE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/invite/inviteExists.d.ts.map b/dist/native/invite/inviteExists.d.ts.map index 5d49896183..6b90b05b75 100644 --- a/dist/native/invite/inviteExists.d.ts.map +++ b/dist/native/invite/inviteExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inviteExists.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviteExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"inviteExists.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviteExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/invite/inviteExists.js b/dist/native/invite/inviteExists.js index 38d84b199d..007fb7e9d6 100644 --- a/dist/native/invite/inviteExists.js +++ b/dist/native/invite/inviteExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/invite/inviteExists.js.map b/dist/native/invite/inviteExists.js.map index a37af442f3..0a91c004fb 100644 --- a/dist/native/invite/inviteExists.js.map +++ b/dist/native/invite/inviteExists.js.map @@ -1 +1 @@ -{"version":3,"file":"inviteExists.js","sourceRoot":"","sources":["../../../src/native/invite/inviteExists.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inviteExists.js","sourceRoot":"","sources":["../../../src/native/invite/inviteExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/invite/inviterCode.d.ts.map b/dist/native/invite/inviterCode.d.ts.map index 273e0e5f60..5a9c88de24 100644 --- a/dist/native/invite/inviterCode.d.ts.map +++ b/dist/native/invite/inviterCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inviterCode.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviterCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"inviterCode.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviterCode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/invite/inviterCode.js b/dist/native/invite/inviterCode.js index a2804ddb46..b25300d7f0 100644 --- a/dist/native/invite/inviterCode.js +++ b/dist/native/invite/inviterCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const InviteTracker_1 = require("../../structures/trackers/InviteTracker"); diff --git a/dist/native/invite/inviterCode.js.map b/dist/native/invite/inviterCode.js.map index 25d3fdb64e..28ee96ce3b 100644 --- a/dist/native/invite/inviterCode.js.map +++ b/dist/native/invite/inviterCode.js.map @@ -1 +1 @@ -{"version":3,"file":"inviterCode.js","sourceRoot":"","sources":["../../../src/native/invite/inviterCode.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,2EAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC,CAAA;IACpH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inviterCode.js","sourceRoot":"","sources":["../../../src/native/invite/inviterCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,2EAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC,CAAA;IACpH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/invite/inviterID.d.ts.map b/dist/native/invite/inviterID.d.ts.map index 990715c440..c3d65b3144 100644 --- a/dist/native/invite/inviterID.d.ts.map +++ b/dist/native/invite/inviterID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inviterID.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviterID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"inviterID.d.ts","sourceRoot":"","sources":["../../../src/native/invite/inviterID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/invite/inviterID.js b/dist/native/invite/inviterID.js index e4c341014a..ffb0656776 100644 --- a/dist/native/invite/inviterID.js +++ b/dist/native/invite/inviterID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const InviteTracker_1 = require("../../structures/trackers/InviteTracker"); diff --git a/dist/native/invite/inviterID.js.map b/dist/native/invite/inviterID.js.map index 07be3df0dc..5276d03f5e 100644 --- a/dist/native/invite/inviterID.js.map +++ b/dist/native/invite/inviterID.js.map @@ -1 +1 @@ -{"version":3,"file":"inviterID.js","sourceRoot":"","sources":["../../../src/native/invite/inviterID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,2EAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,SAAS,CAAC,CAAA;IACzH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inviterID.js","sourceRoot":"","sources":["../../../src/native/invite/inviterID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,2EAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,SAAS,CAAC,CAAA;IACzH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/isJSON.d.ts.map b/dist/native/json/isJSON.d.ts.map index 5439a09943..e667e61737 100644 --- a/dist/native/json/isJSON.d.ts.map +++ b/dist/native/json/isJSON.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isJSON.d.ts","sourceRoot":"","sources":["../../../src/native/json/isJSON.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file +{"version":3,"file":"isJSON.d.ts","sourceRoot":"","sources":["../../../src/native/json/isJSON.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file diff --git a/dist/native/json/isJSON.js b/dist/native/json/isJSON.js index 053283cf26..b317d69aec 100644 --- a/dist/native/json/isJSON.js +++ b/dist/native/json/isJSON.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -7,7 +11,7 @@ exports.default = new structures_1.NativeFunction({ aliases: [ "$isValidJSON" ], - description: "Checks whether given json is valid", + description: "Checks whether given JSON is valid", unwrap: true, brackets: true, args: [ diff --git a/dist/native/json/isJSON.js.map b/dist/native/json/isJSON.js.map index 6140e295a4..f4c1a26b9c 100644 --- a/dist/native/json/isJSON.js.map +++ b/dist/native/json/isJSON.js.map @@ -1 +1 @@ -{"version":3,"file":"isJSON.js","sourceRoot":"","sources":["../../../src/native/json/isJSON.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;KACjB;IACD,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,IAAI;YACA,KAAK,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;YACrB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAK,EAAE;YACZ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isJSON.js","sourceRoot":"","sources":["../../../src/native/json/isJSON.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;KACjB;IACD,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,IAAI;YACA,KAAK,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;YACrB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAK,EAAE;YACZ,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;SAC7B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonAssign.d.ts b/dist/native/json/jsonAssign.d.ts new file mode 100644 index 0000000000..862eb6659a --- /dev/null +++ b/dist/native/json/jsonAssign.d.ts @@ -0,0 +1,21 @@ +import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + required: true; + type: ArgType.String; + rest: false; +}, { + name: string; + description: string; + type: ArgType.String; + rest: false; +}, { + name: string; + description: string; + type: ArgType.Json; + required: true; + rest: true; +}], true>; +export default _default; +//# sourceMappingURL=jsonAssign.d.ts.map \ No newline at end of file diff --git a/dist/native/json/jsonAssign.d.ts.map b/dist/native/json/jsonAssign.d.ts.map new file mode 100644 index 0000000000..45b037fb18 --- /dev/null +++ b/dist/native/json/jsonAssign.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"jsonAssign.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonAssign.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;;;;;;AAEnF,wBAqCE"} \ No newline at end of file diff --git a/dist/native/json/jsonAssign.js b/dist/native/json/jsonAssign.js new file mode 100644 index 0000000000..96df0a3d56 --- /dev/null +++ b/dist/native/json/jsonAssign.js @@ -0,0 +1,48 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); +exports.default = new NativeFunction_1.NativeFunction({ + name: "$jsonAssign", + version: "2.6.0", + description: "Combines multiple JSON objects into a single JSON object", + brackets: true, + unwrap: true, + args: [ + { + name: "variable", + description: "The variable that holds the target object", + required: true, + type: NativeFunction_1.ArgType.String, + rest: false + }, + { + name: "other variable", + description: "The variable to load the result to, leave empty to return output", + type: NativeFunction_1.ArgType.String, + rest: false + }, + { + name: "objects", + description: "The objects from which to copy properties", + type: NativeFunction_1.ArgType.Json, + required: true, + rest: true + } + ], + output: NativeFunction_1.ArgType.Json, + execute(ctx, [var1, var2, objects]) { + const json = ctx.getEnvironmentKey(var1); + if (!json) + return this.success(); + const obj = Object.assign(json, ...objects); + if (var2) + return this.success(void ctx.setEnvironmentKey(var2, obj)); + else + return this.successJSON(obj); + } +}); +//# sourceMappingURL=jsonAssign.js.map \ No newline at end of file diff --git a/dist/native/json/jsonAssign.js.map b/dist/native/json/jsonAssign.js.map new file mode 100644 index 0000000000..b0b50988af --- /dev/null +++ b/dist/native/json/jsonAssign.js.map @@ -0,0 +1 @@ +{"version":3,"file":"jsonAssign.js","sourceRoot":"","sources":["../../../src/native/json/jsonAssign.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,kEAAkE;YAC/E,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;SACb;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAE;QAChC,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEhC,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,OAAO,CAAC,CAAA;QAC3C,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;;YAC/D,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonDelete.d.ts.map b/dist/native/json/jsonDelete.d.ts.map index 18bf015023..50a114228c 100644 --- a/dist/native/json/jsonDelete.d.ts.map +++ b/dist/native/json/jsonDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonDelete.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonDelete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"jsonDelete.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonDelete.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/json/jsonDelete.js b/dist/native/json/jsonDelete.js index 0d8d186922..1411c67ed6 100644 --- a/dist/native/json/jsonDelete.js +++ b/dist/native/json/jsonDelete.js @@ -1,10 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$jsonDelete", version: "1.4.0", - description: "Delete a key from a traversed json", + description: "Deletes a key from a traversed JSON", unwrap: true, brackets: true, output: structures_1.ArgType.Boolean, diff --git a/dist/native/json/jsonDelete.js.map b/dist/native/json/jsonDelete.js.map index 38a0c96d97..571cc67081 100644 --- a/dist/native/json/jsonDelete.js.map +++ b/dist/native/json/jsonDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonDelete.js","sourceRoot":"","sources":["../../../src/native/json/jsonDelete.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonDelete.js","sourceRoot":"","sources":["../../../src/native/json/jsonDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonEntries.d.ts.map b/dist/native/json/jsonEntries.d.ts.map index e8d93a834a..86d39e25a9 100644 --- a/dist/native/json/jsonEntries.d.ts.map +++ b/dist/native/json/jsonEntries.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonEntries.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonEntries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"jsonEntries.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonEntries.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/json/jsonEntries.js b/dist/native/json/jsonEntries.js index 7e8d4d49ee..dbad0920dd 100644 --- a/dist/native/json/jsonEntries.js +++ b/dist/native/json/jsonEntries.js @@ -1,10 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$jsonEntries", version: "1.4.0", - description: "Gets entries from a json var", + description: "Gets entries from a JSON variable", brackets: true, args: [ { diff --git a/dist/native/json/jsonEntries.js.map b/dist/native/json/jsonEntries.js.map index e241c77f42..43d36dc8d4 100644 --- a/dist/native/json/jsonEntries.js.map +++ b/dist/native/json/jsonEntries.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonEntries.js","sourceRoot":"","sources":["../../../src/native/json/jsonEntries.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonEntries.js","sourceRoot":"","sources":["../../../src/native/json/jsonEntries.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonHas.d.ts.map b/dist/native/json/jsonHas.d.ts.map index 2d90a52924..b386139b76 100644 --- a/dist/native/json/jsonHas.d.ts.map +++ b/dist/native/json/jsonHas.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonHas.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonHas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA4BE"} \ No newline at end of file +{"version":3,"file":"jsonHas.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonHas.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA4BE"} \ No newline at end of file diff --git a/dist/native/json/jsonHas.js b/dist/native/json/jsonHas.js index 3ac1453db7..105cbae85c 100644 --- a/dist/native/json/jsonHas.js +++ b/dist/native/json/jsonHas.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/json/jsonHas.js.map b/dist/native/json/jsonHas.js.map index 08e86bf7bf..01d0d67f6c 100644 --- a/dist/native/json/jsonHas.js.map +++ b/dist/native/json/jsonHas.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonHas.js","sourceRoot":"","sources":["../../../src/native/json/jsonHas.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonHas.js","sourceRoot":"","sources":["../../../src/native/json/jsonHas.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,CAAE;QACtB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonKeys.d.ts.map b/dist/native/json/jsonKeys.d.ts.map index 5f121d03be..f0cb92bd66 100644 --- a/dist/native/json/jsonKeys.d.ts.map +++ b/dist/native/json/jsonKeys.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonKeys.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonKeys.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"jsonKeys.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonKeys.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/json/jsonKeys.js b/dist/native/json/jsonKeys.js index 0790c22444..2ad98505cf 100644 --- a/dist/native/json/jsonKeys.js +++ b/dist/native/json/jsonKeys.js @@ -1,10 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$jsonKeys", version: "1.4.0", - description: "Gets keys from a json var", + description: "Gets keys from a JSON variable", brackets: true, args: [ { diff --git a/dist/native/json/jsonKeys.js.map b/dist/native/json/jsonKeys.js.map index ad9b75e6e5..0ff208531e 100644 --- a/dist/native/json/jsonKeys.js.map +++ b/dist/native/json/jsonKeys.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonKeys.js","sourceRoot":"","sources":["../../../src/native/json/jsonKeys.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonKeys.js","sourceRoot":"","sources":["../../../src/native/json/jsonKeys.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonLoad.d.ts.map b/dist/native/json/jsonLoad.d.ts.map index 41d21db5ec..fc3c2254c7 100644 --- a/dist/native/json/jsonLoad.d.ts.map +++ b/dist/native/json/jsonLoad.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonLoad.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonLoad.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"jsonLoad.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonLoad.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/json/jsonLoad.js b/dist/native/json/jsonLoad.js index d6a085286a..ad6ba637fd 100644 --- a/dist/native/json/jsonLoad.js +++ b/dist/native/json/jsonLoad.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -9,7 +13,7 @@ exports.default = new structures_1.NativeFunction({ args: [ { name: "variable", - description: "The variable to load it to", + description: "The variable to load json to", rest: false, type: structures_1.ArgType.String, required: true, diff --git a/dist/native/json/jsonLoad.js.map b/dist/native/json/jsonLoad.js.map index f2f557524c..7777f98796 100644 --- a/dist/native/json/jsonLoad.js.map +++ b/dist/native/json/jsonLoad.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonLoad.js","sourceRoot":"","sources":["../../../src/native/json/jsonLoad.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonLoad.js","sourceRoot":"","sources":["../../../src/native/json/jsonLoad.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonSet.d.ts.map b/dist/native/json/jsonSet.d.ts.map index 62450ca2fe..aa9c82b954 100644 --- a/dist/native/json/jsonSet.d.ts.map +++ b/dist/native/json/jsonSet.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonSet.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonSet.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"jsonSet.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonSet.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/json/jsonSet.js b/dist/native/json/jsonSet.js index c5b5bdd714..c7b9a45708 100644 --- a/dist/native/json/jsonSet.js +++ b/dist/native/json/jsonSet.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -8,7 +12,7 @@ const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$jsonSet", version: "1.2.0", - description: "Adds a json key with a value", + description: "Adds a JSON key with a value", unwrap: true, brackets: true, args: [ diff --git a/dist/native/json/jsonSet.js.map b/dist/native/json/jsonSet.js.map index 7072bc09f4..345f7ba93c 100644 --- a/dist/native/json/jsonSet.js.map +++ b/dist/native/json/jsonSet.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonSet.js","sourceRoot":"","sources":["../../../src/native/json/jsonSet.ts"],"names":[],"mappings":";;;;;AAAA,0EAAiD;AACjD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,yBAAyB,CAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC9G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonSet.js","sourceRoot":"","sources":["../../../src/native/json/jsonSet.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,0EAAiD;AACjD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,yBAAyB,CAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC9G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonStringify.d.ts.map b/dist/native/json/jsonStringify.d.ts.map index a42403420f..89f915b3c7 100644 --- a/dist/native/json/jsonStringify.d.ts.map +++ b/dist/native/json/jsonStringify.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonStringify.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonStringify.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAInF,wBAyBE"} \ No newline at end of file +{"version":3,"file":"jsonStringify.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonStringify.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAEnF,wBAyBE"} \ No newline at end of file diff --git a/dist/native/json/jsonStringify.js b/dist/native/json/jsonStringify.js index 407f3e2fd9..e90cd20199 100644 --- a/dist/native/json/jsonStringify.js +++ b/dist/native/json/jsonStringify.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/json/jsonStringify.js.map b/dist/native/json/jsonStringify.js.map index 47ed7bbcf1..be3002bd22 100644 --- a/dist/native/json/jsonStringify.js.map +++ b/dist/native/json/jsonStringify.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonStringify.js","sourceRoot":"","sources":["../../../src/native/json/jsonStringify.ts"],"names":[],"mappings":";;AACA,8EAAmF;AAInF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,IAAI;IACpB,WAAW,EAAE,wCAAwC;IACrD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,IAAI,SAAS,CAAC,CAAC,CAAA;IACtG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonStringify.js","sourceRoot":"","sources":["../../../src/native/json/jsonStringify.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,IAAI;IACpB,WAAW,EAAE,wCAAwC;IACrD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,IAAI,SAAS,CAAC,CAAC,CAAA;IACtG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/json/jsonValues.d.ts.map b/dist/native/json/jsonValues.d.ts.map index dea422b13a..e9509f99d9 100644 --- a/dist/native/json/jsonValues.d.ts.map +++ b/dist/native/json/jsonValues.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"jsonValues.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonValues.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"jsonValues.d.ts","sourceRoot":"","sources":["../../../src/native/json/jsonValues.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/json/jsonValues.js b/dist/native/json/jsonValues.js index 7ca093af07..9255e6f59e 100644 --- a/dist/native/json/jsonValues.js +++ b/dist/native/json/jsonValues.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -8,7 +12,7 @@ const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$jsonValues", version: "1.4.0", - description: "Gets values from a json var", + description: "Gets values from a JSON variable", brackets: true, args: [ { diff --git a/dist/native/json/jsonValues.js.map b/dist/native/json/jsonValues.js.map index 08f39fcb98..e6e10ca715 100644 --- a/dist/native/json/jsonValues.js.map +++ b/dist/native/json/jsonValues.js.map @@ -1 +1 @@ -{"version":3,"file":"jsonValues.js","sourceRoot":"","sources":["../../../src/native/json/jsonValues.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"jsonValues.js","sourceRoot":"","sources":["../../../src/native/json/jsonValues.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,MAAM,IAAI,GAAG,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAChC,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForCategories.d.ts.map b/dist/native/limiter/onlyForCategories.d.ts.map index 195f980432..77a1b936b4 100644 --- a/dist/native/limiter/onlyForCategories.d.ts.map +++ b/dist/native/limiter/onlyForCategories.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyForCategories.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForCategories.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;eAuB3E,WAAW;;AArBlC,wBAuCE"} \ No newline at end of file +{"version":3,"file":"onlyForCategories.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForCategories.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAgC,MAAM,YAAY,CAAA;AACtE,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;eAuB3E,WAAW;;AArBlC,wBAuCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForCategories.js b/dist/native/limiter/onlyForCategories.js index 63d0bf78a8..0b6b1d9d75 100644 --- a/dist/native/limiter/onlyForCategories.js +++ b/dist/native/limiter/onlyForCategories.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/limiter/onlyForCategories.js.map b/dist/native/limiter/onlyForCategories.js.map index a66999f0c1..aa20d1c7de 100644 --- a/dist/native/limiter/onlyForCategories.js.map +++ b/dist/native/limiter/onlyForCategories.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyForCategories.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForCategories.ts"],"names":[],"mappings":";;AAAA,2CAAsE;AACtE,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,OAA0B,IAAI,IAAI,CAAC,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAA;SAC9F;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyForCategories.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForCategories.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsE;AACtE,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,aAAa;SAClE;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,OAA0B,IAAI,IAAI,CAAC,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAA;SAC9F;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForChannels.d.ts.map b/dist/native/limiter/onlyForChannels.d.ts.map index e2e703bd3e..deb3eaaa2c 100644 --- a/dist/native/limiter/onlyForChannels.d.ts.map +++ b/dist/native/limiter/onlyForChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyForChannels.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForChannels.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElG,wBAsCE"} \ No newline at end of file +{"version":3,"file":"onlyForChannels.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForChannels.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElG,wBAsCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForChannels.js b/dist/native/limiter/onlyForChannels.js index 2d6e75cbfe..9d1d8cd638 100644 --- a/dist/native/limiter/onlyForChannels.js +++ b/dist/native/limiter/onlyForChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/onlyForChannels.js.map b/dist/native/limiter/onlyForChannels.js.map index c7afffb77e..f2696da247 100644 --- a/dist/native/limiter/onlyForChannels.js.map +++ b/dist/native/limiter/onlyForChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyForChannels.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForChannels.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SAC5D;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyForChannels.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForChannels.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,OAAQ,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SAC5D;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForGuilds.d.ts.map b/dist/native/limiter/onlyForGuilds.d.ts.map index 1cd1d8d45f..c8a83c688f 100644 --- a/dist/native/limiter/onlyForGuilds.d.ts.map +++ b/dist/native/limiter/onlyForGuilds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyForGuilds.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForGuilds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElG,wBAqCE"} \ No newline at end of file +{"version":3,"file":"onlyForGuilds.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForGuilds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElG,wBAqCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForGuilds.js b/dist/native/limiter/onlyForGuilds.js index b3506f2b76..a6c6b6a5cb 100644 --- a/dist/native/limiter/onlyForGuilds.js +++ b/dist/native/limiter/onlyForGuilds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/onlyForGuilds.js.map b/dist/native/limiter/onlyForGuilds.js.map index c78540bea6..6b7d086fce 100644 --- a/dist/native/limiter/onlyForGuilds.js.map +++ b/dist/native/limiter/onlyForGuilds.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyForGuilds.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForGuilds.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,KAAM,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SAC1D;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyForGuilds.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForGuilds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,KAAM,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SAC1D;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForRoles.d.ts.map b/dist/native/limiter/onlyForRoles.d.ts.map index 0114e904ef..93fc9f56e5 100644 --- a/dist/native/limiter/onlyForRoles.d.ts.map +++ b/dist/native/limiter/onlyForRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyForRoles.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElG,wBAsCE"} \ No newline at end of file +{"version":3,"file":"onlyForRoles.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElG,wBAsCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForRoles.js b/dist/native/limiter/onlyForRoles.js index c134ce5e50..63d64e61d1 100644 --- a/dist/native/limiter/onlyForRoles.js +++ b/dist/native/limiter/onlyForRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/onlyForRoles.js.map b/dist/native/limiter/onlyForRoles.js.map index e84ad4fbfe..13365f8a2e 100644 --- a/dist/native/limiter/onlyForRoles.js.map +++ b/dist/native/limiter/onlyForRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyForRoles.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,KAAK,CAAA;SAC1E;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyForRoles.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,KAAK,EAAE;YACX,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,KAAK,CAAA;SAC1E;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForUsers.d.ts.map b/dist/native/limiter/onlyForUsers.d.ts.map index e9a9e0830a..55420d9862 100644 --- a/dist/native/limiter/onlyForUsers.d.ts.map +++ b/dist/native/limiter/onlyForUsers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyForUsers.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForUsers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElG,wBAqCE"} \ No newline at end of file +{"version":3,"file":"onlyForUsers.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyForUsers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElG,wBAqCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyForUsers.js b/dist/native/limiter/onlyForUsers.js index a7c00c5f8e..fef6db3471 100644 --- a/dist/native/limiter/onlyForUsers.js +++ b/dist/native/limiter/onlyForUsers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/onlyForUsers.js.map b/dist/native/limiter/onlyForUsers.js.map index 8c6a0754e8..558890c30f 100644 --- a/dist/native/limiter/onlyForUsers.js.map +++ b/dist/native/limiter/onlyForUsers.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyForUsers.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForUsers.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,IAAI,EAAE;YACV,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,IAAK,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SACzD;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyForUsers.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyForUsers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QACnE,IAAI,EAAE,GAAG,KAAK,CAAA;QAEd,IAAI,GAAG,CAAC,IAAI,EAAE;YACV,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAAE,OAAO,EAAE,CAAA;YAC7C,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,IAAK,CAAC,EAAE,CAAC,IAAI,KAAK,CAAA;SACzD;QAED,IAAI,CAAC,EAAE;YACH,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;QAElC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/onlyIf.d.ts.map b/dist/native/limiter/onlyIf.d.ts.map index 0dcc35b8a6..7f6a832638 100644 --- a/dist/native/limiter/onlyIf.d.ts.map +++ b/dist/native/limiter/onlyIf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"onlyIf.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyIf.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEzB,wBAuCE"} \ No newline at end of file +{"version":3,"file":"onlyIf.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/onlyIf.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEzB,wBAuCE"} \ No newline at end of file diff --git a/dist/native/limiter/onlyIf.js b/dist/native/limiter/onlyIf.js index 3e3363a173..c022bd911e 100644 --- a/dist/native/limiter/onlyIf.js +++ b/dist/native/limiter/onlyIf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/onlyIf.js.map b/dist/native/limiter/onlyIf.js.map index 5439074416..b8e30099ef 100644 --- a/dist/native/limiter/onlyIf.js.map +++ b/dist/native/limiter/onlyIf.js.map @@ -1 +1 @@ -{"version":3,"file":"onlyIf.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyIf.ts"],"names":[],"mappings":";;AAAA,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAGnC,CAAA;QACD,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QAC1D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,KAAK;YAAE,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;QAE3F,IAAI,IAAI,EAAE;YACN,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;YACzD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;YAChD,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;SACpC;QAED,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"onlyIf.js","sourceRoot":"","sources":["../../../src/native/limiter/onlyIf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAGnC,CAAA;QACD,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;QAC1D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,KAAK;YAAE,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;QAE3F,IAAI,IAAI,EAAE;YACN,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACrD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,QAAQ,CAAC;gBAAE,OAAO,QAAQ,CAAA;YACzD,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,QAAQ,CAAC,KAAe,CAAA;YAChD,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;SACpC;QAED,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/limiter/stop.d.ts.map b/dist/native/limiter/stop.d.ts.map index 97860a6152..e2d2e5bf58 100644 --- a/dist/native/limiter/stop.d.ts.map +++ b/dist/native/limiter/stop.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stop.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/stop.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file +{"version":3,"file":"stop.d.ts","sourceRoot":"","sources":["../../../src/native/limiter/stop.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file diff --git a/dist/native/limiter/stop.js b/dist/native/limiter/stop.js index a01963a472..6c469e406f 100644 --- a/dist/native/limiter/stop.js +++ b/dist/native/limiter/stop.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/limiter/stop.js.map b/dist/native/limiter/stop.js.map index 86d91335c7..89bd6b6051 100644 --- a/dist/native/limiter/stop.js.map +++ b/dist/native/limiter/stop.js.map @@ -1 +1 @@ -{"version":3,"file":"stop.js","sourceRoot":"","sources":["../../../src/native/limiter/stop.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stop.js","sourceRoot":"","sources":["../../../src/native/limiter/stop.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,IAAI,EAAE,CAAA;IACtB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/logging/chalkLog.d.ts.map b/dist/native/logging/chalkLog.d.ts.map index efa7491b64..66515e7b5b 100644 --- a/dist/native/logging/chalkLog.d.ts.map +++ b/dist/native/logging/chalkLog.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"chalkLog.d.ts","sourceRoot":"","sources":["../../../src/native/logging/chalkLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAa1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"chalkLog.d.ts","sourceRoot":"","sources":["../../../src/native/logging/chalkLog.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAa1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/logging/chalkLog.js b/dist/native/logging/chalkLog.js index cb3913bfc9..0ab90d9c96 100644 --- a/dist/native/logging/chalkLog.js +++ b/dist/native/logging/chalkLog.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/logging/chalkLog.js.map b/dist/native/logging/chalkLog.js.map index c6d5b3acbc..6cb3f2709a 100644 --- a/dist/native/logging/chalkLog.js.map +++ b/dist/native/logging/chalkLog.js.map @@ -1 +1 @@ -{"version":3,"file":"chalkLog.js","sourceRoot":"","sources":["../../../src/native/logging/chalkLog.ts"],"names":[],"mappings":";;;;;AAAA,iDAA0D;AAC1D,kDAAyB;AAEzB,SAAS,WAAW,CAAC,IAAY,EAAE,MAAgB;IAC/C,IAAI,MAAM,GAAG,eAAK,CAAA;IAClB,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;QACxB,MAAM,EAAE,GAAI,MAAc,CAAC,KAAK,CAAC,CAAA;QACjC,IAAI,OAAO,EAAE,KAAK,UAAU;YAAE,SAAQ;QACtC,MAAM,GAAG,EAAE,CAAA;KACd;IACD,OAAO,MAAM,CAAC,IAAI,CAAC,CAAA;AACvB,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA;QACtC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"chalkLog.js","sourceRoot":"","sources":["../../../src/native/logging/chalkLog.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAA0D;AAC1D,kDAAyB;AAEzB,SAAS,WAAW,CAAC,IAAY,EAAE,MAAgB;IAC/C,IAAI,MAAM,GAAG,eAAK,CAAA;IAClB,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;QACxB,MAAM,EAAE,GAAI,MAAc,CAAC,KAAK,CAAC,CAAA;QACjC,IAAI,OAAO,EAAE,KAAK,UAAU;YAAE,SAAQ;QACtC,MAAM,GAAG,EAAE,CAAA;KACd;IACD,OAAO,MAAM,CAAC,IAAI,CAAC,CAAA;AACvB,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAA;QACtC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/logging/log.d.ts.map b/dist/native/logging/log.d.ts.map index f794ef922e..d2b240058d 100644 --- a/dist/native/logging/log.d.ts.map +++ b/dist/native/logging/log.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../../src/native/logging/log.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAGnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../../src/native/logging/log.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAGnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/logging/log.js b/dist/native/logging/log.js index fb8a09fa05..79b7670b10 100644 --- a/dist/native/logging/log.js +++ b/dist/native/logging/log.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/logging/log.js.map b/dist/native/logging/log.js.map index f9b15c50bb..327e95ff7f 100644 --- a/dist/native/logging/log.js.map +++ b/dist/native/logging/log.js.map @@ -1 +1 @@ -{"version":3,"file":"log.js","sourceRoot":"","sources":["../../../src/native/logging/log.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"log.js","sourceRoot":"","sources":["../../../src/native/logging/log.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/logging/logger.d.ts.map b/dist/native/logging/logger.d.ts.map index 9875fb30d0..12861f6a90 100644 --- a/dist/native/logging/logger.d.ts.map +++ b/dist/native/logging/logger.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/native/logging/logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAU,MAAM,mCAAmC,CAAA;;;;;;;;;;;;;;;AAEnE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/native/logging/logger.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAC1D,OAAO,EAAE,OAAO,EAAU,MAAM,mCAAmC,CAAA;;;;;;;;;;;;;;;AAEnE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/logging/logger.js b/dist/native/logging/logger.js index 313cbc83e4..2f6d0c49d0 100644 --- a/dist/native/logging/logger.js +++ b/dist/native/logging/logger.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const Logger_1 = require("../../structures/@internal/Logger"); diff --git a/dist/native/logging/logger.js.map b/dist/native/logging/logger.js.map index 4664a21055..a69f2ebf4c 100644 --- a/dist/native/logging/logger.js.map +++ b/dist/native/logging/logger.js.map @@ -1 +1 @@ -{"version":3,"file":"logger.js","sourceRoot":"","sources":["../../../src/native/logging/logger.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,8DAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,gBAAO;YACb,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,eAAM,CAAC,gBAAO,CAAC,IAAI,CAAC,CAAC,WAAW,EAAqC,CAAC,CAAC,KAAK,CAAC,CAAA;QAC7E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"logger.js","sourceRoot":"","sources":["../../../src/native/logging/logger.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,8DAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,gBAAO;YACb,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,eAAM,CAAC,gBAAO,CAAC,IAAI,CAAC,CAAC,WAAW,EAAqC,CAAC,CAAC,KAAK,CAAC,CAAA;QAC7E,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findApplicationEmoji.d.ts.map b/dist/native/lookup/findApplicationEmoji.d.ts.map index 1985a3dc16..27c10c4663 100644 --- a/dist/native/lookup/findApplicationEmoji.d.ts.map +++ b/dist/native/lookup/findApplicationEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findApplicationEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"findApplicationEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findApplicationEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file diff --git a/dist/native/lookup/findApplicationEmoji.js b/dist/native/lookup/findApplicationEmoji.js index 7352123749..c4f5068068 100644 --- a/dist/native/lookup/findApplicationEmoji.js +++ b/dist/native/lookup/findApplicationEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/lookup/findApplicationEmoji.js.map b/dist/native/lookup/findApplicationEmoji.js.map index f131747ac3..c0d862720e 100644 --- a/dist/native/lookup/findApplicationEmoji.js.map +++ b/dist/native/lookup/findApplicationEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"findApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findApplicationEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QAErD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YACxB,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findApplicationEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findApplicationEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,gBAAgB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QAErD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YACxB,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IAC/H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findChannel.d.ts.map b/dist/native/lookup/findChannel.d.ts.map index b1aec84ea1..de6acc7d41 100644 --- a/dist/native/lookup/findChannel.d.ts.map +++ b/dist/native/lookup/findChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findChannel.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGpF,wBAwCE"} \ No newline at end of file +{"version":3,"file":"findChannel.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGpF,wBAwCE"} \ No newline at end of file diff --git a/dist/native/lookup/findChannel.js b/dist/native/lookup/findChannel.js index d6708478e4..e1d89835f2 100644 --- a/dist/native/lookup/findChannel.js +++ b/dist/native/lookup/findChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const findGuildChannel_1 = require("./findGuildChannel"); diff --git a/dist/native/lookup/findChannel.js.map b/dist/native/lookup/findChannel.js.map index 3709f85f91..30dd14a801 100644 --- a/dist/native/lookup/findChannel.js.map +++ b/dist/native/lookup/findChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"findChannel.js","sourceRoot":"","sources":["../../../src/native/lookup/findChannel.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AACpF,yDAA4D;AAE5D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,0CAAuB,EAAE,EAAE,CAAC,CAAA;QAEjD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YAC5C,IAAI,EAAE;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,CAAA;SACrC;QAED,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,IAAI,SAAS,CAAC,CAAC,CAAC,SAAS,CAAA;QAE1D,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAC1B,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,MAAM,IAAI,CAAC,IAAK,CAAC,CAAC,IAAe,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,CAChF,EAAE,EAAE,IAAI,IAAI,CAChB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findChannel.js","sourceRoot":"","sources":["../../../src/native/lookup/findChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AACpF,yDAA4D;AAE5D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,0CAAuB,EAAE,EAAE,CAAC,CAAA;QAEjD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YAC5C,IAAI,EAAE;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,CAAA;SACrC;QAED,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,IAAI,SAAS,CAAC,CAAC,CAAC,SAAS,CAAA;QAE1D,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAC1B,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,MAAM,IAAI,CAAC,IAAK,CAAC,CAAC,IAAe,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,CAChF,EAAE,EAAE,IAAI,IAAI,CAChB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findChannels.d.ts.map b/dist/native/lookup/findChannels.d.ts.map index a84494cdd6..7ad6ff851c 100644 --- a/dist/native/lookup/findChannels.d.ts.map +++ b/dist/native/lookup/findChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findChannels.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findChannels.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAG7E,oBAAY,gBAAgB;IACxB,UAAU,IAAA;IACV,QAAQ,IAAA;IACR,QAAQ,IAAA;CACX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED,wBAmEE"} \ No newline at end of file +{"version":3,"file":"findChannels.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findChannels.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAG7E,oBAAY,gBAAgB;IACxB,UAAU,IAAA;IACV,QAAQ,IAAA;IACR,QAAQ,IAAA;CACX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED,wBAmEE"} \ No newline at end of file diff --git a/dist/native/lookup/findChannels.js b/dist/native/lookup/findChannels.js index a60587dc43..7655e19845 100644 --- a/dist/native/lookup/findChannels.js +++ b/dist/native/lookup/findChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/lookup/findChannels.js.map b/dist/native/lookup/findChannels.js.map index ddfafb93ea..a452e5971e 100644 --- a/dist/native/lookup/findChannels.js.map +++ b/dist/native/lookup/findChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"findChannels.js","sourceRoot":"","sources":["../../../src/native/lookup/findChannels.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"findChannels.js","sourceRoot":"","sources":["../../../src/native/lookup/findChannels.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/native/lookup/findEmoji.d.ts.map b/dist/native/lookup/findEmoji.d.ts.map index d4b69cecb7..0e6299a213 100644 --- a/dist/native/lookup/findEmoji.d.ts.map +++ b/dist/native/lookup/findEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findEmoji.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBA+BE"} \ No newline at end of file +{"version":3,"file":"findEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findEmoji.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBA+BE"} \ No newline at end of file diff --git a/dist/native/lookup/findEmoji.js b/dist/native/lookup/findEmoji.js index 14bd227f7a..d7d4cde4f8 100644 --- a/dist/native/lookup/findEmoji.js +++ b/dist/native/lookup/findEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/lookup/findEmoji.js.map b/dist/native/lookup/findEmoji.js.map index a0188cb8f1..dc3d967467 100644 --- a/dist/native/lookup/findEmoji.js.map +++ b/dist/native/lookup/findEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"findEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findEmoji.ts"],"names":[],"mappings":";;AAAA,2CAAuC;AACvC,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,MAAM,MAAM,GAAG,IAAA,uBAAU,EAAC,CAAC,CAAC,CAAA;QAE5B,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YAC1D,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,MAAM,IAAI,GAAG,MAAM,EAAE,IAAI,CAAC,WAAW,EAAE,CAAA;QAEvC,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,IAAI,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAC7M,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAuC;AACvC,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAClB,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAA;QACrD,MAAM,MAAM,GAAG,IAAA,uBAAU,EAAC,CAAC,CAAC,CAAA;QAE5B,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YAC1D,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,MAAM,IAAI,GAAG,MAAM,EAAE,IAAI,CAAC,WAAW,EAAE,CAAA;QAEvC,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,IAAI,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAC7M,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findGuild.d.ts.map b/dist/native/lookup/findGuild.d.ts.map index c572b2ad9d..b16f274528 100644 --- a/dist/native/lookup/findGuild.d.ts.map +++ b/dist/native/lookup/findGuild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findGuild.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAEpF,wBAgCE"} \ No newline at end of file +{"version":3,"file":"findGuild.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAEpF,wBAgCE"} \ No newline at end of file diff --git a/dist/native/lookup/findGuild.js b/dist/native/lookup/findGuild.js index 64adbd39ac..d869ebcda5 100644 --- a/dist/native/lookup/findGuild.js +++ b/dist/native/lookup/findGuild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/lookup/findGuild.js.map b/dist/native/lookup/findGuild.js.map index b219298018..b6c7f41752 100644 --- a/dist/native/lookup/findGuild.js.map +++ b/dist/native/lookup/findGuild.js.map @@ -1 +1 @@ -{"version":3,"file":"findGuild.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuild.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,eAAe;IAC5B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YAC5C,IAAI,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAA;SAC3C;QAED,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAC1G,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findGuild.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuild.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,eAAe;IAC5B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YAC5C,IAAI,KAAK;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAA;SAC3C;QAED,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAC1G,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findGuildChannel.d.ts.map b/dist/native/lookup/findGuildChannel.d.ts.map index cf861abf4e..3e4790181c 100644 --- a/dist/native/lookup/findGuildChannel.d.ts.map +++ b/dist/native/lookup/findGuildChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findGuildChannel.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuildChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,uBAAuB,QAAW,CAAA;;;;;;;;;;;;;;;;;;;AAE/C,wBA2CE"} \ No newline at end of file +{"version":3,"file":"findGuildChannel.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuildChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,uBAAuB,QAAW,CAAA;;;;;;;;;;;;;;;;;;;AAE/C,wBA2CE"} \ No newline at end of file diff --git a/dist/native/lookup/findGuildChannel.js b/dist/native/lookup/findGuildChannel.js index f6f6361fa8..8dbf0a2c49 100644 --- a/dist/native/lookup/findGuildChannel.js +++ b/dist/native/lookup/findGuildChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ChannelMentionCharRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/lookup/findGuildChannel.js.map b/dist/native/lookup/findGuildChannel.js.map index 503b1d04ce..eaa287a723 100644 --- a/dist/native/lookup/findGuildChannel.js.map +++ b/dist/native/lookup/findGuildChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"findGuildChannel.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuildChannel.ts"],"names":[],"mappings":";;;AAAA,iDAAoF;AAEvE,QAAA,uBAAuB,GAAG,QAAQ,CAAA;AAE/C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QACvB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,+BAAuB,EAAE,EAAE,CAAC,CAAA;QAEjD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,EAAE,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACvC,IAAI,EAAE;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,CAAA;SACrC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE;YAC3E,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CACzC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findGuildChannel.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuildChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAoF;AAEvE,QAAA,uBAAuB,GAAG,QAAQ,CAAA;AAE/C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QACvB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,+BAAuB,EAAE,EAAE,CAAC,CAAA;QAEjD,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,EAAE,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACvC,IAAI,EAAE;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,CAAA;SACrC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE;YAC3E,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CACzC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findGuildEmoji.d.ts.map b/dist/native/lookup/findGuildEmoji.d.ts.map index 268d92294c..06fd28cb85 100644 --- a/dist/native/lookup/findGuildEmoji.d.ts.map +++ b/dist/native/lookup/findGuildEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findGuildEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuildEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBAiCE"} \ No newline at end of file +{"version":3,"file":"findGuildEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findGuildEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBAiCE"} \ No newline at end of file diff --git a/dist/native/lookup/findGuildEmoji.js b/dist/native/lookup/findGuildEmoji.js index 1d70054304..9214b4c430 100644 --- a/dist/native/lookup/findGuildEmoji.js +++ b/dist/native/lookup/findGuildEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/lookup/findGuildEmoji.js.map b/dist/native/lookup/findGuildEmoji.js.map index 1e491add59..e8c0cf2564 100644 --- a/dist/native/lookup/findGuildEmoji.js.map +++ b/dist/native/lookup/findGuildEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"findGuildEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuildEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC;QACnB,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YACnC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CACpH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findGuildEmoji.js","sourceRoot":"","sources":["../../../src/native/lookup/findGuildEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,UAAU;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC;QACnB,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAClC,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;YACnC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,OAAO,IAAI,CAAC,OAAO,CACf,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CACpH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findMember.d.ts.map b/dist/native/lookup/findMember.d.ts.map index b7a71302b4..7b668b5d56 100644 --- a/dist/native/lookup/findMember.d.ts.map +++ b/dist/native/lookup/findMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findMember.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findMember.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAEpF,wBA+CE"} \ No newline at end of file +{"version":3,"file":"findMember.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findMember.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAEpF,wBA+CE"} \ No newline at end of file diff --git a/dist/native/lookup/findMember.js b/dist/native/lookup/findMember.js index ed8b5bf25f..bf9f0deaf0 100644 --- a/dist/native/lookup/findMember.js +++ b/dist/native/lookup/findMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/lookup/findMember.js.map b/dist/native/lookup/findMember.js.map index 7b5e6f3b6b..734dbd37c8 100644 --- a/dist/native/lookup/findMember.js.map +++ b/dist/native/lookup/findMember.js.map @@ -1 +1 @@ -{"version":3,"file":"findMember.js","sourceRoot":"","sources":["../../../src/native/lookup/findMember.ts"],"names":[],"mappings":";;AACA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QAC7B,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAA;QAE5C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACvD,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,MAAM,KAAK,GAAG,MAAM,KAAK,CAAC,OAAO;aAC5B,MAAM,CAAC;YACJ,KAAK,EAAE,CAAC;SACX,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findMember.js","sourceRoot":"","sources":["../../../src/native/lookup/findMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QAC7B,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAA;QAE5C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACvD,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,MAAM,KAAK,GAAG,MAAM,KAAK,CAAC,OAAO;aAC5B,MAAM,CAAC;YACJ,KAAK,EAAE,CAAC;SACX,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findMembers.d.ts.map b/dist/native/lookup/findMembers.d.ts.map index 6eec0e507d..4023526636 100644 --- a/dist/native/lookup/findMembers.d.ts.map +++ b/dist/native/lookup/findMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findMembers.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findMembers.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBA2BE"} \ No newline at end of file +{"version":3,"file":"findMembers.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findMembers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBA2BE"} \ No newline at end of file diff --git a/dist/native/lookup/findMembers.js b/dist/native/lookup/findMembers.js index fd5faef41f..182e0e6815 100644 --- a/dist/native/lookup/findMembers.js +++ b/dist/native/lookup/findMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/lookup/findMembers.js.map b/dist/native/lookup/findMembers.js.map index f2e8c8a74c..0de963d637 100644 --- a/dist/native/lookup/findMembers.js.map +++ b/dist/native/lookup/findMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"findMembers.js","sourceRoot":"","sources":["../../../src/native/lookup/findMembers.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,oDAA0E;AAC1E,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,gBAAG,CAAC,aAAa,EAAE;QACnB,gBAAG,CAAC,cAAc,CAAC,OAAO,EAAE,kBAAkB,CAAC;QAC/C,gBAAG,CAAC,cAAc,CAAC,OAAO,EAAE,sBAAsB,CAAC;QACnD,gBAAG,CAAC,YAAY,CAAC,uBAAc,CAAC;QAChC,gBAAG,CAAC,cAAc,CAAC,WAAW,EAAE,uCAAuC,CAAC;KAC3E;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,CAAC;QAC7C,KAAK,KAAK,EAAE,CAAA;QACZ,EAAE,KAAK,uBAAc,CAAC,EAAE,CAAA;QAExB,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO;aAC7B,MAAM,CAAC;YACJ,KAAK;YACL,KAAK;SACR,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAgB,CAAC,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findMembers.js","sourceRoot":"","sources":["../../../src/native/lookup/findMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,oDAA0E;AAC1E,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,gBAAG,CAAC,aAAa,EAAE;QACnB,gBAAG,CAAC,cAAc,CAAC,OAAO,EAAE,kBAAkB,CAAC;QAC/C,gBAAG,CAAC,cAAc,CAAC,OAAO,EAAE,sBAAsB,CAAC;QACnD,gBAAG,CAAC,YAAY,CAAC,uBAAc,CAAC;QAChC,gBAAG,CAAC,cAAc,CAAC,WAAW,EAAE,uCAAuC,CAAC;KAC3E;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,CAAC;QAC7C,KAAK,KAAK,EAAE,CAAA;QACZ,EAAE,KAAK,uBAAc,CAAC,EAAE,CAAA;QAExB,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO;aAC7B,MAAM,CAAC;YACJ,KAAK;YACL,KAAK;SACR,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAgB,CAAC,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findRole.d.ts.map b/dist/native/lookup/findRole.d.ts.map index 71a273fd79..ed8bd1f262 100644 --- a/dist/native/lookup/findRole.d.ts.map +++ b/dist/native/lookup/findRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findRole.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findRole.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,oBAAoB,QAAY,CAAA;;;;;;;;;;;;;;AAE7C,wBAmCE"} \ No newline at end of file +{"version":3,"file":"findRole.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findRole.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,oBAAoB,QAAY,CAAA;;;;;;;;;;;;;;AAE7C,wBAmCE"} \ No newline at end of file diff --git a/dist/native/lookup/findRole.js b/dist/native/lookup/findRole.js index 196adfdd3a..0accde93f9 100644 --- a/dist/native/lookup/findRole.js +++ b/dist/native/lookup/findRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.RoleMentionCharRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/lookup/findRole.js.map b/dist/native/lookup/findRole.js.map index aa781f9796..1145028bb4 100644 --- a/dist/native/lookup/findRole.js.map +++ b/dist/native/lookup/findRole.js.map @@ -1 +1 @@ -{"version":3,"file":"findRole.js","sourceRoot":"","sources":["../../../src/native/lookup/findRole.ts"],"names":[],"mappings":";;;AAAA,iDAAoF;AAEvE,QAAA,oBAAoB,GAAG,SAAS,CAAA;AAE7C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC;QACnB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,EAAE,EAAE,CAAC,CAAA;QAE9C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACnC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findRole.js","sourceRoot":"","sources":["../../../src/native/lookup/findRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAoF;AAEvE,QAAA,oBAAoB,GAAG,SAAS,CAAA;AAE7C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC;QACnB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,EAAE,EAAE,CAAC,CAAA;QAE9C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACnC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findRoles.d.ts.map b/dist/native/lookup/findRoles.d.ts.map index fa802c6c07..bcb959bd71 100644 --- a/dist/native/lookup/findRoles.d.ts.map +++ b/dist/native/lookup/findRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findRoles.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjD,wBAmEE"} \ No newline at end of file +{"version":3,"file":"findRoles.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjD,wBAmEE"} \ No newline at end of file diff --git a/dist/native/lookup/findRoles.js b/dist/native/lookup/findRoles.js index 1547316d52..d2b4161ffe 100644 --- a/dist/native/lookup/findRoles.js +++ b/dist/native/lookup/findRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/lookup/findRoles.js.map b/dist/native/lookup/findRoles.js.map index cd6c333cb7..c7c61d1381 100644 --- a/dist/native/lookup/findRoles.js.map +++ b/dist/native/lookup/findRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"findRoles.js","sourceRoot":"","sources":["../../../src/native/lookup/findRoles.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kEAAyC;AACzC,gDAAoE;AACpE,yCAAiD;AACjD,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAgB;SACzB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,CAAE;QACnD,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,+BAAoB,EAAE,EAAE,CAAC,CAAA;QAC/C,KAAK,KAAK,EAAE,CAAA;QACZ,IAAI,KAAK,mBAAY,CAAC,EAAE,CAAA;QAExB,MAAM,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE;YAC3C,QAAO,MAAM,EAAE;gBACX,KAAK,+BAAgB,CAAC,UAAU;oBAC5B,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAA;gBACrE,KAAK,+BAAgB,CAAC,QAAQ;oBAC1B,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;gBACjE;oBACI,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;aACpE;QACL,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QAE3B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,qBAAc,CAAC,IAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findRoles.js","sourceRoot":"","sources":["../../../src/native/lookup/findRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kEAAyC;AACzC,gDAAoE;AACpE,yCAAiD;AACjD,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAgB;SACzB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,CAAE;QACnD,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,+BAAoB,EAAE,EAAE,CAAC,CAAA;QAC/C,KAAK,KAAK,EAAE,CAAA;QACZ,IAAI,KAAK,mBAAY,CAAC,EAAE,CAAA;QAExB,MAAM,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE;YAC3C,QAAO,MAAM,EAAE;gBACX,KAAK,+BAAgB,CAAC,UAAU;oBAC5B,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAA;gBACrE,KAAK,+BAAgB,CAAC,QAAQ;oBAC1B,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;gBACjE;oBACI,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAA;aACpE;QACL,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QAE3B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,qBAAc,CAAC,IAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/lookup/findUser.d.ts.map b/dist/native/lookup/findUser.d.ts.map index 4bed240204..5b5560b425 100644 --- a/dist/native/lookup/findUser.d.ts.map +++ b/dist/native/lookup/findUser.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findUser.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findUser.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,oBAAoB,QAAW,CAAA;;;;;;;;;;;;;AAE5C,wBAqCE"} \ No newline at end of file +{"version":3,"file":"findUser.d.ts","sourceRoot":"","sources":["../../../src/native/lookup/findUser.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAEpF,eAAO,MAAM,oBAAoB,QAAW,CAAA;;;;;;;;;;;;;AAE5C,wBAqCE"} \ No newline at end of file diff --git a/dist/native/lookup/findUser.js b/dist/native/lookup/findUser.js index 3f6127bd9a..a195c82aa1 100644 --- a/dist/native/lookup/findUser.js +++ b/dist/native/lookup/findUser.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.UserMentionCharRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/lookup/findUser.js.map b/dist/native/lookup/findUser.js.map index 877a5ad4cb..62a6998258 100644 --- a/dist/native/lookup/findUser.js.map +++ b/dist/native/lookup/findUser.js.map @@ -1 +1 @@ -{"version":3,"file":"findUser.js","sourceRoot":"","sources":["../../../src/native/lookup/findUser.ts"],"names":[],"mappings":";;;AACA,iDAAoF;AAEvE,QAAA,oBAAoB,GAAG,QAAQ,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,cAAc;IAC3B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QACtB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,EAAE,EAAE,CAAC,CAAA;QAE9C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC1D,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE;YAClF,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CACtC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"findUser.js","sourceRoot":"","sources":["../../../src/native/lookup/findUser.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,iDAAoF;AAEvE,QAAA,oBAAoB,GAAG,QAAQ,CAAA;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,cAAc;IAC3B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QACtB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,EAAE,EAAE,CAAC,CAAA;QAE9C,IAAI,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YACnC,MAAM,CAAC,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC1D,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACnC;QAED,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;QAEnB,OAAO,IAAI,CAAC,OAAO,CACf,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE;YAClF,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CACtC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/abs.d.ts.map b/dist/native/math/abs.d.ts.map index b5a897be7d..4bb88e65e0 100644 --- a/dist/native/math/abs.d.ts.map +++ b/dist/native/math/abs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"abs.d.ts","sourceRoot":"","sources":["../../../src/native/math/abs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"abs.d.ts","sourceRoot":"","sources":["../../../src/native/math/abs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/math/abs.js b/dist/native/math/abs.js index e1eb480a39..6a0849647f 100644 --- a/dist/native/math/abs.js +++ b/dist/native/math/abs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/abs.js.map b/dist/native/math/abs.js.map index dad51793f5..321ad9ab9f 100644 --- a/dist/native/math/abs.js.map +++ b/dist/native/math/abs.js.map @@ -1 +1 @@ -{"version":3,"file":"abs.js","sourceRoot":"","sources":["../../../src/native/math/abs.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EACP,yGAAyG;IAC7G,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"abs.js","sourceRoot":"","sources":["../../../src/native/math/abs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EACP,yGAAyG;IAC7G,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/base.d.ts.map b/dist/native/math/base.d.ts.map index 93392287b7..f03319f167 100644 --- a/dist/native/math/base.d.ts.map +++ b/dist/native/math/base.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/native/math/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/native/math/base.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/math/base.js b/dist/native/math/base.js index bb8f866249..ace6ada3b4 100644 --- a/dist/native/math/base.js +++ b/dist/native/math/base.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/base.js.map b/dist/native/math/base.js.map index 2267dfd2b3..00534f371e 100644 --- a/dist/native/math/base.js.map +++ b/dist/native/math/base.js.map @@ -1 +1 @@ -{"version":3,"file":"base.js","sourceRoot":"","sources":["../../../src/native/math/base.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"base.js","sourceRoot":"","sources":["../../../src/native/math/base.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/bigintDivide.d.ts.map b/dist/native/math/bigintDivide.d.ts.map index 9cbd899326..a94c599678 100644 --- a/dist/native/math/bigintDivide.d.ts.map +++ b/dist/native/math/bigintDivide.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bigintDivide.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintDivide.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bigintDivide.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintDivide.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/bigintDivide.js b/dist/native/math/bigintDivide.js index 1054f8a8d7..080795670b 100644 --- a/dist/native/math/bigintDivide.js +++ b/dist/native/math/bigintDivide.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/bigintDivide.js.map b/dist/native/math/bigintDivide.js.map index d2b2106eac..a36d0b0d6f 100644 --- a/dist/native/math/bigintDivide.js.map +++ b/dist/native/math/bigintDivide.js.map @@ -1 +1 @@ -{"version":3,"file":"bigintDivide.js","sourceRoot":"","sources":["../../../src/native/math/bigintDivide.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bigintDivide.js","sourceRoot":"","sources":["../../../src/native/math/bigintDivide.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/bigintMulti.d.ts.map b/dist/native/math/bigintMulti.d.ts.map index 355ee354c6..3f115eba30 100644 --- a/dist/native/math/bigintMulti.d.ts.map +++ b/dist/native/math/bigintMulti.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bigintMulti.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintMulti.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bigintMulti.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintMulti.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/bigintMulti.js b/dist/native/math/bigintMulti.js index d3712cd835..2eb5d3ab0a 100644 --- a/dist/native/math/bigintMulti.js +++ b/dist/native/math/bigintMulti.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/bigintMulti.js.map b/dist/native/math/bigintMulti.js.map index dcf9daf5fc..cd6fbc4e90 100644 --- a/dist/native/math/bigintMulti.js.map +++ b/dist/native/math/bigintMulti.js.map @@ -1 +1 @@ -{"version":3,"file":"bigintMulti.js","sourceRoot":"","sources":["../../../src/native/math/bigintMulti.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bigintMulti.js","sourceRoot":"","sources":["../../../src/native/math/bigintMulti.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/bigintSub.d.ts.map b/dist/native/math/bigintSub.d.ts.map index a996ed76bd..4a70912d0b 100644 --- a/dist/native/math/bigintSub.d.ts.map +++ b/dist/native/math/bigintSub.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bigintSub.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintSub.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bigintSub.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintSub.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/bigintSub.js b/dist/native/math/bigintSub.js index 2b9bd298dc..53fe509093 100644 --- a/dist/native/math/bigintSub.js +++ b/dist/native/math/bigintSub.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/bigintSub.js.map b/dist/native/math/bigintSub.js.map index 8815dd91fb..b4854bc700 100644 --- a/dist/native/math/bigintSub.js.map +++ b/dist/native/math/bigintSub.js.map @@ -1 +1 @@ -{"version":3,"file":"bigintSub.js","sourceRoot":"","sources":["../../../src/native/math/bigintSub.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bigintSub.js","sourceRoot":"","sources":["../../../src/native/math/bigintSub.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/bigintSum.d.ts.map b/dist/native/math/bigintSum.d.ts.map index d66660f52e..2805e0e546 100644 --- a/dist/native/math/bigintSum.d.ts.map +++ b/dist/native/math/bigintSum.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bigintSum.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintSum.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElG,wBAmBE"} \ No newline at end of file +{"version":3,"file":"bigintSum.d.ts","sourceRoot":"","sources":["../../../src/native/math/bigintSum.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElG,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/bigintSum.js b/dist/native/math/bigintSum.js index 2cd6822bad..0445896fb8 100644 --- a/dist/native/math/bigintSum.js +++ b/dist/native/math/bigintSum.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/bigintSum.js.map b/dist/native/math/bigintSum.js.map index d5177a847d..188b222a4a 100644 --- a/dist/native/math/bigintSum.js.map +++ b/dist/native/math/bigintSum.js.map @@ -1 +1 @@ -{"version":3,"file":"bigintSum.js","sourceRoot":"","sources":["../../../src/native/math/bigintSum.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bigintSum.js","sourceRoot":"","sources":["../../../src/native/math/bigintSum.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/ceil.d.ts.map b/dist/native/math/ceil.d.ts.map index 75d114ab1d..f34220c25d 100644 --- a/dist/native/math/ceil.d.ts.map +++ b/dist/native/math/ceil.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ceil.d.ts","sourceRoot":"","sources":["../../../src/native/math/ceil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"ceil.d.ts","sourceRoot":"","sources":["../../../src/native/math/ceil.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/ceil.js b/dist/native/math/ceil.js index 92174870c3..cc393ab4fc 100644 --- a/dist/native/math/ceil.js +++ b/dist/native/math/ceil.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/ceil.js.map b/dist/native/math/ceil.js.map index 42b8fd94bc..b24d9ab9ab 100644 --- a/dist/native/math/ceil.js.map +++ b/dist/native/math/ceil.js.map @@ -1 +1 @@ -{"version":3,"file":"ceil.js","sourceRoot":"","sources":["../../../src/native/math/ceil.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ceil.js","sourceRoot":"","sources":["../../../src/native/math/ceil.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/divide.d.ts.map b/dist/native/math/divide.d.ts.map index fb80ef1e04..cc9d3730a7 100644 --- a/dist/native/math/divide.d.ts.map +++ b/dist/native/math/divide.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"divide.d.ts","sourceRoot":"","sources":["../../../src/native/math/divide.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"divide.d.ts","sourceRoot":"","sources":["../../../src/native/math/divide.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/divide.js b/dist/native/math/divide.js index 90e1cc2615..6e959e00d8 100644 --- a/dist/native/math/divide.js +++ b/dist/native/math/divide.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/divide.js.map b/dist/native/math/divide.js.map index f1057d51ff..0a65c0eff1 100644 --- a/dist/native/math/divide.js.map +++ b/dist/native/math/divide.js.map @@ -1 +1 @@ -{"version":3,"file":"divide.js","sourceRoot":"","sources":["../../../src/native/math/divide.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"divide.js","sourceRoot":"","sources":["../../../src/native/math/divide.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/floor.d.ts.map b/dist/native/math/floor.d.ts.map index 2c12a7f945..3c7f3edeec 100644 --- a/dist/native/math/floor.d.ts.map +++ b/dist/native/math/floor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"floor.d.ts","sourceRoot":"","sources":["../../../src/native/math/floor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"floor.d.ts","sourceRoot":"","sources":["../../../src/native/math/floor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/floor.js b/dist/native/math/floor.js index 1825524e8e..329578e225 100644 --- a/dist/native/math/floor.js +++ b/dist/native/math/floor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/floor.js.map b/dist/native/math/floor.js.map index 98a604f7e5..8f0fdfacf3 100644 --- a/dist/native/math/floor.js.map +++ b/dist/native/math/floor.js.map @@ -1 +1 @@ -{"version":3,"file":"floor.js","sourceRoot":"","sources":["../../../src/native/math/floor.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"floor.js","sourceRoot":"","sources":["../../../src/native/math/floor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yEAAyE;IACtF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/logn.d.ts.map b/dist/native/math/logn.d.ts.map index 6643f062b8..320bb70dc4 100644 --- a/dist/native/math/logn.d.ts.map +++ b/dist/native/math/logn.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"logn.d.ts","sourceRoot":"","sources":["../../../src/native/math/logn.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"logn.d.ts","sourceRoot":"","sources":["../../../src/native/math/logn.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/logn.js b/dist/native/math/logn.js index a7eb9378f1..7a1488a410 100644 --- a/dist/native/math/logn.js +++ b/dist/native/math/logn.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/logn.js.map b/dist/native/math/logn.js.map index 9bb49487c4..a58e073e31 100644 --- a/dist/native/math/logn.js.map +++ b/dist/native/math/logn.js.map @@ -1 +1 @@ -{"version":3,"file":"logn.js","sourceRoot":"","sources":["../../../src/native/math/logn.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"logn.js","sourceRoot":"","sources":["../../../src/native/math/logn.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/math.d.ts.map b/dist/native/math/math.d.ts.map index f705363c7c..67a2daf577 100644 --- a/dist/native/math/math.d.ts.map +++ b/dist/native/math/math.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"math.d.ts","sourceRoot":"","sources":["../../../src/native/math/math.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"math.d.ts","sourceRoot":"","sources":["../../../src/native/math/math.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAIlE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/math/math.js b/dist/native/math/math.js index 25e08d8c6e..0dc6c5e501 100644 --- a/dist/native/math/math.js +++ b/dist/native/math/math.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const MathRegex = /[^0-9%\-+./*\t\n\s()<>]/; diff --git a/dist/native/math/math.js.map b/dist/native/math/math.js.map index 2bd6e59050..b46a9b2727 100644 --- a/dist/native/math/math.js.map +++ b/dist/native/math/math.js.map @@ -1 +1 @@ -{"version":3,"file":"math.js","sourceRoot":"","sources":["../../../src/native/math/math.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,MAAM,SAAS,GAAG,yBAAyB,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI;YACA,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;YAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;SAClC;QAAC,OAAO,KAAU,EAAE;YACjB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"math.js","sourceRoot":"","sources":["../../../src/native/math/math.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,MAAM,SAAS,GAAG,yBAAyB,CAAA;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI;YACA,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;YAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;SAClC;QAAC,OAAO,KAAU,EAAE;YACjB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/max.d.ts.map b/dist/native/math/max.d.ts.map index d8b7a989bd..0dc739a8af 100644 --- a/dist/native/math/max.d.ts.map +++ b/dist/native/math/max.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"max.d.ts","sourceRoot":"","sources":["../../../src/native/math/max.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"max.d.ts","sourceRoot":"","sources":["../../../src/native/math/max.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/max.js b/dist/native/math/max.js index 4d994692e4..15460dd67a 100644 --- a/dist/native/math/max.js +++ b/dist/native/math/max.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/max.js.map b/dist/native/math/max.js.map index 41a3aabf8d..bd48837e3b 100644 --- a/dist/native/math/max.js.map +++ b/dist/native/math/max.js.map @@ -1 +1 @@ -{"version":3,"file":"max.js","sourceRoot":"","sources":["../../../src/native/math/max.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"max.js","sourceRoot":"","sources":["../../../src/native/math/max.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/min.d.ts.map b/dist/native/math/min.d.ts.map index ba45eb728d..dde1125397 100644 --- a/dist/native/math/min.d.ts.map +++ b/dist/native/math/min.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"min.d.ts","sourceRoot":"","sources":["../../../src/native/math/min.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"min.d.ts","sourceRoot":"","sources":["../../../src/native/math/min.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/min.js b/dist/native/math/min.js index 7509a8a4f1..2dd262585e 100644 --- a/dist/native/math/min.js +++ b/dist/native/math/min.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/min.js.map b/dist/native/math/min.js.map index 07e236edc9..38e8c75c86 100644 --- a/dist/native/math/min.js.map +++ b/dist/native/math/min.js.map @@ -1 +1 @@ -{"version":3,"file":"min.js","sourceRoot":"","sources":["../../../src/native/math/min.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"min.js","sourceRoot":"","sources":["../../../src/native/math/min.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/modulo.d.ts.map b/dist/native/math/modulo.d.ts.map index b5785b6dec..b10ad534cf 100644 --- a/dist/native/math/modulo.d.ts.map +++ b/dist/native/math/modulo.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"modulo.d.ts","sourceRoot":"","sources":["../../../src/native/math/modulo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"modulo.d.ts","sourceRoot":"","sources":["../../../src/native/math/modulo.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/modulo.js b/dist/native/math/modulo.js index a0dbb6e192..6bbc445b6c 100644 --- a/dist/native/math/modulo.js +++ b/dist/native/math/modulo.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/modulo.js.map b/dist/native/math/modulo.js.map index 6256ca96ba..52ad568d81 100644 --- a/dist/native/math/modulo.js.map +++ b/dist/native/math/modulo.js.map @@ -1 +1 @@ -{"version":3,"file":"modulo.js","sourceRoot":"","sources":["../../../src/native/math/modulo.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"modulo.js","sourceRoot":"","sources":["../../../src/native/math/modulo.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/multi.d.ts.map b/dist/native/math/multi.d.ts.map index 23cd3001bf..7349eb54e6 100644 --- a/dist/native/math/multi.d.ts.map +++ b/dist/native/math/multi.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"multi.d.ts","sourceRoot":"","sources":["../../../src/native/math/multi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"multi.d.ts","sourceRoot":"","sources":["../../../src/native/math/multi.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/multi.js b/dist/native/math/multi.js index 79aba4dda3..f7e1ee8416 100644 --- a/dist/native/math/multi.js +++ b/dist/native/math/multi.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/multi.js.map b/dist/native/math/multi.js.map index 7fd5052c27..7cf23defb8 100644 --- a/dist/native/math/multi.js.map +++ b/dist/native/math/multi.js.map @@ -1 +1 @@ -{"version":3,"file":"multi.js","sourceRoot":"","sources":["../../../src/native/math/multi.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"multi.js","sourceRoot":"","sources":["../../../src/native/math/multi.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/pi.d.ts.map b/dist/native/math/pi.d.ts.map index 4c7643a69b..a864406997 100644 --- a/dist/native/math/pi.d.ts.map +++ b/dist/native/math/pi.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pi.d.ts","sourceRoot":"","sources":["../../../src/native/math/pi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"pi.d.ts","sourceRoot":"","sources":["../../../src/native/math/pi.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/math/pi.js b/dist/native/math/pi.js index eb818e9b10..1c8763991c 100644 --- a/dist/native/math/pi.js +++ b/dist/native/math/pi.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/pi.js.map b/dist/native/math/pi.js.map index d2e41a703f..b7a1de4c4b 100644 --- a/dist/native/math/pi.js.map +++ b/dist/native/math/pi.js.map @@ -1 +1 @@ -{"version":3,"file":"pi.js","sourceRoot":"","sources":["../../../src/native/math/pi.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pi.js","sourceRoot":"","sources":["../../../src/native/math/pi.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/pow.d.ts.map b/dist/native/math/pow.d.ts.map index 64927adfd8..a836def4b0 100644 --- a/dist/native/math/pow.d.ts.map +++ b/dist/native/math/pow.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pow.d.ts","sourceRoot":"","sources":["../../../src/native/math/pow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"pow.d.ts","sourceRoot":"","sources":["../../../src/native/math/pow.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/math/pow.js b/dist/native/math/pow.js index 664850ae76..7ec78a95e4 100644 --- a/dist/native/math/pow.js +++ b/dist/native/math/pow.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/pow.js.map b/dist/native/math/pow.js.map index f766e11fd6..2caf29ddf5 100644 --- a/dist/native/math/pow.js.map +++ b/dist/native/math/pow.js.map @@ -1 +1 @@ -{"version":3,"file":"pow.js","sourceRoot":"","sources":["../../../src/native/math/pow.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pow.js","sourceRoot":"","sources":["../../../src/native/math/pow.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,QAAQ,CAAC;IACnB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/round.d.ts.map b/dist/native/math/round.d.ts.map index 0adeca1e15..bd0fb38ac5 100644 --- a/dist/native/math/round.d.ts.map +++ b/dist/native/math/round.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"round.d.ts","sourceRoot":"","sources":["../../../src/native/math/round.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"round.d.ts","sourceRoot":"","sources":["../../../src/native/math/round.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/math/round.js b/dist/native/math/round.js index a66ea5f1f9..5a09716700 100644 --- a/dist/native/math/round.js +++ b/dist/native/math/round.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/round.js.map b/dist/native/math/round.js.map index c2d3bcfa72..cffd9b6a28 100644 --- a/dist/native/math/round.js.map +++ b/dist/native/math/round.js.map @@ -1 +1 @@ -{"version":3,"file":"round.js","sourceRoot":"","sources":["../../../src/native/math/round.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"round.js","sourceRoot":"","sources":["../../../src/native/math/round.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/sign.d.ts.map b/dist/native/math/sign.d.ts.map index 9afb0000ea..d4ee078374 100644 --- a/dist/native/math/sign.d.ts.map +++ b/dist/native/math/sign.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sign.d.ts","sourceRoot":"","sources":["../../../src/native/math/sign.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"sign.d.ts","sourceRoot":"","sources":["../../../src/native/math/sign.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/sign.js b/dist/native/math/sign.js index 9e73b6d7cc..c158422e37 100644 --- a/dist/native/math/sign.js +++ b/dist/native/math/sign.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/sign.js.map b/dist/native/math/sign.js.map index 082deab227..4fef982847 100644 --- a/dist/native/math/sign.js.map +++ b/dist/native/math/sign.js.map @@ -1 +1 @@ -{"version":3,"file":"sign.js","sourceRoot":"","sources":["../../../src/native/math/sign.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sign.js","sourceRoot":"","sources":["../../../src/native/math/sign.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/sqrt.d.ts.map b/dist/native/math/sqrt.d.ts.map index a63d6ea429..da8b989dbd 100644 --- a/dist/native/math/sqrt.d.ts.map +++ b/dist/native/math/sqrt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sqrt.d.ts","sourceRoot":"","sources":["../../../src/native/math/sqrt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"sqrt.d.ts","sourceRoot":"","sources":["../../../src/native/math/sqrt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/sqrt.js b/dist/native/math/sqrt.js index 6dae5a69d9..f07d0e4c43 100644 --- a/dist/native/math/sqrt.js +++ b/dist/native/math/sqrt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/sqrt.js.map b/dist/native/math/sqrt.js.map index 77f99ac188..0f01199419 100644 --- a/dist/native/math/sqrt.js.map +++ b/dist/native/math/sqrt.js.map @@ -1 +1 @@ -{"version":3,"file":"sqrt.js","sourceRoot":"","sources":["../../../src/native/math/sqrt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sqrt.js","sourceRoot":"","sources":["../../../src/native/math/sqrt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/sub.d.ts.map b/dist/native/math/sub.d.ts.map index dd2e0816d9..5c6dcc4bda 100644 --- a/dist/native/math/sub.d.ts.map +++ b/dist/native/math/sub.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sub.d.ts","sourceRoot":"","sources":["../../../src/native/math/sub.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"sub.d.ts","sourceRoot":"","sources":["../../../src/native/math/sub.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/sub.js b/dist/native/math/sub.js index 75ff974a4c..7d3dc17331 100644 --- a/dist/native/math/sub.js +++ b/dist/native/math/sub.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/sub.js.map b/dist/native/math/sub.js.map index 6a9c76f716..02c3941fe9 100644 --- a/dist/native/math/sub.js.map +++ b/dist/native/math/sub.js.map @@ -1 +1 @@ -{"version":3,"file":"sub.js","sourceRoot":"","sources":["../../../src/native/math/sub.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sub.js","sourceRoot":"","sources":["../../../src/native/math/sub.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/sum.d.ts.map b/dist/native/math/sum.d.ts.map index 87bbd9d5cd..7080c76fe7 100644 --- a/dist/native/math/sum.d.ts.map +++ b/dist/native/math/sum.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sum.d.ts","sourceRoot":"","sources":["../../../src/native/math/sum.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElG,wBAmBE"} \ No newline at end of file +{"version":3,"file":"sum.d.ts","sourceRoot":"","sources":["../../../src/native/math/sum.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElG,wBAmBE"} \ No newline at end of file diff --git a/dist/native/math/sum.js b/dist/native/math/sum.js index 7aeb0dddad..50f6f05ad1 100644 --- a/dist/native/math/sum.js +++ b/dist/native/math/sum.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/sum.js.map b/dist/native/math/sum.js.map index f3fb74640d..1fbf064e68 100644 --- a/dist/native/math/sum.js.map +++ b/dist/native/math/sum.js.map @@ -1 +1 @@ -{"version":3,"file":"sum.js","sourceRoot":"","sources":["../../../src/native/math/sum.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sum.js","sourceRoot":"","sources":["../../../src/native/math/sum.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/math/trunc.d.ts.map b/dist/native/math/trunc.d.ts.map index 020cc47e7b..3fe66e0178 100644 --- a/dist/native/math/trunc.d.ts.map +++ b/dist/native/math/trunc.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"trunc.d.ts","sourceRoot":"","sources":["../../../src/native/math/trunc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"trunc.d.ts","sourceRoot":"","sources":["../../../src/native/math/trunc.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/math/trunc.js b/dist/native/math/trunc.js index 6c645aabc1..2170db239b 100644 --- a/dist/native/math/trunc.js +++ b/dist/native/math/trunc.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/math/trunc.js.map b/dist/native/math/trunc.js.map index c8eb0d6d82..8d9145dafe 100644 --- a/dist/native/math/trunc.js.map +++ b/dist/native/math/trunc.js.map @@ -1 +1 @@ -{"version":3,"file":"trunc.js","sourceRoot":"","sources":["../../../src/native/math/trunc.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sIAAsI;IACnJ,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"trunc.js","sourceRoot":"","sources":["../../../src/native/math/trunc.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sIAAsI;IACnJ,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/ban.d.ts.map b/dist/native/member/ban.d.ts.map index 4d105f9aa9..ed26a9bfa4 100644 --- a/dist/native/member/ban.d.ts.map +++ b/dist/native/member/ban.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ban.d.ts","sourceRoot":"","sources":["../../../src/native/member/ban.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file +{"version":3,"file":"ban.d.ts","sourceRoot":"","sources":["../../../src/native/member/ban.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkDE"} \ No newline at end of file diff --git a/dist/native/member/ban.js b/dist/native/member/ban.js index 6a6d7ddb55..1129e25f34 100644 --- a/dist/native/member/ban.js +++ b/dist/native/member/ban.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/ban.js.map b/dist/native/member/ban.js.map index 0c3c3e7da5..6276c49236 100644 --- a/dist/native/member/ban.js.map +++ b/dist/native/member/ban.js.map @@ -1 +1 @@ -{"version":3,"file":"ban.js","sourceRoot":"","sources":["../../../src/native/member/ban.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,YAAY;KACf;IACD,WAAW,EACP,gHAAgH;IACpH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,wBAAwB;YAC9B,WAAW,EAAE,2EAA2E;YACxF,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,KAAK,CAAC,OAAO;aACf,GAAG,CAAC,IAAI,EAAE;YACP,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,oBAAoB,EAAE,OAAO,IAAI,SAAS;SAC7C,CAAC;aACD,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CACrC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ban.js","sourceRoot":"","sources":["../../../src/native/member/ban.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,YAAY;KACf;IACD,WAAW,EACP,gHAAgH;IACpH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,wBAAwB;YAC9B,WAAW,EAAE,2EAA2E;YACxF,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC;QAC7C,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,KAAK,CAAC,OAAO;aACf,GAAG,CAAC,IAAI,EAAE;YACP,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;YAC5B,oBAAoB,EAAE,OAAO,IAAI,SAAS;SAC7C,CAAC;aACD,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CACrC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/fetchMembers.d.ts.map b/dist/native/member/fetchMembers.d.ts.map index faea7b54d0..221ffc0f25 100644 --- a/dist/native/member/fetchMembers.d.ts.map +++ b/dist/native/member/fetchMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchMembers.d.ts","sourceRoot":"","sources":["../../../src/native/member/fetchMembers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"fetchMembers.d.ts","sourceRoot":"","sources":["../../../src/native/member/fetchMembers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/member/fetchMembers.js b/dist/native/member/fetchMembers.js index 6c267ff5ff..a9db532b28 100644 --- a/dist/native/member/fetchMembers.js +++ b/dist/native/member/fetchMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/fetchMembers.js.map b/dist/native/member/fetchMembers.js.map index 8a7bab36a3..74ff62a422 100644 --- a/dist/native/member/fetchMembers.js.map +++ b/dist/native/member/fetchMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchMembers.js","sourceRoot":"","sources":["../../../src/native/member/fetchMembers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QAC9B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,MAAM;YAAE,MAAM,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;;YACzC,MAAM,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchMembers.js","sourceRoot":"","sources":["../../../src/native/member/fetchMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QAC9B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,MAAM;YAAE,MAAM,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;;YACzC,MAAM,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/hasAnyPerms.d.ts b/dist/native/member/hasAnyPerms.d.ts index 854423e983..f17f4ce810 100644 --- a/dist/native/member/hasAnyPerms.d.ts +++ b/dist/native/member/hasAnyPerms.d.ts @@ -69,6 +69,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; required: true; }], true>; diff --git a/dist/native/member/hasAnyPerms.d.ts.map b/dist/native/member/hasAnyPerms.d.ts.map index ab8c504b45..6ebfdbc914 100644 --- a/dist/native/member/hasAnyPerms.d.ts.map +++ b/dist/native/member/hasAnyPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasAnyPerms.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"hasAnyPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasAnyPerms.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/member/hasAnyPerms.js b/dist/native/member/hasAnyPerms.js index def14c70dc..23a1a4c557 100644 --- a/dist/native/member/hasAnyPerms.js +++ b/dist/native/member/hasAnyPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/hasAnyPerms.js.map b/dist/native/member/hasAnyPerms.js.map index 20fd1c6406..623dea7f52 100644 --- a/dist/native/member/hasAnyPerms.js.map +++ b/dist/native/member/hasAnyPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyPerms.js","sourceRoot":"","sources":["../../../src/native/member/hasAnyPerms.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasAnyPerms.js","sourceRoot":"","sources":["../../../src/native/member/hasAnyPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,oBAAoB,CAAC;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/hasAnyRole.d.ts.map b/dist/native/member/hasAnyRole.d.ts.map index d96fa74fc1..1f7c4c3fe4 100644 --- a/dist/native/member/hasAnyRole.d.ts.map +++ b/dist/native/member/hasAnyRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyRole.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasAnyRole.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"hasAnyRole.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasAnyRole.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/member/hasAnyRole.js b/dist/native/member/hasAnyRole.js index ca3a5b9f41..14561a3aa9 100644 --- a/dist/native/member/hasAnyRole.js +++ b/dist/native/member/hasAnyRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/hasAnyRole.js.map b/dist/native/member/hasAnyRole.js.map index 67ddb15135..0ab674fb5e 100644 --- a/dist/native/member/hasAnyRole.js.map +++ b/dist/native/member/hasAnyRole.js.map @@ -1 +1 @@ -{"version":3,"file":"hasAnyRole.js","sourceRoot":"","sources":["../../../src/native/member/hasAnyRole.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasAnyRole.js","sourceRoot":"","sources":["../../../src/native/member/hasAnyRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/hasPerms.d.ts b/dist/native/member/hasPerms.d.ts index c9b8b1db5c..6247496a35 100644 --- a/dist/native/member/hasPerms.d.ts +++ b/dist/native/member/hasPerms.d.ts @@ -69,6 +69,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; required: true; }], true>; diff --git a/dist/native/member/hasPerms.d.ts.map b/dist/native/member/hasPerms.d.ts.map index 41bdf67a39..a61fee1410 100644 --- a/dist/native/member/hasPerms.d.ts.map +++ b/dist/native/member/hasPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasPerms.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"hasPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasPerms.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/member/hasPerms.js b/dist/native/member/hasPerms.js index eb84d01e22..130a511d17 100644 --- a/dist/native/member/hasPerms.js +++ b/dist/native/member/hasPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/hasPerms.js.map b/dist/native/member/hasPerms.js.map index 1cde4de324..bd4f03ec7f 100644 --- a/dist/native/member/hasPerms.js.map +++ b/dist/native/member/hasPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"hasPerms.js","sourceRoot":"","sources":["../../../src/native/member/hasPerms.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasPerms.js","sourceRoot":"","sources":["../../../src/native/member/hasPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/hasRoles.d.ts.map b/dist/native/member/hasRoles.d.ts.map index aa1a0dc25e..7c97b9cc2b 100644 --- a/dist/native/member/hasRoles.d.ts.map +++ b/dist/native/member/hasRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasRoles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"hasRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/hasRoles.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/member/hasRoles.js b/dist/native/member/hasRoles.js index b3f77dad35..f839d0e0cc 100644 --- a/dist/native/member/hasRoles.js +++ b/dist/native/member/hasRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/hasRoles.js.map b/dist/native/member/hasRoles.js.map index 5c46295af0..ef99bf8e73 100644 --- a/dist/native/member/hasRoles.js.map +++ b/dist/native/member/hasRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"hasRoles.js","sourceRoot":"","sources":["../../../src/native/member/hasRoles.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasRoles.js","sourceRoot":"","sources":["../../../src/native/member/hasRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isBanned.d.ts.map b/dist/native/member/isBanned.d.ts.map index d83712ab57..efaca76dca 100644 --- a/dist/native/member/isBanned.d.ts.map +++ b/dist/native/member/isBanned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isBanned.d.ts","sourceRoot":"","sources":["../../../src/native/member/isBanned.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"isBanned.d.ts","sourceRoot":"","sources":["../../../src/native/member/isBanned.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/member/isBanned.js b/dist/native/member/isBanned.js index ac545982d9..38ff094244 100644 --- a/dist/native/member/isBanned.js +++ b/dist/native/member/isBanned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isBanned.js.map b/dist/native/member/isBanned.js.map index 3e21c00646..67bd300567 100644 --- a/dist/native/member/isBanned.js.map +++ b/dist/native/member/isBanned.js.map @@ -1 +1 @@ -{"version":3,"file":"isBanned.js","sourceRoot":"","sources":["../../../src/native/member/isBanned.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,qCAAqC;IAClD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAA;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isBanned.js","sourceRoot":"","sources":["../../../src/native/member/isBanned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,qCAAqC;IAClD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAA;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isBoosting.d.ts.map b/dist/native/member/isBoosting.d.ts.map index bdc8512571..2b0085bb0b 100644 --- a/dist/native/member/isBoosting.d.ts.map +++ b/dist/native/member/isBoosting.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isBoosting.d.ts","sourceRoot":"","sources":["../../../src/native/member/isBoosting.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"isBoosting.d.ts","sourceRoot":"","sources":["../../../src/native/member/isBoosting.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/member/isBoosting.js b/dist/native/member/isBoosting.js index 752eadff41..cd502fbb9d 100644 --- a/dist/native/member/isBoosting.js +++ b/dist/native/member/isBoosting.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/isBoosting.js.map b/dist/native/member/isBoosting.js.map index f05c5af3b2..08b47a1e49 100644 --- a/dist/native/member/isBoosting.js.map +++ b/dist/native/member/isBoosting.js.map @@ -1 +1 @@ -{"version":3,"file":"isBoosting.js","sourceRoot":"","sources":["../../../src/native/member/isBoosting.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;QAClB,mBAAmB;KACtB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,aAAa,CAAC,CAAC,CAAA;IACzJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isBoosting.js","sourceRoot":"","sources":["../../../src/native/member/isBoosting.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,YAAY;QACZ,kBAAkB;QAClB,mBAAmB;KACtB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,aAAa,CAAC,CAAC,CAAA;IACzJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isDeaf.d.ts.map b/dist/native/member/isDeaf.d.ts.map index 41636ed788..e40db6e749 100644 --- a/dist/native/member/isDeaf.d.ts.map +++ b/dist/native/member/isDeaf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isDeaf.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isDeaf.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isDeaf.js b/dist/native/member/isDeaf.js index 027fa74c16..010e3b2600 100644 --- a/dist/native/member/isDeaf.js +++ b/dist/native/member/isDeaf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/isDeaf.js.map b/dist/native/member/isDeaf.js.map index 07b4c5cf8e..f231adb930 100644 --- a/dist/native/member/isDeaf.js.map +++ b/dist/native/member/isDeaf.js.map @@ -1 +1 @@ -{"version":3,"file":"isDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isDeaf.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isDeaf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;KAClB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isGuildDeaf.d.ts.map b/dist/native/member/isGuildDeaf.d.ts.map index 1b5fae208a..3e3389999d 100644 --- a/dist/native/member/isGuildDeaf.d.ts.map +++ b/dist/native/member/isGuildDeaf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isGuildDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isGuildDeaf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isGuildDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isGuildDeaf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isGuildDeaf.js b/dist/native/member/isGuildDeaf.js index f70697775e..3f4871364c 100644 --- a/dist/native/member/isGuildDeaf.js +++ b/dist/native/member/isGuildDeaf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isGuildDeaf.js.map b/dist/native/member/isGuildDeaf.js.map index c88f69b891..a7c1d67ec5 100644 --- a/dist/native/member/isGuildDeaf.js.map +++ b/dist/native/member/isGuildDeaf.js.map @@ -1 +1 @@ -{"version":3,"file":"isGuildDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isGuildDeaf.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isGuildDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isGuildDeaf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isGuildMuted.d.ts.map b/dist/native/member/isGuildMuted.d.ts.map index da26ff7cf8..1256f974ef 100644 --- a/dist/native/member/isGuildMuted.d.ts.map +++ b/dist/native/member/isGuildMuted.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isGuildMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isGuildMuted.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isGuildMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isGuildMuted.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isGuildMuted.js b/dist/native/member/isGuildMuted.js index db3a3dd851..b6eba1c99d 100644 --- a/dist/native/member/isGuildMuted.js +++ b/dist/native/member/isGuildMuted.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isGuildMuted.js.map b/dist/native/member/isGuildMuted.js.map index cd00ee9e65..3bc9ee8bcf 100644 --- a/dist/native/member/isGuildMuted.js.map +++ b/dist/native/member/isGuildMuted.js.map @@ -1 +1 @@ -{"version":3,"file":"isGuildMuted.js","sourceRoot":"","sources":["../../../src/native/member/isGuildMuted.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isGuildMuted.js","sourceRoot":"","sources":["../../../src/native/member/isGuildMuted.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,qBAAqB;KACxB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isMuted.d.ts.map b/dist/native/member/isMuted.d.ts.map index 6998fa861b..cb3c12ae65 100644 --- a/dist/native/member/isMuted.d.ts.map +++ b/dist/native/member/isMuted.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isMuted.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isMuted.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isMuted.js b/dist/native/member/isMuted.js index a2ff9a2c1b..b516d80b1a 100644 --- a/dist/native/member/isMuted.js +++ b/dist/native/member/isMuted.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/isMuted.js.map b/dist/native/member/isMuted.js.map index e5fdab69d8..28cdc2da99 100644 --- a/dist/native/member/isMuted.js.map +++ b/dist/native/member/isMuted.js.map @@ -1 +1 @@ -{"version":3,"file":"isMuted.js","sourceRoot":"","sources":["../../../src/native/member/isMuted.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isMuted.js","sourceRoot":"","sources":["../../../src/native/member/isMuted.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,CAAA;IACrJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isSelfDeaf.d.ts.map b/dist/native/member/isSelfDeaf.d.ts.map index ab3167aed4..ed5e9ec062 100644 --- a/dist/native/member/isSelfDeaf.d.ts.map +++ b/dist/native/member/isSelfDeaf.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isSelfDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isSelfDeaf.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isSelfDeaf.d.ts","sourceRoot":"","sources":["../../../src/native/member/isSelfDeaf.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isSelfDeaf.js b/dist/native/member/isSelfDeaf.js index e08637f90d..8e2c8669b7 100644 --- a/dist/native/member/isSelfDeaf.js +++ b/dist/native/member/isSelfDeaf.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isSelfDeaf.js.map b/dist/native/member/isSelfDeaf.js.map index f49cafbed3..11d77226ba 100644 --- a/dist/native/member/isSelfDeaf.js.map +++ b/dist/native/member/isSelfDeaf.js.map @@ -1 +1 @@ -{"version":3,"file":"isSelfDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isSelfDeaf.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isSelfDeaf.js","sourceRoot":"","sources":["../../../src/native/member/isSelfDeaf.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isSelfMuted.d.ts.map b/dist/native/member/isSelfMuted.d.ts.map index 19d5f41791..a291b66ee8 100644 --- a/dist/native/member/isSelfMuted.d.ts.map +++ b/dist/native/member/isSelfMuted.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isSelfMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isSelfMuted.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isSelfMuted.d.ts","sourceRoot":"","sources":["../../../src/native/member/isSelfMuted.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isSelfMuted.js b/dist/native/member/isSelfMuted.js index bd6f355119..c22255be92 100644 --- a/dist/native/member/isSelfMuted.js +++ b/dist/native/member/isSelfMuted.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isSelfMuted.js.map b/dist/native/member/isSelfMuted.js.map index fb285e6e52..27a8ab63fd 100644 --- a/dist/native/member/isSelfMuted.js.map +++ b/dist/native/member/isSelfMuted.js.map @@ -1 +1 @@ -{"version":3,"file":"isSelfMuted.js","sourceRoot":"","sources":["../../../src/native/member/isSelfMuted.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isSelfMuted.js","sourceRoot":"","sources":["../../../src/native/member/isSelfMuted.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,oBAAoB;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isTimedOut.d.ts.map b/dist/native/member/isTimedOut.d.ts.map index af220eb0cb..2314a531cf 100644 --- a/dist/native/member/isTimedOut.d.ts.map +++ b/dist/native/member/isTimedOut.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isTimedOut.d.ts","sourceRoot":"","sources":["../../../src/native/member/isTimedOut.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"isTimedOut.d.ts","sourceRoot":"","sources":["../../../src/native/member/isTimedOut.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/member/isTimedOut.js b/dist/native/member/isTimedOut.js index 236dbcd030..31c3111ff7 100644 --- a/dist/native/member/isTimedOut.js +++ b/dist/native/member/isTimedOut.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/isTimedOut.js.map b/dist/native/member/isTimedOut.js.map index 08a6ed1ce4..5709cd43d2 100644 --- a/dist/native/member/isTimedOut.js.map +++ b/dist/native/member/isTimedOut.js.map @@ -1 +1 @@ -{"version":3,"file":"isTimedOut.js","sourceRoot":"","sources":["../../../src/native/member/isTimedOut.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,uBAAuB,EAAE,IAAI,KAAK;YAC5C,CAAC,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,4BAA4B,CAC/F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isTimedOut.js","sourceRoot":"","sources":["../../../src/native/member/isTimedOut.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,uBAAuB,EAAE,IAAI,KAAK;YAC5C,CAAC,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,4BAA4B,CAC/F,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/isVerified.d.ts.map b/dist/native/member/isVerified.d.ts.map index 64a2eed5d4..b9bd37454a 100644 --- a/dist/native/member/isVerified.d.ts.map +++ b/dist/native/member/isVerified.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isVerified.d.ts","sourceRoot":"","sources":["../../../src/native/member/isVerified.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"isVerified.d.ts","sourceRoot":"","sources":["../../../src/native/member/isVerified.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/isVerified.js b/dist/native/member/isVerified.js index c58dcc87b7..24cb610574 100644 --- a/dist/native/member/isVerified.js +++ b/dist/native/member/isVerified.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/isVerified.js.map b/dist/native/member/isVerified.js.map index 799325ba9e..d01b4130da 100644 --- a/dist/native/member/isVerified.js.map +++ b/dist/native/member/isVerified.js.map @@ -1 +1 @@ -{"version":3,"file":"isVerified.js","sourceRoot":"","sources":["../../../src/native/member/isVerified.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isVerified.js","sourceRoot":"","sources":["../../../src/native/member/isVerified.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/kickMember.d.ts.map b/dist/native/member/kickMember.d.ts.map index 90438d8848..df0aa85668 100644 --- a/dist/native/member/kickMember.d.ts.map +++ b/dist/native/member/kickMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"kickMember.d.ts","sourceRoot":"","sources":["../../../src/native/member/kickMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"kickMember.d.ts","sourceRoot":"","sources":["../../../src/native/member/kickMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/kickMember.js b/dist/native/member/kickMember.js index 5d450fa243..e9cf0ada86 100644 --- a/dist/native/member/kickMember.js +++ b/dist/native/member/kickMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/kickMember.js.map b/dist/native/member/kickMember.js.map index 9ed8549f12..a766a8df94 100644 --- a/dist/native/member/kickMember.js.map +++ b/dist/native/member/kickMember.js.map @@ -1 +1 @@ -{"version":3,"file":"kickMember.js","sourceRoot":"","sources":["../../../src/native/member/kickMember.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EACP,iHAAiH;IACrH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"kickMember.js","sourceRoot":"","sources":["../../../src/native/member/kickMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EACP,iHAAiH;IACrH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,aAAa;KAChB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberActivity.d.ts.map b/dist/native/member/memberActivity.d.ts.map index 02dabe625c..ab9decb360 100644 --- a/dist/native/member/memberActivity.d.ts.map +++ b/dist/native/member/memberActivity.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberActivity.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberActivity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAGhF,wBA8CE"} \ No newline at end of file +{"version":3,"file":"memberActivity.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberActivity.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAGhF,wBA8CE"} \ No newline at end of file diff --git a/dist/native/member/memberActivity.js b/dist/native/member/memberActivity.js index 1dc7c1f089..5e00ef9bc7 100644 --- a/dist/native/member/memberActivity.js +++ b/dist/native/member/memberActivity.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/member/memberActivity.js.map b/dist/native/member/memberActivity.js.map index f788f7feaa..ca2d80984a 100644 --- a/dist/native/member/memberActivity.js.map +++ b/dist/native/member/memberActivity.js.map @@ -1 +1 @@ -{"version":3,"file":"memberActivity.js","sourceRoot":"","sources":["../../../src/native/member/memberActivity.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,wDAAgF;AAChF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,OAAO,EAAE;QACL,WAAW;QACX,eAAe;QACf,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,CAAC;QAC9B,MAAM,QAAQ,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,UAAU,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberActivity.js","sourceRoot":"","sources":["../../../src/native/member/memberActivity.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,wDAAgF;AAChF,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,OAAO,EAAE;QACL,WAAW;QACX,eAAe;QACf,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,CAAC;QAC9B,MAAM,QAAQ,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,UAAU,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACtH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberAddRoles.d.ts.map b/dist/native/member/memberAddRoles.d.ts.map index 4fc1a04f30..74eb2eb6bf 100644 --- a/dist/native/member/memberAddRoles.d.ts.map +++ b/dist/native/member/memberAddRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberAddRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAddRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"memberAddRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAddRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberAddRoles.js b/dist/native/member/memberAddRoles.js index dfbaed92ed..7d14b20705 100644 --- a/dist/native/member/memberAddRoles.js +++ b/dist/native/member/memberAddRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberAddRoles.js.map b/dist/native/member/memberAddRoles.js.map index 5390511f63..915321ca12 100644 --- a/dist/native/member/memberAddRoles.js.map +++ b/dist/native/member/memberAddRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"memberAddRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberAddRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberAddRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberAddRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberAvatar.d.ts.map b/dist/native/member/memberAvatar.d.ts.map index 273ce3f442..f04015c100 100644 --- a/dist/native/member/memberAvatar.d.ts.map +++ b/dist/native/member/memberAvatar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAvatar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsDE"} \ No newline at end of file +{"version":3,"file":"memberAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAvatar.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsDE"} \ No newline at end of file diff --git a/dist/native/member/memberAvatar.js b/dist/native/member/memberAvatar.js index deab64c071..a74aa1260b 100644 --- a/dist/native/member/memberAvatar.js +++ b/dist/native/member/memberAvatar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberAvatar.js.map b/dist/native/member/memberAvatar.js.map index 29c3477671..4a85715cbb 100644 --- a/dist/native/member/memberAvatar.js.map +++ b/dist/native/member/memberAvatar.js.map @@ -1 +1 @@ -{"version":3,"file":"memberAvatar.js","sourceRoot":"","sources":["../../../src/native/member/memberAvatar.ts"],"names":[],"mappings":";;AAAA,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAE5D,IAAI,MAAM,CAAC,MAAM,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,gBAAG,EAAE,CAAC,iBAAiB,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE;gBACnI,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC,CAAC,CAAA;SACN;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM;YAClC,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE;gBACnD,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC;YACF,CAAC,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAC1E,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberAvatar.js","sourceRoot":"","sources":["../../../src/native/member/memberAvatar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QACjC,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAE5D,IAAI,MAAM,CAAC,MAAM,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,gBAAG,EAAE,CAAC,iBAAiB,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE;gBACnI,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC,CAAC,CAAA;SACN;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM;YAClC,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE;gBACnD,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC;YACF,CAAC,CAAC,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAC1E,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberAvatarDecoration.d.ts.map b/dist/native/member/memberAvatarDecoration.d.ts.map index cad53119b2..cd1aed9882 100644 --- a/dist/native/member/memberAvatarDecoration.d.ts.map +++ b/dist/native/member/memberAvatarDecoration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberAvatarDecoration.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAvatarDecoration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"memberAvatarDecoration.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberAvatarDecoration.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberAvatarDecoration.js b/dist/native/member/memberAvatarDecoration.js index b86bf143d3..4dd5ca40de 100644 --- a/dist/native/member/memberAvatarDecoration.js +++ b/dist/native/member/memberAvatarDecoration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberAvatarDecoration.js.map b/dist/native/member/memberAvatarDecoration.js.map index 1cb2e2a920..e1a197d269 100644 --- a/dist/native/member/memberAvatarDecoration.js.map +++ b/dist/native/member/memberAvatarDecoration.js.map @@ -1 +1 @@ -{"version":3,"file":"memberAvatarDecoration.js","sourceRoot":"","sources":["../../../src/native/member/memberAvatarDecoration.ts"],"names":[],"mappings":";;AAAA,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,IAAI,KAAK,CAAA;QAET,IAAI,MAAM,YAAY,wBAAW,EAAE;YAC/B,KAAK,GAAG,MAAM,CAAC,oBAAoB,IAAI,MAAM,CAAC,IAAI,EAAE,oBAAoB,CAAA;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,MAAmC,CAAA;YAChD,KAAK,GAAG,IAAI,CAAC,sBAAsB,IAAI,IAAI,CAAC,IAAI,EAAE,sBAAsB,CAAA;SAC3E;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,gBAAgB,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberAvatarDecoration.js","sourceRoot":"","sources":["../../../src/native/member/memberAvatarDecoration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,IAAI,KAAK,CAAA;QAET,IAAI,MAAM,YAAY,wBAAW,EAAE;YAC/B,KAAK,GAAG,MAAM,CAAC,oBAAoB,IAAI,MAAM,CAAC,IAAI,EAAE,oBAAoB,CAAA;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,MAAmC,CAAA;YAChD,KAAK,GAAG,IAAI,CAAC,sBAAsB,IAAI,IAAI,CAAC,IAAI,EAAE,sBAAsB,CAAA;SAC3E;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,gBAAgB,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberBanner.d.ts.map b/dist/native/member/memberBanner.d.ts.map index 3bb993a49a..45214312d4 100644 --- a/dist/native/member/memberBanner.d.ts.map +++ b/dist/native/member/memberBanner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberBanner.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberBanner.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAwDE"} \ No newline at end of file +{"version":3,"file":"memberBanner.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberBanner.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAwDE"} \ No newline at end of file diff --git a/dist/native/member/memberBanner.js b/dist/native/member/memberBanner.js index 8a294b087e..7c1cf36c18 100644 --- a/dist/native/member/memberBanner.js +++ b/dist/native/member/memberBanner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberBanner.js.map b/dist/native/member/memberBanner.js.map index 2098e0b5ed..6782d6d455 100644 --- a/dist/native/member/memberBanner.js.map +++ b/dist/native/member/memberBanner.js.map @@ -1 +1 @@ -{"version":3,"file":"memberBanner.js","sourceRoot":"","sources":["../../../src/native/member/memberBanner.ts"],"names":[],"mappings":";;AAAA,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QACvC,MAAM,IAAI,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC1D,MAAM,MAAM,GAAG,IAAI,YAAY,wBAAW,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAA;QAE7F,IAAI,MAAM,CAAC,MAAM,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,gBAAG,EAAE,CAAC,iBAAiB,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE;gBACnI,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC,CAAC,CAAA;SACN;QAED,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAA;QAC1F,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM;YACtB,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE;gBACvC,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC;YACF,CAAC,CAAC,IAAI,CACT,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberBanner.js","sourceRoot":"","sources":["../../../src/native/member/memberBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwE;AACxE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QACvC,MAAM,IAAI,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC1D,MAAM,MAAM,GAAG,IAAI,YAAY,wBAAW,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAA;QAE7F,IAAI,MAAM,CAAC,MAAM,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,gBAAG,EAAE,CAAC,iBAAiB,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,IAAI,GAAG,CAAC,WAAW,EAAE,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE;gBACnI,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC,CAAC,CAAA;SACN;QAED,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAA;QAC1F,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM;YACtB,CAAC,CAAC,IAAI,gBAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE;gBACvC,SAAS,EAAG,GAAsB,IAAI,SAAS;gBAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;aACpC,CAAC;YACF,CAAC,CAAC,IAAI,CACT,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberBoostingSince.d.ts.map b/dist/native/member/memberBoostingSince.d.ts.map index 3bf3385750..4f1f273bc3 100644 --- a/dist/native/member/memberBoostingSince.d.ts.map +++ b/dist/native/member/memberBoostingSince.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberBoostingSince.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberBoostingSince.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"memberBoostingSince.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberBoostingSince.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberBoostingSince.js b/dist/native/member/memberBoostingSince.js index 7830ec1f51..f408fa6bf0 100644 --- a/dist/native/member/memberBoostingSince.js +++ b/dist/native/member/memberBoostingSince.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberBoostingSince.js.map b/dist/native/member/memberBoostingSince.js.map index b1098cb586..8852e945ed 100644 --- a/dist/native/member/memberBoostingSince.js.map +++ b/dist/native/member/memberBoostingSince.js.map @@ -1 +1 @@ -{"version":3,"file":"memberBoostingSince.js","sourceRoot":"","sources":["../../../src/native/member/memberBoostingSince.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;QAChB,eAAe;QACf,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,oDAAoD;IACjE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,qBAAqB,IAAI,CAAC;YACpC,CAAC,CAAC,CAAC,eAAe,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,aAAc,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAC7J,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberBoostingSince.js","sourceRoot":"","sources":["../../../src/native/member/memberBoostingSince.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,gBAAgB;QAChB,eAAe;QACf,qBAAqB;KACxB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,oDAAoD;IACjE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,qBAAqB,IAAI,CAAC;YACpC,CAAC,CAAC,CAAC,eAAe,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,aAAc,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAC7J,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberBotRoleID.d.ts b/dist/native/member/memberBotRoleID.d.ts new file mode 100644 index 0000000000..56558dd9c1 --- /dev/null +++ b/dist/native/member/memberBotRoleID.d.ts @@ -0,0 +1,17 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + type: ArgType.Guild; + required: true; +}, { + name: string; + description: string; + rest: false; + pointer: number; + type: ArgType.Member; + required: true; +}], true>; +export default _default; +//# sourceMappingURL=memberBotRoleID.d.ts.map \ No newline at end of file diff --git a/dist/native/member/memberBotRoleID.d.ts.map b/dist/native/member/memberBotRoleID.d.ts.map new file mode 100644 index 0000000000..5a15baf2ef --- /dev/null +++ b/dist/native/member/memberBotRoleID.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"memberBotRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberBotRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/member/memberBotRoleID.js b/dist/native/member/memberBotRoleID.js new file mode 100644 index 0000000000..2e0ffcc721 --- /dev/null +++ b/dist/native/member/memberBotRoleID.js @@ -0,0 +1,36 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$memberBotRoleID", + version: "2.6.0", + description: "Returns the managed bot role of a member, only available for bots", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to pull member from", + rest: false, + type: structures_1.ArgType.Guild, + required: true, + }, + { + name: "user ID", + description: "The user to get the managed bot role from", + rest: false, + pointer: 0, + type: structures_1.ArgType.Member, + required: true, + }, + ], + output: structures_1.ArgType.Role, + execute(ctx, [guild, user]) { + return this.success(guild.roles.botRoleFor(user)?.id); + }, +}); +//# sourceMappingURL=memberBotRoleID.js.map \ No newline at end of file diff --git a/dist/native/member/memberBotRoleID.js.map b/dist/native/member/memberBotRoleID.js.map new file mode 100644 index 0000000000..6cff99accb --- /dev/null +++ b/dist/native/member/memberBotRoleID.js.map @@ -0,0 +1 @@ +{"version":3,"file":"memberBotRoleID.js","sourceRoot":"","sources":["../../../src/native/member/memberBotRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mEAAmE;IAChF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberCustomStatus.d.ts.map b/dist/native/member/memberCustomStatus.d.ts.map index b6017cc30e..da6ea9ded3 100644 --- a/dist/native/member/memberCustomStatus.d.ts.map +++ b/dist/native/member/memberCustomStatus.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberCustomStatus.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberCustomStatus.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,KAAK,UAAU;CAClB;;;;;;;;;;;;;;;;;;;;AAED,wBAuCE"} \ No newline at end of file +{"version":3,"file":"memberCustomStatus.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberCustomStatus.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,KAAK,UAAU;CAClB;;;;;;;;;;;;;;;;;;;;AAED,wBAuCE"} \ No newline at end of file diff --git a/dist/native/member/memberCustomStatus.js b/dist/native/member/memberCustomStatus.js index 8e1823f733..3837292e74 100644 --- a/dist/native/member/memberCustomStatus.js +++ b/dist/native/member/memberCustomStatus.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomStatusType = void 0; const discord_js_1 = require("discord.js"); diff --git a/dist/native/member/memberCustomStatus.js.map b/dist/native/member/memberCustomStatus.js.map index 234be37d61..265f346cde 100644 --- a/dist/native/member/memberCustomStatus.js.map +++ b/dist/native/member/memberCustomStatus.js.map @@ -1 +1 @@ -{"version":3,"file":"memberCustomStatus.js","sourceRoot":"","sources":["../../../src/native/member/memberCustomStatus.ts"],"names":[],"mappings":";;;AAAA,2CAAyC;AACzC,iDAAkE;AAElE,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,mCAAe,CAAA;AACnB,CAAC,EAHW,gBAAgB,gCAAhB,gBAAgB,QAG3B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,eAAe;QACf,mBAAmB;KACtB;IACD,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gBAAgB;SACzB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC;QAC/B,MAAM,MAAM,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,yBAAY,CAAC,MAAM,CAAC,CAAA;QAEtG,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAwB,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberCustomStatus.js","sourceRoot":"","sources":["../../../src/native/member/memberCustomStatus.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,2CAAyC;AACzC,iDAAkE;AAElE,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,mCAAe,CAAA;AACnB,CAAC,EAHW,gBAAgB,gCAAhB,gBAAgB,QAG3B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,eAAe;QACf,mBAAmB;KACtB;IACD,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gBAAgB;SACzB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC;QAC/B,MAAM,MAAM,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,yBAAY,CAAC,MAAM,CAAC,CAAA;QAEtG,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAwB,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberDisplayColor.d.ts.map b/dist/native/member/memberDisplayColor.d.ts.map index 03d7f7c191..89dd442054 100644 --- a/dist/native/member/memberDisplayColor.d.ts.map +++ b/dist/native/member/memberDisplayColor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberDisplayColor.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberDisplayColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"memberDisplayColor.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberDisplayColor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/member/memberDisplayColor.js b/dist/native/member/memberDisplayColor.js index ed46464d4a..2fb5526438 100644 --- a/dist/native/member/memberDisplayColor.js +++ b/dist/native/member/memberDisplayColor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberDisplayColor.js.map b/dist/native/member/memberDisplayColor.js.map index bffa253f7f..78370281cf 100644 --- a/dist/native/member/memberDisplayColor.js.map +++ b/dist/native/member/memberDisplayColor.js.map @@ -1 +1 @@ -{"version":3,"file":"memberDisplayColor.js","sourceRoot":"","sources":["../../../src/native/member/memberDisplayColor.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberDisplayColor.js","sourceRoot":"","sources":["../../../src/native/member/memberDisplayColor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberDisplayName.d.ts.map b/dist/native/member/memberDisplayName.d.ts.map index 615979a532..da20b24e2a 100644 --- a/dist/native/member/memberDisplayName.d.ts.map +++ b/dist/native/member/memberDisplayName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberDisplayName.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberDisplayName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"memberDisplayName.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberDisplayName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/member/memberDisplayName.js b/dist/native/member/memberDisplayName.js index 29b5c3ab15..841f7b6c01 100644 --- a/dist/native/member/memberDisplayName.js +++ b/dist/native/member/memberDisplayName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberDisplayName.js.map b/dist/native/member/memberDisplayName.js.map index a7754807cb..5d264087ad 100644 --- a/dist/native/member/memberDisplayName.js.map +++ b/dist/native/member/memberDisplayName.js.map @@ -1 +1 @@ -{"version":3,"file":"memberDisplayName.js","sourceRoot":"","sources":["../../../src/native/member/memberDisplayName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberDisplayName.js","sourceRoot":"","sources":["../../../src/native/member/memberDisplayName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberExists.d.ts.map b/dist/native/member/memberExists.d.ts.map index 214207f383..8d59498619 100644 --- a/dist/native/member/memberExists.d.ts.map +++ b/dist/native/member/memberExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberExists.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"memberExists.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file diff --git a/dist/native/member/memberExists.js b/dist/native/member/memberExists.js index 413775428e..f42cf0f621 100644 --- a/dist/native/member/memberExists.js +++ b/dist/native/member/memberExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberExists.js.map b/dist/native/member/memberExists.js.map index 371ecc39f6..e532818307 100644 --- a/dist/native/member/memberExists.js.map +++ b/dist/native/member/memberExists.js.map @@ -1 +1 @@ -{"version":3,"file":"memberExists.js","sourceRoot":"","sources":["../../../src/native/member/memberExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberExists.js","sourceRoot":"","sources":["../../../src/native/member/memberExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC1H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberFlags.d.ts.map b/dist/native/member/memberFlags.d.ts.map index b8443d15b1..330a80e7e3 100644 --- a/dist/native/member/memberFlags.d.ts.map +++ b/dist/native/member/memberFlags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberFlags.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberFlags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"memberFlags.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberFlags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/member/memberFlags.js b/dist/native/member/memberFlags.js index 309dbe0836..cb3b9f64a3 100644 --- a/dist/native/member/memberFlags.js +++ b/dist/native/member/memberFlags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/member/memberFlags.js.map b/dist/native/member/memberFlags.js.map index bfb29f22de..45ab0d5492 100644 --- a/dist/native/member/memberFlags.js.map +++ b/dist/native/member/memberFlags.js.map @@ -1 +1 @@ -{"version":3,"file":"memberFlags.js","sourceRoot":"","sources":["../../../src/native/member/memberFlags.ts"],"names":[],"mappings":";;;;;AAAA,2CAAuE;AACvE,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,6BAAgB,CAAC;IAC/B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,qCAAwB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberFlags.js","sourceRoot":"","sources":["../../../src/native/member/memberFlags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAuE;AACvE,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,6BAAgB,CAAC;IAC/B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,qCAAwB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberHighestRoleID.d.ts.map b/dist/native/member/memberHighestRoleID.d.ts.map index 6c313c087b..59bda39e22 100644 --- a/dist/native/member/memberHighestRoleID.d.ts.map +++ b/dist/native/member/memberHighestRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberHighestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberHighestRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"memberHighestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberHighestRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/member/memberHighestRoleID.js b/dist/native/member/memberHighestRoleID.js index 5aedf3f937..a95b7aa13c 100644 --- a/dist/native/member/memberHighestRoleID.js +++ b/dist/native/member/memberHighestRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberHighestRoleID.js.map b/dist/native/member/memberHighestRoleID.js.map index 3e6ddb6978..d74a319f52 100644 --- a/dist/native/member/memberHighestRoleID.js.map +++ b/dist/native/member/memberHighestRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"memberHighestRoleID.js","sourceRoot":"","sources":["../../../src/native/member/memberHighestRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberHighestRoleID.js","sourceRoot":"","sources":["../../../src/native/member/memberHighestRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberJoinPosition.d.ts.map b/dist/native/member/memberJoinPosition.d.ts.map index b316d3f939..6d2a4fb4b9 100644 --- a/dist/native/member/memberJoinPosition.d.ts.map +++ b/dist/native/member/memberJoinPosition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberJoinPosition.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberJoinPosition.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"memberJoinPosition.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberJoinPosition.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/member/memberJoinPosition.js b/dist/native/member/memberJoinPosition.js index 9077d74885..ede354618c 100644 --- a/dist/native/member/memberJoinPosition.js +++ b/dist/native/member/memberJoinPosition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberJoinPosition.js.map b/dist/native/member/memberJoinPosition.js.map index 2c7430596d..61f51ad6aa 100644 --- a/dist/native/member/memberJoinPosition.js.map +++ b/dist/native/member/memberJoinPosition.js.map @@ -1 +1 @@ -{"version":3,"file":"memberJoinPosition.js","sourceRoot":"","sources":["../../../src/native/member/memberJoinPosition.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QACxB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAgB,GAAG,CAAC,CAAC,eAAgB,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACtK,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberJoinPosition.js","sourceRoot":"","sources":["../../../src/native/member/memberJoinPosition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2DAA2D;IACxE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QACxB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAgB,GAAG,CAAC,CAAC,eAAgB,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACtK,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberJoinedAt.d.ts.map b/dist/native/member/memberJoinedAt.d.ts.map index 6d73a6a5aa..e74e2fdcb9 100644 --- a/dist/native/member/memberJoinedAt.d.ts.map +++ b/dist/native/member/memberJoinedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberJoinedAt.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberJoinedAt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"memberJoinedAt.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberJoinedAt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/member/memberJoinedAt.js b/dist/native/member/memberJoinedAt.js index f852e9d1ff..7ea146924a 100644 --- a/dist/native/member/memberJoinedAt.js +++ b/dist/native/member/memberJoinedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberJoinedAt.js.map b/dist/native/member/memberJoinedAt.js.map index 2e83b09c7c..8ac8edc25c 100644 --- a/dist/native/member/memberJoinedAt.js.map +++ b/dist/native/member/memberJoinedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"memberJoinedAt.js","sourceRoot":"","sources":["../../../src/native/member/memberJoinedAt.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,eAAe;YACzB,CAAC,CAAC,CAAC,WAAW,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,SAAU,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CACxJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberJoinedAt.js","sourceRoot":"","sources":["../../../src/native/member/memberJoinedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,eAAe;YACzB,CAAC,CAAC,CAAC,WAAW,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,SAAU,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CACxJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberLowestRoleID.d.ts.map b/dist/native/member/memberLowestRoleID.d.ts.map index 7b1655e0ae..626debe045 100644 --- a/dist/native/member/memberLowestRoleID.d.ts.map +++ b/dist/native/member/memberLowestRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberLowestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberLowestRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"memberLowestRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberLowestRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/memberLowestRoleID.js b/dist/native/member/memberLowestRoleID.js index 082e81a4bd..83fbf337d3 100644 --- a/dist/native/member/memberLowestRoleID.js +++ b/dist/native/member/memberLowestRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberLowestRoleID.js.map b/dist/native/member/memberLowestRoleID.js.map index db34988210..b5884bd346 100644 --- a/dist/native/member/memberLowestRoleID.js.map +++ b/dist/native/member/memberLowestRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"memberLowestRoleID.js","sourceRoot":"","sources":["../../../src/native/member/memberLowestRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QACxB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,MAAM,GAAG,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,KAAK,KAAK,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,CAAA;QAExH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,IAAI,KAAK,EAAE,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberLowestRoleID.js","sourceRoot":"","sources":["../../../src/native/member/memberLowestRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;QACxB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,MAAM,GAAG,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,KAAK,KAAK,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,CAAA;QAExH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,IAAI,KAAK,EAAE,EAAE,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberPerms.d.ts.map b/dist/native/member/memberPerms.d.ts.map index 5c91836676..369826dd5c 100644 --- a/dist/native/member/memberPerms.d.ts.map +++ b/dist/native/member/memberPerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberPerms.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file +{"version":3,"file":"memberPerms.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberPerms.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file diff --git a/dist/native/member/memberPerms.js b/dist/native/member/memberPerms.js index b7a8ec4dbf..16d94b0f7e 100644 --- a/dist/native/member/memberPerms.js +++ b/dist/native/member/memberPerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/member/memberPerms.js.map b/dist/native/member/memberPerms.js.map index cd7f36242e..931f3be91c 100644 --- a/dist/native/member/memberPerms.js.map +++ b/dist/native/member/memberPerms.js.map @@ -1 +1 @@ -{"version":3,"file":"memberPerms.js","sourceRoot":"","sources":["../../../src/native/member/memberPerms.ts"],"names":[],"mappings":";;;;;AAAA,2CAAqE;AACrE,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;QAC3B,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,MAAM,KAAK,GAAG,IAAI,gCAAmB,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberPerms.js","sourceRoot":"","sources":["../../../src/native/member/memberPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAqE;AACrE,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;QAC3B,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,MAAM,KAAK,GAAG,IAAI,gCAAmB,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberRawData.d.ts.map b/dist/native/member/memberRawData.d.ts.map index 08c2c3826b..1175958585 100644 --- a/dist/native/member/memberRawData.d.ts.map +++ b/dist/native/member/memberRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberRawData.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"memberRawData.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/member/memberRawData.js b/dist/native/member/memberRawData.js index 4075429aa3..756505b2b1 100644 --- a/dist/native/member/memberRawData.js +++ b/dist/native/member/memberRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberRawData.js.map b/dist/native/member/memberRawData.js.map index 679f9b3478..a6f7975344 100644 --- a/dist/native/member/memberRawData.js.map +++ b/dist/native/member/memberRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"memberRawData.js","sourceRoot":"","sources":["../../../src/native/member/memberRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberRawData.js","sourceRoot":"","sources":["../../../src/native/member/memberRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberRemoveRoles.d.ts.map b/dist/native/member/memberRemoveRoles.d.ts.map index 291ca1f075..197fc3aa3c 100644 --- a/dist/native/member/memberRemoveRoles.d.ts.map +++ b/dist/native/member/memberRemoveRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberRemoveRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRemoveRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"memberRemoveRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRemoveRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberRemoveRoles.js b/dist/native/member/memberRemoveRoles.js index ad903e21fc..e26cdc860e 100644 --- a/dist/native/member/memberRemoveRoles.js +++ b/dist/native/member/memberRemoveRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberRemoveRoles.js.map b/dist/native/member/memberRemoveRoles.js.map index 57443efc65..87cbc703b7 100644 --- a/dist/native/member/memberRemoveRoles.js.map +++ b/dist/native/member/memberRemoveRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"memberRemoveRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberRemoveRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberRemoveRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberRemoveRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEtE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberRoles.d.ts.map b/dist/native/member/memberRoles.d.ts.map index e19fa76805..8b6671db53 100644 --- a/dist/native/member/memberRoles.d.ts.map +++ b/dist/native/member/memberRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRoles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"memberRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberRoles.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/member/memberRoles.js b/dist/native/member/memberRoles.js index d23497dcd7..7ae3928479 100644 --- a/dist/native/member/memberRoles.js +++ b/dist/native/member/memberRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/member/memberRoles.js.map b/dist/native/member/memberRoles.js.map index 5bf518e17b..c0ac0a53e6 100644 --- a/dist/native/member/memberRoles.js.map +++ b/dist/native/member/memberRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"memberRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberRoles.ts"],"names":[],"mappings":";;;;;AAAA,2CAAmE;AACnE,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,YAAY,wBAAW;YAC1B,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACzE,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,KAAK,CAClE,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACvB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAmE;AACnE,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,YAAY,wBAAW;YAC1B,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACzE,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,KAAK,CAClE,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACvB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberSetNickname.d.ts.map b/dist/native/member/memberSetNickname.d.ts.map index 57de2b7877..ab7cdc556d 100644 --- a/dist/native/member/memberSetNickname.d.ts.map +++ b/dist/native/member/memberSetNickname.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberSetNickname.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberSetNickname.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"memberSetNickname.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberSetNickname.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberSetNickname.js b/dist/native/member/memberSetNickname.js index ed146da55b..9779d5b01e 100644 --- a/dist/native/member/memberSetNickname.js +++ b/dist/native/member/memberSetNickname.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -31,8 +35,11 @@ exports.default = new structures_1.NativeFunction({ type: structures_1.ArgType.String, }, ], - async execute(ctx, [, m, nick]) { - return this.success(!!(await m.setNickname(nick, ctx.reason).catch(ctx.noop))); + async execute(ctx, [g, m, nick]) { + const edit = m.id === ctx.client.user.id + ? g.members.editMe({ nick, reason: ctx.reason }) + : m.setNickname(nick, ctx.reason); + return this.success(!!(await edit.catch(ctx.noop))); }, }); //# sourceMappingURL=memberSetNickname.js.map \ No newline at end of file diff --git a/dist/native/member/memberSetNickname.js.map b/dist/native/member/memberSetNickname.js.map index 556aa047c4..7d2b306e19 100644 --- a/dist/native/member/memberSetNickname.js.map +++ b/dist/native/member/memberSetNickname.js.map @@ -1 +1 @@ -{"version":3,"file":"memberSetNickname.js","sourceRoot":"","sources":["../../../src/native/member/memberSetNickname.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberSetNickname.js","sourceRoot":"","sources":["../../../src/native/member/memberSetNickname.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC;QAC3B,MAAM,IAAI,GAAG,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE;YACpC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC;YAChD,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;QAErC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberSetRoles.d.ts.map b/dist/native/member/memberSetRoles.d.ts.map index abfd00d73f..449663f526 100644 --- a/dist/native/member/memberSetRoles.d.ts.map +++ b/dist/native/member/memberSetRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberSetRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberSetRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"memberSetRoles.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberSetRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/memberSetRoles.js b/dist/native/member/memberSetRoles.js index 0e54c2f36a..13618243b1 100644 --- a/dist/native/member/memberSetRoles.js +++ b/dist/native/member/memberSetRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/memberSetRoles.js.map b/dist/native/member/memberSetRoles.js.map index 984b29abb3..1bc8fff9ed 100644 --- a/dist/native/member/memberSetRoles.js.map +++ b/dist/native/member/memberSetRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"memberSetRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberSetRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberSetRoles.js","sourceRoot":"","sources":["../../../src/native/member/memberSetRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC;QAChC,MAAM,KAAK,GAAG,CAAC,MAAO,CAAA;QACtB,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/memberTimeoutDuration.d.ts.map b/dist/native/member/memberTimeoutDuration.d.ts.map index aef2498fa5..0ce99632f1 100644 --- a/dist/native/member/memberTimeoutDuration.d.ts.map +++ b/dist/native/member/memberTimeoutDuration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"memberTimeoutDuration.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberTimeoutDuration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"memberTimeoutDuration.d.ts","sourceRoot":"","sources":["../../../src/native/member/memberTimeoutDuration.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/member/memberTimeoutDuration.js b/dist/native/member/memberTimeoutDuration.js index 9df8435442..6af04f022c 100644 --- a/dist/native/member/memberTimeoutDuration.js +++ b/dist/native/member/memberTimeoutDuration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/memberTimeoutDuration.js.map b/dist/native/member/memberTimeoutDuration.js.map index 54175d5acf..988bfd4134 100644 --- a/dist/native/member/memberTimeoutDuration.js.map +++ b/dist/native/member/memberTimeoutDuration.js.map @@ -1 +1 @@ -{"version":3,"file":"memberTimeoutDuration.js","sourceRoot":"","sources":["../../../src/native/member/memberTimeoutDuration.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,qBAAqB;QACrB,gBAAgB;QAChB,sBAAsB;KACzB;IACD,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,0BAA0B,EAAE,OAAO,EAAE,IAAI,CAAC;YACpD,CAAC,CAAC,CAAC,8BAA8B,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,4BAA6B,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAC3L,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"memberTimeoutDuration.js","sourceRoot":"","sources":["../../../src/native/member/memberTimeoutDuration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,qBAAqB;QACrB,gBAAgB;QAChB,sBAAsB;KACzB;IACD,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,YAAY,wBAAW;YACzB,CAAC,CAAC,MAAM,EAAE,0BAA0B,EAAE,OAAO,EAAE,IAAI,CAAC;YACpD,CAAC,CAAC,CAAC,8BAA8B,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,MAAoC,CAAA,CAAC,4BAA6B,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAC3L,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/nickname.d.ts.map b/dist/native/member/nickname.d.ts.map index 4c9c7e05ee..a3988806a3 100644 --- a/dist/native/member/nickname.d.ts.map +++ b/dist/native/member/nickname.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"nickname.d.ts","sourceRoot":"","sources":["../../../src/native/member/nickname.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"nickname.d.ts","sourceRoot":"","sources":["../../../src/native/member/nickname.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/member/nickname.js b/dist/native/member/nickname.js index 62f063f12c..4a95fe70c9 100644 --- a/dist/native/member/nickname.js +++ b/dist/native/member/nickname.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/member/nickname.js.map b/dist/native/member/nickname.js.map index f471262b99..0dfcb29e5a 100644 --- a/dist/native/member/nickname.js.map +++ b/dist/native/member/nickname.js.map @@ -1 +1 @@ -{"version":3,"file":"nickname.js","sourceRoot":"","sources":["../../../src/native/member/nickname.ts"],"names":[],"mappings":";;AAAA,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"nickname.js","sourceRoot":"","sources":["../../../src/native/member/nickname.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmE;AACnE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,MAAM,MAAM,GAAG,IAAI,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,WAAW,EAAE,MAAM,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,YAAY,wBAAW,CAAC,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAE,GAAG,CAAC,WAAW,EAAE,MAAoC,EAAE,IAAI,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/platform.d.ts.map b/dist/native/member/platform.d.ts.map index ed6a2dbb89..b0bbd6d1ae 100644 --- a/dist/native/member/platform.d.ts.map +++ b/dist/native/member/platform.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../../../src/native/member/platform.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file +{"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../../../src/native/member/platform.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/member/platform.js b/dist/native/member/platform.js index b0b7b9de34..9fedae3c69 100644 --- a/dist/native/member/platform.js +++ b/dist/native/member/platform.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/member/platform.js.map b/dist/native/member/platform.js.map index 8ac0c65269..5e7f58502e 100644 --- a/dist/native/member/platform.js.map +++ b/dist/native/member/platform.js.map @@ -1 +1 @@ -{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../../src/native/member/platform.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;QAClB,YAAY;QACZ,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,YAAY,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../../src/native/member/platform.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,kBAAkB;QAClB,YAAY;QACZ,iBAAiB;KACpB;IACD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,YAAY,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC5G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/pruneMembers.d.ts.map b/dist/native/member/pruneMembers.d.ts.map index fd65a55ae4..9cadeac61c 100644 --- a/dist/native/member/pruneMembers.d.ts.map +++ b/dist/native/member/pruneMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pruneMembers.d.ts","sourceRoot":"","sources":["../../../src/native/member/pruneMembers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAwDE"} \ No newline at end of file +{"version":3,"file":"pruneMembers.d.ts","sourceRoot":"","sources":["../../../src/native/member/pruneMembers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAwDE"} \ No newline at end of file diff --git a/dist/native/member/pruneMembers.js b/dist/native/member/pruneMembers.js index 77df101a8c..006e66e181 100644 --- a/dist/native/member/pruneMembers.js +++ b/dist/native/member/pruneMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/pruneMembers.js.map b/dist/native/member/pruneMembers.js.map index cb3318fc2e..8c5e5887d8 100644 --- a/dist/native/member/pruneMembers.js.map +++ b/dist/native/member/pruneMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"pruneMembers.js","sourceRoot":"","sources":["../../../src/native/member/pruneMembers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,QAAQ;QACR,eAAe;KAClB;IACD,WAAW,EAAE,0EAA0E;IACvF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,CAAE;QAClD,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,KAAK,CAAC,OAAO;aACf,KAAK,CAAC;YACH,KAAK,EAAE,IAAI;YACX,IAAI,EAAE,IAAI,IAAI,CAAC;YACf,GAAG,EAAE,GAAG,IAAI,KAAK;YACjB,KAAK,EAAE,KAAK;YACZ,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAC1B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pruneMembers.js","sourceRoot":"","sources":["../../../src/native/member/pruneMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,QAAQ;QACR,eAAe;KAClB;IACD,WAAW,EAAE,0EAA0E;IACvF,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,CAAE;QAClD,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,MAAM,KAAK,CAAC,OAAO;aACf,KAAK,CAAC;YACH,KAAK,EAAE,IAAI;YACX,IAAI,EAAE,IAAI,IAAI,CAAC;YACf,GAAG,EAAE,GAAG,IAAI,KAAK;YACjB,KAAK,EAAE,KAAK;YACZ,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAC1B,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/randomMemberID.d.ts.map b/dist/native/member/randomMemberID.d.ts.map index f3b51e8020..bdf9f3d64a 100644 --- a/dist/native/member/randomMemberID.d.ts.map +++ b/dist/native/member/randomMemberID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomMemberID.d.ts","sourceRoot":"","sources":["../../../src/native/member/randomMemberID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"randomMemberID.d.ts","sourceRoot":"","sources":["../../../src/native/member/randomMemberID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file diff --git a/dist/native/member/randomMemberID.js b/dist/native/member/randomMemberID.js index 611df4e2d0..73139fef67 100644 --- a/dist/native/member/randomMemberID.js +++ b/dist/native/member/randomMemberID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/randomMemberID.js.map b/dist/native/member/randomMemberID.js.map index 0d6212e418..b43bedc32b 100644 --- a/dist/native/member/randomMemberID.js.map +++ b/dist/native/member/randomMemberID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomMemberID.js","sourceRoot":"","sources":["../../../src/native/member/randomMemberID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAEhB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomMemberID.js","sourceRoot":"","sources":["../../../src/native/member/randomMemberID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,CAAC,KAAK,GAAG,CAAC,KAAM,CAAA;QAEhB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/status.d.ts.map b/dist/native/member/status.d.ts.map index 36f51da454..d5fc72650d 100644 --- a/dist/native/member/status.d.ts.map +++ b/dist/native/member/status.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../src/native/member/status.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../src/native/member/status.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/member/status.js b/dist/native/member/status.js index 4fc893ea86..41ef8ecdd6 100644 --- a/dist/native/member/status.js +++ b/dist/native/member/status.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/status.js.map b/dist/native/member/status.js.map index a4a4bfdf7d..6d02cdcd2e 100644 --- a/dist/native/member/status.js.map +++ b/dist/native/member/status.js.map @@ -1 +1 @@ -{"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/native/member/status.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,WAAW;QACX,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/native/member/status.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,eAAe;QACf,WAAW;QACX,iBAAiB;KACpB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/timeout.d.ts.map b/dist/native/member/timeout.d.ts.map index c51b02f505..65320f9604 100644 --- a/dist/native/member/timeout.d.ts.map +++ b/dist/native/member/timeout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"timeout.d.ts","sourceRoot":"","sources":["../../../src/native/member/timeout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4CE"} \ No newline at end of file +{"version":3,"file":"timeout.d.ts","sourceRoot":"","sources":["../../../src/native/member/timeout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4CE"} \ No newline at end of file diff --git a/dist/native/member/timeout.js b/dist/native/member/timeout.js index 575677c493..df7ce67fae 100644 --- a/dist/native/member/timeout.js +++ b/dist/native/member/timeout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/timeout.js.map b/dist/native/member/timeout.js.map index c203e4cd14..980acc8f52 100644 --- a/dist/native/member/timeout.js.map +++ b/dist/native/member/timeout.js.map @@ -1 +1 @@ -{"version":3,"file":"timeout.js","sourceRoot":"","sources":["../../../src/native/member/timeout.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;QAChB,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC;QACrC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,yBAAyB,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACzH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"timeout.js","sourceRoot":"","sources":["../../../src/native/member/timeout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;QAChB,gBAAgB;KACnB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC;QACrC,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,yBAAyB,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACzH,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/unban.d.ts.map b/dist/native/member/unban.d.ts.map index 1e743d8d08..1802506c9b 100644 --- a/dist/native/member/unban.d.ts.map +++ b/dist/native/member/unban.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unban.d.ts","sourceRoot":"","sources":["../../../src/native/member/unban.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"unban.d.ts","sourceRoot":"","sources":["../../../src/native/member/unban.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/unban.js b/dist/native/member/unban.js index 73fe5c9a53..d4692fb183 100644 --- a/dist/native/member/unban.js +++ b/dist/native/member/unban.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/unban.js.map b/dist/native/member/unban.js.map index 61ab8353b3..e05e591769 100644 --- a/dist/native/member/unban.js.map +++ b/dist/native/member/unban.js.map @@ -1 +1 @@ -{"version":3,"file":"unban.js","sourceRoot":"","sources":["../../../src/native/member/unban.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,cAAc;QACd,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,0CAA0C;IACvD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unban.js","sourceRoot":"","sources":["../../../src/native/member/unban.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,cAAc;QACd,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,0CAA0C;IACvD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC;QACpC,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpF,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/voiceID.d.ts.map b/dist/native/member/voiceID.d.ts.map index c945302986..15220179f0 100644 --- a/dist/native/member/voiceID.d.ts.map +++ b/dist/native/member/voiceID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceID.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"voiceID.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/member/voiceID.js b/dist/native/member/voiceID.js index 8cc43cbc80..67019c63d0 100644 --- a/dist/native/member/voiceID.js +++ b/dist/native/member/voiceID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/voiceID.js.map b/dist/native/member/voiceID.js.map index 57582b4d49..c01d56adf1 100644 --- a/dist/native/member/voiceID.js.map +++ b/dist/native/member/voiceID.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceID.js","sourceRoot":"","sources":["../../../src/native/member/voiceID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC;QACd,CAAC,KAAK,GAAG,CAAC,MAAO,CAAA;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceID.js","sourceRoot":"","sources":["../../../src/native/member/voiceID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC;QACd,CAAC,KAAK,GAAG,CAAC,MAAO,CAAA;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/voiceKick.d.ts.map b/dist/native/member/voiceKick.d.ts.map index 6debd37632..5fa2e5e801 100644 --- a/dist/native/member/voiceKick.d.ts.map +++ b/dist/native/member/voiceKick.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceKick.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceKick.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file +{"version":3,"file":"voiceKick.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceKick.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAqCE"} \ No newline at end of file diff --git a/dist/native/member/voiceKick.js b/dist/native/member/voiceKick.js index b9680d1632..e86eaa38f8 100644 --- a/dist/native/member/voiceKick.js +++ b/dist/native/member/voiceKick.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/voiceKick.js.map b/dist/native/member/voiceKick.js.map index 2cab428ddf..eec258a0ea 100644 --- a/dist/native/member/voiceKick.js.map +++ b/dist/native/member/voiceKick.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceKick.js","sourceRoot":"","sources":["../../../src/native/member/voiceKick.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceKick.js","sourceRoot":"","sources":["../../../src/native/member/voiceKick.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAE;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/member/voiceMove.d.ts.map b/dist/native/member/voiceMove.d.ts.map index daddd9cb9d..8d0019be38 100644 --- a/dist/native/member/voiceMove.d.ts.map +++ b/dist/native/member/voiceMove.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceMove.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceMove.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA+B,MAAM,YAAY,CAAA;AACrE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;eAiCnC,WAAW;;;;;;;AA/BlC,wBA4CE"} \ No newline at end of file +{"version":3,"file":"voiceMove.d.ts","sourceRoot":"","sources":["../../../src/native/member/voiceMove.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA+B,MAAM,YAAY,CAAA;AACrE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;eAiCnC,WAAW;;;;;;;AA/BlC,wBA4CE"} \ No newline at end of file diff --git a/dist/native/member/voiceMove.js b/dist/native/member/voiceMove.js index cdb3641234..261d0d7dd1 100644 --- a/dist/native/member/voiceMove.js +++ b/dist/native/member/voiceMove.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/member/voiceMove.js.map b/dist/native/member/voiceMove.js.map index 702b95bf68..0deaf1db6f 100644 --- a/dist/native/member/voiceMove.js.map +++ b/dist/native/member/voiceMove.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceMove.js","sourceRoot":"","sources":["../../../src/native/member/voiceMove.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAE;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,KAAoC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceMove.js","sourceRoot":"","sources":["../../../src/native/member/voiceMove.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE;SAC9C;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAE;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,KAAoC,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/disableAllMentions.d.ts.map b/dist/native/mention/disableAllMentions.d.ts.map index dca289e291..6e8c458bf7 100644 --- a/dist/native/mention/disableAllMentions.d.ts.map +++ b/dist/native/mention/disableAllMentions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableAllMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableAllMentions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"disableAllMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableAllMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/mention/disableAllMentions.js b/dist/native/mention/disableAllMentions.js index 6d43c341af..ea06f6b163 100644 --- a/dist/native/mention/disableAllMentions.js +++ b/dist/native/mention/disableAllMentions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/disableAllMentions.js.map b/dist/native/mention/disableAllMentions.js.map index 5447d061c2..c4b8d2d6c2 100644 --- a/dist/native/mention/disableAllMentions.js.map +++ b/dist/native/mention/disableAllMentions.js.map @@ -1 +1 @@ -{"version":3,"file":"disableAllMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableAllMentions.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableAllMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableAllMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/disableEveryoneMention.d.ts.map b/dist/native/mention/disableEveryoneMention.d.ts.map index 5b76c8e510..51e0d75355 100644 --- a/dist/native/mention/disableEveryoneMention.d.ts.map +++ b/dist/native/mention/disableEveryoneMention.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableEveryoneMention.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableEveryoneMention.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"disableEveryoneMention.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableEveryoneMention.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/mention/disableEveryoneMention.js b/dist/native/mention/disableEveryoneMention.js index 97ce9d1602..10d7b9d498 100644 --- a/dist/native/mention/disableEveryoneMention.js +++ b/dist/native/mention/disableEveryoneMention.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -7,7 +11,7 @@ exports.default = new structures_1.NativeFunction({ description: "Disables everyone mention", unwrap: false, execute(ctx) { - ctx.container.unparseMention("everyone"); + ctx.container.unparseMentions("everyone"); return this.success(); }, }); diff --git a/dist/native/mention/disableEveryoneMention.js.map b/dist/native/mention/disableEveryoneMention.js.map index 342f9b3449..66c737938d 100644 --- a/dist/native/mention/disableEveryoneMention.js.map +++ b/dist/native/mention/disableEveryoneMention.js.map @@ -1 +1 @@ -{"version":3,"file":"disableEveryoneMention.js","sourceRoot":"","sources":["../../../src/native/mention/disableEveryoneMention.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,cAAc,CAAC,UAAU,CAAC,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableEveryoneMention.js","sourceRoot":"","sources":["../../../src/native/mention/disableEveryoneMention.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,UAAU,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/disableRoleMentions.d.ts.map b/dist/native/mention/disableRoleMentions.d.ts.map index 052bc01303..e043946267 100644 --- a/dist/native/mention/disableRoleMentions.d.ts.map +++ b/dist/native/mention/disableRoleMentions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableRoleMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableRoleMentions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file +{"version":3,"file":"disableRoleMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableRoleMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file diff --git a/dist/native/mention/disableRoleMentions.js b/dist/native/mention/disableRoleMentions.js index f43a72d7c9..74294661b7 100644 --- a/dist/native/mention/disableRoleMentions.js +++ b/dist/native/mention/disableRoleMentions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -7,7 +11,7 @@ exports.default = new structures_1.NativeFunction({ description: "Disables all role mentions", unwrap: false, execute(ctx) { - ctx.container.unparseMention("roles"); + ctx.container.unparseMentions("roles"); ctx.container.allowedMentions.roles = []; return this.success(); }, diff --git a/dist/native/mention/disableRoleMentions.js.map b/dist/native/mention/disableRoleMentions.js.map index 5f5be3c5dd..86c241543f 100644 --- a/dist/native/mention/disableRoleMentions.js.map +++ b/dist/native/mention/disableRoleMentions.js.map @@ -1 +1 @@ -{"version":3,"file":"disableRoleMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableRoleMentions.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,cAAc,CAAC,OAAO,CAAC,CAAA;QACrC,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableRoleMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableRoleMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,OAAO,CAAC,CAAA;QACtC,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/disableUserMentions.d.ts.map b/dist/native/mention/disableUserMentions.d.ts.map index 49c3c6b58d..0b04b92866 100644 --- a/dist/native/mention/disableUserMentions.d.ts.map +++ b/dist/native/mention/disableUserMentions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableUserMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableUserMentions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file +{"version":3,"file":"disableUserMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/disableUserMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBAUE"} \ No newline at end of file diff --git a/dist/native/mention/disableUserMentions.js b/dist/native/mention/disableUserMentions.js index fc10ed46e9..be560b7201 100644 --- a/dist/native/mention/disableUserMentions.js +++ b/dist/native/mention/disableUserMentions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -7,7 +11,7 @@ exports.default = new structures_1.NativeFunction({ description: "Disables all user mentions", unwrap: false, execute(ctx) { - ctx.container.unparseMention("users"); + ctx.container.unparseMentions("users"); ctx.container.allowedMentions.users = []; return this.success(); }, diff --git a/dist/native/mention/disableUserMentions.js.map b/dist/native/mention/disableUserMentions.js.map index 20504afb94..4164c32f65 100644 --- a/dist/native/mention/disableUserMentions.js.map +++ b/dist/native/mention/disableUserMentions.js.map @@ -1 +1 @@ -{"version":3,"file":"disableUserMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableUserMentions.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,cAAc,CAAC,OAAO,CAAC,CAAA;QACrC,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableUserMentions.js","sourceRoot":"","sources":["../../../src/native/mention/disableUserMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,OAAO,CAAC,CAAA;QACtC,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,EAAE,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/enableAllMentions.d.ts b/dist/native/mention/enableAllMentions.d.ts new file mode 100644 index 0000000000..738258c9b6 --- /dev/null +++ b/dist/native/mention/enableAllMentions.d.ts @@ -0,0 +1,4 @@ +import { NativeFunction } from "../../structures"; +declare const _default: NativeFunction>[], false>; +export default _default; +//# sourceMappingURL=enableAllMentions.d.ts.map \ No newline at end of file diff --git a/dist/native/mention/enableAllMentions.d.ts.map b/dist/native/mention/enableAllMentions.d.ts.map new file mode 100644 index 0000000000..5cf5144b99 --- /dev/null +++ b/dist/native/mention/enableAllMentions.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"enableAllMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/enableAllMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/mention/enableAllMentions.js b/dist/native/mention/enableAllMentions.js new file mode 100644 index 0000000000..b1f8a4aa15 --- /dev/null +++ b/dist/native/mention/enableAllMentions.js @@ -0,0 +1,18 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$enableAllMentions", + version: "2.6.0", + description: "Enables every possible mention", + unwrap: false, + execute(ctx) { + ctx.container.parseMentions(); + return this.success(); + }, +}); +//# sourceMappingURL=enableAllMentions.js.map \ No newline at end of file diff --git a/dist/native/mention/enableAllMentions.js.map b/dist/native/mention/enableAllMentions.js.map new file mode 100644 index 0000000000..722550bf49 --- /dev/null +++ b/dist/native/mention/enableAllMentions.js.map @@ -0,0 +1 @@ +{"version":3,"file":"enableAllMentions.js","sourceRoot":"","sources":["../../../src/native/mention/enableAllMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,aAAa,EAAE,CAAA;QAC7B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/enableRoleMentions.d.ts.map b/dist/native/mention/enableRoleMentions.d.ts.map index b229921f36..6b1509493c 100644 --- a/dist/native/mention/enableRoleMentions.d.ts.map +++ b/dist/native/mention/enableRoleMentions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableRoleMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/enableRoleMentions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file +{"version":3,"file":"enableRoleMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/enableRoleMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA4BE"} \ No newline at end of file diff --git a/dist/native/mention/enableRoleMentions.js b/dist/native/mention/enableRoleMentions.js index 9d65608b8c..1b49d4acae 100644 --- a/dist/native/mention/enableRoleMentions.js +++ b/dist/native/mention/enableRoleMentions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -6,7 +10,7 @@ exports.default = new structures_1.NativeFunction({ version: "1.3.0", description: "Only parses these roles for mentions", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "guild ID", @@ -25,7 +29,10 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [, roles]) { - ctx.container.allowedMentions.roles = roles.map(x => x.id); + if (this.hasFields) + ctx.container.allowedMentions.roles = roles.map(x => x.id); + else + ctx.container.parseMentions("roles"); return this.success(); }, }); diff --git a/dist/native/mention/enableRoleMentions.js.map b/dist/native/mention/enableRoleMentions.js.map index 7e2a37e7bd..746e9274f3 100644 --- a/dist/native/mention/enableRoleMentions.js.map +++ b/dist/native/mention/enableRoleMentions.js.map @@ -1 +1 @@ -{"version":3,"file":"enableRoleMentions.js","sourceRoot":"","sources":["../../../src/native/mention/enableRoleMentions.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAE;QACnB,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableRoleMentions.js","sourceRoot":"","sources":["../../../src/native/mention/enableRoleMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAE;QACnB,IAAI,IAAI,CAAC,SAAS;YAAE,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;;YACzE,GAAG,CAAC,SAAS,CAAC,aAAa,CAAC,OAAO,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/enableUserMentions.d.ts.map b/dist/native/mention/enableUserMentions.d.ts.map index ba99d627b2..93e53fd63d 100644 --- a/dist/native/mention/enableUserMentions.d.ts.map +++ b/dist/native/mention/enableUserMentions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableUserMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/enableUserMentions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"enableUserMentions.d.ts","sourceRoot":"","sources":["../../../src/native/mention/enableUserMentions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/mention/enableUserMentions.js b/dist/native/mention/enableUserMentions.js index 0ad65a8444..f41063a9d7 100644 --- a/dist/native/mention/enableUserMentions.js +++ b/dist/native/mention/enableUserMentions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -6,7 +10,7 @@ exports.default = new structures_1.NativeFunction({ version: "1.3.0", description: "Only parses these users for mentions", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "users", @@ -17,7 +21,10 @@ exports.default = new structures_1.NativeFunction({ } ], execute(ctx, [users]) { - ctx.container.allowedMentions.users = users.map(x => x.id); + if (this.hasFields) + ctx.container.allowedMentions.users = users.map(x => x.id); + else + ctx.container.parseMentions("users"); return this.success(); }, }); diff --git a/dist/native/mention/enableUserMentions.js.map b/dist/native/mention/enableUserMentions.js.map index e446e7c0aa..64a021ec8b 100644 --- a/dist/native/mention/enableUserMentions.js.map +++ b/dist/native/mention/enableUserMentions.js.map @@ -1 +1 @@ -{"version":3,"file":"enableUserMentions.js","sourceRoot":"","sources":["../../../src/native/mention/enableUserMentions.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableUserMentions.js","sourceRoot":"","sources":["../../../src/native/mention/enableUserMentions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,IAAI,IAAI,CAAC,SAAS;YAAE,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;;YACzE,GAAG,CAAC,SAAS,CAAC,aAAa,CAAC,OAAO,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/isChannelMentioned.d.ts.map b/dist/native/mention/isChannelMentioned.d.ts.map index 782cb33d02..66d9b2c962 100644 --- a/dist/native/mention/isChannelMentioned.d.ts.map +++ b/dist/native/mention/isChannelMentioned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isChannelMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isChannelMentioned.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"isChannelMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isChannelMentioned.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/mention/isChannelMentioned.js b/dist/native/mention/isChannelMentioned.js index ff01ba29d8..7272eeecd9 100644 --- a/dist/native/mention/isChannelMentioned.js +++ b/dist/native/mention/isChannelMentioned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/isChannelMentioned.js.map b/dist/native/mention/isChannelMentioned.js.map index 993ef6aaad..71c8c08689 100644 --- a/dist/native/mention/isChannelMentioned.js.map +++ b/dist/native/mention/isChannelMentioned.js.map @@ -1 +1 @@ -{"version":3,"file":"isChannelMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isChannelMentioned.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,CAAE;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isChannelMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isChannelMentioned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,CAAE;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/isRoleMentioned.d.ts.map b/dist/native/mention/isRoleMentioned.d.ts.map index 92ebb7db53..1b0674051b 100644 --- a/dist/native/mention/isRoleMentioned.d.ts.map +++ b/dist/native/mention/isRoleMentioned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isRoleMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isRoleMentioned.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"isRoleMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isRoleMentioned.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/mention/isRoleMentioned.js b/dist/native/mention/isRoleMentioned.js index 6ca69bd278..124543b2bd 100644 --- a/dist/native/mention/isRoleMentioned.js +++ b/dist/native/mention/isRoleMentioned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/isRoleMentioned.js.map b/dist/native/mention/isRoleMentioned.js.map index 0f0a6d12f1..3a9eb88c53 100644 --- a/dist/native/mention/isRoleMentioned.js.map +++ b/dist/native/mention/isRoleMentioned.js.map @@ -1 +1 @@ -{"version":3,"file":"isRoleMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isRoleMentioned.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isRoleMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isRoleMentioned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/isUserMentioned.d.ts.map b/dist/native/mention/isUserMentioned.d.ts.map index b9582da102..f7b6c0095a 100644 --- a/dist/native/mention/isUserMentioned.d.ts.map +++ b/dist/native/mention/isUserMentioned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isUserMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isUserMentioned.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"isUserMentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/isUserMentioned.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;eAcnC,WAAW;;;;;;;;;;;;;;;;;AAZlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/mention/isUserMentioned.js b/dist/native/mention/isUserMentioned.js index 4e452d19d7..20b896eb4d 100644 --- a/dist/native/mention/isUserMentioned.js +++ b/dist/native/mention/isUserMentioned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/isUserMentioned.js.map b/dist/native/mention/isUserMentioned.js.map index 2cb3c94f48..37793c0311 100644 --- a/dist/native/mention/isUserMentioned.js.map +++ b/dist/native/mention/isUserMentioned.js.map @@ -1 +1 @@ -{"version":3,"file":"isUserMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isUserMentioned.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,IAAI,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isUserMentioned.js","sourceRoot":"","sources":["../../../src/native/mention/isUserMentioned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kCAAkC;YAC/C,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,kCAAkC;SAClD;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,kCAAkC;SAClD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,IAAI,CAAE;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentioned.d.ts.map b/dist/native/mention/mentioned.d.ts.map index 10aa392dfb..a853c40ad3 100644 --- a/dist/native/mention/mentioned.d.ts.map +++ b/dist/native/mention/mentioned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentioned.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"mentioned.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentioned.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/mention/mentioned.js b/dist/native/mention/mentioned.js index 65e0a70133..4c307220df 100644 --- a/dist/native/mention/mentioned.js +++ b/dist/native/mention/mentioned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/mention/mentioned.js.map b/dist/native/mention/mentioned.js.map index a6ca6b95b3..cdbaabda16 100644 --- a/dist/native/mention/mentioned.js.map +++ b/dist/native/mention/mentioned.js.map @@ -1 +1 @@ -{"version":3,"file":"mentioned.js","sourceRoot":"","sources":["../../../src/native/mention/mentioned.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAuB,IAAI,CAAC,SAAS;YACzC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YACvC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentioned.js","sourceRoot":"","sources":["../../../src/native/mention/mentioned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAuB,IAAI,CAAC,SAAS;YACzC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YACvC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentionedChannelCount.d.ts.map b/dist/native/mention/mentionedChannelCount.d.ts.map index a6318aba8f..741e7d9ed0 100644 --- a/dist/native/mention/mentionedChannelCount.d.ts.map +++ b/dist/native/mention/mentionedChannelCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentionedChannelCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannelCount.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"mentionedChannelCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannelCount.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/mention/mentionedChannelCount.js b/dist/native/mention/mentionedChannelCount.js index 16991356ba..7aa4e1f726 100644 --- a/dist/native/mention/mentionedChannelCount.js +++ b/dist/native/mention/mentionedChannelCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/mentionedChannelCount.js.map b/dist/native/mention/mentionedChannelCount.js.map index fda3f59b53..00ec7fa7b3 100644 --- a/dist/native/mention/mentionedChannelCount.js.map +++ b/dist/native/mention/mentionedChannelCount.js.map @@ -1 +1 @@ -{"version":3,"file":"mentionedChannelCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannelCount.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentionedChannelCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannelCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE;QACL,yBAAyB;KAC5B;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentionedChannels.d.ts.map b/dist/native/mention/mentionedChannels.d.ts.map index 72729d9aba..a64d6d7a53 100644 --- a/dist/native/mention/mentionedChannels.d.ts.map +++ b/dist/native/mention/mentionedChannels.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentionedChannels.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannels.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"mentionedChannels.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannels.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/mention/mentionedChannels.js b/dist/native/mention/mentionedChannels.js index 46a9d60b21..98f5e77cf7 100644 --- a/dist/native/mention/mentionedChannels.js +++ b/dist/native/mention/mentionedChannels.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/mention/mentionedChannels.js.map b/dist/native/mention/mentionedChannels.js.map index 98f73b3e25..29bc091dab 100644 --- a/dist/native/mention/mentionedChannels.js.map +++ b/dist/native/mention/mentionedChannels.js.map @@ -1 +1 @@ -{"version":3,"file":"mentionedChannels.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannels.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAuB,IAAI,CAAC,SAAS;YACzC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YAC1C,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAEhE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentionedChannels.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedChannels.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE;QACL,mBAAmB;KACtB;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;QAChB,MAAM,EAAE,GAAuB,IAAI,CAAC,SAAS;YACzC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YAC1C,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAEhE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentionedRoleCount.d.ts.map b/dist/native/mention/mentionedRoleCount.d.ts.map index 8f52fc4b08..6f330b63c8 100644 --- a/dist/native/mention/mentionedRoleCount.d.ts.map +++ b/dist/native/mention/mentionedRoleCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentionedRoleCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoleCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"mentionedRoleCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoleCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/mention/mentionedRoleCount.js b/dist/native/mention/mentionedRoleCount.js index 70620df3d7..2504505de9 100644 --- a/dist/native/mention/mentionedRoleCount.js +++ b/dist/native/mention/mentionedRoleCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/mentionedRoleCount.js.map b/dist/native/mention/mentionedRoleCount.js.map index 96260ecce9..7998f607f9 100644 --- a/dist/native/mention/mentionedRoleCount.js.map +++ b/dist/native/mention/mentionedRoleCount.js.map @@ -1 +1 @@ -{"version":3,"file":"mentionedRoleCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoleCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentionedRoleCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoleCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentionedRoles.d.ts.map b/dist/native/mention/mentionedRoles.d.ts.map index d33af30346..1cb497f3b7 100644 --- a/dist/native/mention/mentionedRoles.d.ts.map +++ b/dist/native/mention/mentionedRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentionedRoles.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"mentionedRoles.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoles.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/mention/mentionedRoles.js b/dist/native/mention/mentionedRoles.js index c0032c8904..a4369fe535 100644 --- a/dist/native/mention/mentionedRoles.js +++ b/dist/native/mention/mentionedRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/mention/mentionedRoles.js.map b/dist/native/mention/mentionedRoles.js.map index 23d811c3d2..da7cdd4f4f 100644 --- a/dist/native/mention/mentionedRoles.js.map +++ b/dist/native/mention/mentionedRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"mentionedRoles.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoles.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,SAAS;YACV,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YACvC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAChE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentionedRoles.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,CAAC,SAAS;YACV,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;YACvC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAChE,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/mentionedUserCount.d.ts.map b/dist/native/mention/mentionedUserCount.d.ts.map index cfdd6d010a..e750b5a7ea 100644 --- a/dist/native/mention/mentionedUserCount.d.ts.map +++ b/dist/native/mention/mentionedUserCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"mentionedUserCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedUserCount.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file +{"version":3,"file":"mentionedUserCount.d.ts","sourceRoot":"","sources":["../../../src/native/mention/mentionedUserCount.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAYE"} \ No newline at end of file diff --git a/dist/native/mention/mentionedUserCount.js b/dist/native/mention/mentionedUserCount.js index 56b7930057..82cdc5e79a 100644 --- a/dist/native/mention/mentionedUserCount.js +++ b/dist/native/mention/mentionedUserCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/mentionedUserCount.js.map b/dist/native/mention/mentionedUserCount.js.map index 531ce5c6df..082f6fd33d 100644 --- a/dist/native/mention/mentionedUserCount.js.map +++ b/dist/native/mention/mentionedUserCount.js.map @@ -1 +1 @@ -{"version":3,"file":"mentionedUserCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedUserCount.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"mentionedUserCount.js","sourceRoot":"","sources":["../../../src/native/mention/mentionedUserCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/mention/nomention.d.ts.map b/dist/native/mention/nomention.d.ts.map index b776c01659..61a7014275 100644 --- a/dist/native/mention/nomention.d.ts.map +++ b/dist/native/mention/nomention.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"nomention.d.ts","sourceRoot":"","sources":["../../../src/native/mention/nomention.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"nomention.d.ts","sourceRoot":"","sources":["../../../src/native/mention/nomention.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/mention/nomention.js b/dist/native/mention/nomention.js index 4744d5545d..ed903e7e9f 100644 --- a/dist/native/mention/nomention.js +++ b/dist/native/mention/nomention.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/mention/nomention.js.map b/dist/native/mention/nomention.js.map index ebbba34c8a..34970b781d 100644 --- a/dist/native/mention/nomention.js.map +++ b/dist/native/mention/nomention.js.map @@ -1 +1 @@ -{"version":3,"file":"nomention.js","sourceRoot":"","sources":["../../../src/native/mention/nomention.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,WAAW,GAAG,KAAK,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"nomention.js","sourceRoot":"","sources":["../../../src/native/mention/nomention.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,WAAW,GAAG,KAAK,CAAA;QACjD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/addMessageReactions.d.ts.map b/dist/native/message/addMessageReactions.d.ts.map index 3f0ea9fba3..e312f83374 100644 --- a/dist/native/message/addMessageReactions.d.ts.map +++ b/dist/native/message/addMessageReactions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/addMessageReactions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;AAdvC,wBA0CE"} \ No newline at end of file +{"version":3,"file":"addMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/addMessageReactions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;AAdvC,wBA0CE"} \ No newline at end of file diff --git a/dist/native/message/addMessageReactions.js b/dist/native/message/addMessageReactions.js index 38f5cfd31c..57a0a1f2d8 100644 --- a/dist/native/message/addMessageReactions.js +++ b/dist/native/message/addMessageReactions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/addMessageReactions.js.map b/dist/native/message/addMessageReactions.js.map index 78856f0e97..afe5bd4482 100644 --- a/dist/native/message/addMessageReactions.js.map +++ b/dist/native/message/addMessageReactions.js.map @@ -1 +1 @@ -{"version":3,"file":"addMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/addMessageReactions.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;YACxB,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC1D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/addMessageReactions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC;QAClC,IAAI,KAAK,GAAG,CAAC,CAAA;QAEb,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;YACxB,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC1D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/attachment.d.ts.map b/dist/native/message/attachment.d.ts.map index 5d5bc68f05..3155183366 100644 --- a/dist/native/message/attachment.d.ts.map +++ b/dist/native/message/attachment.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"attachment.d.ts","sourceRoot":"","sources":["../../../src/native/message/attachment.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAoDE"} \ No newline at end of file +{"version":3,"file":"attachment.d.ts","sourceRoot":"","sources":["../../../src/native/message/attachment.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAoDE"} \ No newline at end of file diff --git a/dist/native/message/attachment.js b/dist/native/message/attachment.js index 06e4272d48..a699b6b681 100644 --- a/dist/native/message/attachment.js +++ b/dist/native/message/attachment.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/attachment.js.map b/dist/native/message/attachment.js.map index 809468b2a4..8648e33852 100644 --- a/dist/native/message/attachment.js.map +++ b/dist/native/message/attachment.js.map @@ -1 +1 @@ -{"version":3,"file":"attachment.js","sourceRoot":"","sources":["../../../src/native/message/attachment.ts"],"names":[],"mappings":";;AAAA,2CAA8C;AAC9C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC;QACvC,MAAM,UAAU,GAAG,IAAI,8BAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAqB,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE;YACxG,IAAI;YACJ,WAAW,EAAE,IAAI,IAAI,SAAS;SACjC,CAAC,CAAA;QAEF,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACpC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"attachment.js","sourceRoot":"","sources":["../../../src/native/message/attachment.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8C;AAC9C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kDAAkD;YAC/D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC;QACvC,MAAM,UAAU,GAAG,IAAI,8BAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAqB,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE;YACxG,IAAI;YACJ,WAAW,EAAE,IAAI,IAAI,SAAS;SACjC,CAAC,CAAA;QAEF,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACpC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/deleteAllMessageReactions.d.ts.map b/dist/native/message/deleteAllMessageReactions.d.ts.map index 119cc1e8a2..4671f06f10 100644 --- a/dist/native/message/deleteAllMessageReactions.d.ts.map +++ b/dist/native/message/deleteAllMessageReactions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteAllMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteAllMessageReactions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;AAdvC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"deleteAllMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteAllMessageReactions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;AAdvC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/deleteAllMessageReactions.js b/dist/native/message/deleteAllMessageReactions.js index c0dc2ba9e8..f942eb96dc 100644 --- a/dist/native/message/deleteAllMessageReactions.js +++ b/dist/native/message/deleteAllMessageReactions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/deleteAllMessageReactions.js.map b/dist/native/message/deleteAllMessageReactions.js.map index d1c0ebafec..05ab276e51 100644 --- a/dist/native/message/deleteAllMessageReactions.js.map +++ b/dist/native/message/deleteAllMessageReactions.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteAllMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/deleteAllMessageReactions.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteAllMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/deleteAllMessageReactions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/deleteIn.d.ts.map b/dist/native/message/deleteIn.d.ts.map index 98355e0a26..27baec62a8 100644 --- a/dist/native/message/deleteIn.d.ts.map +++ b/dist/native/message/deleteIn.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteIn.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteIn.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"deleteIn.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteIn.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/message/deleteIn.js b/dist/native/message/deleteIn.js index 0477c72acd..91af2399a1 100644 --- a/dist/native/message/deleteIn.js +++ b/dist/native/message/deleteIn.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/deleteIn.js.map b/dist/native/message/deleteIn.js.map index cc95e080ff..6147a37167 100644 --- a/dist/native/message/deleteIn.js.map +++ b/dist/native/message/deleteIn.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteIn.js","sourceRoot":"","sources":["../../../src/native/message/deleteIn.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,EAAE,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteIn.js","sourceRoot":"","sources":["../../../src/native/message/deleteIn.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACb,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,EAAE,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/deleteMessage.d.ts.map b/dist/native/message/deleteMessage.d.ts.map index d342404551..a2c1694936 100644 --- a/dist/native/message/deleteMessage.d.ts.map +++ b/dist/native/message/deleteMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAmB3C,WAAW;;;;;;;;;;AAhBlC,wBAgDE"} \ No newline at end of file +{"version":3,"file":"deleteMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;eAmB3C,WAAW;;;;;;;;;;AAhBlC,wBAgDE"} \ No newline at end of file diff --git a/dist/native/message/deleteMessage.js b/dist/native/message/deleteMessage.js index 4ee31fcafc..cb90691aeb 100644 --- a/dist/native/message/deleteMessage.js +++ b/dist/native/message/deleteMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/deleteMessage.js.map b/dist/native/message/deleteMessage.js.map index 3efe8c2dfc..4f7132c099 100644 --- a/dist/native/message/deleteMessage.js.map +++ b/dist/native/message/deleteMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteMessage.js","sourceRoot":"","sources":["../../../src/native/message/deleteMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,WAAW,EAAE,+DAA+D;IAC5E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC;QAClC,MAAM,EAAE,GAAI,OAAuB,CAAA;QACnC,IAAI,CAAC,QAAQ,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAE5C,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE;YACvB,IAAI;gBACA,MAAM,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAA;gBACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;YAAC,OAAO,KAAK,EAAE;gBACZ,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;gBACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;SACJ;QAED,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE;aAChB,UAAU,CAAC,QAAQ,EAAE,IAAI,CAAC;aAC1B,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aACnB,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteMessage.js","sourceRoot":"","sources":["../../../src/native/message/deleteMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,WAAW,EAAE,+DAA+D;IAC5E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC;QAClC,MAAM,EAAE,GAAI,OAAuB,CAAA;QACnC,IAAI,CAAC,QAAQ,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;QAE5C,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE;YACvB,IAAI;gBACA,MAAM,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAA;gBACrC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;YAAC,OAAO,KAAK,EAAE;gBACZ,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;gBACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;aACzB;SACJ;QAED,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE;aAChB,UAAU,CAAC,QAAQ,EAAE,IAAI,CAAC;aAC1B,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aACnB,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/deleteUserMessageReaction.d.ts.map b/dist/native/message/deleteUserMessageReaction.d.ts.map index 38f98b7677..c5b09e00b0 100644 --- a/dist/native/message/deleteUserMessageReaction.d.ts.map +++ b/dist/native/message/deleteUserMessageReaction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteUserMessageReaction.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteUserMessageReaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file +{"version":3,"file":"deleteUserMessageReaction.d.ts","sourceRoot":"","sources":["../../../src/native/message/deleteUserMessageReaction.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file diff --git a/dist/native/message/deleteUserMessageReaction.js b/dist/native/message/deleteUserMessageReaction.js index b1c820abb7..1725884e0c 100644 --- a/dist/native/message/deleteUserMessageReaction.js +++ b/dist/native/message/deleteUserMessageReaction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/deleteUserMessageReaction.js.map b/dist/native/message/deleteUserMessageReaction.js.map index ea2e721677..2c86c4ac06 100644 --- a/dist/native/message/deleteUserMessageReaction.js.map +++ b/dist/native/message/deleteUserMessageReaction.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteUserMessageReaction.js","sourceRoot":"","sources":["../../../src/native/message/deleteUserMessageReaction.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,KAAK,EAAE,IAAI,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteUserMessageReaction.js","sourceRoot":"","sources":["../../../src/native/message/deleteUserMessageReaction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,4BAA4B;IAClC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0DAA0D;IACvE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,KAAK,EAAE,IAAI,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/editMessage.d.ts.map b/dist/native/message/editMessage.d.ts.map index 642ea1b577..8c7f8f8ecb 100644 --- a/dist/native/message/editMessage.d.ts.map +++ b/dist/native/message/editMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/editMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,YAAY,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;AAblC,wBAqCE"} \ No newline at end of file +{"version":3,"file":"editMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/editMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAW,MAAM,YAAY,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;;;;;;AAblC,wBAqCE"} \ No newline at end of file diff --git a/dist/native/message/editMessage.js b/dist/native/message/editMessage.js index a9d035f9a5..45f851443f 100644 --- a/dist/native/message/editMessage.js +++ b/dist/native/message/editMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/editMessage.js.map b/dist/native/message/editMessage.js.map index 63b940da84..a73cb1e053 100644 --- a/dist/native/message/editMessage.js.map +++ b/dist/native/message/editMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"editMessage.js","sourceRoot":"","sources":["../../../src/native/message/editMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,OAAO,CAAC;QAC/B,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editMessage.js","sourceRoot":"","sources":["../../../src/native/message/editMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,OAAO,CAAC;QAC/B,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,GAAG,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/fetchComponents.d.ts.map b/dist/native/message/fetchComponents.d.ts.map index ae59736805..b8078626a5 100644 --- a/dist/native/message/fetchComponents.d.ts.map +++ b/dist/native/message/fetchComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchComponents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"fetchComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchComponents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAGlE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/fetchComponents.js b/dist/native/message/fetchComponents.js index d8ddf5c6e3..4886a3d1d1 100644 --- a/dist/native/message/fetchComponents.js +++ b/dist/native/message/fetchComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const components_1 = require("../../functions/components"); diff --git a/dist/native/message/fetchComponents.js.map b/dist/native/message/fetchComponents.js.map index 33dc282a5d..4b7af878b3 100644 --- a/dist/native/message/fetchComponents.js.map +++ b/dist/native/message/fetchComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchComponents.js","sourceRoot":"","sources":["../../../src/native/message/fetchComponents.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8FAA8F;IAC3G,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAA;QACpG,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchComponents.js","sourceRoot":"","sources":["../../../src/native/message/fetchComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8FAA8F;IAC3G,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAA;QACpG,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/fetchEmbeds.d.ts.map b/dist/native/message/fetchEmbeds.d.ts.map index 6935aef90e..16af86020a 100644 --- a/dist/native/message/fetchEmbeds.d.ts.map +++ b/dist/native/message/fetchEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchEmbeds.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAG1D,wBAoDE"} \ No newline at end of file +{"version":3,"file":"fetchEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchEmbeds.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAG1D,wBAoDE"} \ No newline at end of file diff --git a/dist/native/message/fetchEmbeds.js b/dist/native/message/fetchEmbeds.js index a9d6cea1f0..2213ef975d 100644 --- a/dist/native/message/fetchEmbeds.js +++ b/dist/native/message/fetchEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/fetchEmbeds.js.map b/dist/native/message/fetchEmbeds.js.map index a841e8d1e0..99ee9e2ed4 100644 --- a/dist/native/message/fetchEmbeds.js.map +++ b/dist/native/message/fetchEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/fetchEmbeds.ts"],"names":[],"mappings":";;AAAA,2CAAsD;AACtD,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,aAAa;QACb,aAAa;QACb,cAAc;KACjB;IACD,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,AAAD,EAAG,GAAG,EAAE,KAAK,CAAE;QACzB,GAAG,KAAK,GAAG,CAAC,OAAQ,CAAA;QACpB,MAAM,MAAM,GAAG,GAAG,EAAE,MAAM,CAAA;QAE1B,IAAI,MAAM,KAAK,SAAS;YACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEzB,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;YAC3B,IAAI,CAAC,KAAK;gBACN,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;YACzB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;YACnD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/fetchEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAsD;AACtD,iDAA0D;AAG1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,aAAa;QACb,aAAa;QACb,cAAc;KACjB;IACD,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,AAAD,EAAG,GAAG,EAAE,KAAK,CAAE;QACzB,GAAG,KAAK,GAAG,CAAC,OAAQ,CAAA;QACpB,MAAM,MAAM,GAAG,GAAG,EAAE,MAAM,CAAA;QAE1B,IAAI,MAAM,KAAK,SAAS;YACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEzB,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;YAC3B,IAAI,CAAC,KAAK;gBACN,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;YACzB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;YACnD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;SACxB;QAED,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/fetchMessage.d.ts.map b/dist/native/message/fetchMessage.d.ts.map index 56aed7d189..b1261904ca 100644 --- a/dist/native/message/fetchMessage.d.ts.map +++ b/dist/native/message/fetchMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"fetchMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/message/fetchMessage.js b/dist/native/message/fetchMessage.js index 4f4ea2d2b2..9f0106825f 100644 --- a/dist/native/message/fetchMessage.js +++ b/dist/native/message/fetchMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/fetchMessage.js.map b/dist/native/message/fetchMessage.js.map index b58e46f475..372c581136 100644 --- a/dist/native/message/fetchMessage.js.map +++ b/dist/native/message/fetchMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchMessage.js","sourceRoot":"","sources":["../../../src/native/message/fetchMessage.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchMessage.js","sourceRoot":"","sources":["../../../src/native/message/fetchMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/fetchResponse.d.ts.map b/dist/native/message/fetchResponse.d.ts.map index 17963f08bb..3f45032a20 100644 --- a/dist/native/message/fetchResponse.d.ts.map +++ b/dist/native/message/fetchResponse.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchResponse.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAG1D,wBAiCE"} \ No newline at end of file +{"version":3,"file":"fetchResponse.d.ts","sourceRoot":"","sources":["../../../src/native/message/fetchResponse.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAG1D,wBAiCE"} \ No newline at end of file diff --git a/dist/native/message/fetchResponse.js b/dist/native/message/fetchResponse.js index aedaa0b09f..53219f029d 100644 --- a/dist/native/message/fetchResponse.js +++ b/dist/native/message/fetchResponse.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/fetchResponse.js.map b/dist/native/message/fetchResponse.js.map index 32b8f137f0..1e64434382 100644 --- a/dist/native/message/fetchResponse.js.map +++ b/dist/native/message/fetchResponse.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchResponse.js","sourceRoot":"","sources":["../../../src/native/message/fetchResponse.ts"],"names":[],"mappings":";;AAAA,2CAA4D;AAC5D,iDAA0D;AAC1D,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,sHAAsH;IACnI,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAE;QACjB,GAAG,KAAK,GAAG,CAAC,OAAQ,CAAA;QACpB,IAAI,GAAG,EAAE;YACL,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;YACvE,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YACjF,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,8BAAiB,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;YACrG,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;SAC9D;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchResponse.js","sourceRoot":"","sources":["../../../src/native/message/fetchResponse.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4D;AAC5D,iDAA0D;AAC1D,2DAA2D;AAE3D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,sHAAsH;IACnI,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAE;QACjB,GAAG,KAAK,GAAG,CAAC,OAAQ,CAAA;QACpB,IAAI,GAAG,EAAE;YACL,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;YACvE,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,2BAAc,EAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;YACjF,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,8BAAiB,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;YACrG,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;SAC9D;QACD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/forwardMessage.d.ts.map b/dist/native/message/forwardMessage.d.ts.map index b59a6c98c0..f478fc71b3 100644 --- a/dist/native/message/forwardMessage.d.ts.map +++ b/dist/native/message/forwardMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forwardMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/forwardMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;eA8B3C,WAAW;;AA5BlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"forwardMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/forwardMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAwD,MAAM,YAAY,CAAA;AAC9F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;eA8B3C,WAAW;;AA5BlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/message/forwardMessage.js b/dist/native/message/forwardMessage.js index 6a447a9c38..1f0a23767b 100644 --- a/dist/native/message/forwardMessage.js +++ b/dist/native/message/forwardMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/forwardMessage.js.map b/dist/native/message/forwardMessage.js.map index 155137e531..2d7a12ff08 100644 --- a/dist/native/message/forwardMessage.js.map +++ b/dist/native/message/forwardMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"forwardMessage.js","sourceRoot":"","sources":["../../../src/native/message/forwardMessage.ts"],"names":[],"mappings":";;AAAA,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,OAAO;SAC/E;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqD,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forwardMessage.js","sourceRoot":"","sources":["../../../src/native/message/forwardMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8F;AAC9F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,IAAI,KAAK,wBAAW,CAAC,OAAO;SAC/E;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC;QACnC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAqD,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getComponents.d.ts.map b/dist/native/message/getComponents.d.ts.map index c9badb64ad..86521873d3 100644 --- a/dist/native/message/getComponents.d.ts.map +++ b/dist/native/message/getComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/getComponents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,WAAW,EAA6B,MAAM,YAAY,CAAA;AAC9E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAuB,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;;;;;;;eAiB5D,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA2GE"} \ No newline at end of file +{"version":3,"file":"getComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/getComponents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAa,WAAW,EAA6B,MAAM,YAAY,CAAA;AAC9E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAuB,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;;;;;;;eAiB5D,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA2GE"} \ No newline at end of file diff --git a/dist/native/message/getComponents.js b/dist/native/message/getComponents.js index 64f7f72e7b..bbe99379f9 100644 --- a/dist/native/message/getComponents.js +++ b/dist/native/message/getComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const component_1 = require("../../properties/component"); diff --git a/dist/native/message/getComponents.js.map b/dist/native/message/getComponents.js.map index dbe873914e..5147a8fb46 100644 --- a/dist/native/message/getComponents.js.map +++ b/dist/native/message/getComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"getComponents.js","sourceRoot":"","sources":["../../../src/native/message/getComponents.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"getComponents.js","sourceRoot":"","sources":["../../../src/native/message/getComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,0DAAmF;AACnF,2CAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kFAAkF;IAC/F,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6BAAiB;YACvB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sDAAsD;YACnE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,6BAAiB;SAC1B;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,KAAK,CAAC;QACnE,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,IAAI,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,yBAAY,CAAC,cAAc,CAAC,CAAA;QAEnD,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;YAC9B,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAC5C,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAE,CAA0C,CAAC,UAAU,CAC7E,CAAC,CAAA;SACL;QAED,MAAM,GAAG,GAAG,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAA;QAClC,MAAM,KAAK,GAAG,YAAY,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAA;QAC9D,MAAM,IAAI,GAAG,CAAC,OAAO,UAAU,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;QAE/E,IAAI,CAAC,KAAK,EAAE;YACR,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAA;SAC9E;QAED,MAAM,KAAK,GAAG,IAAI,IAAI,GAAG,CAAA;QAEzB,IAAI,KAAK,KAAK,6BAAiB,CAAC,UAAU,IAAI,KAAK,KAAK,6BAAiB,CAAC,SAAS,EAAE;YACjF,OAAO,IAAI,CAAC,OAAO,CAAC,+BAAmB,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAA;SAC9D;QAED,MAAM,MAAM,GAAG,CAAC,KAAK,KAAK,6BAAiB,CAAC,SAAS,IAAI,KAAK,IAAI,WAAW,IAAI,KAAK,CAAC;YACnF,CAAC,CAAC,KAAK,CAAC,SAAS;YACjB,CAAC,CAAC,KAAK,IAAI,YAAY,IAAI,KAAK;gBAC5B,CAAC,CAAC,KAAK,CAAC,UAAU;gBAClB,CAAC,CAAC,SAAS,CAAA;QACnB,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,UAAU,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;QAEnH,IAAI,CAAC,KAAK,EAAE;YACR,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,IAAI,IAAI,MAAM,CAAC,CAAA;SACjD;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,+BAAmB,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getEmbeds.d.ts.map b/dist/native/message/getEmbeds.d.ts.map index f73edc8016..eea202c8c3 100644 --- a/dist/native/message/getEmbeds.d.ts.map +++ b/dist/native/message/getEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/getEmbeds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAuB,MAAM,YAAY,CAAA;AAC7D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;eAmBhD,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBlC,wBA6DE"} \ No newline at end of file +{"version":3,"file":"getEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/getEmbeds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAuB,MAAM,YAAY,CAAA;AAC7D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;;;;;;;eAmBhD,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBlC,wBA6DE"} \ No newline at end of file diff --git a/dist/native/message/getEmbeds.js b/dist/native/message/getEmbeds.js index 0574c25e53..d9bab6a68e 100644 --- a/dist/native/message/getEmbeds.js +++ b/dist/native/message/getEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/getEmbeds.js.map b/dist/native/message/getEmbeds.js.map index 8ecbb2f2ac..eaf8424b30 100644 --- a/dist/native/message/getEmbeds.js.map +++ b/dist/native/message/getEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"getEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/getEmbeds.ts"],"names":[],"mappings":";;AAAA,2CAA6D;AAC7D,iDAAkE;AAClE,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,WAAW;KACd;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,CAAC;QACvC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;SACvE;QAED,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,CAAsB,CAAA;QAClD,IAAI,IAAI,KAAK,IAAI,EAAE;YACf,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;SACjC;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/getEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA6D;AAC7D,iDAAkE;AAClE,kDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE;QACL,WAAW;KACd;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,CAAC;QACvC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;SACvE;QAED,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,CAAsB,CAAA;QAClD,IAAI,IAAI,KAAK,IAAI,EAAE;YACf,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;SACjC;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,yBAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAA;IACnH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getMessage.d.ts.map b/dist/native/message/getMessage.d.ts.map index 93a87f6e1a..e636fdfe57 100644 --- a/dist/native/message/getMessage.d.ts.map +++ b/dist/native/message/getMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAgBtD,WAAW;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA0CE"} \ No newline at end of file +{"version":3,"file":"getMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAgBtD,WAAW;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA0CE"} \ No newline at end of file diff --git a/dist/native/message/getMessage.js b/dist/native/message/getMessage.js index fd4a68093f..2f29aec7cc 100644 --- a/dist/native/message/getMessage.js +++ b/dist/native/message/getMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const message_1 = require("../../properties/message"); diff --git a/dist/native/message/getMessage.js.map b/dist/native/message/getMessage.js.map index e22d561bf4..54b7f02592 100644 --- a/dist/native/message/getMessage.js.map +++ b/dist/native/message/getMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"getMessage.js","sourceRoot":"","sources":["../../../src/native/message/getMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAClE,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getMessage.js","sourceRoot":"","sources":["../../../src/native/message/getMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,sDAA6E;AAE7E,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactionCount.d.ts.map b/dist/native/message/getMessageReactionCount.d.ts.map index 189812f334..4429eedc13 100644 --- a/dist/native/message/getMessageReactionCount.d.ts.map +++ b/dist/native/message/getMessageReactionCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactionCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,YAAY;IACpB,MAAM,WAAW;IACjB,KAAK,UAAU;CAClB;;;;;;;eAgBsB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file +{"version":3,"file":"getMessageReactionCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,YAAY;IACpB,MAAM,WAAW;IACjB,KAAK,UAAU;CAClB;;;;;;;eAgBsB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2CE"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactionCount.js b/dist/native/message/getMessageReactionCount.js index 314f6d3779..b6452896cb 100644 --- a/dist/native/message/getMessageReactionCount.js +++ b/dist/native/message/getMessageReactionCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ReactionType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/message/getMessageReactionCount.js.map b/dist/native/message/getMessageReactionCount.js.map index 4aec00fb87..9e856b67f2 100644 --- a/dist/native/message/getMessageReactionCount.js.map +++ b/dist/native/message/getMessageReactionCount.js.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactionCount.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionCount.ts"],"names":[],"mappings":";;;AACA,iDAAkE;AAElE,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;AACnB,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,YAAY;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,QAAQ,EAAE,IAAI,CAAC;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getMessageReactionCount.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,iDAAkE;AAElE,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;AACnB,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,YAAY;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,QAAQ,EAAE,IAAI,CAAC;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactionUsers.d.ts.map b/dist/native/message/getMessageReactionUsers.d.ts.map index df1da93019..0d01354dc5 100644 --- a/dist/native/message/getMessageReactionUsers.d.ts.map +++ b/dist/native/message/getMessageReactionUsers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactionUsers.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionUsers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2DE"} \ No newline at end of file +{"version":3,"file":"getMessageReactionUsers.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionUsers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,gBAAgB;;;;;;;;;;;;;;;;;;;;;AAdvC,wBA2DE"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactionUsers.js b/dist/native/message/getMessageReactionUsers.js index a73b983ecf..83c9ec0592 100644 --- a/dist/native/message/getMessageReactionUsers.js +++ b/dist/native/message/getMessageReactionUsers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/getMessageReactionUsers.js.map b/dist/native/message/getMessageReactionUsers.js.map index eb221167ba..06b037aaf5 100644 --- a/dist/native/message/getMessageReactionUsers.js.map +++ b/dist/native/message/getMessageReactionUsers.js.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactionUsers.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionUsers.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,QAAQ,EAAE,GAAG,CAAC;QAClC,MAAM,KAAK,GAAG,IAAI,KAAK,EAAU,CAAA;QAEjC,IAAI,OAAO,GAAuB,SAAS,CAAA;QAE3C,IAAI,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,IAAI,QAAQ,CAAC,KAAK,EAAE;YAC7C,SAAS;gBACL,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC;oBACpC,KAAK,EAAE,GAAG;oBACV,KAAK,EAAE,OAAO;iBACjB,CAAC,CAAA;gBAEF,IAAI,CAAC,IAAI,CAAC,IAAI;oBAAE,MAAK;gBACrB,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAA;gBACzB,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;aACvC;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getMessageReactionUsers.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactionUsers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAClD;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,QAAQ;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,AAAD,EAAG,QAAQ,EAAE,GAAG,CAAC;QAClC,MAAM,KAAK,GAAG,IAAI,KAAK,EAAU,CAAA;QAEjC,IAAI,OAAO,GAAuB,SAAS,CAAA;QAE3C,IAAI,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,IAAI,QAAQ,CAAC,KAAK,EAAE;YAC7C,SAAS;gBACL,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC;oBACpC,KAAK,EAAE,GAAG;oBACV,KAAK,EAAE,OAAO;iBACjB,CAAC,CAAA;gBAEF,IAAI,CAAC,IAAI,CAAC,IAAI;oBAAE,MAAK;gBACrB,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAA;gBACzB,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;aACvC;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactions.d.ts.map b/dist/native/message/getMessageReactions.d.ts.map index 4621673122..790d9bfcc7 100644 --- a/dist/native/message/getMessageReactions.d.ts.map +++ b/dist/native/message/getMessageReactions.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactions.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file +{"version":3,"file":"getMessageReactions.d.ts","sourceRoot":"","sources":["../../../src/native/message/getMessageReactions.ts"],"names":[],"mappings":"AAMA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA0CE"} \ No newline at end of file diff --git a/dist/native/message/getMessageReactions.js b/dist/native/message/getMessageReactions.js index 271b7b7eab..90b4611bfa 100644 --- a/dist/native/message/getMessageReactions.js +++ b/dist/native/message/getMessageReactions.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/getMessageReactions.js.map b/dist/native/message/getMessageReactions.js.map index f570573329..d18c4f7a09 100644 --- a/dist/native/message/getMessageReactions.js.map +++ b/dist/native/message/getMessageReactions.js.map @@ -1 +1 @@ -{"version":3,"file":"getMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactions.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACrC,MAAM,SAAS,GAAG,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,KAAK,CAAA;QAC5F,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,6BAAkB,CAAC,IAAI,IAAI,2BAAgB,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getMessageReactions.js","sourceRoot":"","sources":["../../../src/native/message/getMessageReactions.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;SACzB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACrC,MAAM,SAAS,GAAG,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,KAAK,CAAA;QAC5F,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,6BAAkB,CAAC,IAAI,IAAI,2BAAgB,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getPoll.d.ts.map b/dist/native/message/getPoll.d.ts.map index 42252f8755..3478a224cf 100644 --- a/dist/native/message/getPoll.d.ts.map +++ b/dist/native/message/getPoll.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getPoll.d.ts","sourceRoot":"","sources":["../../../src/native/message/getPoll.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;;;;;;;eAgB7C,WAAW;;;;;;;;;;;;;;;;AAdlC,wBAsCE"} \ No newline at end of file +{"version":3,"file":"getPoll.d.ts","sourceRoot":"","sources":["../../../src/native/message/getPoll.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;;;;;;;eAgB7C,WAAW;;;;;;;;;;;;;;;;AAdlC,wBAsCE"} \ No newline at end of file diff --git a/dist/native/message/getPoll.js b/dist/native/message/getPoll.js index 252b5b0e73..c3126f3432 100644 --- a/dist/native/message/getPoll.js +++ b/dist/native/message/getPoll.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const poll_1 = require("../../properties/poll"); diff --git a/dist/native/message/getPoll.js.map b/dist/native/message/getPoll.js.map index 05bb7cc49e..986de72ad7 100644 --- a/dist/native/message/getPoll.js.map +++ b/dist/native/message/getPoll.js.map @@ -1 +1 @@ -{"version":3,"file":"getPoll.js","sourceRoot":"","sources":["../../../src/native/message/getPoll.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAClE,gDAAoE;AAEpE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC;QACtB,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getPoll.js","sourceRoot":"","sources":["../../../src/native/message/getPoll.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAClE,gDAAoE;AAEpE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,iBAAiB,CAAC;IAC5B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC;QACtB,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/getSnapshots.d.ts.map b/dist/native/message/getSnapshots.d.ts.map index 656e7f4401..6e88d9f1a5 100644 --- a/dist/native/message/getSnapshots.d.ts.map +++ b/dist/native/message/getSnapshots.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getSnapshots.d.ts","sourceRoot":"","sources":["../../../src/native/message/getSnapshots.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAiBtD,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAuDE"} \ No newline at end of file +{"version":3,"file":"getSnapshots.d.ts","sourceRoot":"","sources":["../../../src/native/message/getSnapshots.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;;;;;;;eAiBtD,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAuDE"} \ No newline at end of file diff --git a/dist/native/message/getSnapshots.js b/dist/native/message/getSnapshots.js index 11a9940196..be11ac3df6 100644 --- a/dist/native/message/getSnapshots.js +++ b/dist/native/message/getSnapshots.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/getSnapshots.js.map b/dist/native/message/getSnapshots.js.map index 71b37027c9..f427fec2f0 100644 --- a/dist/native/message/getSnapshots.js.map +++ b/dist/native/message/getSnapshots.js.map @@ -1 +1 @@ -{"version":3,"file":"getSnapshots.js","sourceRoot":"","sources":["../../../src/native/message/getSnapshots.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,sDAA6E;AAC7E,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAChC,MAAM,SAAS,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAA;QAE/D,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;QACjE,IAAI,IAAI,KAAK,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getSnapshots.js","sourceRoot":"","sources":["../../../src/native/message/getSnapshots.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,sDAA6E;AAC7E,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,IAAA,eAAK,GAAmB;KAC3B;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAChC,MAAM,SAAS,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAA;QAE/D,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;QACjE,IAAI,IAAI,KAAK,IAAI;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/hasComponents.d.ts.map b/dist/native/message/hasComponents.d.ts.map index 1858fa01d7..e0444a5edb 100644 --- a/dist/native/message/hasComponents.d.ts.map +++ b/dist/native/message/hasComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/hasComponents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"hasComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/hasComponents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/hasComponents.js b/dist/native/message/hasComponents.js index 89696a4df8..d262fee063 100644 --- a/dist/native/message/hasComponents.js +++ b/dist/native/message/hasComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/hasComponents.js.map b/dist/native/message/hasComponents.js.map index e5cbd2762d..297e054569 100644 --- a/dist/native/message/hasComponents.js.map +++ b/dist/native/message/hasComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"hasComponents.js","sourceRoot":"","sources":["../../../src/native/message/hasComponents.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,qCAAqC;SACrD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasComponents.js","sourceRoot":"","sources":["../../../src/native/message/hasComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,qCAAqC;SACrD;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/hasEmbeds.d.ts.map b/dist/native/message/hasEmbeds.d.ts.map index b115f7358f..e7ec92ce0b 100644 --- a/dist/native/message/hasEmbeds.d.ts.map +++ b/dist/native/message/hasEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hasEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/hasEmbeds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA8BE"} \ No newline at end of file +{"version":3,"file":"hasEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/hasEmbeds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA8BE"} \ No newline at end of file diff --git a/dist/native/message/hasEmbeds.js b/dist/native/message/hasEmbeds.js index fb7ec6865a..f66cdd3a82 100644 --- a/dist/native/message/hasEmbeds.js +++ b/dist/native/message/hasEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/hasEmbeds.js.map b/dist/native/message/hasEmbeds.js.map index 851644281f..62fd4e2108 100644 --- a/dist/native/message/hasEmbeds.js.map +++ b/dist/native/message/hasEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"hasEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/hasEmbeds.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,CACxC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hasEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/hasEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,iCAAiC;SACjD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,CACxC,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/isPinned.d.ts.map b/dist/native/message/isPinned.d.ts.map index 90cb8571fa..4ccd339cf5 100644 --- a/dist/native/message/isPinned.d.ts.map +++ b/dist/native/message/isPinned.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isPinned.d.ts","sourceRoot":"","sources":["../../../src/native/message/isPinned.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;;;;;;;;AAjBlC,wBAgCE"} \ No newline at end of file +{"version":3,"file":"isPinned.d.ts","sourceRoot":"","sources":["../../../src/native/message/isPinned.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAmB3C,WAAW;;;;;;;;;AAjBlC,wBAgCE"} \ No newline at end of file diff --git a/dist/native/message/isPinned.js b/dist/native/message/isPinned.js index 7019e60b76..7fdb1bd74c 100644 --- a/dist/native/message/isPinned.js +++ b/dist/native/message/isPinned.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/isPinned.js.map b/dist/native/message/isPinned.js.map index f24d6f4b06..7755bdadd9 100644 --- a/dist/native/message/isPinned.js.map +++ b/dist/native/message/isPinned.js.map @@ -1 +1 @@ -{"version":3,"file":"isPinned.js","sourceRoot":"","sources":["../../../src/native/message/isPinned.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,kBAAkB;QAClB,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,IAAI,KAAK,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isPinned.js","sourceRoot":"","sources":["../../../src/native/message/isPinned.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,OAAO,EAAE;QACL,kBAAkB;QAClB,gBAAgB;KACnB;IACD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,IAAI,KAAK,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/loadComponents.d.ts.map b/dist/native/message/loadComponents.d.ts.map index 3552bceb14..531bf928a2 100644 --- a/dist/native/message/loadComponents.d.ts.map +++ b/dist/native/message/loadComponents.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/loadComponents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAI1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"loadComponents.d.ts","sourceRoot":"","sources":["../../../src/native/message/loadComponents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAI1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/message/loadComponents.js b/dist/native/message/loadComponents.js index 29bf2df70b..0fb849b988 100644 --- a/dist/native/message/loadComponents.js +++ b/dist/native/message/loadComponents.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const components_1 = require("../../functions/components"); diff --git a/dist/native/message/loadComponents.js.map b/dist/native/message/loadComponents.js.map index ffc5a478c8..33a09758e2 100644 --- a/dist/native/message/loadComponents.js.map +++ b/dist/native/message/loadComponents.js.map @@ -1 +1 @@ -{"version":3,"file":"loadComponents.js","sourceRoot":"","sources":["../../../src/native/message/loadComponents.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,2DAAuF;AACvF,2CAA4D;AAE5D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,mDAAmD;SACnE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;YAClC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACpB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxG,CAAC,CAAC,IAAA,uBAAU,EAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAqB,CAAC;oBACxC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC;oBAC/C,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACpG,CAAC,CAAC,IAAI,KAAK,CAAC,IAAA,uBAAU,EAAC,IAAI,EAAE,IAAqB,CAAC,CAAC,CAAC,CAAC,IAAA,2BAAc,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAEjJ,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,UAAU,CAAC,CAAA;QAE5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadComponents.js","sourceRoot":"","sources":["../../../src/native/message/loadComponents.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,2DAAuF;AACvF,2CAA4D;AAE5D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,mDAAmD;SACnE;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;YAClC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACpB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxG,CAAC,CAAC,IAAA,uBAAU,EAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAqB,CAAC;oBACxC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC;oBAC/C,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACpG,CAAC,CAAC,IAAI,KAAK,CAAC,IAAA,uBAAU,EAAC,IAAI,EAAE,IAAqB,CAAC,CAAC,CAAC,CAAC,IAAA,2BAAc,EAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,6BAAgB,EAAE,CAAC,aAAa,CAAC,IAAA,2BAAc,EAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QAEjJ,GAAG,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,UAAU,CAAC,CAAA;QAE5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/loadEmbeds.d.ts.map b/dist/native/message/loadEmbeds.d.ts.map index e1f3ceb584..4ac51eaf6c 100644 --- a/dist/native/message/loadEmbeds.d.ts.map +++ b/dist/native/message/loadEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/loadEmbeds.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAyBE"} \ No newline at end of file +{"version":3,"file":"loadEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/loadEmbeds.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAyBE"} \ No newline at end of file diff --git a/dist/native/message/loadEmbeds.js b/dist/native/message/loadEmbeds.js index f6eb3d408d..a291bbcd55 100644 --- a/dist/native/message/loadEmbeds.js +++ b/dist/native/message/loadEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/loadEmbeds.js.map b/dist/native/message/loadEmbeds.js.map index de312a2c0b..ce5501c8a8 100644 --- a/dist/native/message/loadEmbeds.js.map +++ b/dist/native/message/loadEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"loadEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/loadEmbeds.ts"],"names":[],"mappings":";;AAAA,2CAAmD;AACnD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,8CAA8C;SAC9D;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;YACrB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAa,CAAC,CAAC,CAAC,CAAA;SAChF;aAAM;YACH,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAY,CAAC,IAAI,CAAC,IAAgB,CAAC,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/loadEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAmD;AACnD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,8CAA8C;SAC9D;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;YACrB,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAY,CAAC,IAAI,CAAC,CAAa,CAAC,CAAC,CAAC,CAAA;SAChF;aAAM;YACH,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAY,CAAC,IAAI,CAAC,IAAgB,CAAC,CAAC,CAAA;SACjE;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/message.d.ts.map b/dist/native/message/message.d.ts.map index e268474654..d8abc5bdf4 100644 --- a/dist/native/message/message.d.ts.map +++ b/dist/native/message/message.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../../src/native/message/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAGnF,wBA4BE"} \ No newline at end of file +{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../../src/native/message/message.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAGnF,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/message.js b/dist/native/message/message.js index bf8a194571..8ce3fd38c5 100644 --- a/dist/native/message/message.js +++ b/dist/native/message/message.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/message/message.js.map b/dist/native/message/message.js.map index 305c65b682..44f925578f 100644 --- a/dist/native/message/message.js.map +++ b/dist/native/message/message.js.map @@ -1 +1 @@ -{"version":3,"file":"message.js","sourceRoot":"","sources":["../../../src/native/message/message.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,4CAA4C;IACzD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;SACpF;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"message.js","sourceRoot":"","sources":["../../../src/native/message/message.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,4CAA4C;IACzD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;SACpF;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageAttachment.d.ts.map b/dist/native/message/messageAttachment.d.ts.map index b3771c0446..4ff2546555 100644 --- a/dist/native/message/messageAttachment.d.ts.map +++ b/dist/native/message/messageAttachment.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachment.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;AAdlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"messageAttachment.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachment.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;AAdlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/message/messageAttachment.js b/dist/native/message/messageAttachment.js index f5f285206e..5193cea426 100644 --- a/dist/native/message/messageAttachment.js +++ b/dist/native/message/messageAttachment.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageAttachment.js.map b/dist/native/message/messageAttachment.js.map index 1df2c3e8a2..aa57a569fa 100644 --- a/dist/native/message/messageAttachment.js.map +++ b/dist/native/message/messageAttachment.js.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachment.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachment.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageAttachment.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachment.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageAttachmentCount.d.ts.map b/dist/native/message/messageAttachmentCount.d.ts.map index d48b0b474d..aab2478176 100644 --- a/dist/native/message/messageAttachmentCount.d.ts.map +++ b/dist/native/message/messageAttachmentCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachmentCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageAttachmentCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageAttachmentCount.js b/dist/native/message/messageAttachmentCount.js index 82b31affc0..d8b7f202a8 100644 --- a/dist/native/message/messageAttachmentCount.js +++ b/dist/native/message/messageAttachmentCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageAttachmentCount.js.map b/dist/native/message/messageAttachmentCount.js.map index e4231a84f7..cbe288074f 100644 --- a/dist/native/message/messageAttachmentCount.js.map +++ b/dist/native/message/messageAttachmentCount.js.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachmentCount.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentCount.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageAttachmentCount.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,oDAAoD;IACjE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageAttachmentFlags.d.ts.map b/dist/native/message/messageAttachmentFlags.d.ts.map index 19edfc7fc5..546758afb0 100644 --- a/dist/native/message/messageAttachmentFlags.d.ts.map +++ b/dist/native/message/messageAttachmentFlags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachmentFlags.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentFlags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,WAAW,EAAE,MAAM,YAAY,CAAA;AACzD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;AAblC,wBA0CE"} \ No newline at end of file +{"version":3,"file":"messageAttachmentFlags.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentFlags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,WAAW,EAAE,MAAM,YAAY,CAAA;AACzD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;;;;;;;;;AAblC,wBA0CE"} \ No newline at end of file diff --git a/dist/native/message/messageAttachmentFlags.js b/dist/native/message/messageAttachmentFlags.js index 4a5959c8a0..43fbed1d08 100644 --- a/dist/native/message/messageAttachmentFlags.js +++ b/dist/native/message/messageAttachmentFlags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/messageAttachmentFlags.js.map b/dist/native/message/messageAttachmentFlags.js.map index 43dcd7fa36..7fc9dec9a3 100644 --- a/dist/native/message/messageAttachmentFlags.js.map +++ b/dist/native/message/messageAttachmentFlags.js.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachmentFlags.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentFlags.ts"],"names":[],"mappings":";;;;;AAAA,2CAAyD;AACzD,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,4BAAe,CAAC;IAC9B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageAttachmentFlags.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachmentFlags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAyD;AACzD,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sDAAsD;IACnE,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,EAAC,4BAAe,CAAC;IAC9B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACjH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageAttachments.d.ts.map b/dist/native/message/messageAttachments.d.ts.map index ae38790213..ab09db25e4 100644 --- a/dist/native/message/messageAttachments.d.ts.map +++ b/dist/native/message/messageAttachments.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachments.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;;;;;;AAdlC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"messageAttachments.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageAttachments.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;;;;;;AAdlC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/message/messageAttachments.js b/dist/native/message/messageAttachments.js index b41a0345f8..96d1b6a04e 100644 --- a/dist/native/message/messageAttachments.js +++ b/dist/native/message/messageAttachments.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/messageAttachments.js.map b/dist/native/message/messageAttachments.js.map index 3ba90e4dcf..d1dbd4415a 100644 --- a/dist/native/message/messageAttachments.js.map +++ b/dist/native/message/messageAttachments.js.map @@ -1 +1 @@ -{"version":3,"file":"messageAttachments.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachments.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageAttachments.js","sourceRoot":"","sources":["../../../src/native/message/messageAttachments.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,IAAA,eAAK,GAAsB;IACnC,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageContent.d.ts.map b/dist/native/message/messageContent.d.ts.map index e3c9b231a0..411100cd91 100644 --- a/dist/native/message/messageContent.d.ts.map +++ b/dist/native/message/messageContent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageContent.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageContent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBASE"} \ No newline at end of file +{"version":3,"file":"messageContent.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageContent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBASE"} \ No newline at end of file diff --git a/dist/native/message/messageContent.js b/dist/native/message/messageContent.js index 002634e379..73b0d1bc8c 100644 --- a/dist/native/message/messageContent.js +++ b/dist/native/message/messageContent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/message/messageContent.js.map b/dist/native/message/messageContent.js.map index f0c1cd9312..6445055464 100644 --- a/dist/native/message/messageContent.js.map +++ b/dist/native/message/messageContent.js.map @@ -1 +1 @@ -{"version":3,"file":"messageContent.js","sourceRoot":"","sources":["../../../src/native/message/messageContent.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageContent.js","sourceRoot":"","sources":["../../../src/native/message/messageContent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageCreatedAt.d.ts.map b/dist/native/message/messageCreatedAt.d.ts.map index bd3c11f93d..fbda8ff986 100644 --- a/dist/native/message/messageCreatedAt.d.ts.map +++ b/dist/native/message/messageCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageCreatedAt.js b/dist/native/message/messageCreatedAt.js index 5a42b961ff..07c581e6d6 100644 --- a/dist/native/message/messageCreatedAt.js +++ b/dist/native/message/messageCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageCreatedAt.js.map b/dist/native/message/messageCreatedAt.js.map index e519c0c5b5..84b26c1c52 100644 --- a/dist/native/message/messageCreatedAt.js.map +++ b/dist/native/message/messageCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"messageCreatedAt.js","sourceRoot":"","sources":["../../../src/native/message/messageCreatedAt.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,gBAAiB,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageCreatedAt.js","sourceRoot":"","sources":["../../../src/native/message/messageCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,gBAAiB,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageEditedAt.d.ts.map b/dist/native/message/messageEditedAt.d.ts.map index 87c99dcf29..852e641671 100644 --- a/dist/native/message/messageEditedAt.d.ts.map +++ b/dist/native/message/messageEditedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageEditedAt.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageEditedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageEditedAt.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageEditedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageEditedAt.js b/dist/native/message/messageEditedAt.js index df9673368b..d25cf95b68 100644 --- a/dist/native/message/messageEditedAt.js +++ b/dist/native/message/messageEditedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageEditedAt.js.map b/dist/native/message/messageEditedAt.js.map index 7ba7faaa54..97e237c015 100644 --- a/dist/native/message/messageEditedAt.js.map +++ b/dist/native/message/messageEditedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"messageEditedAt.js","sourceRoot":"","sources":["../../../src/native/message/messageEditedAt.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageEditedAt.js","sourceRoot":"","sources":["../../../src/native/message/messageEditedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageEmojis.d.ts.map b/dist/native/message/messageEmojis.d.ts.map index b1175f0f33..40e420951d 100644 --- a/dist/native/message/messageEmojis.d.ts.map +++ b/dist/native/message/messageEmojis.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageEmojis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;;AAblC,wBAwCE"} \ No newline at end of file +{"version":3,"file":"messageEmojis.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageEmojis.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkB3C,WAAW;;;;;;;;;;;;;;;;;;;AAblC,wBAwCE"} \ No newline at end of file diff --git a/dist/native/message/messageEmojis.js b/dist/native/message/messageEmojis.js index f9eaad9f45..0af60a8a1d 100644 --- a/dist/native/message/messageEmojis.js +++ b/dist/native/message/messageEmojis.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/messageEmojis.js.map b/dist/native/message/messageEmojis.js.map index e175930c2a..de8c0d8c40 100644 --- a/dist/native/message/messageEmojis.js.map +++ b/dist/native/message/messageEmojis.js.map @@ -1 +1 @@ -{"version":3,"file":"messageEmojis.js","sourceRoot":"","sources":["../../../src/native/message/messageEmojis.ts"],"names":[],"mappings":";;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,MAAM,UAAU,GAAG,sEAAsE,CAAA;AAEzF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7J,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageEmojis.js","sourceRoot":"","sources":["../../../src/native/message/messageEmojis.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,MAAM,UAAU,GAAG,sEAAsE,CAAA;AAEzF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0DAA0D;YACvE,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAiB;IAC9B,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC7J,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageExists.d.ts.map b/dist/native/message/messageExists.d.ts.map index 807e07f357..9596590231 100644 --- a/dist/native/message/messageExists.d.ts.map +++ b/dist/native/message/messageExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageExists.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB7D,WAAW;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file +{"version":3,"file":"messageExists.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB7D,WAAW;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file diff --git a/dist/native/message/messageExists.js b/dist/native/message/messageExists.js index 99e2624998..6810908a4f 100644 --- a/dist/native/message/messageExists.js +++ b/dist/native/message/messageExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageExists.js.map b/dist/native/message/messageExists.js.map index 37999ebbcd..c4f4135fa1 100644 --- a/dist/native/message/messageExists.js.map +++ b/dist/native/message/messageExists.js.map @@ -1 +1 @@ -{"version":3,"file":"messageExists.js","sourceRoot":"","sources":["../../../src/native/message/messageExists.ts"],"names":[],"mappings":";;AACA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAO,EAAkB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CACnH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageExists.js","sourceRoot":"","sources":["../../../src/native/message/messageExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAO,EAAkB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CACnH,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageFlags.d.ts.map b/dist/native/message/messageFlags.d.ts.map index c34a06a14d..bf8f272b3b 100644 --- a/dist/native/message/messageFlags.d.ts.map +++ b/dist/native/message/messageFlags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageFlags.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageFlags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"messageFlags.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageFlags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/message/messageFlags.js b/dist/native/message/messageFlags.js index f89ec14054..5b2a1196d3 100644 --- a/dist/native/message/messageFlags.js +++ b/dist/native/message/messageFlags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/messageFlags.js.map b/dist/native/message/messageFlags.js.map index 503b97425b..e8f3a694f4 100644 --- a/dist/native/message/messageFlags.js.map +++ b/dist/native/message/messageFlags.js.map @@ -1 +1 @@ -{"version":3,"file":"messageFlags.js","sourceRoot":"","sources":["../../../src/native/message/messageFlags.ts"],"names":[],"mappings":";;;;;AAAA,2CAAyC;AACzC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageFlags.js","sourceRoot":"","sources":["../../../src/native/message/messageFlags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAyC;AACzC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,yBAAY,CAAC;IAC3B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageID.d.ts.map b/dist/native/message/messageID.d.ts.map index 800ec01723..017d921b1a 100644 --- a/dist/native/message/messageID.d.ts.map +++ b/dist/native/message/messageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"messageID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/message/messageID.js b/dist/native/message/messageID.js index c795ea4e2b..979faf24c6 100644 --- a/dist/native/message/messageID.js +++ b/dist/native/message/messageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageID.js.map b/dist/native/message/messageID.js.map index 75b68d2bae..62c61bfa05 100644 --- a/dist/native/message/messageID.js.map +++ b/dist/native/message/messageID.js.map @@ -1 +1 @@ -{"version":3,"file":"messageID.js","sourceRoot":"","sources":["../../../src/native/message/messageID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageID.js","sourceRoot":"","sources":["../../../src/native/message/messageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageLink.d.ts.map b/dist/native/message/messageLink.d.ts.map index 16e7fd9625..7e5c15be9d 100644 --- a/dist/native/message/messageLink.d.ts.map +++ b/dist/native/message/messageLink.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageLink.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageLink.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file +{"version":3,"file":"messageLink.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageLink.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file diff --git a/dist/native/message/messageLink.js b/dist/native/message/messageLink.js index 421d1051f6..8d8aad1672 100644 --- a/dist/native/message/messageLink.js +++ b/dist/native/message/messageLink.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageLink.js.map b/dist/native/message/messageLink.js.map index 07995e0c2b..4da6cf7551 100644 --- a/dist/native/message/messageLink.js.map +++ b/dist/native/message/messageLink.js.map @@ -1 +1 @@ -{"version":3,"file":"messageLink.js","sourceRoot":"","sources":["../../../src/native/message/messageLink.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,MAAM,GAAG,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageLink.js","sourceRoot":"","sources":["../../../src/native/message/messageLink.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,MAAM,GAAG,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageRawData.d.ts.map b/dist/native/message/messageRawData.d.ts.map index f2a228eba9..955d9797c2 100644 --- a/dist/native/message/messageRawData.d.ts.map +++ b/dist/native/message/messageRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageRawData.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"messageRawData.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/message/messageRawData.js b/dist/native/message/messageRawData.js index d7e60934b1..2601c73b20 100644 --- a/dist/native/message/messageRawData.js +++ b/dist/native/message/messageRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageRawData.js.map b/dist/native/message/messageRawData.js.map index 3c29f5522d..f5a7af0a32 100644 --- a/dist/native/message/messageRawData.js.map +++ b/dist/native/message/messageRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"messageRawData.js","sourceRoot":"","sources":["../../../src/native/message/messageRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageRawData.js","sourceRoot":"","sources":["../../../src/native/message/messageRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageReferenceID.d.ts.map b/dist/native/message/messageReferenceID.d.ts.map index 4b873794de..20a9a6c0f7 100644 --- a/dist/native/message/messageReferenceID.d.ts.map +++ b/dist/native/message/messageReferenceID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageReferenceID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageReferenceID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file +{"version":3,"file":"messageReferenceID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageReferenceID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA6BE"} \ No newline at end of file diff --git a/dist/native/message/messageReferenceID.js b/dist/native/message/messageReferenceID.js index be4b5076d5..9925bd9470 100644 --- a/dist/native/message/messageReferenceID.js +++ b/dist/native/message/messageReferenceID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageReferenceID.js.map b/dist/native/message/messageReferenceID.js.map index 876e9d94bf..295d504fb9 100644 --- a/dist/native/message/messageReferenceID.js.map +++ b/dist/native/message/messageReferenceID.js.map @@ -1 +1 @@ -{"version":3,"file":"messageReferenceID.js","sourceRoot":"","sources":["../../../src/native/message/messageReferenceID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,MAAM,GAAG,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,SAAS,EAAE,SAAS,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageReferenceID.js","sourceRoot":"","sources":["../../../src/native/message/messageReferenceID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,MAAM,GAAG,GAAG,OAAO,IAAI,GAAG,CAAC,OAAO,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,SAAS,EAAE,SAAS,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageSlice.d.ts.map b/dist/native/message/messageSlice.d.ts.map index be3fcc021c..d248eebbcf 100644 --- a/dist/native/message/messageSlice.d.ts.map +++ b/dist/native/message/messageSlice.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageSlice.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageSlice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"messageSlice.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageSlice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/message/messageSlice.js b/dist/native/message/messageSlice.js index 43e7c77c1e..e8b6dc6ddd 100644 --- a/dist/native/message/messageSlice.js +++ b/dist/native/message/messageSlice.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageSlice.js.map b/dist/native/message/messageSlice.js.map index 6701bfe4a0..cc8ea65352 100644 --- a/dist/native/message/messageSlice.js.map +++ b/dist/native/message/messageSlice.js.map @@ -1 +1 @@ -{"version":3,"file":"messageSlice.js","sourceRoot":"","sources":["../../../src/native/message/messageSlice.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageSlice.js","sourceRoot":"","sources":["../../../src/native/message/messageSlice.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,EAAE,GAAG,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageSticker.d.ts.map b/dist/native/message/messageSticker.d.ts.map index ad9c170ff9..792d4f4765 100644 --- a/dist/native/message/messageSticker.d.ts.map +++ b/dist/native/message/messageSticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageSticker.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageSticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;;;;;;;AAdlC,wBAmCE"} \ No newline at end of file +{"version":3,"file":"messageSticker.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageSticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;;;;;;;AAdlC,wBAmCE"} \ No newline at end of file diff --git a/dist/native/message/messageSticker.js b/dist/native/message/messageSticker.js index 14dff7b577..d9fd8b24aa 100644 --- a/dist/native/message/messageSticker.js +++ b/dist/native/message/messageSticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageSticker.js.map b/dist/native/message/messageSticker.js.map index 92d76ff8ec..31515befb3 100644 --- a/dist/native/message/messageSticker.js.map +++ b/dist/native/message/messageSticker.js.map @@ -1 +1 @@ -{"version":3,"file":"messageSticker.js","sourceRoot":"","sources":["../../../src/native/message/messageSticker.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageSticker.js","sourceRoot":"","sources":["../../../src/native/message/messageSticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageStickerCount.d.ts.map b/dist/native/message/messageStickerCount.d.ts.map index 3dfe512d75..ddaf86edeb 100644 --- a/dist/native/message/messageStickerCount.d.ts.map +++ b/dist/native/message/messageStickerCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageStickerCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageStickerCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageStickerCount.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageStickerCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageStickerCount.js b/dist/native/message/messageStickerCount.js index 76bf732d80..c0bd003955 100644 --- a/dist/native/message/messageStickerCount.js +++ b/dist/native/message/messageStickerCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageStickerCount.js.map b/dist/native/message/messageStickerCount.js.map index 83e11fef50..51f42fd389 100644 --- a/dist/native/message/messageStickerCount.js.map +++ b/dist/native/message/messageStickerCount.js.map @@ -1 +1 @@ -{"version":3,"file":"messageStickerCount.js","sourceRoot":"","sources":["../../../src/native/message/messageStickerCount.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageStickerCount.js","sourceRoot":"","sources":["../../../src/native/message/messageStickerCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageStickers.d.ts.map b/dist/native/message/messageStickers.d.ts.map index 3fd30f0d23..2bcfc42dde 100644 --- a/dist/native/message/messageStickers.d.ts.map +++ b/dist/native/message/messageStickers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageStickers.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageStickers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAGlE,oBAAY,iBAAiB;IACzB,EAAE,OAAO;IACT,GAAG,QAAQ;CACd;;;;;;;eAmBsB,WAAW;;;;;;;;;;;;;;;;;;;;AAjBlC,wBA4CE"} \ No newline at end of file +{"version":3,"file":"messageStickers.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageStickers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAGlE,oBAAY,iBAAiB;IACzB,EAAE,OAAO;IACT,GAAG,QAAQ;CACd;;;;;;;eAmBsB,WAAW;;;;;;;;;;;;;;;;;;;;AAjBlC,wBA4CE"} \ No newline at end of file diff --git a/dist/native/message/messageStickers.js b/dist/native/message/messageStickers.js index fe871fd828..e1e222d514 100644 --- a/dist/native/message/messageStickers.js +++ b/dist/native/message/messageStickers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/message/messageStickers.js.map b/dist/native/message/messageStickers.js.map index e0c9b1d82a..a50bc9d58a 100644 --- a/dist/native/message/messageStickers.js.map +++ b/dist/native/message/messageStickers.js.map @@ -1 +1 @@ -{"version":3,"file":"messageStickers.js","sourceRoot":"","sources":["../../../src/native/message/messageStickers.ts"],"names":[],"mappings":";;;;;;AACA,iDAAkE;AAClE,kEAAyC;AAEzC,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,8BAAS,CAAA;IACT,gCAAW,CAAA;AACf,CAAC,EAHW,iBAAiB,iCAAjB,iBAAiB,QAG5B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iBAAiB;SAC1B;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACxH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageStickers.js","sourceRoot":"","sources":["../../../src/native/message/messageStickers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,iDAAkE;AAClE,kEAAyC;AAEzC,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,8BAAS,CAAA;IACT,gCAAW,CAAA;AACf,CAAC,EAHW,iBAAiB,iCAAjB,iBAAiB,QAG5B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,IAAA,eAAK,GAAmB;IAChC,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iBAAiB;SAC1B;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC;QAC/B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACxH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageType.d.ts.map b/dist/native/message/messageType.d.ts.map index 0b57f66f0e..6150ae13d0 100644 --- a/dist/native/message/messageType.d.ts.map +++ b/dist/native/message/messageType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageType.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageType.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageType.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageType.js b/dist/native/message/messageType.js index 1425df8026..92c8a3d537 100644 --- a/dist/native/message/messageType.js +++ b/dist/native/message/messageType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/message/messageType.js.map b/dist/native/message/messageType.js.map index 28118d63de..2c1f4e09b4 100644 --- a/dist/native/message/messageType.js.map +++ b/dist/native/message/messageType.js.map @@ -1 +1 @@ -{"version":3,"file":"messageType.js","sourceRoot":"","sources":["../../../src/native/message/messageType.ts"],"names":[],"mappings":";;AAAA,2CAAqD;AACrD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAK,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageType.js","sourceRoot":"","sources":["../../../src/native/message/messageType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAqD;AACrD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAK,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/messageWebhookID.d.ts.map b/dist/native/message/messageWebhookID.d.ts.map index a7b048e401..cafae678ce 100644 --- a/dist/native/message/messageWebhookID.d.ts.map +++ b/dist/native/message/messageWebhookID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"messageWebhookID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageWebhookID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"messageWebhookID.d.ts","sourceRoot":"","sources":["../../../src/native/message/messageWebhookID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/messageWebhookID.js b/dist/native/message/messageWebhookID.js index 7c8ebf9b7e..eb576ac575 100644 --- a/dist/native/message/messageWebhookID.js +++ b/dist/native/message/messageWebhookID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/messageWebhookID.js.map b/dist/native/message/messageWebhookID.js.map index 16601ae704..ae33cd32ef 100644 --- a/dist/native/message/messageWebhookID.js.map +++ b/dist/native/message/messageWebhookID.js.map @@ -1 +1 @@ -{"version":3,"file":"messageWebhookID.js","sourceRoot":"","sources":["../../../src/native/message/messageWebhookID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"messageWebhookID.js","sourceRoot":"","sources":["../../../src/native/message/messageWebhookID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/noMentionMessage.d.ts.map b/dist/native/message/noMentionMessage.d.ts.map index 1a63eb8322..431ffba376 100644 --- a/dist/native/message/noMentionMessage.d.ts.map +++ b/dist/native/message/noMentionMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"noMentionMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/noMentionMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAK1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"noMentionMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/noMentionMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAK1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/message/noMentionMessage.js b/dist/native/message/noMentionMessage.js index 17c919b427..f8a6de75b2 100644 --- a/dist/native/message/noMentionMessage.js +++ b/dist/native/message/noMentionMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const NoMentionRegex = /<(?:@[&!]?|#)\d{16,23}>/g; diff --git a/dist/native/message/noMentionMessage.js.map b/dist/native/message/noMentionMessage.js.map index 3e8feb58de..b0abb27c91 100644 --- a/dist/native/message/noMentionMessage.js.map +++ b/dist/native/message/noMentionMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"noMentionMessage.js","sourceRoot":"","sources":["../../../src/native/message/noMentionMessage.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAG1D,MAAM,cAAc,GAAG,0BAA0B,CAAA;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,qDAAqD;IAClE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,MAAM,GAAG,GAAG,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAE7E,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;SAChE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"noMentionMessage.js","sourceRoot":"","sources":["../../../src/native/message/noMentionMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAG1D,MAAM,cAAc,GAAG,0BAA0B,CAAA;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,qDAAqD;IAClE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,MAAM,GAAG,GAAG,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAE7E,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;SAChE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/pinMessage.d.ts.map b/dist/native/message/pinMessage.d.ts.map index cbc9b7421f..e7ae1df885 100644 --- a/dist/native/message/pinMessage.d.ts.map +++ b/dist/native/message/pinMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pinMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/pinMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"pinMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/pinMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/pinMessage.js b/dist/native/message/pinMessage.js index d8ed6d618d..e0c892f014 100644 --- a/dist/native/message/pinMessage.js +++ b/dist/native/message/pinMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/pinMessage.js.map b/dist/native/message/pinMessage.js.map index 45a59703ab..274d25d22b 100644 --- a/dist/native/message/pinMessage.js.map +++ b/dist/native/message/pinMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"pinMessage.js","sourceRoot":"","sources":["../../../src/native/message/pinMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pinMessage.js","sourceRoot":"","sources":["../../../src/native/message/pinMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACtF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/publishMessage.d.ts.map b/dist/native/message/publishMessage.d.ts.map index a4c653c74c..fa57dd6830 100644 --- a/dist/native/message/publishMessage.d.ts.map +++ b/dist/native/message/publishMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"publishMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/publishMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"publishMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/publishMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAiB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/publishMessage.js b/dist/native/message/publishMessage.js index e1610ea283..c7891b1110 100644 --- a/dist/native/message/publishMessage.js +++ b/dist/native/message/publishMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/publishMessage.js.map b/dist/native/message/publishMessage.js.map index 608875e270..0c28b73bb4 100644 --- a/dist/native/message/publishMessage.js.map +++ b/dist/native/message/publishMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"publishMessage.js","sourceRoot":"","sources":["../../../src/native/message/publishMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"publishMessage.js","sourceRoot":"","sources":["../../../src/native/message/publishMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/reply.d.ts.map b/dist/native/message/reply.d.ts.map index 1237b4655e..6d86112bb7 100644 --- a/dist/native/message/reply.d.ts.map +++ b/dist/native/message/reply.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reply.d.ts","sourceRoot":"","sources":["../../../src/native/message/reply.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"reply.d.ts","sourceRoot":"","sources":["../../../src/native/message/reply.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/message/reply.js b/dist/native/message/reply.js index a76e175067..359bda09f5 100644 --- a/dist/native/message/reply.js +++ b/dist/native/message/reply.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/reply.js.map b/dist/native/message/reply.js.map index 8d3c6e3619..7bf084a437 100644 --- a/dist/native/message/reply.js.map +++ b/dist/native/message/reply.js.map @@ -1 +1 @@ -{"version":3,"file":"reply.js","sourceRoot":"","sources":["../../../src/native/message/reply.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC;QAC7B,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,EAAE,CAAA;QACtD,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,WAAW,GAAG,CAAC,OAAO,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reply.js","sourceRoot":"","sources":["../../../src/native/message/reply.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC;QAC7B,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,EAAE,CAAA;QACtD,GAAG,CAAC,SAAS,CAAC,eAAe,CAAC,WAAW,GAAG,CAAC,OAAO,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/silent.d.ts b/dist/native/message/silent.d.ts new file mode 100644 index 0000000000..28ff8dd644 --- /dev/null +++ b/dist/native/message/silent.d.ts @@ -0,0 +1,4 @@ +import { NativeFunction } from "../../structures"; +declare const _default: NativeFunction>[], false>; +export default _default; +//# sourceMappingURL=silent.d.ts.map \ No newline at end of file diff --git a/dist/native/message/silent.d.ts.map b/dist/native/message/silent.d.ts.map new file mode 100644 index 0000000000..ffc0a1b063 --- /dev/null +++ b/dist/native/message/silent.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"silent.d.ts","sourceRoot":"","sources":["../../../src/native/message/silent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/message/silent.js b/dist/native/message/silent.js new file mode 100644 index 0000000000..3f50d15bd6 --- /dev/null +++ b/dist/native/message/silent.js @@ -0,0 +1,18 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$silent", + version: "2.6.0", + description: "Marks the response as silent", + unwrap: false, + execute(ctx) { + ctx.container.silent = true; + return this.success(); + }, +}); +//# sourceMappingURL=silent.js.map \ No newline at end of file diff --git a/dist/native/message/silent.js.map b/dist/native/message/silent.js.map new file mode 100644 index 0000000000..dd6fce30c0 --- /dev/null +++ b/dist/native/message/silent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"silent.js","sourceRoot":"","sources":["../../../src/native/message/silent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,MAAM,GAAG,IAAI,CAAA;QAC3B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/sticker.d.ts.map b/dist/native/message/sticker.d.ts.map index 04187d253e..2ec28cf299 100644 --- a/dist/native/message/sticker.d.ts.map +++ b/dist/native/message/sticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sticker.d.ts","sourceRoot":"","sources":["../../../src/native/message/sticker.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"sticker.d.ts","sourceRoot":"","sources":["../../../src/native/message/sticker.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/message/sticker.js b/dist/native/message/sticker.js index a23c282f8e..467e6ac5cc 100644 --- a/dist/native/message/sticker.js +++ b/dist/native/message/sticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/sticker.js.map b/dist/native/message/sticker.js.map index 6a36d2b265..239c9f2d45 100644 --- a/dist/native/message/sticker.js.map +++ b/dist/native/message/sticker.js.map @@ -1 +1 @@ -{"version":3,"file":"sticker.js","sourceRoot":"","sources":["../../../src/native/message/sticker.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,oBAAoB;SACpC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sticker.js","sourceRoot":"","sources":["../../../src/native/message/sticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,WAAW,EAAE,oBAAoB;SACpC;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/suppressEmbeds.d.ts.map b/dist/native/message/suppressEmbeds.d.ts.map index 383989854b..2ee9658d55 100644 --- a/dist/native/message/suppressEmbeds.d.ts.map +++ b/dist/native/message/suppressEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"suppressEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/suppressEmbeds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"suppressEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/suppressEmbeds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/suppressEmbeds.js b/dist/native/message/suppressEmbeds.js index 905272eb24..6a4158f013 100644 --- a/dist/native/message/suppressEmbeds.js +++ b/dist/native/message/suppressEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/suppressEmbeds.js.map b/dist/native/message/suppressEmbeds.js.map index 02511ff6de..d3db9f0085 100644 --- a/dist/native/message/suppressEmbeds.js.map +++ b/dist/native/message/suppressEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"suppressEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/suppressEmbeds.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"suppressEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/suppressEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/tts.d.ts.map b/dist/native/message/tts.d.ts.map index 15e3484881..a45c384676 100644 --- a/dist/native/message/tts.d.ts.map +++ b/dist/native/message/tts.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"tts.d.ts","sourceRoot":"","sources":["../../../src/native/message/tts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file +{"version":3,"file":"tts.d.ts","sourceRoot":"","sources":["../../../src/native/message/tts.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBASE"} \ No newline at end of file diff --git a/dist/native/message/tts.js b/dist/native/message/tts.js index 5efc7b1155..b485bc6e13 100644 --- a/dist/native/message/tts.js +++ b/dist/native/message/tts.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/tts.js.map b/dist/native/message/tts.js.map index a8c7720d0c..9c9c836b2a 100644 --- a/dist/native/message/tts.js.map +++ b/dist/native/message/tts.js.map @@ -1 +1 @@ -{"version":3,"file":"tts.js","sourceRoot":"","sources":["../../../src/native/message/tts.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,GAAG,GAAG,IAAI,CAAA;QACxB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"tts.js","sourceRoot":"","sources":["../../../src/native/message/tts.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,SAAS,CAAC,GAAG,GAAG,IAAI,CAAA;QACxB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/unpinMessage.d.ts.map b/dist/native/message/unpinMessage.d.ts.map index faee65efb9..983466a0b8 100644 --- a/dist/native/message/unpinMessage.d.ts.map +++ b/dist/native/message/unpinMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unpinMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/unpinMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"unpinMessage.d.ts","sourceRoot":"","sources":["../../../src/native/message/unpinMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;AAdlC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/unpinMessage.js b/dist/native/message/unpinMessage.js index 6007d50b0e..d81683f950 100644 --- a/dist/native/message/unpinMessage.js +++ b/dist/native/message/unpinMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/unpinMessage.js.map b/dist/native/message/unpinMessage.js.map index a88c908ec8..8e81425215 100644 --- a/dist/native/message/unpinMessage.js.map +++ b/dist/native/message/unpinMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"unpinMessage.js","sourceRoot":"","sources":["../../../src/native/message/unpinMessage.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unpinMessage.js","sourceRoot":"","sources":["../../../src/native/message/unpinMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,+CAA+C;IAC5D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/message/unsuppressEmbeds.d.ts.map b/dist/native/message/unsuppressEmbeds.d.ts.map index 4896b9d934..72e3c11f99 100644 --- a/dist/native/message/unsuppressEmbeds.d.ts.map +++ b/dist/native/message/unsuppressEmbeds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unsuppressEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/unsuppressEmbeds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file +{"version":3,"file":"unsuppressEmbeds.d.ts","sourceRoot":"","sources":["../../../src/native/message/unsuppressEmbeds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA4BE"} \ No newline at end of file diff --git a/dist/native/message/unsuppressEmbeds.js b/dist/native/message/unsuppressEmbeds.js index 86dd5cfe8c..075118c8e1 100644 --- a/dist/native/message/unsuppressEmbeds.js +++ b/dist/native/message/unsuppressEmbeds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/message/unsuppressEmbeds.js.map b/dist/native/message/unsuppressEmbeds.js.map index 9698c17913..98dcc18a42 100644 --- a/dist/native/message/unsuppressEmbeds.js.map +++ b/dist/native/message/unsuppressEmbeds.js.map @@ -1 +1 @@ -{"version":3,"file":"unsuppressEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/unsuppressEmbeds.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,cAAc,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unsuppressEmbeds.js","sourceRoot":"","sources":["../../../src/native/message/unsuppressEmbeds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,cAAc,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/abbreviateNumber.d.ts.map b/dist/native/number/abbreviateNumber.d.ts.map index 32a7c5d68b..fc2b8ead36 100644 --- a/dist/native/number/abbreviateNumber.d.ts.map +++ b/dist/native/number/abbreviateNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"abbreviateNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/abbreviateNumber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAOlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"abbreviateNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/abbreviateNumber.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAOlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/abbreviateNumber.js b/dist/native/number/abbreviateNumber.js index 0eaae797f8..712ef916c4 100644 --- a/dist/native/number/abbreviateNumber.js +++ b/dist/native/number/abbreviateNumber.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const Formatter = Intl.NumberFormat("en-US", { diff --git a/dist/native/number/abbreviateNumber.js.map b/dist/native/number/abbreviateNumber.js.map index dd990e393a..32b3880a14 100644 --- a/dist/native/number/abbreviateNumber.js.map +++ b/dist/native/number/abbreviateNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"abbreviateNumber.js","sourceRoot":"","sources":["../../../src/native/number/abbreviateNumber.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE;IACzC,QAAQ,EAAE,SAAS;IACnB,qBAAqB,EAAE,CAAC;CAC3B,CAAC,CAAA;AAEF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"abbreviateNumber.js","sourceRoot":"","sources":["../../../src/native/number/abbreviateNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE;IACzC,QAAQ,EAAE,SAAS;IACnB,qBAAqB,EAAE,CAAC;CAC3B,CAAC,CAAA;AAEF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/average.d.ts.map b/dist/native/number/average.d.ts.map index 29a99cf961..bb1427b42b 100644 --- a/dist/native/number/average.d.ts.map +++ b/dist/native/number/average.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"average.d.ts","sourceRoot":"","sources":["../../../src/native/number/average.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA4BE"} \ No newline at end of file +{"version":3,"file":"average.d.ts","sourceRoot":"","sources":["../../../src/native/number/average.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA4BE"} \ No newline at end of file diff --git a/dist/native/number/average.js b/dist/native/number/average.js index c16eb1182b..a2956a5890 100644 --- a/dist/native/number/average.js +++ b/dist/native/number/average.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/average.js.map b/dist/native/number/average.js.map index 6c6d3ecd6d..aabb4ca8e9 100644 --- a/dist/native/number/average.js.map +++ b/dist/native/number/average.js.map @@ -1 +1 @@ -{"version":3,"file":"average.js","sourceRoot":"","sources":["../../../src/native/number/average.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,yCAAyC;IACtD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,MAAM,CAAE;QACxB,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,CAC1C,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"average.js","sourceRoot":"","sources":["../../../src/native/number/average.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,yCAAyC;IACtD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,MAAM,CAAE;QACxB,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,CAC1C,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/hexToInt.d.ts.map b/dist/native/number/hexToInt.d.ts.map index a2d00593f1..6a1c9aa99a 100644 --- a/dist/native/number/hexToInt.d.ts.map +++ b/dist/native/number/hexToInt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hexToInt.d.ts","sourceRoot":"","sources":["../../../src/native/number/hexToInt.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"hexToInt.d.ts","sourceRoot":"","sources":["../../../src/native/number/hexToInt.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/hexToInt.js b/dist/native/number/hexToInt.js index cd0e59080b..719d421ae3 100644 --- a/dist/native/number/hexToInt.js +++ b/dist/native/number/hexToInt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const hex_1 = require("../../functions/hex"); const structures_1 = require("../../structures"); diff --git a/dist/native/number/hexToInt.js.map b/dist/native/number/hexToInt.js.map index 776fa1658d..9b5380f1d2 100644 --- a/dist/native/number/hexToInt.js.map +++ b/dist/native/number/hexToInt.js.map @@ -1 +1 @@ -{"version":3,"file":"hexToInt.js","sourceRoot":"","sources":["../../../src/native/number/hexToInt.ts"],"names":[],"mappings":";;AAAA,6CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hexToInt.js","sourceRoot":"","sources":["../../../src/native/number/hexToInt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6CAA6C;AAC7C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/inRange.d.ts.map b/dist/native/number/inRange.d.ts.map index 5a7a09269b..a6e9749712 100644 --- a/dist/native/number/inRange.d.ts.map +++ b/dist/native/number/inRange.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"inRange.d.ts","sourceRoot":"","sources":["../../../src/native/number/inRange.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"inRange.d.ts","sourceRoot":"","sources":["../../../src/native/number/inRange.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/number/inRange.js b/dist/native/number/inRange.js index 6e2b137539..f1e55a3e24 100644 --- a/dist/native/number/inRange.js +++ b/dist/native/number/inRange.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/inRange.js.map b/dist/native/number/inRange.js.map index a94cd7ad39..05fb24b244 100644 --- a/dist/native/number/inRange.js.map +++ b/dist/native/number/inRange.js.map @@ -1 +1 @@ -{"version":3,"file":"inRange.js","sourceRoot":"","sources":["../../../src/native/number/inRange.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"inRange.js","sourceRoot":"","sources":["../../../src/native/number/inRange.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IACrG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/intToHex.d.ts.map b/dist/native/number/intToHex.d.ts.map index edb2605120..209c346387 100644 --- a/dist/native/number/intToHex.d.ts.map +++ b/dist/native/number/intToHex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"intToHex.d.ts","sourceRoot":"","sources":["../../../src/native/number/intToHex.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"intToHex.d.ts","sourceRoot":"","sources":["../../../src/native/number/intToHex.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/intToHex.js b/dist/native/number/intToHex.js index 8f658e3610..b9fb53c5c6 100644 --- a/dist/native/number/intToHex.js +++ b/dist/native/number/intToHex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const hex_1 = require("../../functions/hex"); const structures_1 = require("../../structures"); diff --git a/dist/native/number/intToHex.js.map b/dist/native/number/intToHex.js.map index c6ad58cd46..715e0af777 100644 --- a/dist/native/number/intToHex.js.map +++ b/dist/native/number/intToHex.js.map @@ -1 +1 @@ -{"version":3,"file":"intToHex.js","sourceRoot":"","sources":["../../../src/native/number/intToHex.ts"],"names":[],"mappings":";;AAAA,6CAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"intToHex.js","sourceRoot":"","sources":["../../../src/native/number/intToHex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6CAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/isFloat.d.ts.map b/dist/native/number/isFloat.d.ts.map index da41dc9b2d..89c47e27c6 100644 --- a/dist/native/number/isFloat.d.ts.map +++ b/dist/native/number/isFloat.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isFloat.d.ts","sourceRoot":"","sources":["../../../src/native/number/isFloat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isFloat.d.ts","sourceRoot":"","sources":["../../../src/native/number/isFloat.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/isFloat.js b/dist/native/number/isFloat.js index 5cd64d2b5d..aafef8bb6f 100644 --- a/dist/native/number/isFloat.js +++ b/dist/native/number/isFloat.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/isFloat.js.map b/dist/native/number/isFloat.js.map index 310b617b11..b1010638e9 100644 --- a/dist/native/number/isFloat.js.map +++ b/dist/native/number/isFloat.js.map @@ -1 +1 @@ -{"version":3,"file":"isFloat.js","sourceRoot":"","sources":["../../../src/native/number/isFloat.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isFloat.js","sourceRoot":"","sources":["../../../src/native/number/isFloat.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/isInteger.d.ts.map b/dist/native/number/isInteger.d.ts.map index ac5f4b1393..cb4e45f274 100644 --- a/dist/native/number/isInteger.d.ts.map +++ b/dist/native/number/isInteger.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/isInteger.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/isInteger.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/isInteger.js b/dist/native/number/isInteger.js index 1a3820463c..8bf2151adf 100644 --- a/dist/native/number/isInteger.js +++ b/dist/native/number/isInteger.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const lodash_1 = require("lodash"); const structures_1 = require("../../structures"); diff --git a/dist/native/number/isInteger.js.map b/dist/native/number/isInteger.js.map index cb38cbce6b..243971390a 100644 --- a/dist/native/number/isInteger.js.map +++ b/dist/native/number/isInteger.js.map @@ -1 +1 @@ -{"version":3,"file":"isInteger.js","sourceRoot":"","sources":["../../../src/native/number/isInteger.ts"],"names":[],"mappings":";;AAAA,mCAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,IAAA,kBAAS,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isInteger.js","sourceRoot":"","sources":["../../../src/native/number/isInteger.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,IAAA,kBAAS,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/isNumber.d.ts.map b/dist/native/number/isNumber.d.ts.map index b0bff36d0b..b49946967e 100644 --- a/dist/native/number/isNumber.d.ts.map +++ b/dist/native/number/isNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/isNumber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/isNumber.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/isNumber.js b/dist/native/number/isNumber.js index ae18e61e51..0fc3d8c6db 100644 --- a/dist/native/number/isNumber.js +++ b/dist/native/number/isNumber.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/isNumber.js.map b/dist/native/number/isNumber.js.map index 4162b7fe87..c5c0acd637 100644 --- a/dist/native/number/isNumber.js.map +++ b/dist/native/number/isNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"isNumber.js","sourceRoot":"","sources":["../../../src/native/number/isNumber.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isNumber.js","sourceRoot":"","sources":["../../../src/native/number/isNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/maxSafeInteger.d.ts.map b/dist/native/number/maxSafeInteger.d.ts.map index ab8e98388c..3f0415d0ab 100644 --- a/dist/native/number/maxSafeInteger.d.ts.map +++ b/dist/native/number/maxSafeInteger.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"maxSafeInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/maxSafeInteger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"maxSafeInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/maxSafeInteger.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/number/maxSafeInteger.js b/dist/native/number/maxSafeInteger.js index 3da5f1272d..cdc07f3088 100644 --- a/dist/native/number/maxSafeInteger.js +++ b/dist/native/number/maxSafeInteger.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/maxSafeInteger.js.map b/dist/native/number/maxSafeInteger.js.map index 53d628577a..18f9b988ce 100644 --- a/dist/native/number/maxSafeInteger.js.map +++ b/dist/native/number/maxSafeInteger.js.map @@ -1 +1 @@ -{"version":3,"file":"maxSafeInteger.js","sourceRoot":"","sources":["../../../src/native/number/maxSafeInteger.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"maxSafeInteger.js","sourceRoot":"","sources":["../../../src/native/number/maxSafeInteger.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/minSafeInteger.d.ts.map b/dist/native/number/minSafeInteger.d.ts.map index 6a00aba91f..a7cfc2117e 100644 --- a/dist/native/number/minSafeInteger.d.ts.map +++ b/dist/native/number/minSafeInteger.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"minSafeInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/minSafeInteger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"minSafeInteger.d.ts","sourceRoot":"","sources":["../../../src/native/number/minSafeInteger.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/number/minSafeInteger.js b/dist/native/number/minSafeInteger.js index e17e09af30..283917f5fc 100644 --- a/dist/native/number/minSafeInteger.js +++ b/dist/native/number/minSafeInteger.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/minSafeInteger.js.map b/dist/native/number/minSafeInteger.js.map index 69a6091cae..0585b807cb 100644 --- a/dist/native/number/minSafeInteger.js.map +++ b/dist/native/number/minSafeInteger.js.map @@ -1 +1 @@ -{"version":3,"file":"minSafeInteger.js","sourceRoot":"","sources":["../../../src/native/number/minSafeInteger.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"minSafeInteger.js","sourceRoot":"","sources":["../../../src/native/number/minSafeInteger.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/ordinal.d.ts.map b/dist/native/number/ordinal.d.ts.map index 8c96d4ec80..b7930f9e6b 100644 --- a/dist/native/number/ordinal.d.ts.map +++ b/dist/native/number/ordinal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ordinal.d.ts","sourceRoot":"","sources":["../../../src/native/number/ordinal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"ordinal.d.ts","sourceRoot":"","sources":["../../../src/native/number/ordinal.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/number/ordinal.js b/dist/native/number/ordinal.js index e2b2219f90..7185dbd0bc 100644 --- a/dist/native/number/ordinal.js +++ b/dist/native/number/ordinal.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const ordinal_1 = require("../../functions/ordinal"); const structures_1 = require("../../structures"); diff --git a/dist/native/number/ordinal.js.map b/dist/native/number/ordinal.js.map index e863dec7f6..49e753e353 100644 --- a/dist/native/number/ordinal.js.map +++ b/dist/native/number/ordinal.js.map @@ -1 +1 @@ -{"version":3,"file":"ordinal.js","sourceRoot":"","sources":["../../../src/native/number/ordinal.ts"],"names":[],"mappings":";;AAAA,qDAAiD;AACjD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAO,EAAC,CAAC,CAAC,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ordinal.js","sourceRoot":"","sources":["../../../src/native/number/ordinal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qDAAiD;AACjD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAO,EAAC,CAAC,CAAC,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/parseInt.d.ts.map b/dist/native/number/parseInt.d.ts.map index 86d1c78ae6..9117dea215 100644 --- a/dist/native/number/parseInt.d.ts.map +++ b/dist/native/number/parseInt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseInt.d.ts","sourceRoot":"","sources":["../../../src/native/number/parseInt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"parseInt.d.ts","sourceRoot":"","sources":["../../../src/native/number/parseInt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/number/parseInt.js b/dist/native/number/parseInt.js index d20ccec931..0abcc59bae 100644 --- a/dist/native/number/parseInt.js +++ b/dist/native/number/parseInt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/parseInt.js.map b/dist/native/number/parseInt.js.map index e92e4c100f..fff79927da 100644 --- a/dist/native/number/parseInt.js.map +++ b/dist/native/number/parseInt.js.map @@ -1 +1 @@ -{"version":3,"file":"parseInt.js","sourceRoot":"","sources":["../../../src/native/number/parseInt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,EAAE,KAAK,IAAI,SAAS,CAAC,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"parseInt.js","sourceRoot":"","sources":["../../../src/native/number/parseInt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,EAAE,KAAK,IAAI,SAAS,CAAC,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/randomNumber.d.ts.map b/dist/native/number/randomNumber.d.ts.map index d7a12e8384..d912e6ecb6 100644 --- a/dist/native/number/randomNumber.d.ts.map +++ b/dist/native/number/randomNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/randomNumber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"randomNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/randomNumber.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/number/randomNumber.js b/dist/native/number/randomNumber.js index c010ee6c1d..330c13785a 100644 --- a/dist/native/number/randomNumber.js +++ b/dist/native/number/randomNumber.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/number/randomNumber.js.map b/dist/native/number/randomNumber.js.map index 9bede61a0d..6469d841c4 100644 --- a/dist/native/number/randomNumber.js.map +++ b/dist/native/number/randomNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"randomNumber.js","sourceRoot":"","sources":["../../../src/native/number/randomNumber.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,CAAC;QAC7B,MAAM,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAA;QACzE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomNumber.js","sourceRoot":"","sources":["../../../src/native/number/randomNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,CAAC;QAC7B,MAAM,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAA;QACzE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC1D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/separateBigint.d.ts.map b/dist/native/number/separateBigint.d.ts.map index 08437f1176..0cf539df47 100644 --- a/dist/native/number/separateBigint.d.ts.map +++ b/dist/native/number/separateBigint.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"separateBigint.d.ts","sourceRoot":"","sources":["../../../src/native/number/separateBigint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAIlE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"separateBigint.d.ts","sourceRoot":"","sources":["../../../src/native/number/separateBigint.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAGlE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/number/separateBigint.js b/dist/native/number/separateBigint.js index 50531318a3..a45746435c 100644 --- a/dist/native/number/separateBigint.js +++ b/dist/native/number/separateBigint.js @@ -1,7 +1,11 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); -const NoNumberRegex = /[^0-9.]/g; +const separateNumber_1 = require("./separateNumber"); exports.default = new structures_1.NativeFunction({ name: "$separateBigint", version: "1.3.0", @@ -26,7 +30,7 @@ exports.default = new structures_1.NativeFunction({ brackets: true, execute(ctx, [n, sep]) { const t = n.toLocaleString(); - return this.success(sep ? t.replaceAll(NoNumberRegex, sep) : t); + return this.success(sep ? t.replaceAll(separateNumber_1.NoNumberRegex, sep) : t); }, }); //# sourceMappingURL=separateBigint.js.map \ No newline at end of file diff --git a/dist/native/number/separateBigint.js.map b/dist/native/number/separateBigint.js.map index 7898ebb495..2bdb3408c5 100644 --- a/dist/native/number/separateBigint.js.map +++ b/dist/native/number/separateBigint.js.map @@ -1 +1 @@ -{"version":3,"file":"separateBigint.js","sourceRoot":"","sources":["../../../src/native/number/separateBigint.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,MAAM,aAAa,GAAG,UAAU,CAAA;AAEhC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,MAAM,CAAC,GAAG,CAAC,CAAC,cAAc,EAAE,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"separateBigint.js","sourceRoot":"","sources":["../../../src/native/number/separateBigint.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,qDAAgD;AAEhD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,MAAM,CAAC,GAAG,CAAC,CAAC,cAAc,EAAE,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,8BAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/number/separateNumber.d.ts b/dist/native/number/separateNumber.d.ts index a831d74c9f..6c05677629 100644 --- a/dist/native/number/separateNumber.d.ts +++ b/dist/native/number/separateNumber.d.ts @@ -1,4 +1,5 @@ import { ArgType, NativeFunction } from "../../structures"; +export declare const NoNumberRegex: RegExp; declare const _default: NativeFunction<[{ name: string; description: string; diff --git a/dist/native/number/separateNumber.d.ts.map b/dist/native/number/separateNumber.d.ts.map index 0a00dcad60..68d22b7cf5 100644 --- a/dist/native/number/separateNumber.d.ts.map +++ b/dist/native/number/separateNumber.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"separateNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/separateNumber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAIlE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"separateNumber.d.ts","sourceRoot":"","sources":["../../../src/native/number/separateNumber.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,aAAa,QAAc,CAAA;;;;;;;;;;;;;AAExC,wBA0BE"} \ No newline at end of file diff --git a/dist/native/number/separateNumber.js b/dist/native/number/separateNumber.js index 5f0615e385..c4b8278035 100644 --- a/dist/native/number/separateNumber.js +++ b/dist/native/number/separateNumber.js @@ -1,7 +1,12 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); +exports.NoNumberRegex = void 0; const structures_1 = require("../../structures"); -const NoNumberRegex = /[^0-9.]/g; +exports.NoNumberRegex = /[^0-9.-]/g; exports.default = new structures_1.NativeFunction({ name: "$separateNumber", version: "1.0.0", @@ -26,7 +31,7 @@ exports.default = new structures_1.NativeFunction({ brackets: true, execute(ctx, [n, sep]) { const t = n.toLocaleString(); - return this.success(sep ? t.replaceAll(NoNumberRegex, sep) : t); + return this.success(sep ? t.replaceAll(exports.NoNumberRegex, sep) : t); }, }); //# sourceMappingURL=separateNumber.js.map \ No newline at end of file diff --git a/dist/native/number/separateNumber.js.map b/dist/native/number/separateNumber.js.map index 763d998a77..ce33bbdf20 100644 --- a/dist/native/number/separateNumber.js.map +++ b/dist/native/number/separateNumber.js.map @@ -1 +1 @@ -{"version":3,"file":"separateNumber.js","sourceRoot":"","sources":["../../../src/native/number/separateNumber.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,MAAM,aAAa,GAAG,UAAU,CAAA;AAEhC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,MAAM,CAAC,GAAG,CAAC,CAAC,cAAc,EAAE,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"separateNumber.js","sourceRoot":"","sources":["../../../src/native/number/separateNumber.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAErD,QAAA,aAAa,GAAG,WAAW,CAAA;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;QACjB,MAAM,CAAC,GAAG,CAAC,CAAC,cAAc,EAAE,CAAA;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,qBAAa,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/advancedBar.d.ts.map b/dist/native/other/advancedBar.d.ts.map index afc60c95d6..06b1351ef0 100644 --- a/dist/native/other/advancedBar.d.ts.map +++ b/dist/native/other/advancedBar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"advancedBar.d.ts","sourceRoot":"","sources":["../../../src/native/other/advancedBar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAiDE"} \ No newline at end of file +{"version":3,"file":"advancedBar.d.ts","sourceRoot":"","sources":["../../../src/native/other/advancedBar.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAiDE"} \ No newline at end of file diff --git a/dist/native/other/advancedBar.js b/dist/native/other/advancedBar.js index a5f4ff03cb..8b21c26f0d 100644 --- a/dist/native/other/advancedBar.js +++ b/dist/native/other/advancedBar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const generateBar_1 = require("../../functions/generateBar"); const structures_1 = require("../../structures"); diff --git a/dist/native/other/advancedBar.js.map b/dist/native/other/advancedBar.js.map index 9f912a28de..733b015924 100644 --- a/dist/native/other/advancedBar.js.map +++ b/dist/native/other/advancedBar.js.map @@ -1 +1 @@ -{"version":3,"file":"advancedBar.js","sourceRoot":"","sources":["../../../src/native/other/advancedBar.ts"],"names":[],"mappings":";;AAAA,6DAA8E;AAC9E,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yEAAyE;YACtF,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAE;QACnC,OAAO,IAAI,CAAC,OAAO,CACf,IAAA,iCAAmB,EACf,IAAI,EACJ,GAAG,EACH,GAAG,IAAI,SAAS,EAChB,MAAM,CACT,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"advancedBar.js","sourceRoot":"","sources":["../../../src/native/other/advancedBar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6DAA8E;AAC9E,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yEAAyE;YACtF,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAE;QACnC,OAAO,IAAI,CAAC,OAAO,CACf,IAAA,iCAAmB,EACf,IAAI,EACJ,GAAG,EACH,GAAG,IAAI,SAAS,EAChB,MAAM,CACT,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/awaitComponent.d.ts.map b/dist/native/other/awaitComponent.d.ts.map index 62f78aafd0..30ae44ea20 100644 --- a/dist/native/other/awaitComponent.d.ts.map +++ b/dist/native/other/awaitComponent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"awaitComponent.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkBpH,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAuEE"} \ No newline at end of file +{"version":3,"file":"awaitComponent.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitComponent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAoB,MAAM,YAAY,CAAA;AAC1D,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkBpH,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdlC,wBAuEE"} \ No newline at end of file diff --git a/dist/native/other/awaitComponent.js b/dist/native/other/awaitComponent.js index 66f916ef2c..60d5e36f9c 100644 --- a/dist/native/other/awaitComponent.js +++ b/dist/native/other/awaitComponent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/other/awaitComponent.js.map b/dist/native/other/awaitComponent.js.map index cbe33917a3..52618e1362 100644 --- a/dist/native/other/awaitComponent.js.map +++ b/dist/native/other/awaitComponent.js.map @@ -1 +1 @@ -{"version":3,"file":"awaitComponent.js","sourceRoot":"","sources":["../../../src/native/other/awaitComponent.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"awaitComponent.js","sourceRoot":"","sources":["../../../src/native/other/awaitComponent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAA2I;AAE3I,oEAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mIAAmI;IAChJ,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,mCAAmC;SACnD;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,sGAAsG;YACnH,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,SAAS,EAAE,IAAI;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,yEAAyE;YACtF,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,sCAAsC;SACtD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;QAC9E,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,AAAD,EAAG,GAAG,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QAE5B,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,qBAAqB,CAAC;YACxC,IAAI;YACJ,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;gBAChB,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC,CAAA;gBACzE,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,OAAO,EAAE;oBAC3B,OAAO,IAAA,gBAAM,EAAC,GAAG,CAAC,CAAA;iBACrB;;oBAAM,OAAO,KAAK,CAAA;YACvB,CAAC;SACJ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,IAAI,GAAG,EAAE;YACL,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;YACrH,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAC9B,OAAO,EAAE,CAAA;SAChB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/awaitMessage.d.ts.map b/dist/native/other/awaitMessage.d.ts.map index 3271e45570..5267f7bda5 100644 --- a/dist/native/other/awaitMessage.d.ts.map +++ b/dist/native/other/awaitMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"awaitMessage.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAiC,MAAM,YAAY,CAAA;AACvE,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkBpF,WAAW;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA2DE"} \ No newline at end of file +{"version":3,"file":"awaitMessage.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAiC,MAAM,YAAY,CAAA;AACvE,OAAO,EAAE,OAAO,EAA2C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAkBpF,WAAW;;;;;;;;;;;;;;;;;;;;;AAdlC,wBA2DE"} \ No newline at end of file diff --git a/dist/native/other/awaitMessage.js b/dist/native/other/awaitMessage.js index eb5f370208..55f834c9f0 100644 --- a/dist/native/other/awaitMessage.js +++ b/dist/native/other/awaitMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/other/awaitMessage.js.map b/dist/native/other/awaitMessage.js.map index f71cb2512c..8d33ac3594 100644 --- a/dist/native/other/awaitMessage.js.map +++ b/dist/native/other/awaitMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"awaitMessage.js","sourceRoot":"","sources":["../../../src/native/other/awaitMessage.ts"],"names":[],"mappings":";;;;;AACA,iDAA2G;AAE3G,oEAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,uGAAuG;YACpH,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,SAAS,EAAE,IAAI;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;QAC9E,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QACvC,MAAM,GAAG,GAAG,MAAO,OAAuB,CAAC,aAAa,CAAC;YACrD,MAAM,EAAE,CAAE,MAAM,CAAE;YAClB,GAAG,EAAE,CAAC;YACN,IAAI;YACJ,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;gBAChB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAA;gBACpC,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,CAAA;gBACvD,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,OAAO,EAAE;oBAC3B,OAAO,IAAA,gBAAM,EAAC,GAAG,CAAC,CAAA;iBACrB;;oBAAM,OAAO,KAAK,CAAA;YACvB,CAAC;SACJ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"awaitMessage.js","sourceRoot":"","sources":["../../../src/native/other/awaitMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAGF,iDAA2G;AAE3G,oEAA2C;AAE3C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,uGAAuG;YACpH,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,SAAS,EAAE,IAAI;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;QAC9E,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QACvC,MAAM,GAAG,GAAG,MAAO,OAAuB,CAAC,aAAa,CAAC;YACrD,MAAM,EAAE,CAAE,MAAM,CAAE;YAClB,GAAG,EAAE,CAAC;YACN,IAAI;YACJ,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;gBAChB,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAA;gBACpC,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,CAAA;gBACvD,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,OAAO,EAAE;oBAC3B,OAAO,IAAA,gBAAM,EAAC,GAAG,CAAC,CAAA;iBACrB;;oBAAM,OAAO,KAAK,CAAA;YACvB,CAAC;SACJ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/awaitModalSubmit.d.ts.map b/dist/native/other/awaitModalSubmit.d.ts.map index f25be8a4bc..bb63647986 100644 --- a/dist/native/other/awaitModalSubmit.d.ts.map +++ b/dist/native/other/awaitModalSubmit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"awaitModalSubmit.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitModalSubmit.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAI3I,wBAmDE"} \ No newline at end of file +{"version":3,"file":"awaitModalSubmit.d.ts","sourceRoot":"","sources":["../../../src/native/other/awaitModalSubmit.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAA2E,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAI3I,wBAmDE"} \ No newline at end of file diff --git a/dist/native/other/awaitModalSubmit.js b/dist/native/other/awaitModalSubmit.js index d7e6c68191..0390b8e903 100644 --- a/dist/native/other/awaitModalSubmit.js +++ b/dist/native/other/awaitModalSubmit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/awaitModalSubmit.js.map b/dist/native/other/awaitModalSubmit.js.map index a5032cb91e..9fb5597171 100644 --- a/dist/native/other/awaitModalSubmit.js.map +++ b/dist/native/other/awaitModalSubmit.js.map @@ -1 +1 @@ -{"version":3,"file":"awaitModalSubmit.js","sourceRoot":"","sources":["../../../src/native/other/awaitModalSubmit.ts"],"names":[],"mappings":";;AACA,iDAA2I;AAI3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sIAAsI;IACnJ,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,yEAAyE;YACtF,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,sCAAsC;SACtD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,WAAW,IAAI,CAAC,CAAC,kBAAkB,IAAI,GAAG,CAAC,WAAW,CAAC;YAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAE9B,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACzE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,EAAE,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QAEzB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,WAAW,CAAC,gBAAgB,CAAC;YAC/C,IAAI;YACJ,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,KAAK,EAAE;SACjC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,IAAI,GAAG,EAAE;YACL,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;YACrH,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAC9B,OAAO,EAAE,CAAA;SAChB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"awaitModalSubmit.js","sourceRoot":"","sources":["../../../src/native/other/awaitModalSubmit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA2I;AAI3I,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sIAAsI;IACnJ,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,yEAAyE;YACtF,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,sCAAsC;SACtD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,IAAI,CAAC,GAAG,CAAC,WAAW,IAAI,CAAC,CAAC,kBAAkB,IAAI,GAAG,CAAC,WAAW,CAAC;YAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAE9B,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACzE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,EAAE,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QAEzB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,WAAW,CAAC,gBAAgB,CAAC;YAC/C,IAAI;YACJ,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,KAAK,EAAE;SACjC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,IAAI,GAAG,EAAE;YACL,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;YACrH,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;gBAC9B,OAAO,EAAE,CAAA;SAChB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/bar.d.ts.map b/dist/native/other/bar.d.ts.map index 4c9682b442..3e44c98797 100644 --- a/dist/native/other/bar.d.ts.map +++ b/dist/native/other/bar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bar.d.ts","sourceRoot":"","sources":["../../../src/native/other/bar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA0FE"} \ No newline at end of file +{"version":3,"file":"bar.d.ts","sourceRoot":"","sources":["../../../src/native/other/bar.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA0FE"} \ No newline at end of file diff --git a/dist/native/other/bar.js b/dist/native/other/bar.js index 5d935530b6..bf5c98706a 100644 --- a/dist/native/other/bar.js +++ b/dist/native/other/bar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const generateBar_1 = require("../../functions/generateBar"); const structures_1 = require("../../structures"); diff --git a/dist/native/other/bar.js.map b/dist/native/other/bar.js.map index 1b9825feb8..8d1d7ade69 100644 --- a/dist/native/other/bar.js.map +++ b/dist/native/other/bar.js.map @@ -1 +1 @@ -{"version":3,"file":"bar.js","sourceRoot":"","sources":["../../../src/native/other/bar.ts"],"names":[],"mappings":";;AAAA,6DAAyD;AACzD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,OAAO,EAAE;QACL,cAAc;KACjB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,CAAE;QACzF,OAAO,IAAI,CAAC,OAAO,CACf,IAAA,yBAAW,EACP,IAAI,EACJ,GAAG,EACH,GAAG,IAAI,SAAS,EAChB,IAAI,IAAI,SAAS,EACjB,KAAK,IAAI,SAAS,EAClB,CAAC,KAAK,EACN,SAAS,IAAI,SAAS,EACtB,OAAO,IAAI,SAAS,EACpB,UAAU,IAAI,SAAS,EACvB,QAAQ,IAAI,SAAS,CACxB,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bar.js","sourceRoot":"","sources":["../../../src/native/other/bar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6DAAyD;AACzD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,OAAO,EAAE;QACL,cAAc;KACjB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,CAAE;QACzF,OAAO,IAAI,CAAC,OAAO,CACf,IAAA,yBAAW,EACP,IAAI,EACJ,GAAG,EACH,GAAG,IAAI,SAAS,EAChB,IAAI,IAAI,SAAS,EACjB,KAAK,IAAI,SAAS,EAClB,CAAC,KAAK,EACN,SAAS,IAAI,SAAS,EACtB,OAAO,IAAI,SAAS,EACpB,UAAU,IAAI,SAAS,EACvB,QAAQ,IAAI,SAAS,CACxB,CACJ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/c.d.ts.map b/dist/native/other/c.d.ts.map index c277e55e8b..3db4d501d8 100644 --- a/dist/native/other/c.d.ts.map +++ b/dist/native/other/c.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"c.d.ts","sourceRoot":"","sources":["../../../src/native/other/c.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file +{"version":3,"file":"c.d.ts","sourceRoot":"","sources":["../../../src/native/other/c.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAkBE"} \ No newline at end of file diff --git a/dist/native/other/c.js b/dist/native/other/c.js index 735908b5f5..2aafc3f66e 100644 --- a/dist/native/other/c.js +++ b/dist/native/other/c.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/c.js.map b/dist/native/other/c.js.map index 1df2742b7b..af06334fe1 100644 --- a/dist/native/other/c.js.map +++ b/dist/native/other/c.js.map @@ -1 +1 @@ -{"version":3,"file":"c.js","sourceRoot":"","sources":["../../../src/native/other/c.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,IAAI;IACV,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"c.js","sourceRoot":"","sources":["../../../src/native/other/c.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,IAAI;IACV,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/callFunction.d.ts.map b/dist/native/other/callFunction.d.ts.map index c8e27d6faa..4714f4d29d 100644 --- a/dist/native/other/callFunction.d.ts.map +++ b/dist/native/other/callFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"callFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/callFunction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAGnF,wBA4BE"} \ No newline at end of file +{"version":3,"file":"callFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/callFunction.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAGnF,wBA4BE"} \ No newline at end of file diff --git a/dist/native/other/callFunction.js b/dist/native/other/callFunction.js index f92d8764ef..bf344d5506 100644 --- a/dist/native/other/callFunction.js +++ b/dist/native/other/callFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const ForgeError_1 = require("../../structures/forge/ForgeError"); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); diff --git a/dist/native/other/callFunction.js.map b/dist/native/other/callFunction.js.map index e834b39886..6a53f1d60d 100644 --- a/dist/native/other/callFunction.js.map +++ b/dist/native/other/callFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"callFunction.js","sourceRoot":"","sources":["../../../src/native/other/callFunction.ts"],"names":[],"mappings":";;AAAA,kEAA6D;AAC7D,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACzC,IAAI,CAAC,EAAE;YAAE,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,YAAY,EAAE,UAAU,EAAE,IAAI,CAAC,CAAA;QAEpE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"callFunction.js","sourceRoot":"","sources":["../../../src/native/other/callFunction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kEAA6D;AAC7D,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACzC,IAAI,CAAC,EAAE;YAAE,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,YAAY,EAAE,UAAU,EAAE,IAAI,CAAC,CAAA;QAEpE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/callLocalFunction.d.ts.map b/dist/native/other/callLocalFunction.d.ts.map index b816689213..c03da46a41 100644 --- a/dist/native/other/callLocalFunction.d.ts.map +++ b/dist/native/other/callLocalFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"callLocalFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/callLocalFunction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAEnF,wBAwCE"} \ No newline at end of file +{"version":3,"file":"callLocalFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/callLocalFunction.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;AAEnF,wBAwCE"} \ No newline at end of file diff --git a/dist/native/other/callLocalFunction.js b/dist/native/other/callLocalFunction.js index 3d8e8ca1e8..0ab8797c83 100644 --- a/dist/native/other/callLocalFunction.js +++ b/dist/native/other/callLocalFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); @@ -26,7 +30,7 @@ exports.default = new NativeFunction_1.NativeFunction({ ], output: NativeFunction_1.ArgType.Unknown, async execute(ctx, [name, args]) { - const func = ctx.localFunctions.get(name); + const func = ctx.getLocalFunction(name); if (!func) return this.error(structures_1.ErrorType.UnknownXName, "local function", name); if (args.length < func.args.length) diff --git a/dist/native/other/callLocalFunction.js.map b/dist/native/other/callLocalFunction.js.map index 27df259841..b5a2152a27 100644 --- a/dist/native/other/callLocalFunction.js.map +++ b/dist/native/other/callLocalFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"callLocalFunction.js","sourceRoot":"","sources":["../../../src/native/other/callLocalFunction.ts"],"names":[],"mappings":";;AAAA,iDAA4C;AAC5C,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,MAAM,IAAI,GAAG,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACzC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,YAAY,EAAE,gBAAgB,EAAE,IAAI,CAAC,CAAA;QAE5E,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM;YAC9B,OAAO,IAAI,CAAC,KAAK,CACb,sBAAS,CAAC,MAAM,EAChB,0BAA0B,IAAI,aAAa,IAAI,CAAC,IAAI,CAAC,MAAM,YAAY,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,cAAc,IAAI,CAAC,MAAM,EAAE,CACpI,CAAA;QAEL,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAClD,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;SAC/C;QAED,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"callLocalFunction.js","sourceRoot":"","sources":["../../../src/native/other/callLocalFunction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA4C;AAC5C,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,MAAM,IAAI,GAAG,GAAG,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAA;QACvC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,YAAY,EAAE,gBAAgB,EAAE,IAAI,CAAC,CAAA;QAE5E,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM;YAC9B,OAAO,IAAI,CAAC,KAAK,CACb,sBAAS,CAAC,MAAM,EAChB,0BAA0B,IAAI,aAAa,IAAI,CAAC,IAAI,CAAC,MAAM,YAAY,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,cAAc,IAAI,CAAC,MAAM,EAAE,CACpI,CAAA;QAEL,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAClD,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;SAC/C;QAED,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,CAAA;QACpD,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/debug.d.ts.map b/dist/native/other/debug.d.ts.map index f182bce463..dd4acf0dc3 100644 --- a/dist/native/other/debug.d.ts.map +++ b/dist/native/other/debug.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/native/other/debug.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/native/other/debug.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/other/debug.js b/dist/native/other/debug.js index e3104ba936..6e92bd166a 100644 --- a/dist/native/other/debug.js +++ b/dist/native/other/debug.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/debug.js.map b/dist/native/other/debug.js.map index ae2e1d05fe..d372086111 100644 --- a/dist/native/other/debug.js.map +++ b/dist/native/other/debug.js.map @@ -1 +1 @@ -{"version":3,"file":"debug.js","sourceRoot":"","sources":["../../../src/native/other/debug.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"debug.js","sourceRoot":"","sources":["../../../src/native/other/debug.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/disableConsoleErrors.d.ts.map b/dist/native/other/disableConsoleErrors.d.ts.map index 8b64a74758..a80a8b6705 100644 --- a/dist/native/other/disableConsoleErrors.d.ts.map +++ b/dist/native/other/disableConsoleErrors.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"disableConsoleErrors.d.ts","sourceRoot":"","sources":["../../../src/native/other/disableConsoleErrors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"disableConsoleErrors.d.ts","sourceRoot":"","sources":["../../../src/native/other/disableConsoleErrors.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/other/disableConsoleErrors.js b/dist/native/other/disableConsoleErrors.js index a45ea81d59..c9548c0f68 100644 --- a/dist/native/other/disableConsoleErrors.js +++ b/dist/native/other/disableConsoleErrors.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/disableConsoleErrors.js.map b/dist/native/other/disableConsoleErrors.js.map index dc1dd16ce4..595e1b025d 100644 --- a/dist/native/other/disableConsoleErrors.js.map +++ b/dist/native/other/disableConsoleErrors.js.map @@ -1 +1 @@ -{"version":3,"file":"disableConsoleErrors.js","sourceRoot":"","sources":["../../../src/native/other/disableConsoleErrors.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"disableConsoleErrors.js","sourceRoot":"","sources":["../../../src/native/other/disableConsoleErrors.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAA;QACvC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/djsVersion.d.ts.map b/dist/native/other/djsVersion.d.ts.map index 189ace1d65..e219b08feb 100644 --- a/dist/native/other/djsVersion.d.ts.map +++ b/dist/native/other/djsVersion.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"djsVersion.d.ts","sourceRoot":"","sources":["../../../src/native/other/djsVersion.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"djsVersion.d.ts","sourceRoot":"","sources":["../../../src/native/other/djsVersion.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/other/djsVersion.js b/dist/native/other/djsVersion.js index f722bf2bd8..188ea6bfeb 100644 --- a/dist/native/other/djsVersion.js +++ b/dist/native/other/djsVersion.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/other/djsVersion.js.map b/dist/native/other/djsVersion.js.map index 94d24a203a..74389fd932 100644 --- a/dist/native/other/djsVersion.js.map +++ b/dist/native/other/djsVersion.js.map @@ -1 +1 @@ -{"version":3,"file":"djsVersion.js","sourceRoot":"","sources":["../../../src/native/other/djsVersion.ts"],"names":[],"mappings":";;AAAA,2CAAoC;AACpC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,oBAAO,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"djsVersion.js","sourceRoot":"","sources":["../../../src/native/other/djsVersion.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoC;AACpC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,oBAAO,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/enableConsoleErrors.d.ts.map b/dist/native/other/enableConsoleErrors.d.ts.map index b39afb63b6..af9710e9c1 100644 --- a/dist/native/other/enableConsoleErrors.d.ts.map +++ b/dist/native/other/enableConsoleErrors.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"enableConsoleErrors.d.ts","sourceRoot":"","sources":["../../../src/native/other/enableConsoleErrors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file +{"version":3,"file":"enableConsoleErrors.d.ts","sourceRoot":"","sources":["../../../src/native/other/enableConsoleErrors.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAEjD,wBASE"} \ No newline at end of file diff --git a/dist/native/other/enableConsoleErrors.js b/dist/native/other/enableConsoleErrors.js index 0ade65faa1..3065398f54 100644 --- a/dist/native/other/enableConsoleErrors.js +++ b/dist/native/other/enableConsoleErrors.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/enableConsoleErrors.js.map b/dist/native/other/enableConsoleErrors.js.map index 297e3a81de..ccebee3558 100644 --- a/dist/native/other/enableConsoleErrors.js.map +++ b/dist/native/other/enableConsoleErrors.js.map @@ -1 +1 @@ -{"version":3,"file":"enableConsoleErrors.js","sourceRoot":"","sources":["../../../src/native/other/enableConsoleErrors.ts"],"names":[],"mappings":";;AAAA,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,OAAO,CAAC,oBAAoB,GAAG,KAAK,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"enableConsoleErrors.js","sourceRoot":"","sources":["../../../src/native/other/enableConsoleErrors.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,GAAG,CAAC,OAAO,CAAC,oBAAoB,GAAG,KAAK,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/error.d.ts.map b/dist/native/other/error.d.ts.map index 859793b1aa..6b35dc2ab6 100644 --- a/dist/native/other/error.d.ts.map +++ b/dist/native/other/error.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../../src/native/other/error.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../../src/native/other/error.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/other/error.js b/dist/native/other/error.js index c8b17123e9..3190ea67e7 100644 --- a/dist/native/other/error.js +++ b/dist/native/other/error.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/error.js.map b/dist/native/other/error.js.map index 54c0be9b76..05f69aaa8f 100644 --- a/dist/native/other/error.js.map +++ b/dist/native/other/error.js.map @@ -1 +1 @@ -{"version":3,"file":"error.js","sourceRoot":"","sources":["../../../src/native/other/error.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"error.js","sourceRoot":"","sources":["../../../src/native/other/error.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/escapeCode.d.ts.map b/dist/native/other/escapeCode.d.ts.map index c7d3c9058b..61ff2e98ec 100644 --- a/dist/native/other/escapeCode.d.ts.map +++ b/dist/native/other/escapeCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"escapeCode.d.ts","sourceRoot":"","sources":["../../../src/native/other/escapeCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file +{"version":3,"file":"escapeCode.d.ts","sourceRoot":"","sources":["../../../src/native/other/escapeCode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAsBE"} \ No newline at end of file diff --git a/dist/native/other/escapeCode.js b/dist/native/other/escapeCode.js index 313a0f3cb2..57028ae6eb 100644 --- a/dist/native/other/escapeCode.js +++ b/dist/native/other/escapeCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/other/escapeCode.js.map b/dist/native/other/escapeCode.js.map index 62ad40807f..80351c3d04 100644 --- a/dist/native/other/escapeCode.js.map +++ b/dist/native/other/escapeCode.js.map @@ -1 +1 @@ -{"version":3,"file":"escapeCode.js","sourceRoot":"","sources":["../../../src/native/other/escapeCode.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,MAAM;KACT;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,oBAAoB;YACjC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"escapeCode.js","sourceRoot":"","sources":["../../../src/native/other/escapeCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE;QACL,MAAM;KACT;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,oBAAoB;YACjC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/localFunction.d.ts.map b/dist/native/other/localFunction.d.ts.map index 2d6c771b04..d96db94aae 100644 --- a/dist/native/other/localFunction.d.ts.map +++ b/dist/native/other/localFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"localFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/localFunction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;;;;;;AAEnF,wBA6CE"} \ No newline at end of file +{"version":3,"file":"localFunction.d.ts","sourceRoot":"","sources":["../../../src/native/other/localFunction.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;;;;;;AAEnF,wBA2CE"} \ No newline at end of file diff --git a/dist/native/other/localFunction.js b/dist/native/other/localFunction.js index 9676567a25..e2ace1d376 100644 --- a/dist/native/other/localFunction.js +++ b/dist/native/other/localFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ @@ -32,15 +36,13 @@ exports.default = new NativeFunction_1.NativeFunction({ ], async execute(ctx) { const code = this.data.fields[1]; - const name = await this["resolveUnhandledArg"](ctx, 0); - if (!this["isValidReturnType"](name)) - return name; - const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 2); + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 2); if (!this["isValidReturnType"](rt)) return rt; - ctx.localFunctions.set(name.value, { + const [name, params] = args; + ctx.setLocalFunction(name, { code, - args: args[0] + args: params }); return this.success(); }, diff --git a/dist/native/other/localFunction.js.map b/dist/native/other/localFunction.js.map index 58446f7294..a3823b4ebf 100644 --- a/dist/native/other/localFunction.js.map +++ b/dist/native/other/localFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"localFunction.js","sourceRoot":"","sources":["../../../src/native/other/localFunction.ts"],"names":[],"mappings":";;AACA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACtE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAe,EAAE;YACzC,IAAI;YACJ,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;SAChB,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"localFunction.js","sourceRoot":"","sources":["../../../src/native/other/localFunction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACzE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAC7C,MAAM,CAAE,IAAI,EAAE,MAAM,CAAE,GAAG,IAAI,CAAA;QAE7B,GAAG,CAAC,gBAAgB,CAAC,IAAI,EAAE;YACvB,IAAI;YACJ,IAAI,EAAE,MAAM;SACf,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/other/typeof.d.ts.map b/dist/native/other/typeof.d.ts.map index 8018acc39a..38e8300e2d 100644 --- a/dist/native/other/typeof.d.ts.map +++ b/dist/native/other/typeof.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"typeof.d.ts","sourceRoot":"","sources":["../../../src/native/other/typeof.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,iBAAiB,QAAW,CAAA;;;;;;;;AAEzC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"typeof.d.ts","sourceRoot":"","sources":["../../../src/native/other/typeof.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,iBAAiB,QAAW,CAAA;;;;;;;;AAEzC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/other/typeof.js b/dist/native/other/typeof.js index 5a8798b444..894cba4666 100644 --- a/dist/native/other/typeof.js +++ b/dist/native/other/typeof.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BigIntFormatRegex = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/other/typeof.js.map b/dist/native/other/typeof.js.map index 5d5e18c40b..d10e63a889 100644 --- a/dist/native/other/typeof.js.map +++ b/dist/native/other/typeof.js.map @@ -1 +1 @@ -{"version":3,"file":"typeof.js","sourceRoot":"","sources":["../../../src/native/other/typeof.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAErD,QAAA,iBAAiB,GAAG,QAAQ,CAAA;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,IAAI,IAAY,CAAA;QAEhB,IAAI,GAAG,KAAK,WAAW;YAAE,IAAI,GAAG,WAAW,CAAA;aACtC,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,OAAO;YAAE,IAAI,GAAG,SAAS,CAAA;aACvD,IAAI,yBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,IAAI,GAAG,QAAQ,CAAA;aAChD,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YAAE,IAAI,GAAG,QAAQ,CAAA;aACxD;YACD,IAAI;gBACA,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;gBACf,IAAI,GAAG,QAAQ,CAAA;aAClB;YAAC,MAAM;gBACJ,IAAI,GAAG,QAAQ,CAAA;aAClB;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"typeof.js","sourceRoot":"","sources":["../../../src/native/other/typeof.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAErD,QAAA,iBAAiB,GAAG,QAAQ,CAAA;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,IAAI,IAAY,CAAA;QAEhB,IAAI,GAAG,KAAK,WAAW;YAAE,IAAI,GAAG,WAAW,CAAA;aACtC,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,OAAO;YAAE,IAAI,GAAG,SAAS,CAAA;aACvD,IAAI,yBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,IAAI,GAAG,QAAQ,CAAA;aAChD,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YAAE,IAAI,GAAG,QAAQ,CAAA;aACxD;YACD,IAAI;gBACA,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;gBACf,IAAI,GAAG,QAAQ,CAAA;aAClB;YAAC,MAAM;gBACJ,IAAI,GAAG,QAAQ,CAAA;aAClB;SACJ;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/poll.d.ts.map b/dist/native/poll/poll.d.ts.map index f66eae7bb7..ae54601eb8 100644 --- a/dist/native/poll/poll.d.ts.map +++ b/dist/native/poll/poll.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"poll.d.ts","sourceRoot":"","sources":["../../../src/native/poll/poll.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA8CE"} \ No newline at end of file +{"version":3,"file":"poll.d.ts","sourceRoot":"","sources":["../../../src/native/poll/poll.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA8CE"} \ No newline at end of file diff --git a/dist/native/poll/poll.js b/dist/native/poll/poll.js index 51ee246a54..c46dd222c0 100644 --- a/dist/native/poll/poll.js +++ b/dist/native/poll/poll.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/poll/poll.js.map b/dist/native/poll/poll.js.map index 40fe5bee6e..c1d480fa8f 100644 --- a/dist/native/poll/poll.js.map +++ b/dist/native/poll/poll.js.map @@ -1 +1 @@ -{"version":3,"file":"poll.js","sourceRoot":"","sources":["../../../src/native/poll/poll.ts"],"names":[],"mappings":";;AAAA,2CAA2C;AAC3C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,2BAAc;YACpB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAE;QAClC,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG;YACjB,OAAO,EAAE,EAAE;YACX,gBAAgB,EAAE,KAAK,IAAI,KAAK;YAChC,QAAQ,EAAE,GAAG,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE;YAC9B,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE;YACrB,UAAU,EAAE,MAAM,IAAI,SAAS;SAClC,CAAA;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"poll.js","sourceRoot":"","sources":["../../../src/native/poll/poll.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA2C;AAC3C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,2BAAc;YACpB,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAE;QAClC,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG;YACjB,OAAO,EAAE,EAAE;YACX,gBAAgB,EAAE,KAAK,IAAI,KAAK;YAChC,QAAQ,EAAE,GAAG,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE;YAC9B,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE;YACrB,UAAU,EAAE,MAAM,IAAI,SAAS;SAClC,CAAA;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswer.d.ts.map b/dist/native/poll/pollAnswer.d.ts.map index 83184bdb63..fa547aded7 100644 --- a/dist/native/poll/pollAnswer.d.ts.map +++ b/dist/native/poll/pollAnswer.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswer.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"pollAnswer.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswer.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswer.js b/dist/native/poll/pollAnswer.js index 3c83264aa3..0ae29a380e 100644 --- a/dist/native/poll/pollAnswer.js +++ b/dist/native/poll/pollAnswer.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswer.js.map b/dist/native/poll/pollAnswer.js.map index f8791d63e8..eda95b44f4 100644 --- a/dist/native/poll/pollAnswer.js.map +++ b/dist/native/poll/pollAnswer.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswer.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswer.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,mBAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,OAAiC,CAAA,CAAC,IAAI,CAAC;YACxD,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;SAC5B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswer.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswer.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,mBAAmB;IAChC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,CAAE;QACxB,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,OAAiC,CAAA,CAAC,IAAI,CAAC;YACxD,IAAI;YACJ,KAAK,EAAE,KAAK,IAAI,SAAS;SAC5B,CAAC,CAAA;QAEF,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerEmoji.d.ts.map b/dist/native/poll/pollAnswerEmoji.d.ts.map index dcd50fa979..dd1305e707 100644 --- a/dist/native/poll/pollAnswerEmoji.d.ts.map +++ b/dist/native/poll/pollAnswerEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"pollAnswerEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerEmoji.js b/dist/native/poll/pollAnswerEmoji.js index d0aac4156b..1a3f1f2abf 100644 --- a/dist/native/poll/pollAnswerEmoji.js +++ b/dist/native/poll/pollAnswerEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswerEmoji.js.map b/dist/native/poll/pollAnswerEmoji.js.map index 96224a1360..72072103b8 100644 --- a/dist/native/poll/pollAnswerEmoji.js.map +++ b/dist/native/poll/pollAnswerEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerEmoji.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerEmoji.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerEmoji.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAA;IACjE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerID.d.ts.map b/dist/native/poll/pollAnswerID.d.ts.map index 81c72980e9..a0ec839cb6 100644 --- a/dist/native/poll/pollAnswerID.d.ts.map +++ b/dist/native/poll/pollAnswerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerID.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"pollAnswerID.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerID.js b/dist/native/poll/pollAnswerID.js index 7c58b2d340..622e238e88 100644 --- a/dist/native/poll/pollAnswerID.js +++ b/dist/native/poll/pollAnswerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswerID.js.map b/dist/native/poll/pollAnswerID.js.map index 665a55c099..d344a17690 100644 --- a/dist/native/poll/pollAnswerID.js.map +++ b/dist/native/poll/pollAnswerID.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerID.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerID.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6DAA6D;IAC1E,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerMessageID.d.ts.map b/dist/native/poll/pollAnswerMessageID.d.ts.map index bedc82ad78..d5d586ced7 100644 --- a/dist/native/poll/pollAnswerMessageID.d.ts.map +++ b/dist/native/poll/pollAnswerMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"pollAnswerMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerMessageID.js b/dist/native/poll/pollAnswerMessageID.js index 0215587869..ca6b31cc12 100644 --- a/dist/native/poll/pollAnswerMessageID.js +++ b/dist/native/poll/pollAnswerMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswerMessageID.js.map b/dist/native/poll/pollAnswerMessageID.js.map index 4bf986389e..1c1b478dce 100644 --- a/dist/native/poll/pollAnswerMessageID.js.map +++ b/dist/native/poll/pollAnswerMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerMessageID.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerMessageID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerMessageID.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerText.d.ts.map b/dist/native/poll/pollAnswerText.d.ts.map index 24e9b2a008..8e13a3a89e 100644 --- a/dist/native/poll/pollAnswerText.d.ts.map +++ b/dist/native/poll/pollAnswerText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerText.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"pollAnswerText.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerText.js b/dist/native/poll/pollAnswerText.js index 4023b5cd3e..39bf42ba63 100644 --- a/dist/native/poll/pollAnswerText.js +++ b/dist/native/poll/pollAnswerText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswerText.js.map b/dist/native/poll/pollAnswerText.js.map index 83b70efa20..3826cd5c6c 100644 --- a/dist/native/poll/pollAnswerText.js.map +++ b/dist/native/poll/pollAnswerText.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerText.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerText.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerText.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerVoteCount.d.ts.map b/dist/native/poll/pollAnswerVoteCount.d.ts.map index 88c93a1d5f..2dfaf7e762 100644 --- a/dist/native/poll/pollAnswerVoteCount.d.ts.map +++ b/dist/native/poll/pollAnswerVoteCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerVoteCount.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoteCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"pollAnswerVoteCount.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoteCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerVoteCount.js b/dist/native/poll/pollAnswerVoteCount.js index ebcffd9e1a..5434bf40e8 100644 --- a/dist/native/poll/pollAnswerVoteCount.js +++ b/dist/native/poll/pollAnswerVoteCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswerVoteCount.js.map b/dist/native/poll/pollAnswerVoteCount.js.map index 007a24495b..29de8aa7d4 100644 --- a/dist/native/poll/pollAnswerVoteCount.js.map +++ b/dist/native/poll/pollAnswerVoteCount.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerVoteCount.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoteCount.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerVoteCount.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoteCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerVoterIDs.d.ts.map b/dist/native/poll/pollAnswerVoterIDs.d.ts.map index 0d589b5b7a..69fc50c3f3 100644 --- a/dist/native/poll/pollAnswerVoterIDs.d.ts.map +++ b/dist/native/poll/pollAnswerVoterIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerVoterIDs.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoterIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file +{"version":3,"file":"pollAnswerVoterIDs.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoterIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswerVoterIDs.js b/dist/native/poll/pollAnswerVoterIDs.js index 453d93d1ab..8319301c54 100644 --- a/dist/native/poll/pollAnswerVoterIDs.js +++ b/dist/native/poll/pollAnswerVoterIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/poll/pollAnswerVoterIDs.js.map b/dist/native/poll/pollAnswerVoterIDs.js.map index 14becbe580..9878313ae7 100644 --- a/dist/native/poll/pollAnswerVoterIDs.js.map +++ b/dist/native/poll/pollAnswerVoterIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswerVoterIDs.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoterIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,WAAW,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswerVoterIDs.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswerVoterIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,WAAW,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IAC3G,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswers.d.ts.map b/dist/native/poll/pollAnswers.d.ts.map index e243c097b5..f027cab4f6 100644 --- a/dist/native/poll/pollAnswers.d.ts.map +++ b/dist/native/poll/pollAnswers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswers.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA4BE"} \ No newline at end of file +{"version":3,"file":"pollAnswers.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollAnswers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBA4BE"} \ No newline at end of file diff --git a/dist/native/poll/pollAnswers.js b/dist/native/poll/pollAnswers.js index 7648f56527..180e5db124 100644 --- a/dist/native/poll/pollAnswers.js +++ b/dist/native/poll/pollAnswers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollAnswers.js.map b/dist/native/poll/pollAnswers.js.map index d7f8ca026b..f8546678ac 100644 --- a/dist/native/poll/pollAnswers.js.map +++ b/dist/native/poll/pollAnswers.js.map @@ -1 +1 @@ -{"version":3,"file":"pollAnswers.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswers.ts"],"names":[],"mappings":";;AACA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,GAAG,GAAI,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,OAAiC,CAAA;QAElE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,CAAC,EAAE;YAC/C,MAAM,CAAE,IAAI,EAAE,EAAE,CAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAA;YAC1C,GAAG,CAAC,IAAI,CAAC;gBACL,IAAI;gBACJ,KAAK,EAAE,EAAE,IAAI,SAAS;aACzB,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollAnswers.js","sourceRoot":"","sources":["../../../src/native/poll/pollAnswers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,KAAK,CAAE;QAClB,MAAM,GAAG,GAAI,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,OAAiC,CAAA;QAElE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,IAAI,CAAC,EAAE;YAC/C,MAAM,CAAE,IAAI,EAAE,EAAE,CAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAA;YAC1C,GAAG,CAAC,IAAI,CAAC;gBACL,IAAI;gBACJ,KAAK,EAAE,EAAE,IAAI,SAAS;aACzB,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/poll/pollEnd.d.ts.map b/dist/native/poll/pollEnd.d.ts.map index 5631e67990..29bd2e0bda 100644 --- a/dist/native/poll/pollEnd.d.ts.map +++ b/dist/native/poll/pollEnd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"pollEnd.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollEnd.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE/D,wBA6BE"} \ No newline at end of file +{"version":3,"file":"pollEnd.d.ts","sourceRoot":"","sources":["../../../src/native/poll/pollEnd.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE/D,wBA6BE"} \ No newline at end of file diff --git a/dist/native/poll/pollEnd.js b/dist/native/poll/pollEnd.js index 4652dc1801..f1b086db49 100644 --- a/dist/native/poll/pollEnd.js +++ b/dist/native/poll/pollEnd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/poll/pollEnd.js.map b/dist/native/poll/pollEnd.js.map index 63143ea3e1..428c112282 100644 --- a/dist/native/poll/pollEnd.js.map +++ b/dist/native/poll/pollEnd.js.map @@ -1 +1 @@ -{"version":3,"file":"pollEnd.js","sourceRoot":"","sources":["../../../src/native/poll/pollEnd.ts"],"names":[],"mappings":";;AAAA,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE;QACL,UAAU;KACb;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,AAAD,EAAG,GAAG,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"pollEnd.js","sourceRoot":"","sources":["../../../src/native/poll/pollEnd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE;QACL,UAAU;KACb;IACD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,AAAD,EAAG,GAAG,CAAE;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/reaction/reactionAuthorID.d.ts.map b/dist/native/reaction/reactionAuthorID.d.ts.map index 477e0054c4..b97d687e0c 100644 --- a/dist/native/reaction/reactionAuthorID.d.ts.map +++ b/dist/native/reaction/reactionAuthorID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reactionAuthorID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionAuthorID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"reactionAuthorID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionAuthorID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/reaction/reactionAuthorID.js b/dist/native/reaction/reactionAuthorID.js index ceebb901ce..9b65d29cf4 100644 --- a/dist/native/reaction/reactionAuthorID.js +++ b/dist/native/reaction/reactionAuthorID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/reaction/reactionAuthorID.js.map b/dist/native/reaction/reactionAuthorID.js.map index 44eb209cdc..cd8ef61c3d 100644 --- a/dist/native/reaction/reactionAuthorID.js.map +++ b/dist/native/reaction/reactionAuthorID.js.map @@ -1 +1 @@ -{"version":3,"file":"reactionAuthorID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionAuthorID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reactionAuthorID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionAuthorID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/reaction/reactionCount.d.ts.map b/dist/native/reaction/reactionCount.d.ts.map index 04045556f8..f3f750fb77 100644 --- a/dist/native/reaction/reactionCount.d.ts.map +++ b/dist/native/reaction/reactionCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reactionCount.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"reactionCount.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/reaction/reactionCount.js b/dist/native/reaction/reactionCount.js index 12d02b2ecd..6918549665 100644 --- a/dist/native/reaction/reactionCount.js +++ b/dist/native/reaction/reactionCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/reaction/reactionCount.js.map b/dist/native/reaction/reactionCount.js.map index e1e6775059..44ec1b0fbe 100644 --- a/dist/native/reaction/reactionCount.js.map +++ b/dist/native/reaction/reactionCount.js.map @@ -1 +1 @@ -{"version":3,"file":"reactionCount.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reactionCount.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/reaction/reactionEmoji.d.ts.map b/dist/native/reaction/reactionEmoji.d.ts.map index 392a969662..3b5e393b15 100644 --- a/dist/native/reaction/reactionEmoji.d.ts.map +++ b/dist/native/reaction/reactionEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"reactionEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/reaction/reactionEmoji.js b/dist/native/reaction/reactionEmoji.js index bbff847627..040e60af3b 100644 --- a/dist/native/reaction/reactionEmoji.js +++ b/dist/native/reaction/reactionEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/reaction/reactionEmoji.js.map b/dist/native/reaction/reactionEmoji.js.map index d68c61274d..2361c52c96 100644 --- a/dist/native/reaction/reactionEmoji.js.map +++ b/dist/native/reaction/reactionEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"reactionEmoji.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reactionEmoji.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/reaction/reactionEmojiID.d.ts.map b/dist/native/reaction/reactionEmojiID.d.ts.map index b99b6e6f25..8c670a6fea 100644 --- a/dist/native/reaction/reactionEmojiID.d.ts.map +++ b/dist/native/reaction/reactionEmojiID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reactionEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmojiID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"reactionEmojiID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmojiID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/reaction/reactionEmojiID.js b/dist/native/reaction/reactionEmojiID.js index 3edb6b3731..01ed5bea8d 100644 --- a/dist/native/reaction/reactionEmojiID.js +++ b/dist/native/reaction/reactionEmojiID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/reaction/reactionEmojiID.js.map b/dist/native/reaction/reactionEmojiID.js.map index 05376dd53e..8aba35cb77 100644 --- a/dist/native/reaction/reactionEmojiID.js.map +++ b/dist/native/reaction/reactionEmojiID.js.map @@ -1 +1 @@ -{"version":3,"file":"reactionEmojiID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmojiID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reactionEmojiID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionEmojiID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/reaction/reactionMessageID.d.ts.map b/dist/native/reaction/reactionMessageID.d.ts.map index 16f9250125..9781c5a5e4 100644 --- a/dist/native/reaction/reactionMessageID.d.ts.map +++ b/dist/native/reaction/reactionMessageID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reactionMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionMessageID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"reactionMessageID.d.ts","sourceRoot":"","sources":["../../../src/native/reaction/reactionMessageID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/reaction/reactionMessageID.js b/dist/native/reaction/reactionMessageID.js index 1515730180..5d1fbb1081 100644 --- a/dist/native/reaction/reactionMessageID.js +++ b/dist/native/reaction/reactionMessageID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/reaction/reactionMessageID.js.map b/dist/native/reaction/reactionMessageID.js.map index b1f6518c4e..601c5fa213 100644 --- a/dist/native/reaction/reactionMessageID.js.map +++ b/dist/native/reaction/reactionMessageID.js.map @@ -1 +1 @@ -{"version":3,"file":"reactionMessageID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionMessageID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reactionMessageID.js","sourceRoot":"","sources":["../../../src/native/reaction/reactionMessageID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/addRole.d.ts b/dist/native/role/addRole.d.ts index f4ae76d685..2280320160 100644 --- a/dist/native/role/addRole.d.ts +++ b/dist/native/role/addRole.d.ts @@ -92,6 +92,7 @@ declare const _default: NativeFunction<[{ readonly SendPolls: bigint; readonly UseExternalApps: bigint; readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; }; type: ArgType.String; }], true>; diff --git a/dist/native/role/addRole.d.ts.map b/dist/native/role/addRole.d.ts.map index 8b4e245abc..e03743cfd1 100644 --- a/dist/native/role/addRole.d.ts.map +++ b/dist/native/role/addRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/addRole.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2EE"} \ No newline at end of file +{"version":3,"file":"addRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/addRole.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2EE"} \ No newline at end of file diff --git a/dist/native/role/addRole.js b/dist/native/role/addRole.js index bb033c20bf..35dd76974b 100644 --- a/dist/native/role/addRole.js +++ b/dist/native/role/addRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/role/addRole.js.map b/dist/native/role/addRole.js.map index 47210e94c8..2bc12c31ac 100644 --- a/dist/native/role/addRole.js.map +++ b/dist/native/role/addRole.js.map @@ -1 +1 @@ -{"version":3,"file":"addRole.js","sourceRoot":"","sources":["../../../src/native/role/addRole.ts"],"names":[],"mappings":";;AAAA,2CAAoF;AACpF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,gCAAmB;YACzB,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,KAAK,CAAC;QACzE,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC;YACJ,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAwB,EAAE;YACvE,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,KAAK,EAAE,KAAK,IAAI,KAAK;YACrB,WAAW,EAAE,WAAW,IAAI,KAAK;YACjC,IAAI;YACJ,WAAW,EAAG,KAA6B,IAAI,EAAE;YACjD,QAAQ,EAAE,GAAG,IAAI,SAAS;YAC1B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addRole.js","sourceRoot":"","sources":["../../../src/native/role/addRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAoF;AACpF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,gCAAmB;YACzB,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,KAAK,CAAC;QACzE,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC;YACJ,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAwB,EAAE;YACvE,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,KAAK,EAAE,KAAK,IAAI,KAAK;YACrB,WAAW,EAAE,WAAW,IAAI,KAAK;YACjC,IAAI;YACJ,WAAW,EAAG,KAA6B,IAAI,EAAE;YACjD,QAAQ,EAAE,GAAG,IAAI,SAAS;YAC1B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/cloneRole.d.ts.map b/dist/native/role/cloneRole.d.ts.map index c9837d38f7..be7f385b40 100644 --- a/dist/native/role/cloneRole.d.ts.map +++ b/dist/native/role/cloneRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cloneRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/cloneRole.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBA6CE"} \ No newline at end of file +{"version":3,"file":"cloneRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/cloneRole.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBA6CE"} \ No newline at end of file diff --git a/dist/native/role/cloneRole.js b/dist/native/role/cloneRole.js index 2f8ba6bd7f..7a3e8605b3 100644 --- a/dist/native/role/cloneRole.js +++ b/dist/native/role/cloneRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/cloneRole.js.map b/dist/native/role/cloneRole.js.map index a5e6aa10cb..4b1088cab4 100644 --- a/dist/native/role/cloneRole.js.map +++ b/dist/native/role/cloneRole.js.map @@ -1 +1 @@ -{"version":3,"file":"cloneRole.js","sourceRoot":"","sources":["../../../src/native/role/cloneRole.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC;YACJ,IAAI,EAAE,IAAI,IAAI,IAAI,CAAC,IAAI;YACvB,MAAM,EAAE,IAAI,CAAC,MAA8B;YAC3C,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cloneRole.js","sourceRoot":"","sources":["../../../src/native/role/cloneRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gEAAgE;IAC7E,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;QAClC,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC;YACJ,IAAI,EAAE,IAAI,IAAI,IAAI,CAAC,IAAI;YACvB,MAAM,EAAE,IAAI,CAAC,MAA8B;YAC3C,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/deleteRoles.d.ts.map b/dist/native/role/deleteRoles.d.ts.map index b7dc14fd15..ebbe7180b8 100644 --- a/dist/native/role/deleteRoles.d.ts.map +++ b/dist/native/role/deleteRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteRoles.d.ts","sourceRoot":"","sources":["../../../src/native/role/deleteRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"deleteRoles.d.ts","sourceRoot":"","sources":["../../../src/native/role/deleteRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/deleteRoles.js b/dist/native/role/deleteRoles.js index c1a72c0ab3..7d55c3132f 100644 --- a/dist/native/role/deleteRoles.js +++ b/dist/native/role/deleteRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/deleteRoles.js.map b/dist/native/role/deleteRoles.js.map index af09f87ceb..a82680b28c 100644 --- a/dist/native/role/deleteRoles.js.map +++ b/dist/native/role/deleteRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteRoles.js","sourceRoot":"","sources":["../../../src/native/role/deleteRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yDAAyD;IACtE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QACxB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC9C,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAA;YACrB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC7D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteRoles.js","sourceRoot":"","sources":["../../../src/native/role/deleteRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,yDAAyD;IACtE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QACxB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC9C,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAA;YACrB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC7D,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRole.d.ts.map b/dist/native/role/editRole.d.ts.map index ddfe05b7c9..f92095c6dc 100644 --- a/dist/native/role/editRole.d.ts.map +++ b/dist/native/role/editRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRole.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAyEE"} \ No newline at end of file +{"version":3,"file":"editRole.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRole.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAyEE"} \ No newline at end of file diff --git a/dist/native/role/editRole.js b/dist/native/role/editRole.js index e9fad247e0..6317896015 100644 --- a/dist/native/role/editRole.js +++ b/dist/native/role/editRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRole.js.map b/dist/native/role/editRole.js.map index 0376385dd8..415bb95107 100644 --- a/dist/native/role/editRole.js.map +++ b/dist/native/role/editRole.js.map @@ -1 +1 @@ -{"version":3,"file":"editRole.js","sourceRoot":"","sources":["../../../src/native/role/editRole.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,CAAC;QACrE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC;YACzB,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAwB,EAAE;YACvE,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,WAAW,IAAI,SAAS;YACrC,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,KAAK,IAAI,SAAS;YAC/B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRole.js","sourceRoot":"","sources":["../../../src/native/role/editRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAGlE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,8DAA8D;YAC3E,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,CAAC;QACrE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC;YACzB,MAAM,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAwB,EAAE;YACvE,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,WAAW,IAAI,SAAS;YACrC,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,KAAK,IAAI,SAAS;YAC/B,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRoleColors.d.ts.map b/dist/native/role/editRoleColors.d.ts.map index bdfe9f2b8a..f08f7cab96 100644 --- a/dist/native/role/editRoleColors.d.ts.map +++ b/dist/native/role/editRoleColors.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleColors.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleColors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAmDE"} \ No newline at end of file +{"version":3,"file":"editRoleColors.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleColors.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAmDE"} \ No newline at end of file diff --git a/dist/native/role/editRoleColors.js b/dist/native/role/editRoleColors.js index 3f658721a4..8f950c1732 100644 --- a/dist/native/role/editRoleColors.js +++ b/dist/native/role/editRoleColors.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRoleColors.js.map b/dist/native/role/editRoleColors.js.map index 7474e6707c..42cb1122d9 100644 --- a/dist/native/role/editRoleColors.js.map +++ b/dist/native/role/editRoleColors.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleColors.js","sourceRoot":"","sources":["../../../src/native/role/editRoleColors.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,CAAC;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,SAAS,CAAC;YACxC,YAAY,EAAE,OAAO;YACrB,cAAc,EAAE,SAAS,IAAI,SAAS;YACtC,aAAa,EAAE,QAAQ,IAAI,SAAS;SACvC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRoleColors.js","sourceRoot":"","sources":["../../../src/native/role/editRoleColors.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,gBAAgB,CAAC;IAC3B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,CAAC;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,SAAS,CAAC;YACxC,YAAY,EAAE,OAAO;YACrB,cAAc,EAAE,SAAS,IAAI,SAAS;YACtC,aAAa,EAAE,QAAQ,IAAI,SAAS;SACvC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRoleIcon.d.ts.map b/dist/native/role/editRoleIcon.d.ts.map index c6b42e3ceb..8f66ac7658 100644 --- a/dist/native/role/editRoleIcon.d.ts.map +++ b/dist/native/role/editRoleIcon.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleIcon.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleIcon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"editRoleIcon.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleIcon.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/role/editRoleIcon.js b/dist/native/role/editRoleIcon.js index a3234fa09a..664c569beb 100644 --- a/dist/native/role/editRoleIcon.js +++ b/dist/native/role/editRoleIcon.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRoleIcon.js.map b/dist/native/role/editRoleIcon.js.map index 28a7724d9a..acb1b50ba8 100644 --- a/dist/native/role/editRoleIcon.js.map +++ b/dist/native/role/editRoleIcon.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleIcon.js","sourceRoot":"","sources":["../../../src/native/role/editRoleIcon.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRoleIcon.js","sourceRoot":"","sources":["../../../src/native/role/editRoleIcon.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRoleName.d.ts.map b/dist/native/role/editRoleName.d.ts.map index 04202c3506..6f7a2deec4 100644 --- a/dist/native/role/editRoleName.d.ts.map +++ b/dist/native/role/editRoleName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleName.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"editRoleName.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/editRoleName.js b/dist/native/role/editRoleName.js index 3fa85d7038..c2646520e4 100644 --- a/dist/native/role/editRoleName.js +++ b/dist/native/role/editRoleName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRoleName.js.map b/dist/native/role/editRoleName.js.map index 89be9c61f1..52bbc96f5a 100644 --- a/dist/native/role/editRoleName.js.map +++ b/dist/native/role/editRoleName.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleName.js","sourceRoot":"","sources":["../../../src/native/role/editRoleName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRoleName.js","sourceRoot":"","sources":["../../../src/native/role/editRoleName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRolePerms.d.ts.map b/dist/native/role/editRolePerms.d.ts.map index 3984f9154f..9db617fc11 100644 --- a/dist/native/role/editRolePerms.d.ts.map +++ b/dist/native/role/editRolePerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRolePerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRolePerms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"editRolePerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRolePerms.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/editRolePerms.js b/dist/native/role/editRolePerms.js index 099c7698af..ec087330c3 100644 --- a/dist/native/role/editRolePerms.js +++ b/dist/native/role/editRolePerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRolePerms.js.map b/dist/native/role/editRolePerms.js.map index ad1f4c2e37..13db857f9c 100644 --- a/dist/native/role/editRolePerms.js.map +++ b/dist/native/role/editRolePerms.js.map @@ -1 +1 @@ -{"version":3,"file":"editRolePerms.js","sourceRoot":"","sources":["../../../src/native/role/editRolePerms.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRolePerms.js","sourceRoot":"","sources":["../../../src/native/role/editRolePerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6CAA6C;IAC1D,OAAO,EAAE,CAAC,kBAAkB,CAAC;IAC7B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iDAAiD;YAC9D,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,UAAU;SAC3B;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRolePosition.d.ts.map b/dist/native/role/editRolePosition.d.ts.map index 938ad9bb6d..f22fd3e6e1 100644 --- a/dist/native/role/editRolePosition.d.ts.map +++ b/dist/native/role/editRolePosition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRolePosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRolePosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"editRolePosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRolePosition.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/editRolePosition.js b/dist/native/role/editRolePosition.js index 52c49d8ccf..c7d1dbb575 100644 --- a/dist/native/role/editRolePosition.js +++ b/dist/native/role/editRolePosition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRolePosition.js.map b/dist/native/role/editRolePosition.js.map index d60e207b72..d4450a42ee 100644 --- a/dist/native/role/editRolePosition.js.map +++ b/dist/native/role/editRolePosition.js.map @@ -1 +1 @@ -{"version":3,"file":"editRolePosition.js","sourceRoot":"","sources":["../../../src/native/role/editRolePosition.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRolePosition.js","sourceRoot":"","sources":["../../../src/native/role/editRolePosition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,GAAG,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAChG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/editRoleUnicodeEmoji.d.ts.map b/dist/native/role/editRoleUnicodeEmoji.d.ts.map index 041bde4237..eaf8eca204 100644 --- a/dist/native/role/editRoleUnicodeEmoji.d.ts.map +++ b/dist/native/role/editRoleUnicodeEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editRoleUnicodeEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleUnicodeEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"editRoleUnicodeEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/role/editRoleUnicodeEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/role/editRoleUnicodeEmoji.js b/dist/native/role/editRoleUnicodeEmoji.js index d517e0db8e..6b6668f076 100644 --- a/dist/native/role/editRoleUnicodeEmoji.js +++ b/dist/native/role/editRoleUnicodeEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/editRoleUnicodeEmoji.js.map b/dist/native/role/editRoleUnicodeEmoji.js.map index 3dc55faf23..2dd5fff50b 100644 --- a/dist/native/role/editRoleUnicodeEmoji.js.map +++ b/dist/native/role/editRoleUnicodeEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"editRoleUnicodeEmoji.js","sourceRoot":"","sources":["../../../src/native/role/editRoleUnicodeEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editRoleUnicodeEmoji.js","sourceRoot":"","sources":["../../../src/native/role/editRoleUnicodeEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/fetchRoles.d.ts.map b/dist/native/role/fetchRoles.d.ts.map index 7c0fbee282..06c23f5ead 100644 --- a/dist/native/role/fetchRoles.d.ts.map +++ b/dist/native/role/fetchRoles.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fetchRoles.d.ts","sourceRoot":"","sources":["../../../src/native/role/fetchRoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"fetchRoles.d.ts","sourceRoot":"","sources":["../../../src/native/role/fetchRoles.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/role/fetchRoles.js b/dist/native/role/fetchRoles.js index db077608c3..85d666383e 100644 --- a/dist/native/role/fetchRoles.js +++ b/dist/native/role/fetchRoles.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/fetchRoles.js.map b/dist/native/role/fetchRoles.js.map index 4d3e26c29f..4cbb0b232e 100644 --- a/dist/native/role/fetchRoles.js.map +++ b/dist/native/role/fetchRoles.js.map @@ -1 +1 @@ -{"version":3,"file":"fetchRoles.js","sourceRoot":"","sources":["../../../src/native/role/fetchRoles.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,IAAI;YAAE,MAAM,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;;YACtC,MAAM,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fetchRoles.js","sourceRoot":"","sources":["../../../src/native/role/fetchRoles.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,IAAI,IAAI;YAAE,MAAM,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;;YACtC,MAAM,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/randomRoleID.d.ts.map b/dist/native/role/randomRoleID.d.ts.map index 956e8444b9..bcf2f7457f 100644 --- a/dist/native/role/randomRoleID.d.ts.map +++ b/dist/native/role/randomRoleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/role/randomRoleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"randomRoleID.d.ts","sourceRoot":"","sources":["../../../src/native/role/randomRoleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/role/randomRoleID.js b/dist/native/role/randomRoleID.js index 2fe8f8eddc..8814f9db7e 100644 --- a/dist/native/role/randomRoleID.js +++ b/dist/native/role/randomRoleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/randomRoleID.js.map b/dist/native/role/randomRoleID.js.map index 4805a68381..75f4647dba 100644 --- a/dist/native/role/randomRoleID.js.map +++ b/dist/native/role/randomRoleID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomRoleID.js","sourceRoot":"","sources":["../../../src/native/role/randomRoleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomRoleID.js","sourceRoot":"","sources":["../../../src/native/role/randomRoleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IACtE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleColor.d.ts.map b/dist/native/role/roleColor.d.ts.map index 59e902b121..2140fed7d1 100644 --- a/dist/native/role/roleColor.d.ts.map +++ b/dist/native/role/roleColor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleColor.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleColor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,SAAS;IACjB,OAAO,iBAAiB;IACxB,SAAS,mBAAmB;IAC5B,QAAQ,kBAAkB;CAC7B;;;;;;;;;;;;;;;;;;;;;AAED,wBAmCE"} \ No newline at end of file +{"version":3,"file":"roleColor.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleColor.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,SAAS;IACjB,OAAO,iBAAiB;IACxB,SAAS,mBAAmB;IAC5B,QAAQ,kBAAkB;CAC7B;;;;;;;;;;;;;;;;;;;;;AAED,wBAmCE"} \ No newline at end of file diff --git a/dist/native/role/roleColor.js b/dist/native/role/roleColor.js index b973fedd06..efbda308ed 100644 --- a/dist/native/role/roleColor.js +++ b/dist/native/role/roleColor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.RoleColor = void 0; const hex_1 = require("../../functions/hex"); diff --git a/dist/native/role/roleColor.js.map b/dist/native/role/roleColor.js.map index bb9330d026..83dc394e8f 100644 --- a/dist/native/role/roleColor.js.map +++ b/dist/native/role/roleColor.js.map @@ -1 +1 @@ -{"version":3,"file":"roleColor.js","sourceRoot":"","sources":["../../../src/native/role/roleColor.ts"],"names":[],"mappings":";;;AAAA,6CAA6C;AAC7C,iDAAkE;AAElE,IAAY,SAIX;AAJD,WAAY,SAAS;IACjB,qCAAwB,CAAA;IACxB,yCAA4B,CAAA;IAC5B,uCAA0B,CAAA;AAC9B,CAAC,EAJW,SAAS,yBAAT,SAAS,QAIpB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,MAAM,GAAG,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,IAAI,SAAS,CAAC,OAAO,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleColor.js","sourceRoot":"","sources":["../../../src/native/role/roleColor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,6CAA6C;AAC7C,iDAAkE;AAElE,IAAY,SAIX;AAJD,WAAY,SAAS;IACjB,qCAAwB,CAAA;IACxB,yCAA4B,CAAA;IAC5B,uCAA0B,CAAA;AAC9B,CAAC,EAJW,SAAS,yBAAT,SAAS,QAIpB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,MAAM,GAAG,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,IAAI,SAAS,CAAC,OAAO,CAAC,CAAA;QAClE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleCount.d.ts.map b/dist/native/role/roleCount.d.ts.map index 6d151533e8..a41edc817f 100644 --- a/dist/native/role/roleCount.d.ts.map +++ b/dist/native/role/roleCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleCount.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"roleCount.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/role/roleCount.js b/dist/native/role/roleCount.js index 9111cc197c..84667aca71 100644 --- a/dist/native/role/roleCount.js +++ b/dist/native/role/roleCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleCount.js.map b/dist/native/role/roleCount.js.map index a6e185ce68..0578d6a59a 100644 --- a/dist/native/role/roleCount.js.map +++ b/dist/native/role/roleCount.js.map @@ -1 +1 @@ -{"version":3,"file":"roleCount.js","sourceRoot":"","sources":["../../../src/native/role/roleCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleCount.js","sourceRoot":"","sources":["../../../src/native/role/roleCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;IAC5F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleCreatedAt.d.ts.map b/dist/native/role/roleCreatedAt.d.ts.map index 47cc98135e..dde9b0865b 100644 --- a/dist/native/role/roleCreatedAt.d.ts.map +++ b/dist/native/role/roleCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleCreatedAt.js b/dist/native/role/roleCreatedAt.js index 6999dc1656..606be3cd6e 100644 --- a/dist/native/role/roleCreatedAt.js +++ b/dist/native/role/roleCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleCreatedAt.js.map b/dist/native/role/roleCreatedAt.js.map index 2b1b5a50ff..0de2f19186 100644 --- a/dist/native/role/roleCreatedAt.js.map +++ b/dist/native/role/roleCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"roleCreatedAt.js","sourceRoot":"","sources":["../../../src/native/role/roleCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleCreatedAt.js","sourceRoot":"","sources":["../../../src/native/role/roleCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleEditable.d.ts.map b/dist/native/role/roleEditable.d.ts.map index 7ad228bcda..71c7578f42 100644 --- a/dist/native/role/roleEditable.d.ts.map +++ b/dist/native/role/roleEditable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleEditable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleEditable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleEditable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleEditable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleEditable.js b/dist/native/role/roleEditable.js index 3d06a6e3c9..e5fd4b5425 100644 --- a/dist/native/role/roleEditable.js +++ b/dist/native/role/roleEditable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleEditable.js.map b/dist/native/role/roleEditable.js.map index c926c9d904..34e2ccc34f 100644 --- a/dist/native/role/roleEditable.js.map +++ b/dist/native/role/roleEditable.js.map @@ -1 +1 @@ -{"version":3,"file":"roleEditable.js","sourceRoot":"","sources":["../../../src/native/role/roleEditable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleEditable.js","sourceRoot":"","sources":["../../../src/native/role/roleEditable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleExists.d.ts.map b/dist/native/role/roleExists.d.ts.map index 17b966980e..24139ca79a 100644 --- a/dist/native/role/roleExists.d.ts.map +++ b/dist/native/role/roleExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleExists.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"roleExists.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEpF,wBA0BE"} \ No newline at end of file diff --git a/dist/native/role/roleExists.js b/dist/native/role/roleExists.js index 85aa32a82c..ec4161be16 100644 --- a/dist/native/role/roleExists.js +++ b/dist/native/role/roleExists.js @@ -1,10 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$roleExists", version: "1.0.0", - description: "Returns whether an role id exists", + description: "Returns whether a role id exists", unwrap: true, brackets: true, output: structures_1.ArgType.Boolean, diff --git a/dist/native/role/roleExists.js.map b/dist/native/role/roleExists.js.map index a1c97665e5..9b1cfb4c4d 100644 --- a/dist/native/role/roleExists.js.map +++ b/dist/native/role/roleExists.js.map @@ -1 +1 @@ -{"version":3,"file":"roleExists.js","sourceRoot":"","sources":["../../../src/native/role/roleExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleExists.js","sourceRoot":"","sources":["../../../src/native/role/roleExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleFlags.d.ts.map b/dist/native/role/roleFlags.d.ts.map index 3884355b03..3df2e3d1bb 100644 --- a/dist/native/role/roleFlags.d.ts.map +++ b/dist/native/role/roleFlags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleFlags.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleFlags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"roleFlags.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleFlags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAGlE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/roleFlags.js b/dist/native/role/roleFlags.js index c5f072d440..dc8706737c 100644 --- a/dist/native/role/roleFlags.js +++ b/dist/native/role/roleFlags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/role/roleFlags.js.map b/dist/native/role/roleFlags.js.map index 8adba94524..52b24ff548 100644 --- a/dist/native/role/roleFlags.js.map +++ b/dist/native/role/roleFlags.js.map @@ -1 +1 @@ -{"version":3,"file":"roleFlags.js","sourceRoot":"","sources":["../../../src/native/role/roleFlags.ts"],"names":[],"mappings":";;;;;AAAA,2CAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,sBAAS,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleFlags.js","sourceRoot":"","sources":["../../../src/native/role/roleFlags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,sBAAS,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleHasAnyPerms.d.ts b/dist/native/role/roleHasAnyPerms.d.ts new file mode 100644 index 0000000000..3a60401387 --- /dev/null +++ b/dist/native/role/roleHasAnyPerms.d.ts @@ -0,0 +1,77 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Role; + pointer: number; +}, { + name: string; + description: string; + rest: true; + required: true; + type: ArgType.Enum; + enum: { + readonly CreateInstantInvite: bigint; + readonly KickMembers: bigint; + readonly BanMembers: bigint; + readonly Administrator: bigint; + readonly ManageChannels: bigint; + readonly ManageGuild: bigint; + readonly AddReactions: bigint; + readonly ViewAuditLog: bigint; + readonly PrioritySpeaker: bigint; + readonly Stream: bigint; + readonly ViewChannel: bigint; + readonly SendMessages: bigint; + readonly SendTTSMessages: bigint; + readonly ManageMessages: bigint; + readonly EmbedLinks: bigint; + readonly AttachFiles: bigint; + readonly ReadMessageHistory: bigint; + readonly MentionEveryone: bigint; + readonly UseExternalEmojis: bigint; + readonly ViewGuildInsights: bigint; + readonly Connect: bigint; + readonly Speak: bigint; + readonly MuteMembers: bigint; + readonly DeafenMembers: bigint; + readonly MoveMembers: bigint; + readonly UseVAD: bigint; + readonly ChangeNickname: bigint; + readonly ManageNicknames: bigint; + readonly ManageRoles: bigint; + readonly ManageWebhooks: bigint; + readonly ManageEmojisAndStickers: bigint; + readonly ManageGuildExpressions: bigint; + readonly UseApplicationCommands: bigint; + readonly RequestToSpeak: bigint; + readonly ManageEvents: bigint; + readonly ManageThreads: bigint; + readonly CreatePublicThreads: bigint; + readonly CreatePrivateThreads: bigint; + readonly UseExternalStickers: bigint; + readonly SendMessagesInThreads: bigint; + readonly UseEmbeddedActivities: bigint; + readonly ModerateMembers: bigint; + readonly ViewCreatorMonetizationAnalytics: bigint; + readonly UseSoundboard: bigint; + readonly CreateGuildExpressions: bigint; + readonly CreateEvents: bigint; + readonly UseExternalSounds: bigint; + readonly SendVoiceMessages: bigint; + readonly SendPolls: bigint; + readonly UseExternalApps: bigint; + readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; + }; +}], true>; +export default _default; +//# sourceMappingURL=roleHasAnyPerms.d.ts.map \ No newline at end of file diff --git a/dist/native/role/roleHasAnyPerms.d.ts.map b/dist/native/role/roleHasAnyPerms.d.ts.map new file mode 100644 index 0000000000..e6ddf5d28e --- /dev/null +++ b/dist/native/role/roleHasAnyPerms.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"roleHasAnyPerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleHasAnyPerms.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/role/roleHasAnyPerms.js b/dist/native/role/roleHasAnyPerms.js new file mode 100644 index 0000000000..4e5b090c36 --- /dev/null +++ b/dist/native/role/roleHasAnyPerms.js @@ -0,0 +1,48 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$roleHasAnyPerms", + version: "2.6.0", + description: "Returns whether the role has any of the specified perms", + aliases: [ + "$hasRoleAnyPerms" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to pull the role from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "role ID", + description: "The role to get its perms", + rest: false, + required: true, + type: structures_1.ArgType.Role, + pointer: 0, + }, + { + name: "perms", + description: "The perms to check for", + rest: true, + required: true, + type: structures_1.ArgType.Enum, + enum: discord_js_1.PermissionFlagsBits, + }, + ], + output: structures_1.ArgType.Boolean, + execute(ctx, [, role, perms]) { + return this.success(role.permissions.any(perms)); + }, +}); +//# sourceMappingURL=roleHasAnyPerms.js.map \ No newline at end of file diff --git a/dist/native/role/roleHasAnyPerms.js.map b/dist/native/role/roleHasAnyPerms.js.map new file mode 100644 index 0000000000..4ded1014ef --- /dev/null +++ b/dist/native/role/roleHasAnyPerms.js.map @@ -0,0 +1 @@ +{"version":3,"file":"roleHasAnyPerms.js","sourceRoot":"","sources":["../../../src/native/role/roleHasAnyPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgD;AAChD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yDAAyD;IACtE,OAAO,EAAE;QACL,kBAAkB;KACrB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleHasPerms.d.ts b/dist/native/role/roleHasPerms.d.ts new file mode 100644 index 0000000000..a3b1b2b668 --- /dev/null +++ b/dist/native/role/roleHasPerms.d.ts @@ -0,0 +1,77 @@ +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Guild; +}, { + name: string; + description: string; + rest: false; + required: true; + type: ArgType.Role; + pointer: number; +}, { + name: string; + description: string; + rest: true; + required: true; + type: ArgType.Enum; + enum: { + readonly CreateInstantInvite: bigint; + readonly KickMembers: bigint; + readonly BanMembers: bigint; + readonly Administrator: bigint; + readonly ManageChannels: bigint; + readonly ManageGuild: bigint; + readonly AddReactions: bigint; + readonly ViewAuditLog: bigint; + readonly PrioritySpeaker: bigint; + readonly Stream: bigint; + readonly ViewChannel: bigint; + readonly SendMessages: bigint; + readonly SendTTSMessages: bigint; + readonly ManageMessages: bigint; + readonly EmbedLinks: bigint; + readonly AttachFiles: bigint; + readonly ReadMessageHistory: bigint; + readonly MentionEveryone: bigint; + readonly UseExternalEmojis: bigint; + readonly ViewGuildInsights: bigint; + readonly Connect: bigint; + readonly Speak: bigint; + readonly MuteMembers: bigint; + readonly DeafenMembers: bigint; + readonly MoveMembers: bigint; + readonly UseVAD: bigint; + readonly ChangeNickname: bigint; + readonly ManageNicknames: bigint; + readonly ManageRoles: bigint; + readonly ManageWebhooks: bigint; + readonly ManageEmojisAndStickers: bigint; + readonly ManageGuildExpressions: bigint; + readonly UseApplicationCommands: bigint; + readonly RequestToSpeak: bigint; + readonly ManageEvents: bigint; + readonly ManageThreads: bigint; + readonly CreatePublicThreads: bigint; + readonly CreatePrivateThreads: bigint; + readonly UseExternalStickers: bigint; + readonly SendMessagesInThreads: bigint; + readonly UseEmbeddedActivities: bigint; + readonly ModerateMembers: bigint; + readonly ViewCreatorMonetizationAnalytics: bigint; + readonly UseSoundboard: bigint; + readonly CreateGuildExpressions: bigint; + readonly CreateEvents: bigint; + readonly UseExternalSounds: bigint; + readonly SendVoiceMessages: bigint; + readonly SendPolls: bigint; + readonly UseExternalApps: bigint; + readonly PinMessages: bigint; + readonly BypassSlowmode: bigint; + }; +}], true>; +export default _default; +//# sourceMappingURL=roleHasPerms.d.ts.map \ No newline at end of file diff --git a/dist/native/role/roleHasPerms.d.ts.map b/dist/native/role/roleHasPerms.d.ts.map new file mode 100644 index 0000000000..fe5f9e20d4 --- /dev/null +++ b/dist/native/role/roleHasPerms.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"roleHasPerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleHasPerms.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsCE"} \ No newline at end of file diff --git a/dist/native/role/roleHasPerms.js b/dist/native/role/roleHasPerms.js new file mode 100644 index 0000000000..f31da5f418 --- /dev/null +++ b/dist/native/role/roleHasPerms.js @@ -0,0 +1,48 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const discord_js_1 = require("discord.js"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$roleHasPerms", + version: "2.6.0", + description: "Returns whether the role has all specified perms", + aliases: [ + "$hasRolePerms" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to pull the role from", + rest: false, + required: true, + type: structures_1.ArgType.Guild, + }, + { + name: "role ID", + description: "The role to get its perms", + rest: false, + required: true, + type: structures_1.ArgType.Role, + pointer: 0, + }, + { + name: "perms", + description: "The perms to check for", + rest: true, + required: true, + type: structures_1.ArgType.Enum, + enum: discord_js_1.PermissionFlagsBits, + }, + ], + output: structures_1.ArgType.Boolean, + execute(ctx, [, role, perms]) { + return this.success(role.permissions.has(perms)); + }, +}); +//# sourceMappingURL=roleHasPerms.js.map \ No newline at end of file diff --git a/dist/native/role/roleHasPerms.js.map b/dist/native/role/roleHasPerms.js.map new file mode 100644 index 0000000000..cf39eac4b3 --- /dev/null +++ b/dist/native/role/roleHasPerms.js.map @@ -0,0 +1 @@ +{"version":3,"file":"roleHasPerms.js","sourceRoot":"","sources":["../../../src/native/role/roleHasPerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgD;AAChD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,OAAO,EAAE;QACL,eAAe;KAClB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,gCAAmB;SAC5B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleHoisted.d.ts.map b/dist/native/role/roleHoisted.d.ts.map index 88995d2c94..fa6169e03f 100644 --- a/dist/native/role/roleHoisted.d.ts.map +++ b/dist/native/role/roleHoisted.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleHoisted.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleHoisted.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleHoisted.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleHoisted.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleHoisted.js b/dist/native/role/roleHoisted.js index 1c6e4811c0..a488011d21 100644 --- a/dist/native/role/roleHoisted.js +++ b/dist/native/role/roleHoisted.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleHoisted.js.map b/dist/native/role/roleHoisted.js.map index 085ac5ca60..1165e5bceb 100644 --- a/dist/native/role/roleHoisted.js.map +++ b/dist/native/role/roleHoisted.js.map @@ -1 +1 @@ -{"version":3,"file":"roleHoisted.js","sourceRoot":"","sources":["../../../src/native/role/roleHoisted.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleHoisted.js","sourceRoot":"","sources":["../../../src/native/role/roleHoisted.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleID.d.ts.map b/dist/native/role/roleID.d.ts.map index a68110e960..9958e101a0 100644 --- a/dist/native/role/roleID.d.ts.map +++ b/dist/native/role/roleID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleID.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"roleID.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/role/roleID.js b/dist/native/role/roleID.js index 1ce38cfc70..e6891fcec6 100644 --- a/dist/native/role/roleID.js +++ b/dist/native/role/roleID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleID.js.map b/dist/native/role/roleID.js.map index a8ed67903e..fa4f8d568d 100644 --- a/dist/native/role/roleID.js.map +++ b/dist/native/role/roleID.js.map @@ -1 +1 @@ -{"version":3,"file":"roleID.js","sourceRoot":"","sources":["../../../src/native/role/roleID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;SAC1E;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleID.js","sourceRoot":"","sources":["../../../src/native/role/roleID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QACtB,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;SAC1E;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleIDs.d.ts.map b/dist/native/role/roleIDs.d.ts.map deleted file mode 100644 index baf097042d..0000000000 --- a/dist/native/role/roleIDs.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"roleIDs.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/role/roleIDs.js b/dist/native/role/roleIDs.js deleted file mode 100644 index f76877a49d..0000000000 --- a/dist/native/role/roleIDs.js +++ /dev/null @@ -1,38 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const array_1 = __importDefault(require("../../functions/array")); -const structures_1 = require("../../structures"); -exports.default = new structures_1.NativeFunction({ - name: "$roleIDs", - version: "1.0.0", - description: "Returns the role ids of a guild", - brackets: false, - output: (0, array_1.default)(), - args: [ - { - name: "guild ID", - description: "The guild to return the roles of", - rest: false, - type: structures_1.ArgType.Guild, - required: true, - }, - { - name: "separator", - description: "The separator to use for each role", - rest: false, - required: true, - type: structures_1.ArgType.String, - }, - ], - unwrap: true, - execute(ctx, [guild, sep]) { - return this.success((guild ?? ctx.guild)?.roles.cache - .filter((x) => x.guild.id !== x.id) - .map((x) => x.id) - .join(sep || ", ")); - }, -}); -//# sourceMappingURL=roleIDs.js.map \ No newline at end of file diff --git a/dist/native/role/roleIDs.js.map b/dist/native/role/roleIDs.js.map deleted file mode 100644 index f62e7391fa..0000000000 --- a/dist/native/role/roleIDs.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"roleIDs.js","sourceRoot":"","sources":["../../../src/native/role/roleIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC;aAClC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;aAChB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleIcon.d.ts.map b/dist/native/role/roleIcon.d.ts.map index 273fd273f1..19ea7f0d37 100644 --- a/dist/native/role/roleIcon.d.ts.map +++ b/dist/native/role/roleIcon.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleIcon.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleIcon.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4CE"} \ No newline at end of file +{"version":3,"file":"roleIcon.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleIcon.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA4CE"} \ No newline at end of file diff --git a/dist/native/role/roleIcon.js b/dist/native/role/roleIcon.js index 77007379a9..876649c144 100644 --- a/dist/native/role/roleIcon.js +++ b/dist/native/role/roleIcon.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleIcon.js.map b/dist/native/role/roleIcon.js.map index 498087ef7b..186fc7698f 100644 --- a/dist/native/role/roleIcon.js.map +++ b/dist/native/role/roleIcon.js.map @@ -1 +1 @@ -{"version":3,"file":"roleIcon.js","sourceRoot":"","sources":["../../../src/native/role/roleIcon.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleIcon.js","sourceRoot":"","sources":["../../../src/native/role/roleIcon.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC5B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC;YACxB,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleIntColor.d.ts.map b/dist/native/role/roleIntColor.d.ts.map index e8cb2b68d7..68089ff88e 100644 --- a/dist/native/role/roleIntColor.d.ts.map +++ b/dist/native/role/roleIntColor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleIntColor.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleIntColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;;;;;;;;;;;;;;;;;;;;;AAEvC,wBAkCE"} \ No newline at end of file +{"version":3,"file":"roleIntColor.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleIntColor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;;;;;;;;;;;;;;;;;;;;;AAEvC,wBAkCE"} \ No newline at end of file diff --git a/dist/native/role/roleIntColor.js b/dist/native/role/roleIntColor.js index 00f739fa78..7fe1bfed71 100644 --- a/dist/native/role/roleIntColor.js +++ b/dist/native/role/roleIntColor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const roleColor_1 = require("./roleColor"); diff --git a/dist/native/role/roleIntColor.js.map b/dist/native/role/roleIntColor.js.map index c770fce414..00989e9640 100644 --- a/dist/native/role/roleIntColor.js.map +++ b/dist/native/role/roleIntColor.js.map @@ -1 +1 @@ -{"version":3,"file":"roleIntColor.js","sourceRoot":"","sources":["../../../src/native/role/roleIntColor.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,2CAAuC;AAEvC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,IAAI,qBAAS,CAAC,OAAO,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleIntColor.js","sourceRoot":"","sources":["../../../src/native/role/roleIntColor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,2CAAuC;AAEvC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAS;SAClB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,IAAI,qBAAS,CAAC,OAAO,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleManageable.d.ts.map b/dist/native/role/roleManageable.d.ts.map index 05c89f2417..4f875fc4b1 100644 --- a/dist/native/role/roleManageable.d.ts.map +++ b/dist/native/role/roleManageable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleManageable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleManageable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleManageable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleManageable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleManageable.js b/dist/native/role/roleManageable.js index a766ccd10a..0506da0f8d 100644 --- a/dist/native/role/roleManageable.js +++ b/dist/native/role/roleManageable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleManageable.js.map b/dist/native/role/roleManageable.js.map index 5921c6332e..0f69b15a8a 100644 --- a/dist/native/role/roleManageable.js.map +++ b/dist/native/role/roleManageable.js.map @@ -1 +1 @@ -{"version":3,"file":"roleManageable.js","sourceRoot":"","sources":["../../../src/native/role/roleManageable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleManageable.js","sourceRoot":"","sources":["../../../src/native/role/roleManageable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleMembers.d.ts.map b/dist/native/role/roleMembers.d.ts.map index 61dfc2871f..4b8fe27e1a 100644 --- a/dist/native/role/roleMembers.d.ts.map +++ b/dist/native/role/roleMembers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleMembers.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleMembers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"roleMembers.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleMembers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/role/roleMembers.js b/dist/native/role/roleMembers.js index c5c51374c4..d0d5544dfc 100644 --- a/dist/native/role/roleMembers.js +++ b/dist/native/role/roleMembers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/role/roleMembers.js.map b/dist/native/role/roleMembers.js.map index 7b8a370f46..7c158bd52a 100644 --- a/dist/native/role/roleMembers.js.map +++ b/dist/native/role/roleMembers.js.map @@ -1 +1 @@ -{"version":3,"file":"roleMembers.js","sourceRoot":"","sources":["../../../src/native/role/roleMembers.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleMembers.js","sourceRoot":"","sources":["../../../src/native/role/roleMembers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleMentionable.d.ts.map b/dist/native/role/roleMentionable.d.ts.map index 2810335274..75119e0488 100644 --- a/dist/native/role/roleMentionable.d.ts.map +++ b/dist/native/role/roleMentionable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleMentionable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleMentionable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleMentionable.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleMentionable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleMentionable.js b/dist/native/role/roleMentionable.js index 32345f9ed4..e7aac5f6da 100644 --- a/dist/native/role/roleMentionable.js +++ b/dist/native/role/roleMentionable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleMentionable.js.map b/dist/native/role/roleMentionable.js.map index cc77e0d063..86ef248a67 100644 --- a/dist/native/role/roleMentionable.js.map +++ b/dist/native/role/roleMentionable.js.map @@ -1 +1 @@ -{"version":3,"file":"roleMentionable.js","sourceRoot":"","sources":["../../../src/native/role/roleMentionable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleMentionable.js","sourceRoot":"","sources":["../../../src/native/role/roleMentionable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleName.d.ts.map b/dist/native/role/roleName.d.ts.map index deb7416937..0d86aec1c1 100644 --- a/dist/native/role/roleName.d.ts.map +++ b/dist/native/role/roleName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleName.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleName.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleName.js b/dist/native/role/roleName.js index eb94681c4e..00c396f376 100644 --- a/dist/native/role/roleName.js +++ b/dist/native/role/roleName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleName.js.map b/dist/native/role/roleName.js.map index aef5daa9b3..23fde103c5 100644 --- a/dist/native/role/roleName.js.map +++ b/dist/native/role/roleName.js.map @@ -1 +1 @@ -{"version":3,"file":"roleName.js","sourceRoot":"","sources":["../../../src/native/role/roleName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleName.js","sourceRoot":"","sources":["../../../src/native/role/roleName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleNames.d.ts.map b/dist/native/role/roleNames.d.ts.map index 93acfe527a..2a238fed78 100644 --- a/dist/native/role/roleNames.d.ts.map +++ b/dist/native/role/roleNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleNames.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"roleNames.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/role/roleNames.js b/dist/native/role/roleNames.js index 72aba6ede2..aeeed83d63 100644 --- a/dist/native/role/roleNames.js +++ b/dist/native/role/roleNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/role/roleNames.js.map b/dist/native/role/roleNames.js.map index 8d9be437f1..e0547b194c 100644 --- a/dist/native/role/roleNames.js.map +++ b/dist/native/role/roleNames.js.map @@ -1 +1 @@ -{"version":3,"file":"roleNames.js","sourceRoot":"","sources":["../../../src/native/role/roleNames.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC;aAClC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aAClB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleNames.js","sourceRoot":"","sources":["../../../src/native/role/roleNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK;aAC5B,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC;aAClC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;aAClB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CACzB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/rolePerms.d.ts.map b/dist/native/role/rolePerms.d.ts.map index 4a22128eae..11ef2e50bd 100644 --- a/dist/native/role/rolePerms.d.ts.map +++ b/dist/native/role/rolePerms.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"rolePerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/rolePerms.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAyCE"} \ No newline at end of file +{"version":3,"file":"rolePerms.d.ts","sourceRoot":"","sources":["../../../src/native/role/rolePerms.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAyCE"} \ No newline at end of file diff --git a/dist/native/role/rolePerms.js b/dist/native/role/rolePerms.js index 4d9a501299..1c3bb551cc 100644 --- a/dist/native/role/rolePerms.js +++ b/dist/native/role/rolePerms.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/role/rolePerms.js.map b/dist/native/role/rolePerms.js.map index 6a48dcc680..f96a63f011 100644 --- a/dist/native/role/rolePerms.js.map +++ b/dist/native/role/rolePerms.js.map @@ -1 +1 @@ -{"version":3,"file":"rolePerms.js","sourceRoot":"","sources":["../../../src/native/role/rolePerms.ts"],"names":[],"mappings":";;;;;AAAA,2CAAgD;AAChD,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;QAC3B,MAAM,KAAK,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"rolePerms.js","sourceRoot":"","sources":["../../../src/native/role/rolePerms.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAgD;AAChD,kEAAyC;AACzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,gCAAmB,CAAC;IAClC,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6CAA6C;YAC1D,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;QAC3B,MAAM,KAAK,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/rolePosition.d.ts.map b/dist/native/role/rolePosition.d.ts.map index 60b674b9e0..4dbb6d401b 100644 --- a/dist/native/role/rolePosition.d.ts.map +++ b/dist/native/role/rolePosition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"rolePosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/rolePosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"rolePosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/rolePosition.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/role/rolePosition.js b/dist/native/role/rolePosition.js index 80aff84d5e..321c267750 100644 --- a/dist/native/role/rolePosition.js +++ b/dist/native/role/rolePosition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/rolePosition.js.map b/dist/native/role/rolePosition.js.map index 135123ccfe..b6b6e30c3b 100644 --- a/dist/native/role/rolePosition.js.map +++ b/dist/native/role/rolePosition.js.map @@ -1 +1 @@ -{"version":3,"file":"rolePosition.js","sourceRoot":"","sources":["../../../src/native/role/rolePosition.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"rolePosition.js","sourceRoot":"","sources":["../../../src/native/role/rolePosition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleRawData.d.ts.map b/dist/native/role/roleRawData.d.ts.map index a3b550fe08..e4d5e49178 100644 --- a/dist/native/role/roleRawData.d.ts.map +++ b/dist/native/role/roleRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleRawData.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleRawData.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleRawData.js b/dist/native/role/roleRawData.js index 6a92a4dbd5..9b2466337f 100644 --- a/dist/native/role/roleRawData.js +++ b/dist/native/role/roleRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleRawData.js.map b/dist/native/role/roleRawData.js.map index 2b247f7584..0e374ac6e2 100644 --- a/dist/native/role/roleRawData.js.map +++ b/dist/native/role/roleRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"roleRawData.js","sourceRoot":"","sources":["../../../src/native/role/roleRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleRawData.js","sourceRoot":"","sources":["../../../src/native/role/roleRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleRawPosition.d.ts.map b/dist/native/role/roleRawPosition.d.ts.map index 2b0efe8a8a..c9d4f882ab 100644 --- a/dist/native/role/roleRawPosition.d.ts.map +++ b/dist/native/role/roleRawPosition.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleRawPosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleRawPosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleRawPosition.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleRawPosition.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleRawPosition.js b/dist/native/role/roleRawPosition.js index 9ff154ffae..9f39211720 100644 --- a/dist/native/role/roleRawPosition.js +++ b/dist/native/role/roleRawPosition.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleRawPosition.js.map b/dist/native/role/roleRawPosition.js.map index 6494a6f43e..b73156e3f2 100644 --- a/dist/native/role/roleRawPosition.js.map +++ b/dist/native/role/roleRawPosition.js.map @@ -1 +1 @@ -{"version":3,"file":"roleRawPosition.js","sourceRoot":"","sources":["../../../src/native/role/roleRawPosition.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleRawPosition.js","sourceRoot":"","sources":["../../../src/native/role/roleRawPosition.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleTags.d.ts.map b/dist/native/role/roleTags.d.ts.map index 03dbe28e26..18565fe034 100644 --- a/dist/native/role/roleTags.d.ts.map +++ b/dist/native/role/roleTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleTags.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleTags.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAmCE"} \ No newline at end of file +{"version":3,"file":"roleTags.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleTags.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE1D,wBAmCE"} \ No newline at end of file diff --git a/dist/native/role/roleTags.js b/dist/native/role/roleTags.js index 9b57d0f960..98f6e3e49d 100644 --- a/dist/native/role/roleTags.js +++ b/dist/native/role/roleTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/role/roleTags.js.map b/dist/native/role/roleTags.js.map index 3ada8e1e1f..d3e1b52cc4 100644 --- a/dist/native/role/roleTags.js.map +++ b/dist/native/role/roleTags.js.map @@ -1 +1 @@ -{"version":3,"file":"roleTags.js","sourceRoot":"","sources":["../../../src/native/role/roleTags.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAE;QACpB,CAAC,KAAK,GAAG,CAAC,IAAK,CAAA;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleTags.js","sourceRoot":"","sources":["../../../src/native/role/roleTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,KAAK;SACd;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAE;QACpB,CAAC,KAAK,GAAG,CAAC,IAAK,CAAA;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/role/roleUnicodeEmoji.d.ts.map b/dist/native/role/roleUnicodeEmoji.d.ts.map index 1aec4f741c..5900135195 100644 --- a/dist/native/role/roleUnicodeEmoji.d.ts.map +++ b/dist/native/role/roleUnicodeEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"roleUnicodeEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleUnicodeEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"roleUnicodeEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/role/roleUnicodeEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/role/roleUnicodeEmoji.js b/dist/native/role/roleUnicodeEmoji.js index c45c2c8ae4..6637dc66a6 100644 --- a/dist/native/role/roleUnicodeEmoji.js +++ b/dist/native/role/roleUnicodeEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/role/roleUnicodeEmoji.js.map b/dist/native/role/roleUnicodeEmoji.js.map index 41d008c710..cc96feac1a 100644 --- a/dist/native/role/roleUnicodeEmoji.js.map +++ b/dist/native/role/roleUnicodeEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"roleUnicodeEmoji.js","sourceRoot":"","sources":["../../../src/native/role/roleUnicodeEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"roleUnicodeEmoji.js","sourceRoot":"","sources":["../../../src/native/role/roleUnicodeEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/createSoundboardSound.d.ts.map b/dist/native/soundboard/createSoundboardSound.d.ts.map index 4045730381..726b451004 100644 --- a/dist/native/soundboard/createSoundboardSound.d.ts.map +++ b/dist/native/soundboard/createSoundboardSound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"createSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/createSoundboardSound.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIlE,wBAqEE"} \ No newline at end of file +{"version":3,"file":"createSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/createSoundboardSound.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIlE,wBAqEE"} \ No newline at end of file diff --git a/dist/native/soundboard/createSoundboardSound.js b/dist/native/soundboard/createSoundboardSound.js index c659713236..6e0b05d157 100644 --- a/dist/native/soundboard/createSoundboardSound.js +++ b/dist/native/soundboard/createSoundboardSound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const node_fs_1 = require("node:fs"); diff --git a/dist/native/soundboard/createSoundboardSound.js.map b/dist/native/soundboard/createSoundboardSound.js.map index b9fe570b07..9c00b6c30f 100644 --- a/dist/native/soundboard/createSoundboardSound.js.map +++ b/dist/native/soundboard/createSoundboardSound.js.map @@ -1 +1 @@ -{"version":3,"file":"createSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/createSoundboardSound.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,qCAAsC;AACtC,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,eAAe;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACzD,MAAM,MAAM,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAE3C,IAAI,SAAS,CAAA;QACb,IAAI;YACA,SAAS,GAAG,IAAA,sBAAY,EAAC,IAAI,CAAC,CAAA;SACjC;QAAC,MAAM;YACJ,SAAS,GAAG,IAAI,CAAA;SACnB;QAED,MAAM,KAAK,GAAG,MAAM,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAC9C,IAAI;YACJ,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM,EAAE,EAAE,IAAI,SAAS;YAChC,SAAS,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,EAAE,IAAI,IAAI,SAAS;YAC7D,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"createSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/createSoundboardSound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,qCAAsC;AACtC,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,eAAe;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACzD,MAAM,MAAM,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAE3C,IAAI,SAAS,CAAA;QACb,IAAI;YACA,SAAS,GAAG,IAAA,sBAAY,EAAC,IAAI,CAAC,CAAA;SACjC;QAAC,MAAM;YACJ,SAAS,GAAG,IAAI,CAAA;SACnB;QAED,MAAM,KAAK,GAAG,MAAM,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAC9C,IAAI;YACJ,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM,EAAE,EAAE,IAAI,SAAS;YAChC,SAAS,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,EAAE,IAAI,IAAI,SAAS;YAC7D,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAElB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/deleteSoundboardSounds.d.ts.map b/dist/native/soundboard/deleteSoundboardSounds.d.ts.map index cc37f83f01..9b2fd474f0 100644 --- a/dist/native/soundboard/deleteSoundboardSounds.d.ts.map +++ b/dist/native/soundboard/deleteSoundboardSounds.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteSoundboardSounds.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/deleteSoundboardSounds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file +{"version":3,"file":"deleteSoundboardSounds.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/deleteSoundboardSounds.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAmCE"} \ No newline at end of file diff --git a/dist/native/soundboard/deleteSoundboardSounds.js b/dist/native/soundboard/deleteSoundboardSounds.js index 99a10a5d78..35f2e88020 100644 --- a/dist/native/soundboard/deleteSoundboardSounds.js +++ b/dist/native/soundboard/deleteSoundboardSounds.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/deleteSoundboardSounds.js.map b/dist/native/soundboard/deleteSoundboardSounds.js.map index 084dca3f0c..a0bb415b0b 100644 --- a/dist/native/soundboard/deleteSoundboardSounds.js.map +++ b/dist/native/soundboard/deleteSoundboardSounds.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteSoundboardSounds.js","sourceRoot":"","sources":["../../../src/native/soundboard/deleteSoundboardSounds.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,OAAO,EAAE,CAAC,wBAAwB,CAAC;IACnC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,eAAe;SAChC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9E,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteSoundboardSounds.js","sourceRoot":"","sources":["../../../src/native/soundboard/deleteSoundboardSounds.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,yBAAyB;IAC/B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,OAAO,EAAE,CAAC,wBAAwB,CAAC;IACnC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,eAAe;SAChC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,CAAC;QACzB,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;YACvB,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC9E,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/editSoundboardSound.d.ts.map b/dist/native/soundboard/editSoundboardSound.d.ts.map index 601e7fb946..e13281a377 100644 --- a/dist/native/soundboard/editSoundboardSound.d.ts.map +++ b/dist/native/soundboard/editSoundboardSound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/editSoundboardSound.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA4DE"} \ No newline at end of file +{"version":3,"file":"editSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/editSoundboardSound.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlE,wBA4DE"} \ No newline at end of file diff --git a/dist/native/soundboard/editSoundboardSound.js b/dist/native/soundboard/editSoundboardSound.js index 5cf517fa7a..dd91fed653 100644 --- a/dist/native/soundboard/editSoundboardSound.js +++ b/dist/native/soundboard/editSoundboardSound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const parseSingleEmoji_1 = require("../../functions/parseSingleEmoji"); diff --git a/dist/native/soundboard/editSoundboardSound.js.map b/dist/native/soundboard/editSoundboardSound.js.map index 0e6bd3e629..60de465a3f 100644 --- a/dist/native/soundboard/editSoundboardSound.js.map +++ b/dist/native/soundboard/editSoundboardSound.js.map @@ -1 +1 @@ -{"version":3,"file":"editSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/editSoundboardSound.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,eAAe;SAChC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACrD,MAAM,MAAM,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAC3C,MAAM,KAAK,GAAG,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAA;QAE7C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC;YACpC,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,OAAO,EAAE,MAAM,EAAE,EAAE,IAAI,KAAK;YAC5B,SAAS,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,IAAI,IAAI,KAAK;YACpD,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/editSoundboardSound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,uEAAmE;AAEnE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,eAAe;SAChC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;QACrD,MAAM,MAAM,GAAG,IAAA,mCAAgB,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAC3C,MAAM,KAAK,GAAG,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAA;QAE7C,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC;YACpC,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,OAAO,EAAE,MAAM,EAAE,EAAE,IAAI,KAAK;YAC5B,SAAS,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,IAAI,IAAI,KAAK;YACpD,MAAM,EAAE,OAAM,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;YACxD,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM;SAC/B,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACxB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/getSoundboardSound.d.ts.map b/dist/native/soundboard/getSoundboardSound.d.ts.map index bfe5a850b3..a160fc854e 100644 --- a/dist/native/soundboard/getSoundboardSound.d.ts.map +++ b/dist/native/soundboard/getSoundboardSound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/getSoundboardSound.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3F,wBAsCE"} \ No newline at end of file +{"version":3,"file":"getSoundboardSound.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/getSoundboardSound.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;;;;;;;;;;;;;;;;;;;;;AAE3F,wBAsCE"} \ No newline at end of file diff --git a/dist/native/soundboard/getSoundboardSound.js b/dist/native/soundboard/getSoundboardSound.js index b61f5701a6..b748592335 100644 --- a/dist/native/soundboard/getSoundboardSound.js +++ b/dist/native/soundboard/getSoundboardSound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const sound_1 = require("../../properties/sound"); diff --git a/dist/native/soundboard/getSoundboardSound.js.map b/dist/native/soundboard/getSoundboardSound.js.map index 1e06acbebd..24a380d65a 100644 --- a/dist/native/soundboard/getSoundboardSound.js.map +++ b/dist/native/soundboard/getSoundboardSound.js.map @@ -1 +1 @@ -{"version":3,"file":"getSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/getSoundboardSound.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,kDAA2F;AAE3F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;SAChC;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC;QACxB,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getSoundboardSound.js","sourceRoot":"","sources":["../../../src/native/soundboard/getSoundboardSound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,kDAA2F;AAE3F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;SAChC;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC;QACxB,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAA;QACrE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundAvailable.d.ts.map b/dist/native/soundboard/soundAvailable.d.ts.map index d8743d65ca..d83d9e5680 100644 --- a/dist/native/soundboard/soundAvailable.d.ts.map +++ b/dist/native/soundboard/soundAvailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundAvailable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundAvailable.js b/dist/native/soundboard/soundAvailable.js index 41b9bc0c2b..f362ca14bb 100644 --- a/dist/native/soundboard/soundAvailable.js +++ b/dist/native/soundboard/soundAvailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundAvailable.js.map b/dist/native/soundboard/soundAvailable.js.map index 5dcd9c3f52..ade69d6e3f 100644 --- a/dist/native/soundboard/soundAvailable.js.map +++ b/dist/native/soundboard/soundAvailable.js.map @@ -1 +1 @@ -{"version":3,"file":"soundAvailable.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundAvailable.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,SAAS,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundAvailable.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundAvailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,SAAS,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundCreatedAt.d.ts.map b/dist/native/soundboard/soundCreatedAt.d.ts.map index 32d0d6c15a..b83b988149 100644 --- a/dist/native/soundboard/soundCreatedAt.d.ts.map +++ b/dist/native/soundboard/soundCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundCreatedAt.js b/dist/native/soundboard/soundCreatedAt.js index 300d5c9798..cc8fabd4d4 100644 --- a/dist/native/soundboard/soundCreatedAt.js +++ b/dist/native/soundboard/soundCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundCreatedAt.js.map b/dist/native/soundboard/soundCreatedAt.js.map index f86d237605..2bd1f1984a 100644 --- a/dist/native/soundboard/soundCreatedAt.js.map +++ b/dist/native/soundboard/soundCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"soundCreatedAt.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundCreatedAt.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,gBAAgB,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundEmoji.d.ts.map b/dist/native/soundboard/soundEmoji.d.ts.map index 163d57823e..1b590584fa 100644 --- a/dist/native/soundboard/soundEmoji.d.ts.map +++ b/dist/native/soundboard/soundEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundEmoji.js b/dist/native/soundboard/soundEmoji.js index 17e516609c..213987a8ed 100644 --- a/dist/native/soundboard/soundEmoji.js +++ b/dist/native/soundboard/soundEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundEmoji.js.map b/dist/native/soundboard/soundEmoji.js.map index a2097af8b7..c75d1b8399 100644 --- a/dist/native/soundboard/soundEmoji.js.map +++ b/dist/native/soundboard/soundEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"soundEmoji.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundEmoji.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundEmoji.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundGuildID.d.ts.map b/dist/native/soundboard/soundGuildID.d.ts.map index c9f4391036..a79e664dda 100644 --- a/dist/native/soundboard/soundGuildID.d.ts.map +++ b/dist/native/soundboard/soundGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"soundGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundGuildID.js b/dist/native/soundboard/soundGuildID.js index 44f500fa6e..67b71806d9 100644 --- a/dist/native/soundboard/soundGuildID.js +++ b/dist/native/soundboard/soundGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundGuildID.js.map b/dist/native/soundboard/soundGuildID.js.map index 98ce3e90e2..75d05b67e6 100644 --- a/dist/native/soundboard/soundGuildID.js.map +++ b/dist/native/soundboard/soundGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"soundGuildID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundGuildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundGuildID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundID.d.ts.map b/dist/native/soundboard/soundID.d.ts.map index 890624da3f..1c9e79f1d1 100644 --- a/dist/native/soundboard/soundID.d.ts.map +++ b/dist/native/soundboard/soundID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file +{"version":3,"file":"soundID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA+BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundID.js b/dist/native/soundboard/soundID.js index c302a1765a..88a4dced27 100644 --- a/dist/native/soundboard/soundID.js +++ b/dist/native/soundboard/soundID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundID.js.map b/dist/native/soundboard/soundID.js.map index d822b7b917..2a8d96167d 100644 --- a/dist/native/soundboard/soundID.js.map +++ b/dist/native/soundboard/soundID.js.map @@ -1 +1 @@ -{"version":3,"file":"soundID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,eAAe;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YAC3B,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,gBAAgB,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACnE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;SACrE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,eAAe;IAC/B,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC;QAC5B,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YAC3B,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,gBAAgB,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACnE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;SACrE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundName.d.ts.map b/dist/native/soundboard/soundName.d.ts.map index 911279d65a..f2bb9abc3b 100644 --- a/dist/native/soundboard/soundName.d.ts.map +++ b/dist/native/soundboard/soundName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundName.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundName.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundName.js b/dist/native/soundboard/soundName.js index fad332f747..55d7ff9caa 100644 --- a/dist/native/soundboard/soundName.js +++ b/dist/native/soundboard/soundName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundName.js.map b/dist/native/soundboard/soundName.js.map index 6a04923c30..8541cf63ed 100644 --- a/dist/native/soundboard/soundName.js.map +++ b/dist/native/soundboard/soundName.js.map @@ -1 +1 @@ -{"version":3,"file":"soundName.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundName.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundURL.d.ts.map b/dist/native/soundboard/soundURL.d.ts.map index c1b51d3ecd..feb57c5cc7 100644 --- a/dist/native/soundboard/soundURL.d.ts.map +++ b/dist/native/soundboard/soundURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundURL.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundURL.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundURL.js b/dist/native/soundboard/soundURL.js index a9cd45ee66..1e2cb3d17a 100644 --- a/dist/native/soundboard/soundURL.js +++ b/dist/native/soundboard/soundURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundURL.js.map b/dist/native/soundboard/soundURL.js.map index e01ed529cc..7632a7ba0c 100644 --- a/dist/native/soundboard/soundURL.js.map +++ b/dist/native/soundboard/soundURL.js.map @@ -1 +1 @@ -{"version":3,"file":"soundURL.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundURL.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundURL.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundUserID.d.ts.map b/dist/native/soundboard/soundUserID.d.ts.map index 709c52079f..48c000fa9a 100644 --- a/dist/native/soundboard/soundUserID.d.ts.map +++ b/dist/native/soundboard/soundUserID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundUserID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundUserID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundUserID.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundUserID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundUserID.js b/dist/native/soundboard/soundUserID.js index 3a3c71206c..5d97eee175 100644 --- a/dist/native/soundboard/soundUserID.js +++ b/dist/native/soundboard/soundUserID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundUserID.js.map b/dist/native/soundboard/soundUserID.js.map index d62b0e9eb8..a3e80bab59 100644 --- a/dist/native/soundboard/soundUserID.js.map +++ b/dist/native/soundboard/soundUserID.js.map @@ -1 +1 @@ -{"version":3,"file":"soundUserID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundUserID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundUserID.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundUserID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/soundboard/soundVolume.d.ts.map b/dist/native/soundboard/soundVolume.d.ts.map index 9e6cef5e35..61c83566f4 100644 --- a/dist/native/soundboard/soundVolume.d.ts.map +++ b/dist/native/soundboard/soundVolume.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"soundVolume.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundVolume.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file +{"version":3,"file":"soundVolume.d.ts","sourceRoot":"","sources":["../../../src/native/soundboard/soundVolume.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBA4BE"} \ No newline at end of file diff --git a/dist/native/soundboard/soundVolume.js b/dist/native/soundboard/soundVolume.js index 7b048fb7ea..6fb7792f10 100644 --- a/dist/native/soundboard/soundVolume.js +++ b/dist/native/soundboard/soundVolume.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/soundboard/soundVolume.js.map b/dist/native/soundboard/soundVolume.js.map index f992c518ae..1107ecbd15 100644 --- a/dist/native/soundboard/soundVolume.js.map +++ b/dist/native/soundboard/soundVolume.js.map @@ -1 +1 @@ -{"version":3,"file":"soundVolume.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundVolume.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"soundVolume.js","sourceRoot":"","sources":["../../../src/native/soundboard/soundVolume.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC;QAClB,KAAK,KAAK,GAAG,CAAC,KAAM,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/auditLog.d.ts.map b/dist/native/state/auditLog.d.ts.map index 65a2bac64e..05aaca8c8b 100644 --- a/dist/native/state/auditLog.d.ts.map +++ b/dist/native/state/auditLog.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"auditLog.d.ts","sourceRoot":"","sources":["../../../src/native/state/auditLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"auditLog.d.ts","sourceRoot":"","sources":["../../../src/native/state/auditLog.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/auditLog.js b/dist/native/state/auditLog.js index b846cc0cff..ecf1482dfb 100644 --- a/dist/native/state/auditLog.js +++ b/dist/native/state/auditLog.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const audit_1 = require("../../properties/audit"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/auditLog.js.map b/dist/native/state/auditLog.js.map index fa92e8b2ab..becd3a9555 100644 --- a/dist/native/state/auditLog.js.map +++ b/dist/native/state/auditLog.js.map @@ -1 +1 @@ -{"version":3,"file":"auditLog.js","sourceRoot":"","sources":["../../../src/native/state/auditLog.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"auditLog.js","sourceRoot":"","sources":["../../../src/native/state/auditLog.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0EAA0E;IACvF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/bulk.d.ts.map b/dist/native/state/bulk.d.ts.map index f381661cd1..d9b88afaa4 100644 --- a/dist/native/state/bulk.d.ts.map +++ b/dist/native/state/bulk.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bulk.d.ts","sourceRoot":"","sources":["../../../src/native/state/bulk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"bulk.d.ts","sourceRoot":"","sources":["../../../src/native/state/bulk.ts"],"names":[],"mappings":"AAKA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/bulk.js b/dist/native/state/bulk.js index 150e74862f..eab7496d23 100644 --- a/dist/native/state/bulk.js +++ b/dist/native/state/bulk.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const bulk_1 = require("../../properties/bulk"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/bulk.js.map b/dist/native/state/bulk.js.map index a6d8424042..0ebe51f135 100644 --- a/dist/native/state/bulk.js.map +++ b/dist/native/state/bulk.js.map @@ -1 +1 @@ -{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../../src/native/state/bulk.ts"],"names":[],"mappings":";;AAAA,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../../src/native/state/bulk.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/effect.d.ts.map b/dist/native/state/effect.d.ts.map index 9793b3d660..aca8f3b8f8 100644 --- a/dist/native/state/effect.d.ts.map +++ b/dist/native/state/effect.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"effect.d.ts","sourceRoot":"","sources":["../../../src/native/state/effect.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"effect.d.ts","sourceRoot":"","sources":["../../../src/native/state/effect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/state/effect.js b/dist/native/state/effect.js index 0cdcf35776..59ab14d5c7 100644 --- a/dist/native/state/effect.js +++ b/dist/native/state/effect.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const voiceEffect_1 = require("../../properties/voiceEffect"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/effect.js.map b/dist/native/state/effect.js.map index a3d16d7cae..cf0da7ff92 100644 --- a/dist/native/state/effect.js.map +++ b/dist/native/state/effect.js.map @@ -1 +1 @@ -{"version":3,"file":"effect.js","sourceRoot":"","sources":["../../../src/native/state/effect.ts"],"names":[],"mappings":";;AAAA,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"effect.js","sourceRoot":"","sources":["../../../src/native/state/effect.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,CAAC,CAAC,CAAA;IAClF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newAutomodRule.d.ts.map b/dist/native/state/newAutomodRule.d.ts.map index e4d0b6deb4..a2e30b584d 100644 --- a/dist/native/state/newAutomodRule.d.ts.map +++ b/dist/native/state/newAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/state/newAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/state/newAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newAutomodRule.js b/dist/native/state/newAutomodRule.js index f9b618b6df..af3a6719a5 100644 --- a/dist/native/state/newAutomodRule.js +++ b/dist/native/state/newAutomodRule.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const automodRule_1 = require("../../properties/automodRule"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newAutomodRule.js.map b/dist/native/state/newAutomodRule.js.map index 3531ab6922..be81e89f0d 100644 --- a/dist/native/state/newAutomodRule.js.map +++ b/dist/native/state/newAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"newAutomodRule.js","sourceRoot":"","sources":["../../../src/native/state/newAutomodRule.ts"],"names":[],"mappings":";;AAAA,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newAutomodRule.js","sourceRoot":"","sources":["../../../src/native/state/newAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newChannel.d.ts.map b/dist/native/state/newChannel.d.ts.map index d93a257fb5..bfc43da955 100644 --- a/dist/native/state/newChannel.d.ts.map +++ b/dist/native/state/newChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newChannel.d.ts","sourceRoot":"","sources":["../../../src/native/state/newChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newChannel.d.ts","sourceRoot":"","sources":["../../../src/native/state/newChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newChannel.js b/dist/native/state/newChannel.js index 885d8399e2..13455d64c2 100644 --- a/dist/native/state/newChannel.js +++ b/dist/native/state/newChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const channel_1 = require("../../properties/channel"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newChannel.js.map b/dist/native/state/newChannel.js.map index 6b10682d37..68ede1c984 100644 --- a/dist/native/state/newChannel.js.map +++ b/dist/native/state/newChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"newChannel.js","sourceRoot":"","sources":["../../../src/native/state/newChannel.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newChannel.js","sourceRoot":"","sources":["../../../src/native/state/newChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newEmoji.d.ts.map b/dist/native/state/newEmoji.d.ts.map index 92eed1d555..69bd44274e 100644 --- a/dist/native/state/newEmoji.d.ts.map +++ b/dist/native/state/newEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/state/newEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/state/newEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newEmoji.js b/dist/native/state/newEmoji.js index 75cb971883..31c44347a9 100644 --- a/dist/native/state/newEmoji.js +++ b/dist/native/state/newEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const emoji_1 = require("../../properties/emoji"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newEmoji.js.map b/dist/native/state/newEmoji.js.map index c9210d7520..0038d9b9ff 100644 --- a/dist/native/state/newEmoji.js.map +++ b/dist/native/state/newEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"newEmoji.js","sourceRoot":"","sources":["../../../src/native/state/newEmoji.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newEmoji.js","sourceRoot":"","sources":["../../../src/native/state/newEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newEntitlement.d.ts.map b/dist/native/state/newEntitlement.d.ts.map index 430d9e72d1..0de762fb4d 100644 --- a/dist/native/state/newEntitlement.d.ts.map +++ b/dist/native/state/newEntitlement.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/state/newEntitlement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/state/newEntitlement.ts"],"names":[],"mappings":"AAKA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newEntitlement.js b/dist/native/state/newEntitlement.js index 976c396b23..f9df147753 100644 --- a/dist/native/state/newEntitlement.js +++ b/dist/native/state/newEntitlement.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const entitlement_1 = require("../../properties/entitlement"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newEntitlement.js.map b/dist/native/state/newEntitlement.js.map index 1d3daea5c0..95af6c185f 100644 --- a/dist/native/state/newEntitlement.js.map +++ b/dist/native/state/newEntitlement.js.map @@ -1 +1 @@ -{"version":3,"file":"newEntitlement.js","sourceRoot":"","sources":["../../../src/native/state/newEntitlement.ts"],"names":[],"mappings":";;AAAA,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newEntitlement.js","sourceRoot":"","sources":["../../../src/native/state/newEntitlement.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newGuild.d.ts.map b/dist/native/state/newGuild.d.ts.map index a5f7d6013c..e9c53de3da 100644 --- a/dist/native/state/newGuild.d.ts.map +++ b/dist/native/state/newGuild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newGuild.d.ts","sourceRoot":"","sources":["../../../src/native/state/newGuild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newGuild.d.ts","sourceRoot":"","sources":["../../../src/native/state/newGuild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newGuild.js b/dist/native/state/newGuild.js index 5406ba06f2..d7441bc284 100644 --- a/dist/native/state/newGuild.js +++ b/dist/native/state/newGuild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const guild_1 = require("../../properties/guild"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newGuild.js.map b/dist/native/state/newGuild.js.map index 201c067bd1..a39e27e7ac 100644 --- a/dist/native/state/newGuild.js.map +++ b/dist/native/state/newGuild.js.map @@ -1 +1 @@ -{"version":3,"file":"newGuild.js","sourceRoot":"","sources":["../../../src/native/state/newGuild.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newGuild.js","sourceRoot":"","sources":["../../../src/native/state/newGuild.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newInvite.d.ts.map b/dist/native/state/newInvite.d.ts.map index cbe4b9b0fc..9cf58b1e55 100644 --- a/dist/native/state/newInvite.d.ts.map +++ b/dist/native/state/newInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newInvite.d.ts","sourceRoot":"","sources":["../../../src/native/state/newInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newInvite.d.ts","sourceRoot":"","sources":["../../../src/native/state/newInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newInvite.js b/dist/native/state/newInvite.js index fe3ce4569f..224ea920b0 100644 --- a/dist/native/state/newInvite.js +++ b/dist/native/state/newInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const invite_1 = require("../../properties/invite"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newInvite.js.map b/dist/native/state/newInvite.js.map index b1cd915cea..76ef6e50dc 100644 --- a/dist/native/state/newInvite.js.map +++ b/dist/native/state/newInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"newInvite.js","sourceRoot":"","sources":["../../../src/native/state/newInvite.ts"],"names":[],"mappings":";;AAAA,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newInvite.js","sourceRoot":"","sources":["../../../src/native/state/newInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newMember.d.ts.map b/dist/native/state/newMember.d.ts.map index e3a003d1be..309c9a49c0 100644 --- a/dist/native/state/newMember.d.ts.map +++ b/dist/native/state/newMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newMember.d.ts","sourceRoot":"","sources":["../../../src/native/state/newMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newMember.d.ts","sourceRoot":"","sources":["../../../src/native/state/newMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newMember.js b/dist/native/state/newMember.js index 73842005cd..1cda865006 100644 --- a/dist/native/state/newMember.js +++ b/dist/native/state/newMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const member_1 = require("../../properties/member"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newMember.js.map b/dist/native/state/newMember.js.map index 719c9f5bd6..b795582f26 100644 --- a/dist/native/state/newMember.js.map +++ b/dist/native/state/newMember.js.map @@ -1 +1 @@ -{"version":3,"file":"newMember.js","sourceRoot":"","sources":["../../../src/native/state/newMember.ts"],"names":[],"mappings":";;AAAA,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newMember.js","sourceRoot":"","sources":["../../../src/native/state/newMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newMessage.d.ts.map b/dist/native/state/newMessage.d.ts.map index 0c4868543d..fbb23a9944 100644 --- a/dist/native/state/newMessage.d.ts.map +++ b/dist/native/state/newMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newMessage.d.ts","sourceRoot":"","sources":["../../../src/native/state/newMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newMessage.d.ts","sourceRoot":"","sources":["../../../src/native/state/newMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newMessage.js b/dist/native/state/newMessage.js index 070e704540..e41978448c 100644 --- a/dist/native/state/newMessage.js +++ b/dist/native/state/newMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const message_1 = require("../../properties/message"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newMessage.js.map b/dist/native/state/newMessage.js.map index 2fdcff920d..c5d7d70568 100644 --- a/dist/native/state/newMessage.js.map +++ b/dist/native/state/newMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"newMessage.js","sourceRoot":"","sources":["../../../src/native/state/newMessage.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newMessage.js","sourceRoot":"","sources":["../../../src/native/state/newMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newPresence.d.ts.map b/dist/native/state/newPresence.d.ts.map index 76e1bcdf57..587237e94d 100644 --- a/dist/native/state/newPresence.d.ts.map +++ b/dist/native/state/newPresence.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newPresence.d.ts","sourceRoot":"","sources":["../../../src/native/state/newPresence.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newPresence.d.ts","sourceRoot":"","sources":["../../../src/native/state/newPresence.ts"],"names":[],"mappings":"AAKA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newPresence.js b/dist/native/state/newPresence.js index 38e877d237..dcd6fb44af 100644 --- a/dist/native/state/newPresence.js +++ b/dist/native/state/newPresence.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const presence_1 = require("../../properties/presence"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newPresence.js.map b/dist/native/state/newPresence.js.map index 07ede492f1..cdf2af20d5 100644 --- a/dist/native/state/newPresence.js.map +++ b/dist/native/state/newPresence.js.map @@ -1 +1 @@ -{"version":3,"file":"newPresence.js","sourceRoot":"","sources":["../../../src/native/state/newPresence.ts"],"names":[],"mappings":";;AAAA,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wEAAwE;IACrF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;YACtB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newPresence.js","sourceRoot":"","sources":["../../../src/native/state/newPresence.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wEAAwE;IACrF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;YACtB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newRole.d.ts.map b/dist/native/state/newRole.d.ts.map index 2b68f82963..0179ccdd7f 100644 --- a/dist/native/state/newRole.d.ts.map +++ b/dist/native/state/newRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newRole.d.ts","sourceRoot":"","sources":["../../../src/native/state/newRole.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newRole.d.ts","sourceRoot":"","sources":["../../../src/native/state/newRole.ts"],"names":[],"mappings":"AAKA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newRole.js b/dist/native/state/newRole.js index ddae089c00..b1559d7db0 100644 --- a/dist/native/state/newRole.js +++ b/dist/native/state/newRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const role_1 = require("../../properties/role"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newRole.js.map b/dist/native/state/newRole.js.map index 47cdfc0173..59141d023f 100644 --- a/dist/native/state/newRole.js.map +++ b/dist/native/state/newRole.js.map @@ -1 +1 @@ -{"version":3,"file":"newRole.js","sourceRoot":"","sources":["../../../src/native/state/newRole.ts"],"names":[],"mappings":";;AAAA,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newRole.js","sourceRoot":"","sources":["../../../src/native/state/newRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newScheduledEvent.d.ts.map b/dist/native/state/newScheduledEvent.d.ts.map index de54e79711..2438b2b35d 100644 --- a/dist/native/state/newScheduledEvent.d.ts.map +++ b/dist/native/state/newScheduledEvent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/state/newScheduledEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AAClG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/state/newScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AAClG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newScheduledEvent.js b/dist/native/state/newScheduledEvent.js index 9492ba9a23..859d9e210c 100644 --- a/dist/native/state/newScheduledEvent.js +++ b/dist/native/state/newScheduledEvent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const scheduledEvent_1 = require("../../properties/scheduledEvent"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newScheduledEvent.js.map b/dist/native/state/newScheduledEvent.js.map index e179963488..9347a6a929 100644 --- a/dist/native/state/newScheduledEvent.js.map +++ b/dist/native/state/newScheduledEvent.js.map @@ -1 +1 @@ -{"version":3,"file":"newScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/state/newScheduledEvent.ts"],"names":[],"mappings":";;AAAA,oEAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;YAC5B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,cAAc,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/state/newScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oEAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;YAC5B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,cAAc,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newSound.d.ts.map b/dist/native/state/newSound.d.ts.map index 288e35f42b..52077b8142 100644 --- a/dist/native/state/newSound.d.ts.map +++ b/dist/native/state/newSound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newSound.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSound.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newSound.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSound.ts"],"names":[],"mappings":"AAKA,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newSound.js b/dist/native/state/newSound.js index d6d3881b0f..d9dddf8ea6 100644 --- a/dist/native/state/newSound.js +++ b/dist/native/state/newSound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const sound_1 = require("../../properties/sound"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newSound.js.map b/dist/native/state/newSound.js.map index 3b3188eb18..32de3c8e98 100644 --- a/dist/native/state/newSound.js.map +++ b/dist/native/state/newSound.js.map @@ -1 +1 @@ -{"version":3,"file":"newSound.js","sourceRoot":"","sources":["../../../src/native/state/newSound.ts"],"names":[],"mappings":";;AAAA,kDAA2F;AAC3F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;YAC7B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newSound.js","sourceRoot":"","sources":["../../../src/native/state/newSound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAA2F;AAC3F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;YAC7B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newStage.d.ts.map b/dist/native/state/newStage.d.ts.map index 842e1524e9..a767cb5c76 100644 --- a/dist/native/state/newStage.d.ts.map +++ b/dist/native/state/newStage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newStage.d.ts","sourceRoot":"","sources":["../../../src/native/state/newStage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newStage.d.ts","sourceRoot":"","sources":["../../../src/native/state/newStage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newStage.js b/dist/native/state/newStage.js index 5c22a061b0..f7dcc8f2c6 100644 --- a/dist/native/state/newStage.js +++ b/dist/native/state/newStage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const stage_1 = require("../../properties/stage"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newStage.js.map b/dist/native/state/newStage.js.map index 7c7ea94fc8..0b65d59d96 100644 --- a/dist/native/state/newStage.js.map +++ b/dist/native/state/newStage.js.map @@ -1 +1 @@ -{"version":3,"file":"newStage.js","sourceRoot":"","sources":["../../../src/native/state/newStage.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newStage.js","sourceRoot":"","sources":["../../../src/native/state/newStage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newState.d.ts.map b/dist/native/state/newState.d.ts.map index 5fb4e56723..31d4ad1d9e 100644 --- a/dist/native/state/newState.d.ts.map +++ b/dist/native/state/newState.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newState.d.ts","sourceRoot":"","sources":["../../../src/native/state/newState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newState.d.ts","sourceRoot":"","sources":["../../../src/native/state/newState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newState.js b/dist/native/state/newState.js index 31588f1d04..d9c05fb268 100644 --- a/dist/native/state/newState.js +++ b/dist/native/state/newState.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const voiceState_1 = require("../../properties/voiceState"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newState.js.map b/dist/native/state/newState.js.map index 4407a2b259..84eeb8d56c 100644 --- a/dist/native/state/newState.js.map +++ b/dist/native/state/newState.js.map @@ -1 +1 @@ -{"version":3,"file":"newState.js","sourceRoot":"","sources":["../../../src/native/state/newState.ts"],"names":[],"mappings":";;AAAA,4DAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAoB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newState.js","sourceRoot":"","sources":["../../../src/native/state/newState.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,4DAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAoB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newSticker.d.ts.map b/dist/native/state/newSticker.d.ts.map index 0d05f2cbaa..767fb7d75b 100644 --- a/dist/native/state/newSticker.d.ts.map +++ b/dist/native/state/newSticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newSticker.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newSticker.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newSticker.js b/dist/native/state/newSticker.js index 87a41fc400..c3b45eb998 100644 --- a/dist/native/state/newSticker.js +++ b/dist/native/state/newSticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const sticker_1 = require("../../properties/sticker"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newSticker.js.map b/dist/native/state/newSticker.js.map index 6e43052387..21cc489bd1 100644 --- a/dist/native/state/newSticker.js.map +++ b/dist/native/state/newSticker.js.map @@ -1 +1 @@ -{"version":3,"file":"newSticker.js","sourceRoot":"","sources":["../../../src/native/state/newSticker.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newSticker.js","sourceRoot":"","sources":["../../../src/native/state/newSticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newSubscription.d.ts.map b/dist/native/state/newSubscription.d.ts.map index 947ec3a0df..933753853c 100644 --- a/dist/native/state/newSubscription.d.ts.map +++ b/dist/native/state/newSubscription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSubscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAC5F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/state/newSubscription.ts"],"names":[],"mappings":"AAKA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAC5F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newSubscription.js b/dist/native/state/newSubscription.js index 1dc24e093d..38493e20e1 100644 --- a/dist/native/state/newSubscription.js +++ b/dist/native/state/newSubscription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const subscription_1 = require("../../properties/subscription"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newSubscription.js.map b/dist/native/state/newSubscription.js.map index c9beee53d2..2ad95633bf 100644 --- a/dist/native/state/newSubscription.js.map +++ b/dist/native/state/newSubscription.js.map @@ -1 +1 @@ -{"version":3,"file":"newSubscription.js","sourceRoot":"","sources":["../../../src/native/state/newSubscription.ts"],"names":[],"mappings":";;AAAA,gEAA4F;AAC5F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAoB;YAC1B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qCAAsB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newSubscription.js","sourceRoot":"","sources":["../../../src/native/state/newSubscription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gEAA4F;AAC5F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAoB;YAC1B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qCAAsB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/newUser.d.ts.map b/dist/native/state/newUser.d.ts.map index ab7e7d0b19..626891bb03 100644 --- a/dist/native/state/newUser.d.ts.map +++ b/dist/native/state/newUser.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"newUser.d.ts","sourceRoot":"","sources":["../../../src/native/state/newUser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"newUser.d.ts","sourceRoot":"","sources":["../../../src/native/state/newUser.ts"],"names":[],"mappings":"AAKA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/newUser.js b/dist/native/state/newUser.js index 5ab6b3f1f5..0acb19f08a 100644 --- a/dist/native/state/newUser.js +++ b/dist/native/state/newUser.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const user_1 = require("../../properties/user"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/newUser.js.map b/dist/native/state/newUser.js.map index 46d20df185..6b5667a93d 100644 --- a/dist/native/state/newUser.js.map +++ b/dist/native/state/newUser.js.map @@ -1 +1 @@ -{"version":3,"file":"newUser.js","sourceRoot":"","sources":["../../../src/native/state/newUser.ts"],"names":[],"mappings":";;AAAA,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"newUser.js","sourceRoot":"","sources":["../../../src/native/state/newUser.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldAutomodRule.d.ts.map b/dist/native/state/oldAutomodRule.d.ts.map index c161b41608..76603d6d87 100644 --- a/dist/native/state/oldAutomodRule.d.ts.map +++ b/dist/native/state/oldAutomodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldAutomodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldAutomodRule.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldAutomodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldAutomodRule.js b/dist/native/state/oldAutomodRule.js index 096187296b..8c697ac992 100644 --- a/dist/native/state/oldAutomodRule.js +++ b/dist/native/state/oldAutomodRule.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const automodRule_1 = require("../../properties/automodRule"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldAutomodRule.js.map b/dist/native/state/oldAutomodRule.js.map index f3a4d2c653..bc96876c09 100644 --- a/dist/native/state/oldAutomodRule.js.map +++ b/dist/native/state/oldAutomodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"oldAutomodRule.js","sourceRoot":"","sources":["../../../src/native/state/oldAutomodRule.ts"],"names":[],"mappings":";;AAAA,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldAutomodRule.js","sourceRoot":"","sources":["../../../src/native/state/oldAutomodRule.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6EAA6E;IAC1F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldChannel.d.ts.map b/dist/native/state/oldChannel.d.ts.map index b28d8edd78..639b44654b 100644 --- a/dist/native/state/oldChannel.d.ts.map +++ b/dist/native/state/oldChannel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldChannel.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldChannel.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldChannel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldChannel.js b/dist/native/state/oldChannel.js index 039b1e530a..026b83e90f 100644 --- a/dist/native/state/oldChannel.js +++ b/dist/native/state/oldChannel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const channel_1 = require("../../properties/channel"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldChannel.js.map b/dist/native/state/oldChannel.js.map index 785df092f2..73d006c4c7 100644 --- a/dist/native/state/oldChannel.js.map +++ b/dist/native/state/oldChannel.js.map @@ -1 +1 @@ -{"version":3,"file":"oldChannel.js","sourceRoot":"","sources":["../../../src/native/state/oldChannel.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldChannel.js","sourceRoot":"","sources":["../../../src/native/state/oldChannel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldEmoji.d.ts.map b/dist/native/state/oldEmoji.d.ts.map index df9f3b01e9..375c64b4b2 100644 --- a/dist/native/state/oldEmoji.d.ts.map +++ b/dist/native/state/oldEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldEmoji.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldEmoji.js b/dist/native/state/oldEmoji.js index 5611d752ed..7b1a11be47 100644 --- a/dist/native/state/oldEmoji.js +++ b/dist/native/state/oldEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const emoji_1 = require("../../properties/emoji"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldEmoji.js.map b/dist/native/state/oldEmoji.js.map index 92674f06e7..20abdb6f13 100644 --- a/dist/native/state/oldEmoji.js.map +++ b/dist/native/state/oldEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"oldEmoji.js","sourceRoot":"","sources":["../../../src/native/state/oldEmoji.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldEmoji.js","sourceRoot":"","sources":["../../../src/native/state/oldEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sEAAsE;IACnF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldEntitlement.d.ts.map b/dist/native/state/oldEntitlement.d.ts.map index f114f9a65d..210ae85ce1 100644 --- a/dist/native/state/oldEntitlement.d.ts.map +++ b/dist/native/state/oldEntitlement.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldEntitlement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldEntitlement.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldEntitlement.ts"],"names":[],"mappings":"AAKA,OAAO,EAAyB,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldEntitlement.js b/dist/native/state/oldEntitlement.js index 5dcd3735a5..6141ff17b6 100644 --- a/dist/native/state/oldEntitlement.js +++ b/dist/native/state/oldEntitlement.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const entitlement_1 = require("../../properties/entitlement"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldEntitlement.js.map b/dist/native/state/oldEntitlement.js.map index 53867827b4..5932d40d9b 100644 --- a/dist/native/state/oldEntitlement.js.map +++ b/dist/native/state/oldEntitlement.js.map @@ -1 +1 @@ -{"version":3,"file":"oldEntitlement.js","sourceRoot":"","sources":["../../../src/native/state/oldEntitlement.ts"],"names":[],"mappings":";;AAAA,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldEntitlement.js","sourceRoot":"","sources":["../../../src/native/state/oldEntitlement.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8DAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,iCAAmB;YACzB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,mCAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldGuild.d.ts.map b/dist/native/state/oldGuild.d.ts.map index c2684fe27c..96e50bc9ad 100644 --- a/dist/native/state/oldGuild.d.ts.map +++ b/dist/native/state/oldGuild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldGuild.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldGuild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldGuild.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldGuild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldGuild.js b/dist/native/state/oldGuild.js index 476bd78f00..6428514767 100644 --- a/dist/native/state/oldGuild.js +++ b/dist/native/state/oldGuild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const guild_1 = require("../../properties/guild"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldGuild.js.map b/dist/native/state/oldGuild.js.map index b02831639b..dbc1ae7662 100644 --- a/dist/native/state/oldGuild.js.map +++ b/dist/native/state/oldGuild.js.map @@ -1 +1 @@ -{"version":3,"file":"oldGuild.js","sourceRoot":"","sources":["../../../src/native/state/oldGuild.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldGuild.js","sourceRoot":"","sources":["../../../src/native/state/oldGuild.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldInvite.d.ts.map b/dist/native/state/oldInvite.d.ts.map index 1f797c089b..381df9d54e 100644 --- a/dist/native/state/oldInvite.d.ts.map +++ b/dist/native/state/oldInvite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldInvite.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldInvite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldInvite.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldInvite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldInvite.js b/dist/native/state/oldInvite.js index e116ef25e5..4494833ae5 100644 --- a/dist/native/state/oldInvite.js +++ b/dist/native/state/oldInvite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const invite_1 = require("../../properties/invite"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldInvite.js.map b/dist/native/state/oldInvite.js.map index c12d90c3fb..cc6254b7a0 100644 --- a/dist/native/state/oldInvite.js.map +++ b/dist/native/state/oldInvite.js.map @@ -1 +1 @@ -{"version":3,"file":"oldInvite.js","sourceRoot":"","sources":["../../../src/native/state/oldInvite.ts"],"names":[],"mappings":";;AAAA,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldInvite.js","sourceRoot":"","sources":["../../../src/native/state/oldInvite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldMember.d.ts.map b/dist/native/state/oldMember.d.ts.map index 225836e9ce..ecd33e8946 100644 --- a/dist/native/state/oldMember.d.ts.map +++ b/dist/native/state/oldMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldMember.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldMember.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldMember.js b/dist/native/state/oldMember.js index 0ee1360561..98807a5adf 100644 --- a/dist/native/state/oldMember.js +++ b/dist/native/state/oldMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const member_1 = require("../../properties/member"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldMember.js.map b/dist/native/state/oldMember.js.map index b0f8aa913c..bd1a9a60d4 100644 --- a/dist/native/state/oldMember.js.map +++ b/dist/native/state/oldMember.js.map @@ -1 +1 @@ -{"version":3,"file":"oldMember.js","sourceRoot":"","sources":["../../../src/native/state/oldMember.ts"],"names":[],"mappings":";;AAAA,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldMember.js","sourceRoot":"","sources":["../../../src/native/state/oldMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oDAA0E;AAC1E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uBAAc;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldMessage.d.ts.map b/dist/native/state/oldMessage.d.ts.map index 8cb94f2c27..b8e8777e6b 100644 --- a/dist/native/state/oldMessage.d.ts.map +++ b/dist/native/state/oldMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldMessage.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldMessage.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldMessage.js b/dist/native/state/oldMessage.js index 67ce56717e..ed683266e6 100644 --- a/dist/native/state/oldMessage.js +++ b/dist/native/state/oldMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const message_1 = require("../../properties/message"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldMessage.js.map b/dist/native/state/oldMessage.js.map index 3cfd21fca5..8c4ff8ba60 100644 --- a/dist/native/state/oldMessage.js.map +++ b/dist/native/state/oldMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"oldMessage.js","sourceRoot":"","sources":["../../../src/native/state/oldMessage.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldMessage.js","sourceRoot":"","sources":["../../../src/native/state/oldMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldPresence.d.ts.map b/dist/native/state/oldPresence.d.ts.map index 14ef3494d3..99f939f650 100644 --- a/dist/native/state/oldPresence.d.ts.map +++ b/dist/native/state/oldPresence.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldPresence.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldPresence.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldPresence.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldPresence.ts"],"names":[],"mappings":"AAKA,OAAO,EAAsB,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAChF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldPresence.js b/dist/native/state/oldPresence.js index afcb936699..ce46eee236 100644 --- a/dist/native/state/oldPresence.js +++ b/dist/native/state/oldPresence.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const presence_1 = require("../../properties/presence"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldPresence.js.map b/dist/native/state/oldPresence.js.map index e0ec1d5c48..caf5fccef7 100644 --- a/dist/native/state/oldPresence.js.map +++ b/dist/native/state/oldPresence.js.map @@ -1 +1 @@ -{"version":3,"file":"oldPresence.js","sourceRoot":"","sources":["../../../src/native/state/oldPresence.ts"],"names":[],"mappings":";;AAAA,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wEAAwE;IACrF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;YACtB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldPresence.js","sourceRoot":"","sources":["../../../src/native/state/oldPresence.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,wDAAgF;AAChF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wEAAwE;IACrF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,2BAAgB;YACtB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACjF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldRole.d.ts.map b/dist/native/state/oldRole.d.ts.map index 519250624d..51d7ea601c 100644 --- a/dist/native/state/oldRole.d.ts.map +++ b/dist/native/state/oldRole.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldRole.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldRole.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldRole.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldRole.ts"],"names":[],"mappings":"AAKA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldRole.js b/dist/native/state/oldRole.js index ac54dcd19e..585b3ae54b 100644 --- a/dist/native/state/oldRole.js +++ b/dist/native/state/oldRole.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const role_1 = require("../../properties/role"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldRole.js.map b/dist/native/state/oldRole.js.map index e54bd260cf..72bfd7fcf4 100644 --- a/dist/native/state/oldRole.js.map +++ b/dist/native/state/oldRole.js.map @@ -1 +1 @@ -{"version":3,"file":"oldRole.js","sourceRoot":"","sources":["../../../src/native/state/oldRole.ts"],"names":[],"mappings":";;AAAA,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldRole.js","sourceRoot":"","sources":["../../../src/native/state/oldRole.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldScheduledEvent.d.ts.map b/dist/native/state/oldScheduledEvent.d.ts.map index f172a1d13a..9441a0823d 100644 --- a/dist/native/state/oldScheduledEvent.d.ts.map +++ b/dist/native/state/oldScheduledEvent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldScheduledEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AAClG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldScheduledEvent.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldScheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAA4B,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AAClG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldScheduledEvent.js b/dist/native/state/oldScheduledEvent.js index 5e5a3bdd9b..6be4974ac8 100644 --- a/dist/native/state/oldScheduledEvent.js +++ b/dist/native/state/oldScheduledEvent.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const scheduledEvent_1 = require("../../properties/scheduledEvent"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldScheduledEvent.js.map b/dist/native/state/oldScheduledEvent.js.map index d96262ac2e..e2fa6bfd35 100644 --- a/dist/native/state/oldScheduledEvent.js.map +++ b/dist/native/state/oldScheduledEvent.js.map @@ -1 +1 @@ -{"version":3,"file":"oldScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/state/oldScheduledEvent.ts"],"names":[],"mappings":";;AAAA,oEAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;YAC5B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,cAAc,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldScheduledEvent.js","sourceRoot":"","sources":["../../../src/native/state/oldScheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,oEAAkG;AAClG,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+EAA+E;IAC5F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,uCAAsB;YAC5B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,yCAAwB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,cAAc,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldSound.d.ts.map b/dist/native/state/oldSound.d.ts.map index 132b456777..ec03cae63d 100644 --- a/dist/native/state/oldSound.d.ts.map +++ b/dist/native/state/oldSound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldSound.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSound.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldSound.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSound.ts"],"names":[],"mappings":"AAKA,OAAO,EAA6B,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;AAC3F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldSound.js b/dist/native/state/oldSound.js index 06eb5bd42b..6f15e91225 100644 --- a/dist/native/state/oldSound.js +++ b/dist/native/state/oldSound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const sound_1 = require("../../properties/sound"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldSound.js.map b/dist/native/state/oldSound.js.map index 3a018714d3..6d76f5bc38 100644 --- a/dist/native/state/oldSound.js.map +++ b/dist/native/state/oldSound.js.map @@ -1 +1 @@ -{"version":3,"file":"oldSound.js","sourceRoot":"","sources":["../../../src/native/state/oldSound.ts"],"names":[],"mappings":";;AAAA,kDAA2F;AAC3F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;YAC7B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldSound.js","sourceRoot":"","sources":["../../../src/native/state/oldSound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAA2F;AAC3F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gFAAgF;IAC7F,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAuB;YAC7B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldStage.d.ts.map b/dist/native/state/oldStage.d.ts.map index 3df8f108dd..119bc83321 100644 --- a/dist/native/state/oldStage.d.ts.map +++ b/dist/native/state/oldStage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldStage.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldStage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldStage.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldStage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,aAAa,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldStage.js b/dist/native/state/oldStage.js index 6f019b693c..a3f462a213 100644 --- a/dist/native/state/oldStage.js +++ b/dist/native/state/oldStage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const stage_1 = require("../../properties/stage"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldStage.js.map b/dist/native/state/oldStage.js.map index 43bcc9a562..05bdbc3c7a 100644 --- a/dist/native/state/oldStage.js.map +++ b/dist/native/state/oldStage.js.map @@ -1 +1 @@ -{"version":3,"file":"oldStage.js","sourceRoot":"","sources":["../../../src/native/state/oldStage.ts"],"names":[],"mappings":";;AAAA,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldStage.js","sourceRoot":"","sources":["../../../src/native/state/oldStage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,kDAAuE;AACvE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qEAAqE;IAClF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,qBAAa;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,uBAAe,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldState.d.ts.map b/dist/native/state/oldState.d.ts.map index 85163056dc..08a57aa2ac 100644 --- a/dist/native/state/oldState.d.ts.map +++ b/dist/native/state/oldState.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldState.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldState.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAwB,kBAAkB,EAAE,MAAM,6BAA6B,CAAA;AACtF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldState.js b/dist/native/state/oldState.js index 5641f70570..2753697b8b 100644 --- a/dist/native/state/oldState.js +++ b/dist/native/state/oldState.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const voiceState_1 = require("../../properties/voiceState"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldState.js.map b/dist/native/state/oldState.js.map index 86a74cf83e..b668ff630a 100644 --- a/dist/native/state/oldState.js.map +++ b/dist/native/state/oldState.js.map @@ -1 +1 @@ -{"version":3,"file":"oldState.js","sourceRoot":"","sources":["../../../src/native/state/oldState.ts"],"names":[],"mappings":";;AAAA,4DAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAoB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldState.js","sourceRoot":"","sources":["../../../src/native/state/oldState.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,4DAAsF;AACtF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2EAA2E;IACxF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,+BAAkB;YACxB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,iCAAoB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACrF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldSticker.d.ts.map b/dist/native/state/oldSticker.d.ts.map index 343511978f..902045075a 100644 --- a/dist/native/state/oldSticker.d.ts.map +++ b/dist/native/state/oldSticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldSticker.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldSticker.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldSticker.js b/dist/native/state/oldSticker.js index f2fb84cd1f..15c9c4e445 100644 --- a/dist/native/state/oldSticker.js +++ b/dist/native/state/oldSticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const sticker_1 = require("../../properties/sticker"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldSticker.js.map b/dist/native/state/oldSticker.js.map index a6a4be78fe..9bd0b7fdcc 100644 --- a/dist/native/state/oldSticker.js.map +++ b/dist/native/state/oldSticker.js.map @@ -1 +1 @@ -{"version":3,"file":"oldSticker.js","sourceRoot":"","sources":["../../../src/native/state/oldSticker.ts"],"names":[],"mappings":";;AAAA,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldSticker.js","sourceRoot":"","sources":["../../../src/native/state/oldSticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uEAAuE;IACpF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldSubscription.d.ts.map b/dist/native/state/oldSubscription.d.ts.map index d3a34911bc..8ed16307c3 100644 --- a/dist/native/state/oldSubscription.d.ts.map +++ b/dist/native/state/oldSubscription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSubscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAC5F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldSubscription.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldSubscription.ts"],"names":[],"mappings":"AAKA,OAAO,EAA0B,oBAAoB,EAAE,MAAM,+BAA+B,CAAA;AAC5F,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldSubscription.js b/dist/native/state/oldSubscription.js index d32d728d92..9c1a4c7686 100644 --- a/dist/native/state/oldSubscription.js +++ b/dist/native/state/oldSubscription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const subscription_1 = require("../../properties/subscription"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldSubscription.js.map b/dist/native/state/oldSubscription.js.map index d94089c096..3f2ec9b281 100644 --- a/dist/native/state/oldSubscription.js.map +++ b/dist/native/state/oldSubscription.js.map @@ -1 +1 @@ -{"version":3,"file":"oldSubscription.js","sourceRoot":"","sources":["../../../src/native/state/oldSubscription.ts"],"names":[],"mappings":";;AAAA,gEAA4F;AAC5F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAoB;YAC1B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qCAAsB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldSubscription.js","sourceRoot":"","sources":["../../../src/native/state/oldSubscription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gEAA4F;AAC5F,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4EAA4E;IACzF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mCAAoB;YAC1B,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qCAAsB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/state/oldUser.d.ts.map b/dist/native/state/oldUser.d.ts.map index cae2e8b6b6..c271a2f899 100644 --- a/dist/native/state/oldUser.d.ts.map +++ b/dist/native/state/oldUser.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"oldUser.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldUser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"oldUser.d.ts","sourceRoot":"","sources":["../../../src/native/state/oldUser.ts"],"names":[],"mappings":"AAKA,OAAO,EAAkB,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/state/oldUser.js b/dist/native/state/oldUser.js index 99a27edab5..b6670d1948 100644 --- a/dist/native/state/oldUser.js +++ b/dist/native/state/oldUser.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const user_1 = require("../../properties/user"); const structures_1 = require("../../structures"); diff --git a/dist/native/state/oldUser.js.map b/dist/native/state/oldUser.js.map index 0d9834501a..0119febf83 100644 --- a/dist/native/state/oldUser.js.map +++ b/dist/native/state/oldUser.js.map @@ -1 +1 @@ -{"version":3,"file":"oldUser.js","sourceRoot":"","sources":["../../../src/native/state/oldUser.ts"],"names":[],"mappings":";;AAAA,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"oldUser.js","sourceRoot":"","sources":["../../../src/native/state/oldUser.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,gDAAoE;AACpE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oEAAoE;IACjF,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,mBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAc,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;IACzE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/async.d.ts.map b/dist/native/statement/async.d.ts.map index 8e4dcd64fa..1c0918faca 100644 --- a/dist/native/statement/async.d.ts.map +++ b/dist/native/statement/async.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"async.d.ts","sourceRoot":"","sources":["../../../src/native/statement/async.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"async.d.ts","sourceRoot":"","sources":["../../../src/native/statement/async.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/statement/async.js b/dist/native/statement/async.js index 1f40e73fc3..a0cc3461dd 100644 --- a/dist/native/statement/async.js +++ b/dist/native/statement/async.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/async.js.map b/dist/native/statement/async.js.map index 347f9f5001..3f6c3930b5 100644 --- a/dist/native/statement/async.js.map +++ b/dist/native/statement/async.js.map @@ -1 +1 @@ -{"version":3,"file":"async.js","sourceRoot":"","sources":["../../../src/native/statement/async.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,OAAO,CAAC,GAAG;QACP,KAAK,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"async.js","sourceRoot":"","sources":["../../../src/native/statement/async.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qDAAqD;IAClE,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,OAAO,CAAC,GAAG;QACP,KAAK,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/break.d.ts.map b/dist/native/statement/break.d.ts.map index 7127d2af03..cad9de55dc 100644 --- a/dist/native/statement/break.d.ts.map +++ b/dist/native/statement/break.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"break.d.ts","sourceRoot":"","sources":["../../../src/native/statement/break.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file +{"version":3,"file":"break.d.ts","sourceRoot":"","sources":["../../../src/native/statement/break.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file diff --git a/dist/native/statement/break.js b/dist/native/statement/break.js index b4fd2dfdaf..dfe03218da 100644 --- a/dist/native/statement/break.js +++ b/dist/native/statement/break.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/break.js.map b/dist/native/statement/break.js.map index 9f4f1e9f0f..6a614af73d 100644 --- a/dist/native/statement/break.js.map +++ b/dist/native/statement/break.js.map @@ -1 +1 @@ -{"version":3,"file":"break.js","sourceRoot":"","sources":["../../../src/native/statement/break.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,KAAK,EAAE,CAAA;IACvB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"break.js","sourceRoot":"","sources":["../../../src/native/statement/break.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,KAAK,EAAE,CAAA;IACvB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/case.d.ts.map b/dist/native/statement/case.d.ts.map index e8a659527b..3daab5a7f0 100644 --- a/dist/native/statement/case.d.ts.map +++ b/dist/native/statement/case.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"case.d.ts","sourceRoot":"","sources":["../../../src/native/statement/case.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"case.d.ts","sourceRoot":"","sources":["../../../src/native/statement/case.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/statement/case.js b/dist/native/statement/case.js index 2370912062..54208dc018 100644 --- a/dist/native/statement/case.js +++ b/dist/native/statement/case.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/case.js.map b/dist/native/statement/case.js.map index 9036ddb6de..041bf9e41d 100644 --- a/dist/native/statement/case.js.map +++ b/dist/native/statement/case.js.map @@ -1 +1 @@ -{"version":3,"file":"case.js","sourceRoot":"","sources":["../../../src/native/statement/case.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oBAAoB;IACjC,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"case.js","sourceRoot":"","sources":["../../../src/native/statement/case.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oBAAoB;IACjC,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/continue.d.ts.map b/dist/native/statement/continue.d.ts.map index 7e5034c668..f6f7798300 100644 --- a/dist/native/statement/continue.d.ts.map +++ b/dist/native/statement/continue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"continue.d.ts","sourceRoot":"","sources":["../../../src/native/statement/continue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file +{"version":3,"file":"continue.d.ts","sourceRoot":"","sources":["../../../src/native/statement/continue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAEzD,wBAQE"} \ No newline at end of file diff --git a/dist/native/statement/continue.js b/dist/native/statement/continue.js index 7e273c81bd..d740c372ea 100644 --- a/dist/native/statement/continue.js +++ b/dist/native/statement/continue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/continue.js.map b/dist/native/statement/continue.js.map index c2a7750738..0a5fcbf612 100644 --- a/dist/native/statement/continue.js.map +++ b/dist/native/statement/continue.js.map @@ -1 +1 @@ -{"version":3,"file":"continue.js","sourceRoot":"","sources":["../../../src/native/statement/continue.ts"],"names":[],"mappings":";;AAAA,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAA;IAC1B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"continue.js","sourceRoot":"","sources":["../../../src/native/statement/continue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAyD;AAEzD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAA;IAC1B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/default.d.ts.map b/dist/native/statement/default.d.ts.map index f7b681982a..1ed45b4be2 100644 --- a/dist/native/statement/default.d.ts.map +++ b/dist/native/statement/default.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/native/statement/default.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/native/statement/default.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/statement/default.js b/dist/native/statement/default.js index d20b0718ac..477273139e 100644 --- a/dist/native/statement/default.js +++ b/dist/native/statement/default.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/default.js.map b/dist/native/statement/default.js.map index d9a9d8131a..047fa6b866 100644 --- a/dist/native/statement/default.js.map +++ b/dist/native/statement/default.js.map @@ -1 +1 @@ -{"version":3,"file":"default.js","sourceRoot":"","sources":["../../../src/native/statement/default.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,0DAA0D;IACvE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"default.js","sourceRoot":"","sources":["../../../src/native/statement/default.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,0DAA0D;IACvE,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/else.d.ts.map b/dist/native/statement/else.d.ts.map index 80544e4a1a..051670fb13 100644 --- a/dist/native/statement/else.d.ts.map +++ b/dist/native/statement/else.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"else.d.ts","sourceRoot":"","sources":["../../../src/native/statement/else.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;AAEzB,wBAmBE"} \ No newline at end of file +{"version":3,"file":"else.d.ts","sourceRoot":"","sources":["../../../src/native/statement/else.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;AAEzB,wBAmBE"} \ No newline at end of file diff --git a/dist/native/statement/else.js b/dist/native/statement/else.js index 62016965b1..5dc6cf7a33 100644 --- a/dist/native/statement/else.js +++ b/dist/native/statement/else.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/else.js.map b/dist/native/statement/else.js.map index 2c9b175775..73b7374e3b 100644 --- a/dist/native/statement/else.js.map +++ b/dist/native/statement/else.js.map @@ -1 +1 @@ -{"version":3,"file":"else.js","sourceRoot":"","sources":["../../../src/native/statement/else.ts"],"names":[],"mappings":";;AAAA,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"else.js","sourceRoot":"","sources":["../../../src/native/statement/else.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/elseif.d.ts.map b/dist/native/statement/elseif.d.ts.map index edf5ea2e80..7c9936b2db 100644 --- a/dist/native/statement/elseif.d.ts.map +++ b/dist/native/statement/elseif.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"elseif.d.ts","sourceRoot":"","sources":["../../../src/native/statement/elseif.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEzB,wBAmCE"} \ No newline at end of file +{"version":3,"file":"elseif.d.ts","sourceRoot":"","sources":["../../../src/native/statement/elseif.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAEzB,wBAmCE"} \ No newline at end of file diff --git a/dist/native/statement/elseif.js b/dist/native/statement/elseif.js index 4746919943..81af912181 100644 --- a/dist/native/statement/elseif.js +++ b/dist/native/statement/elseif.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/elseif.js.map b/dist/native/statement/elseif.js.map index 3d9bd54fe8..7412623194 100644 --- a/dist/native/statement/elseif.js.map +++ b/dist/native/statement/elseif.js.map @@ -1 +1 @@ -{"version":3,"file":"elseif.js","sourceRoot":"","sources":["../../../src/native/statement/elseif.ts"],"names":[],"mappings":";;AAAA,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAC5C,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QAED,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAA;QAE3D,IAAI,CAAC,SAAS,CAAC,KAAK;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE3C,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"elseif.js","sourceRoot":"","sources":["../../../src/native/statement/elseif.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAC5C,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QAED,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAA;QAE3D,IAAI,CAAC,SAAS,CAAC,KAAK;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAE3C,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;IAC3F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/if.d.ts.map b/dist/native/statement/if.d.ts.map index 03c3e78516..1bb81a097a 100644 --- a/dist/native/statement/if.d.ts.map +++ b/dist/native/statement/if.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"if.d.ts","sourceRoot":"","sources":["../../../src/native/statement/if.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAEzB,wBA2CE"} \ No newline at end of file +{"version":3,"file":"if.d.ts","sourceRoot":"","sources":["../../../src/native/statement/if.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAEzB,wBA2CE"} \ No newline at end of file diff --git a/dist/native/statement/if.js b/dist/native/statement/if.js index 4624a7a510..89399b48c6 100644 --- a/dist/native/statement/if.js +++ b/dist/native/statement/if.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/if.js.map b/dist/native/statement/if.js.map index d0dced8a38..a730f50bc8 100644 --- a/dist/native/statement/if.js.map +++ b/dist/native/statement/if.js.map @@ -1 +1 @@ -{"version":3,"file":"if.js","sourceRoot":"","sources":["../../../src/native/statement/if.ts"],"names":[],"mappings":";;AAAA,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAC5C,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAA;QAE3D,MAAM,UAAU,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAC,CAElE,CAAA;QACf,IAAI,CAAC,UAAU;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEtC,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"if.js","sourceRoot":"","sources":["../../../src/native/statement/if.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,SAAS,EAAE,IAAI;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAC5C,GAAG,EACH,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAClE,CAAA;QACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAA;QAE3D,MAAM,UAAU,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAC,CAElE,CAAA;QACf,IAAI,CAAC,UAAU;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAEtC,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IAC/C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/ifx.d.ts.map b/dist/native/statement/ifx.d.ts.map index c3f832068e..d5943b5440 100644 --- a/dist/native/statement/ifx.d.ts.map +++ b/dist/native/statement/ifx.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ifx.d.ts","sourceRoot":"","sources":["../../../src/native/statement/ifx.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAKlE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"ifx.d.ts","sourceRoot":"","sources":["../../../src/native/statement/ifx.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAKlE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/statement/ifx.js b/dist/native/statement/ifx.js index 8b258f31a4..adff642bbe 100644 --- a/dist/native/statement/ifx.js +++ b/dist/native/statement/ifx.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/statement/ifx.js.map b/dist/native/statement/ifx.js.map index e929251075..193cdd9a81 100644 --- a/dist/native/statement/ifx.js.map +++ b/dist/native/statement/ifx.js.map @@ -1 +1 @@ -{"version":3,"file":"ifx.js","sourceRoot":"","sources":["../../../src/native/statement/ifx.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,kDAA0B;AAC1B,sDAA6B;AAC7B,8CAAyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,YAAM,CAAE,CAAA;QAChD,MAAM,gBAAgB,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,gBAAM,CAAC,CAAA;QACrD,MAAM,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,cAAK,CAAC,CAAA;QAEhD,MAAM,KAAK,GAAG,MAAM,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;QAC5C,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,KAAK,KAAK,IAAI;YAAE,OAAO,KAAK,CAAA;QAE3E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,gBAAgB,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YACvD,MAAM,SAAS,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAA;YACrC,MAAM,YAAY,GAAG,MAAM,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;YACjD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,IAAI,YAAY,CAAC,KAAK,KAAK,IAAI;gBAAE,OAAO,YAAY,CAAA;SACnG;QAED,OAAO,aAAa,EAAE,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ifx.js","sourceRoot":"","sources":["../../../src/native/statement/ifx.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,kDAA0B;AAC1B,sDAA6B;AAC7B,8CAAyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,YAAY,EAAE,IAAI;IAClB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,YAAM,CAAE,CAAA;QAChD,MAAM,gBAAgB,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,gBAAM,CAAC,CAAA;QACrD,MAAM,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,cAAK,CAAC,CAAA;QAEhD,MAAM,KAAK,GAAG,MAAM,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;QAC5C,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,KAAK,KAAK,IAAI;YAAE,OAAO,KAAK,CAAA;QAE3E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,gBAAgB,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YACvD,MAAM,SAAS,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAA;YACrC,MAAM,YAAY,GAAG,MAAM,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;YACjD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,IAAI,YAAY,CAAC,KAAK,KAAK,IAAI;gBAAE,OAAO,YAAY,CAAA;SACnG;QAED,OAAO,aAAa,EAAE,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/loop.d.ts.map b/dist/native/statement/loop.d.ts.map index fd7a721c7c..2a868e6233 100644 --- a/dist/native/statement/loop.d.ts.map +++ b/dist/native/statement/loop.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loop.d.ts","sourceRoot":"","sources":["../../../src/native/statement/loop.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBA6DE"} \ No newline at end of file +{"version":3,"file":"loop.d.ts","sourceRoot":"","sources":["../../../src/native/statement/loop.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElG,wBA6DE"} \ No newline at end of file diff --git a/dist/native/statement/loop.js b/dist/native/statement/loop.js index 078c22d83a..2715001b10 100644 --- a/dist/native/statement/loop.js +++ b/dist/native/statement/loop.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -30,8 +34,8 @@ exports.default = new structures_1.NativeFunction({ type: structures_1.ArgType.String }, { - name: "desc", - description: "Whether to use desc order for iteration count", + name: "asc", + description: "Whether to use asc order for iteration count", rest: false, type: structures_1.ArgType.Boolean, } @@ -40,11 +44,11 @@ exports.default = new structures_1.NativeFunction({ const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 2, 3); if (!this["isValidReturnType"](rt)) return rt; - const [times, varName, type] = args; + const [times, varName, asc] = args; const code = this.data.fields[1]; let output = ""; - let condition = type || times === -1; - for (let i = condition ? 1 : times; (type ? i <= times : i > 0) || times === -1; condition ? i++ : i--) { + let condition = asc || times === -1; + for (let i = condition ? 1 : times; (asc ? i <= times : i > 0) || times === -1; condition ? i++ : i--) { if (varName) ctx.setEnvironmentKey(varName, i); const exec = await this["resolveCode"](ctx, code); diff --git a/dist/native/statement/loop.js.map b/dist/native/statement/loop.js.map index 3d889d3bb3..9f5f3acfb7 100644 --- a/dist/native/statement/loop.js.map +++ b/dist/native/statement/loop.js.map @@ -1 +1 @@ -{"version":3,"file":"loop.js","sourceRoot":"","sources":["../../../src/native/statement/loop.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;SACrC;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EACF,IAAI,EACJ,MAAM,EAAE,EAAE,EACb,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACnD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,KAAK,EAAE,OAAO,EAAE,IAAI,CAAE,GAAG,IAAI,CAAA;QACrC,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,IAAI,MAAM,GAAG,EAAE,CAAA;QACf,IAAI,SAAS,GAAG,IAAI,IAAI,KAAK,KAAK,CAAC,CAAC,CAAA;QAEpC,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,EAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;YAClG,IAAI,OAAO;gBACP,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC,CAAA;YAErC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACjD,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,QAAQ;gBAAE,SAAQ;iBACtC,IAAI,IAAI,CAAC,KAAK;gBAAE,MAAK;iBACrB,IAAI,IAAI,CAAC,MAAM;gBAAE,MAAM,IAAI,IAAI,CAAC,KAAK,CAAA;;gBACrC,OAAO,IAAI,CAAA;SACnB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,IAAI,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loop.js","sourceRoot":"","sources":["../../../src/native/statement/loop.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;SACrC;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,2DAA2D;YACxE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,8CAA8C;YAC3D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EACF,IAAI,EACJ,MAAM,EAAE,EAAE,EACb,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QACnD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,KAAK,EAAE,OAAO,EAAE,GAAG,CAAE,GAAG,IAAI,CAAA;QACpC,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,IAAI,MAAM,GAAG,EAAE,CAAA;QACf,IAAI,SAAS,GAAG,GAAG,IAAI,KAAK,KAAK,CAAC,CAAC,CAAA;QAEnC,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,EAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;YACjG,IAAI,OAAO;gBACP,GAAG,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC,CAAA;YAErC,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACjD,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,QAAQ;gBAAE,SAAQ;iBACtC,IAAI,IAAI,CAAC,KAAK;gBAAE,MAAK;iBACrB,IAAI,IAAI,CAAC,MAAM;gBAAE,MAAM,IAAI,IAAI,CAAC,KAAK,CAAA;;gBACrC,OAAO,IAAI,CAAA;SACnB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,IAAI,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/return.d.ts.map b/dist/native/statement/return.d.ts.map index 14d73bee71..f300606150 100644 --- a/dist/native/statement/return.d.ts.map +++ b/dist/native/statement/return.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"return.d.ts","sourceRoot":"","sources":["../../../src/native/statement/return.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAGnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"return.d.ts","sourceRoot":"","sources":["../../../src/native/statement/return.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAGnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/statement/return.js b/dist/native/statement/return.js index dcb0f7e172..61af280453 100644 --- a/dist/native/statement/return.js +++ b/dist/native/statement/return.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/statement/return.js.map b/dist/native/statement/return.js.map index e45bb7291a..da2db6b38d 100644 --- a/dist/native/statement/return.js.map +++ b/dist/native/statement/return.js.map @@ -1 +1 @@ -{"version":3,"file":"return.js","sourceRoot":"","sources":["../../../src/native/statement/return.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"return.js","sourceRoot":"","sources":["../../../src/native/statement/return.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/scope.d.ts.map b/dist/native/statement/scope.d.ts.map index 6110860591..a6a7455c1d 100644 --- a/dist/native/statement/scope.d.ts.map +++ b/dist/native/statement/scope.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/native/statement/scope.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1F,wBA6BE"} \ No newline at end of file +{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/native/statement/scope.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1F,wBA6BE"} \ No newline at end of file diff --git a/dist/native/statement/scope.js b/dist/native/statement/scope.js index 5890df3f49..db8d23e9c6 100644 --- a/dist/native/statement/scope.js +++ b/dist/native/statement/scope.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/scope.js.map b/dist/native/statement/scope.js.map index 8ca3129ed4..32f0da8218 100644 --- a/dist/native/statement/scope.js.map +++ b/dist/native/statement/scope.js.map @@ -1 +1 @@ -{"version":3,"file":"scope.js","sourceRoot":"","sources":["../../../src/native/statement/scope.ts"],"names":[],"mappings":";;AAAA,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;YACvC,OAAO,IAAI,CAAC,MAAM,CAAA;QAEtB,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;IACnI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"scope.js","sourceRoot":"","sources":["../../../src/native/statement/scope.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACtD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;YACvC,OAAO,IAAI,CAAC,MAAM,CAAA;QAEtB,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;IACnI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/switch.d.ts.map b/dist/native/statement/switch.d.ts.map index 12a2ef9b79..4006fbfc51 100644 --- a/dist/native/statement/switch.d.ts.map +++ b/dist/native/statement/switch.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["../../../src/native/statement/switch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoD,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGpH,wBAsDE"} \ No newline at end of file +{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["../../../src/native/statement/switch.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoD,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAGpH,wBAsDE"} \ No newline at end of file diff --git a/dist/native/statement/switch.js b/dist/native/statement/switch.js index 3a84491514..cf7e3257c2 100644 --- a/dist/native/statement/switch.js +++ b/dist/native/statement/switch.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/statement/switch.js.map b/dist/native/statement/switch.js.map index 05a7f57490..7e3804ac3e 100644 --- a/dist/native/statement/switch.js.map +++ b/dist/native/statement/switch.js.map @@ -1 +1 @@ -{"version":3,"file":"switch.js","sourceRoot":"","sources":["../../../src/native/statement/switch.ts"],"names":[],"mappings":";;;;;AAAA,iDAAoH;AACpH,kDAA0B;AAE1B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wEAAwE;YACrF,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;QACpG,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC;YAAE,OAAO,KAAK,CAAA;QAEnD,MAAM,KAAK,GAAG,KAAK,CAAC,KAAe,CAAA;QACnC,MAAM,WAAW,GACb,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CACtB,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,cAAK,CAAC,IAAI,CAAC,CAAA;QACrD,MAAM,KAAK,GAAG,WAAW,CAAC,SAAS,CAC/B,CAAC,CAAC,EAAE,EAAE,CAAE,CAAC,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAoC,CAAC,KAAK,KAAK,SAAS,CACnF,CAAA;QACD,MAAM,WAAW,GAAG,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAEzE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACpD,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;YAC1B,MAAM,SAAS,GAAW,MAAM,GAAG,CAAC,aAAa,CAAC,CAC9C,GAAG,EACH,GAAG,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CACxD,CAAA;YACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;gBAAE,OAAO,SAAS,CAAA;YAE3D,IAAI,SAAS,CAAC,KAAK,KAAK,KAAK,EAAE;gBAC3B,OAAO,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;aAC1B;SACJ;QAED,IAAI,WAAW;YAAE,OAAO,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"switch.js","sourceRoot":"","sources":["../../../src/native/statement/switch.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAoH;AACpH,kDAA0B;AAE1B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,wEAAwE;YACrF,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAC,CAAA;QACpG,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC;YAAE,OAAO,KAAK,CAAA;QAEnD,MAAM,KAAK,GAAG,KAAK,CAAC,KAAe,CAAA;QACnC,MAAM,WAAW,GACb,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CACtB,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,cAAK,CAAC,IAAI,CAAC,CAAA;QACrD,MAAM,KAAK,GAAG,WAAW,CAAC,SAAS,CAC/B,CAAC,CAAC,EAAE,EAAE,CAAE,CAAC,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAoC,CAAC,KAAK,KAAK,SAAS,CACnF,CAAA;QACD,MAAM,WAAW,GAAG,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAEzE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACpD,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;YAC1B,MAAM,SAAS,GAAW,MAAM,GAAG,CAAC,aAAa,CAAC,CAC9C,GAAG,EACH,GAAG,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CACxD,CAAA;YACD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,SAAS,CAAC;gBAAE,OAAO,SAAS,CAAA;YAE3D,IAAI,SAAS,CAAC,KAAK,KAAK,KAAK,EAAE;gBAC3B,OAAO,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;aAC1B;SACJ;QAED,IAAI,WAAW;YAAE,OAAO,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;QAEhD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/try.d.ts.map b/dist/native/statement/try.d.ts.map index 0b917fba21..2053ef542e 100644 --- a/dist/native/statement/try.d.ts.map +++ b/dist/native/statement/try.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"try.d.ts","sourceRoot":"","sources":["../../../src/native/statement/try.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAA8C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAE9G,wBA8CE"} \ No newline at end of file +{"version":3,"file":"try.d.ts","sourceRoot":"","sources":["../../../src/native/statement/try.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAA8C,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAE9G,wBA8CE"} \ No newline at end of file diff --git a/dist/native/statement/try.js b/dist/native/statement/try.js index 7a6456460d..d10f68b47c 100644 --- a/dist/native/statement/try.js +++ b/dist/native/statement/try.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/try.js.map b/dist/native/statement/try.js.map index cb67442110..92dae7ba25 100644 --- a/dist/native/statement/try.js.map +++ b/dist/native/statement/try.js.map @@ -1 +1 @@ -{"version":3,"file":"try.js","sourceRoot":"","sources":["../../../src/native/statement/try.ts"],"names":[],"mappings":";;AAAA,iDAA8G;AAE9G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,YAAY,EAAE,IAAI;IAClB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,OAAO,EAAE,SAAS,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAE3F,MAAM,YAAY,GAAW,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;QAEpE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,EAAE;YAC1C,IAAI,YAAY,CAAC,KAAK,EAAE;gBACpB,MAAM,KAAK,GAAG,YAAY,CAAC,KAAmB,CAAA;gBAC9C,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;gBACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;oBAAE,OAAO,IAAI,CAAA;gBACjD,IAAI,IAAI,CAAC,KAAK;oBAAE,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,EAAE,KAAK,CAAC,OAAO,CAAC,CAAA;aAC7E;YAED,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"try.js","sourceRoot":"","sources":["../../../src/native/statement/try.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA8G;AAE9G,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,YAAY,EAAE,IAAI;IAClB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,4BAA4B;SAC5C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,CAAC,OAAO,EAAE,SAAS,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAA2C,CAAA;QAE3F,MAAM,YAAY,GAAW,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;QAEpE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,EAAE;YAC1C,IAAI,YAAY,CAAC,KAAK,EAAE;gBACpB,MAAM,KAAK,GAAG,YAAY,CAAC,KAAmB,CAAA;gBAC9C,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;gBACpD,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;oBAAE,OAAO,IAAI,CAAA;gBACjD,IAAI,IAAI,CAAC,KAAK;oBAAE,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAe,EAAE,KAAK,CAAC,OAAO,CAAC,CAAA;aAC7E;YAED,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;SAC7C;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/statement/while.d.ts.map b/dist/native/statement/while.d.ts.map index b5e3deee4d..30edd66130 100644 --- a/dist/native/statement/while.d.ts.map +++ b/dist/native/statement/while.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"while.d.ts","sourceRoot":"","sources":["../../../src/native/statement/while.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAEzB,wBAyCE"} \ No newline at end of file +{"version":3,"file":"while.d.ts","sourceRoot":"","sources":["../../../src/native/statement/while.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,OAAO,EAGP,cAAc,EAEjB,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAEzB,wBAyCE"} \ No newline at end of file diff --git a/dist/native/statement/while.js b/dist/native/statement/while.js index 1d2fbd582a..1eaba7f52e 100644 --- a/dist/native/statement/while.js +++ b/dist/native/statement/while.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/statement/while.js.map b/dist/native/statement/while.js.map index 7029c04cdd..beb7a87c0f 100644 --- a/dist/native/statement/while.js.map +++ b/dist/native/statement/while.js.map @@ -1 +1 @@ -{"version":3,"file":"while.js","sourceRoot":"","sources":["../../../src/native/statement/while.ts"],"names":[],"mappings":";;AAAA,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;SACrC;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;QACjF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,SAAS;YACL,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAA;iBAC5C,IAAI,CAAC,IAAI,CAAC,KAAK;gBAAE,MAAK;YAE3B,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACjD,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,QAAQ;gBAAE,SAAQ;iBACtC,IAAI,IAAI,CAAC,KAAK;gBAAE,MAAK;;gBACrB,OAAO,IAAI,CAAA;SACnB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"while.js","sourceRoot":"","sources":["../../../src/native/statement/while.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAMyB;AAEzB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,qBAAqB;SACrC;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAA4C,CAAA;QACjF,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,SAAS;YACL,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,SAAS,CAAC,CAAA;YAC3D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAA;iBAC5C,IAAI,CAAC,IAAI,CAAC,KAAK;gBAAE,MAAK;YAE3B,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACjD,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,QAAQ;gBAAE,SAAQ;iBACtC,IAAI,IAAI,CAAC,KAAK;gBAAE,MAAK;;gBACrB,OAAO,IAAI,CAAA;SACnB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/addSticker.d.ts.map b/dist/native/sticker/addSticker.d.ts.map index b49aa84d37..d4d1abc342 100644 --- a/dist/native/sticker/addSticker.d.ts.map +++ b/dist/native/sticker/addSticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"addSticker.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/addSticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file +{"version":3,"file":"addSticker.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/addSticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuDE"} \ No newline at end of file diff --git a/dist/native/sticker/addSticker.js b/dist/native/sticker/addSticker.js index daa9da94c6..0933b9cc8b 100644 --- a/dist/native/sticker/addSticker.js +++ b/dist/native/sticker/addSticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/addSticker.js.map b/dist/native/sticker/addSticker.js.map index 9bcd6a2c45..6460afb1a8 100644 --- a/dist/native/sticker/addSticker.js.map +++ b/dist/native/sticker/addSticker.js.map @@ -1 +1 @@ -{"version":3,"file":"addSticker.js","sourceRoot":"","sources":["../../../src/native/sticker/addSticker.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC;QAC7C,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,QAAQ;aAC/B,MAAM,CAAC;YACJ,IAAI,EAAE,GAAG;YACT,IAAI;YACJ,IAAI;YACJ,WAAW,EAAE,IAAI,IAAI,IAAI;YACzB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"addSticker.js","sourceRoot":"","sources":["../../../src/native/sticker/addSticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,KAAK;YACnB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC;QAC7C,MAAM,OAAO,GAAG,MAAM,KAAK,CAAC,QAAQ;aAC/B,MAAM,CAAC;YACJ,IAAI,EAAE,GAAG;YACT,IAAI;YACJ,IAAI;YACJ,WAAW,EAAE,IAAI,IAAI,IAAI;YACzB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/deleteStickers.d.ts.map b/dist/native/sticker/deleteStickers.d.ts.map index 73744f2f3c..bf1be595ba 100644 --- a/dist/native/sticker/deleteStickers.d.ts.map +++ b/dist/native/sticker/deleteStickers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"deleteStickers.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/deleteStickers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"deleteStickers.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/deleteStickers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/sticker/deleteStickers.js b/dist/native/sticker/deleteStickers.js index fa42e4641d..09820ded93 100644 --- a/dist/native/sticker/deleteStickers.js +++ b/dist/native/sticker/deleteStickers.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/deleteStickers.js.map b/dist/native/sticker/deleteStickers.js.map index ba501620a8..d0ccd60d95 100644 --- a/dist/native/sticker/deleteStickers.js.map +++ b/dist/native/sticker/deleteStickers.js.map @@ -1 +1 @@ -{"version":3,"file":"deleteStickers.js","sourceRoot":"","sources":["../../../src/native/sticker/deleteStickers.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,+DAA+D;IAC5E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC;QAC5B,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAA;YAC3B,MAAM,OAAO,GAAG,MAAM,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"deleteStickers.js","sourceRoot":"","sources":["../../../src/native/sticker/deleteStickers.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,+DAA+D;IAC5E,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC;QAC5B,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAA;YAC3B,MAAM,OAAO,GAAG,MAAM,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YAC5F,IAAI,OAAO;gBAAE,KAAK,EAAE,CAAA;SACvB;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/editSticker.d.ts.map b/dist/native/sticker/editSticker.d.ts.map index c50a76b3ff..fcf42866b8 100644 --- a/dist/native/sticker/editSticker.d.ts.map +++ b/dist/native/sticker/editSticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"editSticker.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/editSticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA4CE"} \ No newline at end of file +{"version":3,"file":"editSticker.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/editSticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA4CE"} \ No newline at end of file diff --git a/dist/native/sticker/editSticker.js b/dist/native/sticker/editSticker.js index 407e945706..2846fea66e 100644 --- a/dist/native/sticker/editSticker.js +++ b/dist/native/sticker/editSticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/editSticker.js.map b/dist/native/sticker/editSticker.js.map index 7e984894d3..e8cc4b19c3 100644 --- a/dist/native/sticker/editSticker.js.map +++ b/dist/native/sticker/editSticker.js.map @@ -1 +1 @@ -{"version":3,"file":"editSticker.js","sourceRoot":"","sources":["../../../src/native/sticker/editSticker.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAE;QACtC,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,IAAI,IAAI,SAAS;YAC9B,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,SAAS;YACjC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"editSticker.js","sourceRoot":"","sources":["../../../src/native/sticker/editSticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAE;QACtC,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,WAAW,EAAE,IAAI,IAAI,SAAS;YAC9B,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,SAAS;YACjC,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerDescription.d.ts.map b/dist/native/sticker/setStickerDescription.d.ts.map index 9742e3df8f..ee5971ee00 100644 --- a/dist/native/sticker/setStickerDescription.d.ts.map +++ b/dist/native/sticker/setStickerDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setStickerDescription.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerDescription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"setStickerDescription.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerDescription.js b/dist/native/sticker/setStickerDescription.js index 9ae658d5e8..ce60d1f0ec 100644 --- a/dist/native/sticker/setStickerDescription.js +++ b/dist/native/sticker/setStickerDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/setStickerDescription.js.map b/dist/native/sticker/setStickerDescription.js.map index 1e768d52be..8aa7862831 100644 --- a/dist/native/sticker/setStickerDescription.js.map +++ b/dist/native/sticker/setStickerDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"setStickerDescription.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerDescription.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,WAAW,EAAE,CAAC;YACd,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setStickerDescription.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,wBAAwB;IAC9B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,WAAW,EAAE,CAAC;YACd,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerName.d.ts.map b/dist/native/sticker/setStickerName.d.ts.map index 9dce52d8a1..20de8e81d6 100644 --- a/dist/native/sticker/setStickerName.d.ts.map +++ b/dist/native/sticker/setStickerName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setStickerName.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"setStickerName.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerName.js b/dist/native/sticker/setStickerName.js index 312478dd17..6fd4acc331 100644 --- a/dist/native/sticker/setStickerName.js +++ b/dist/native/sticker/setStickerName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/setStickerName.js.map b/dist/native/sticker/setStickerName.js.map index ee9dcf3ba9..4cb565f068 100644 --- a/dist/native/sticker/setStickerName.js.map +++ b/dist/native/sticker/setStickerName.js.map @@ -1 +1 @@ -{"version":3,"file":"setStickerName.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerName.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setStickerName.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerTags.d.ts.map b/dist/native/sticker/setStickerTags.d.ts.map index 9736b0b1b5..4e796aac09 100644 --- a/dist/native/sticker/setStickerTags.d.ts.map +++ b/dist/native/sticker/setStickerTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setStickerTags.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"setStickerTags.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/setStickerTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/sticker/setStickerTags.js b/dist/native/sticker/setStickerTags.js index 1ec95cdca1..e6cb684b7e 100644 --- a/dist/native/sticker/setStickerTags.js +++ b/dist/native/sticker/setStickerTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/setStickerTags.js.map b/dist/native/sticker/setStickerTags.js.map index 982d8f80d8..0797d64ae6 100644 --- a/dist/native/sticker/setStickerTags.js.map +++ b/dist/native/sticker/setStickerTags.js.map @@ -1 +1 @@ -{"version":3,"file":"setStickerTags.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerTags.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;YACjB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setStickerTags.js","sourceRoot":"","sources":["../../../src/native/sticker/setStickerTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,EAAE,CAAC,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YACZ,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;YACjB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CACtB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerAvailable.d.ts.map b/dist/native/sticker/stickerAvailable.d.ts.map index b694549d3b..c8c9d4bf7a 100644 --- a/dist/native/sticker/stickerAvailable.d.ts.map +++ b/dist/native/sticker/stickerAvailable.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerAvailable.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerAvailable.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerAvailable.js b/dist/native/sticker/stickerAvailable.js index b0bddcaf78..282bc1a412 100644 --- a/dist/native/sticker/stickerAvailable.js +++ b/dist/native/sticker/stickerAvailable.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerAvailable.js.map b/dist/native/sticker/stickerAvailable.js.map index e7558fa2b6..f6b0e1b027 100644 --- a/dist/native/sticker/stickerAvailable.js.map +++ b/dist/native/sticker/stickerAvailable.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerAvailable.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerAvailable.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerAvailable.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerAvailable.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerCreatedAt.d.ts.map b/dist/native/sticker/stickerCreatedAt.d.ts.map index 87d65bb030..f861371d35 100644 --- a/dist/native/sticker/stickerCreatedAt.d.ts.map +++ b/dist/native/sticker/stickerCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerCreatedAt.js b/dist/native/sticker/stickerCreatedAt.js index 360a8e9573..574cc7e3f9 100644 --- a/dist/native/sticker/stickerCreatedAt.js +++ b/dist/native/sticker/stickerCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerCreatedAt.js.map b/dist/native/sticker/stickerCreatedAt.js.map index ea2b99ab95..e304f79836 100644 --- a/dist/native/sticker/stickerCreatedAt.js.map +++ b/dist/native/sticker/stickerCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerCreatedAt.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerCreatedAt.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerDescription.d.ts.map b/dist/native/sticker/stickerDescription.d.ts.map index 10bcb26333..0851499a8c 100644 --- a/dist/native/sticker/stickerDescription.d.ts.map +++ b/dist/native/sticker/stickerDescription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerDescription.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerDescription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerDescription.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerDescription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerDescription.js b/dist/native/sticker/stickerDescription.js index 4187960606..c5ec406d32 100644 --- a/dist/native/sticker/stickerDescription.js +++ b/dist/native/sticker/stickerDescription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerDescription.js.map b/dist/native/sticker/stickerDescription.js.map index 61f88cab82..d656a031f7 100644 --- a/dist/native/sticker/stickerDescription.js.map +++ b/dist/native/sticker/stickerDescription.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerDescription.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerDescription.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,WAAW,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerDescription.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerDescription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,WAAW,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerFormat.d.ts.map b/dist/native/sticker/stickerFormat.d.ts.map index df2520e7de..39fa170d58 100644 --- a/dist/native/sticker/stickerFormat.d.ts.map +++ b/dist/native/sticker/stickerFormat.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerFormat.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerFormat.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerFormat.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerFormat.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerFormat.js b/dist/native/sticker/stickerFormat.js index 7d48e7700c..855206a1bb 100644 --- a/dist/native/sticker/stickerFormat.js +++ b/dist/native/sticker/stickerFormat.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/sticker/stickerFormat.js.map b/dist/native/sticker/stickerFormat.js.map index 63230c8948..de5ea3613a 100644 --- a/dist/native/sticker/stickerFormat.js.map +++ b/dist/native/sticker/stickerFormat.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerFormat.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerFormat.ts"],"names":[],"mappings":";;AAAA,2CAA8C;AAC9C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,8BAAiB;IACzB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,8BAAiB,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerFormat.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerFormat.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA8C;AAC9C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,8BAAiB;IACzB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,8BAAiB,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAA;IACrD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerGuildID.d.ts.map b/dist/native/sticker/stickerGuildID.d.ts.map index e847afad14..887ea43661 100644 --- a/dist/native/sticker/stickerGuildID.d.ts.map +++ b/dist/native/sticker/stickerGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerGuildID.js b/dist/native/sticker/stickerGuildID.js index 342f758c24..fd5c379c88 100644 --- a/dist/native/sticker/stickerGuildID.js +++ b/dist/native/sticker/stickerGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerGuildID.js.map b/dist/native/sticker/stickerGuildID.js.map index 9c8ed01eb3..567d00eb68 100644 --- a/dist/native/sticker/stickerGuildID.js.map +++ b/dist/native/sticker/stickerGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerGuildID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerGuildID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerGuildID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerID.d.ts.map b/dist/native/sticker/stickerID.d.ts.map index 995c310aae..19a961c87e 100644 --- a/dist/native/sticker/stickerID.d.ts.map +++ b/dist/native/sticker/stickerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"stickerID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerID.js b/dist/native/sticker/stickerID.js index 0ec91a24e5..199e798095 100644 --- a/dist/native/sticker/stickerID.js +++ b/dist/native/sticker/stickerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerID.js.map b/dist/native/sticker/stickerID.js.map index 6c73454d68..47dcf1d2d3 100644 --- a/dist/native/sticker/stickerID.js.map +++ b/dist/native/sticker/stickerID.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerName.d.ts.map b/dist/native/sticker/stickerName.d.ts.map index 8d32cce6b3..daea1609bd 100644 --- a/dist/native/sticker/stickerName.d.ts.map +++ b/dist/native/sticker/stickerName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerName.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerName.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerName.js b/dist/native/sticker/stickerName.js index 0e194255a1..d72943e6e8 100644 --- a/dist/native/sticker/stickerName.js +++ b/dist/native/sticker/stickerName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerName.js.map b/dist/native/sticker/stickerName.js.map index 96ba93a2e9..629123fa39 100644 --- a/dist/native/sticker/stickerName.js.map +++ b/dist/native/sticker/stickerName.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerName.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerName.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerName.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerOwnerID.d.ts.map b/dist/native/sticker/stickerOwnerID.d.ts.map index 4b94669bd6..ca08653ede 100644 --- a/dist/native/sticker/stickerOwnerID.d.ts.map +++ b/dist/native/sticker/stickerOwnerID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerOwnerID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerOwnerID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerOwnerID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerOwnerID.js b/dist/native/sticker/stickerOwnerID.js index a613800e10..02bae407b6 100644 --- a/dist/native/sticker/stickerOwnerID.js +++ b/dist/native/sticker/stickerOwnerID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerOwnerID.js.map b/dist/native/sticker/stickerOwnerID.js.map index f31fb5e357..c5ca07ee6a 100644 --- a/dist/native/sticker/stickerOwnerID.js.map +++ b/dist/native/sticker/stickerOwnerID.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerOwnerID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerOwnerID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACpB,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerOwnerID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerOwnerID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACpB,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerPackID.d.ts.map b/dist/native/sticker/stickerPackID.d.ts.map index 5f3d885789..bbd61ff8f0 100644 --- a/dist/native/sticker/stickerPackID.d.ts.map +++ b/dist/native/sticker/stickerPackID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerPackID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerPackID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerPackID.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerPackID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerPackID.js b/dist/native/sticker/stickerPackID.js index cd9f22c434..31f03d844c 100644 --- a/dist/native/sticker/stickerPackID.js +++ b/dist/native/sticker/stickerPackID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerPackID.js.map b/dist/native/sticker/stickerPackID.js.map index 747e983c9a..17fd84c907 100644 --- a/dist/native/sticker/stickerPackID.js.map +++ b/dist/native/sticker/stickerPackID.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerPackID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerPackID.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerPackID.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerPackID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerRawData.d.ts.map b/dist/native/sticker/stickerRawData.d.ts.map index 3877001105..8d0ae2fcf2 100644 --- a/dist/native/sticker/stickerRawData.d.ts.map +++ b/dist/native/sticker/stickerRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerRawData.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerRawData.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerRawData.js b/dist/native/sticker/stickerRawData.js index 2715301814..55334d6b1e 100644 --- a/dist/native/sticker/stickerRawData.js +++ b/dist/native/sticker/stickerRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerRawData.js.map b/dist/native/sticker/stickerRawData.js.map index b7d260c7d0..35416cf9cc 100644 --- a/dist/native/sticker/stickerRawData.js.map +++ b/dist/native/sticker/stickerRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerRawData.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerRawData.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QAClB,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerSortValue.d.ts.map b/dist/native/sticker/stickerSortValue.d.ts.map index 88f98697a6..3f46e4b338 100644 --- a/dist/native/sticker/stickerSortValue.d.ts.map +++ b/dist/native/sticker/stickerSortValue.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerSortValue.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerSortValue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerSortValue.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerSortValue.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerSortValue.js b/dist/native/sticker/stickerSortValue.js index a250afeef8..92bfdfab98 100644 --- a/dist/native/sticker/stickerSortValue.js +++ b/dist/native/sticker/stickerSortValue.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerSortValue.js.map b/dist/native/sticker/stickerSortValue.js.map index a84baaf898..a711d8ac17 100644 --- a/dist/native/sticker/stickerSortValue.js.map +++ b/dist/native/sticker/stickerSortValue.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerSortValue.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerSortValue.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerSortValue.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerSortValue.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerTags.d.ts.map b/dist/native/sticker/stickerTags.d.ts.map index d1a29ab4f4..4d7aaca255 100644 --- a/dist/native/sticker/stickerTags.d.ts.map +++ b/dist/native/sticker/stickerTags.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerTags.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerTags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerTags.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerTags.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerTags.js b/dist/native/sticker/stickerTags.js index 942a3dedbd..8f89608873 100644 --- a/dist/native/sticker/stickerTags.js +++ b/dist/native/sticker/stickerTags.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerTags.js.map b/dist/native/sticker/stickerTags.js.map index bf8ef849a0..1d2051592d 100644 --- a/dist/native/sticker/stickerTags.js.map +++ b/dist/native/sticker/stickerTags.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerTags.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerTags.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerTags.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerTags.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerType.d.ts.map b/dist/native/sticker/stickerType.d.ts.map index 17e635de02..1f8392d5be 100644 --- a/dist/native/sticker/stickerType.d.ts.map +++ b/dist/native/sticker/stickerType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerType.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerType.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerType.js b/dist/native/sticker/stickerType.js index 8c6298c6c1..160db097eb 100644 --- a/dist/native/sticker/stickerType.js +++ b/dist/native/sticker/stickerType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/sticker/stickerType.js.map b/dist/native/sticker/stickerType.js.map index d2484a5222..0a27e22cef 100644 --- a/dist/native/sticker/stickerType.js.map +++ b/dist/native/sticker/stickerType.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerType.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerType.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,CAAC,EAAE,IAAK,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerType.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,CAAC,EAAE,IAAK,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/sticker/stickerURL.d.ts.map b/dist/native/sticker/stickerURL.d.ts.map index 724fb70f64..97384db19c 100644 --- a/dist/native/sticker/stickerURL.d.ts.map +++ b/dist/native/sticker/stickerURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stickerURL.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file +{"version":3,"file":"stickerURL.d.ts","sourceRoot":"","sources":["../../../src/native/sticker/stickerURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAoBE"} \ No newline at end of file diff --git a/dist/native/sticker/stickerURL.js b/dist/native/sticker/stickerURL.js index 1f7c7ed4d8..82726bbd21 100644 --- a/dist/native/sticker/stickerURL.js +++ b/dist/native/sticker/stickerURL.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/sticker/stickerURL.js.map b/dist/native/sticker/stickerURL.js.map index c90dc8092e..402f8ec941 100644 --- a/dist/native/sticker/stickerURL.js.map +++ b/dist/native/sticker/stickerURL.js.map @@ -1 +1 @@ -{"version":3,"file":"stickerURL.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerURL.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stickerURL.js","sourceRoot":"","sources":["../../../src/native/sticker/stickerURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,CAAC,KAAK,GAAG,CAAC,OAAQ,CAAA;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,GAAG,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/advancedReplace.d.ts.map b/dist/native/string/advancedReplace.d.ts.map index bca93605d3..c2aa542812 100644 --- a/dist/native/string/advancedReplace.d.ts.map +++ b/dist/native/string/advancedReplace.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"advancedReplace.d.ts","sourceRoot":"","sources":["../../../src/native/string/advancedReplace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"advancedReplace.d.ts","sourceRoot":"","sources":["../../../src/native/string/advancedReplace.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/string/advancedReplace.js b/dist/native/string/advancedReplace.js index 564736c9cf..82236d6140 100644 --- a/dist/native/string/advancedReplace.js +++ b/dist/native/string/advancedReplace.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/advancedReplace.js.map b/dist/native/string/advancedReplace.js.map index 5b46326634..0368c38d82 100644 --- a/dist/native/string/advancedReplace.js.map +++ b/dist/native/string/advancedReplace.js.map @@ -1 +1 @@ -{"version":3,"file":"advancedReplace.js","sourceRoot":"","sources":["../../../src/native/string/advancedReplace.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,yCAAyC;YACtD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,IAAI,CAAE;QACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;YACrC,MAAM,CAAE,KAAK,EAAE,WAAW,CAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAA;YACnD,IAAI,GAAG,IAAI,CAAC,UAAU,CAAE,KAAgB,IAAI,EAAE,EAAG,WAAsB,IAAI,EAAE,CAAC,CAAA;SACjF;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"advancedReplace.js","sourceRoot":"","sources":["../../../src/native/string/advancedReplace.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,sBAAsB;KACzB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0CAA0C;IACvD,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,yCAAyC;YACtD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,IAAI,CAAE;QACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;YACrC,MAAM,CAAE,KAAK,EAAE,WAAW,CAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAA;YACnD,IAAI,GAAG,IAAI,CAAC,UAAU,CAAE,KAAgB,IAAI,EAAE,EAAG,WAAsB,IAAI,EAAE,CAAC,CAAA;SACjF;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/argCount.d.ts.map b/dist/native/string/argCount.d.ts.map index 8379dcb962..4ac47e49d2 100644 --- a/dist/native/string/argCount.d.ts.map +++ b/dist/native/string/argCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"argCount.d.ts","sourceRoot":"","sources":["../../../src/native/string/argCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"argCount.d.ts","sourceRoot":"","sources":["../../../src/native/string/argCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/string/argCount.js b/dist/native/string/argCount.js index 1d34f49b4a..c0558777a7 100644 --- a/dist/native/string/argCount.js +++ b/dist/native/string/argCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/argCount.js.map b/dist/native/string/argCount.js.map index 749019f513..c8f117dca5 100644 --- a/dist/native/string/argCount.js.map +++ b/dist/native/string/argCount.js.map @@ -1 +1 @@ -{"version":3,"file":"argCount.js","sourceRoot":"","sources":["../../../src/native/string/argCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,CAAA;YAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAChE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"argCount.js","sourceRoot":"","sources":["../../../src/native/string/argCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,IAAI,IAAI,CAAC,SAAS,EAAE;YAChB,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,CAAA;YAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;SAChE;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/charCodeAt.d.ts.map b/dist/native/string/charCodeAt.d.ts.map index f4e20f4a39..3cbadcefb9 100644 --- a/dist/native/string/charCodeAt.d.ts.map +++ b/dist/native/string/charCodeAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"charCodeAt.d.ts","sourceRoot":"","sources":["../../../src/native/string/charCodeAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"charCodeAt.d.ts","sourceRoot":"","sources":["../../../src/native/string/charCodeAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/string/charCodeAt.js b/dist/native/string/charCodeAt.js index 1706b5ed27..52fe2675d0 100644 --- a/dist/native/string/charCodeAt.js +++ b/dist/native/string/charCodeAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/charCodeAt.js.map b/dist/native/string/charCodeAt.js.map index f6ccf592af..7c6e9e4a96 100644 --- a/dist/native/string/charCodeAt.js.map +++ b/dist/native/string/charCodeAt.js.map @@ -1 +1 @@ -{"version":3,"file":"charCodeAt.js","sourceRoot":"","sources":["../../../src/native/string/charCodeAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"charCodeAt.js","sourceRoot":"","sources":["../../../src/native/string/charCodeAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/charCount.d.ts.map b/dist/native/string/charCount.d.ts.map index a9298826be..b017e4293b 100644 --- a/dist/native/string/charCount.d.ts.map +++ b/dist/native/string/charCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"charCount.d.ts","sourceRoot":"","sources":["../../../src/native/string/charCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"charCount.d.ts","sourceRoot":"","sources":["../../../src/native/string/charCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/string/charCount.js b/dist/native/string/charCount.js index 46f449cdab..bfacbdd99a 100644 --- a/dist/native/string/charCount.js +++ b/dist/native/string/charCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/charCount.js.map b/dist/native/string/charCount.js.map index ca515505f7..b083f905a5 100644 --- a/dist/native/string/charCount.js.map +++ b/dist/native/string/charCount.js.map @@ -1 +1 @@ -{"version":3,"file":"charCount.js","sourceRoot":"","sources":["../../../src/native/string/charCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,CAAC;QACpB,IAAI,IAAI,KAAK,IAAI,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;SAClC;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;SAClD;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"charCount.js","sourceRoot":"","sources":["../../../src/native/string/charCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,CAAC;QACpB,IAAI,IAAI,KAAK,IAAI,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;SAClC;aAAM;YACH,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;SAClD;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/checkContains.d.ts.map b/dist/native/string/checkContains.d.ts.map index d797840f9a..59a8f351b6 100644 --- a/dist/native/string/checkContains.d.ts.map +++ b/dist/native/string/checkContains.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"checkContains.d.ts","sourceRoot":"","sources":["../../../src/native/string/checkContains.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file +{"version":3,"file":"checkContains.d.ts","sourceRoot":"","sources":["../../../src/native/string/checkContains.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA6BE"} \ No newline at end of file diff --git a/dist/native/string/checkContains.js b/dist/native/string/checkContains.js index cc69480f9e..1965e43195 100644 --- a/dist/native/string/checkContains.js +++ b/dist/native/string/checkContains.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/checkContains.js.map b/dist/native/string/checkContains.js.map index 2ef5764281..355a5eac3b 100644 --- a/dist/native/string/checkContains.js.map +++ b/dist/native/string/checkContains.js.map @@ -1 +1 @@ -{"version":3,"file":"checkContains.js","sourceRoot":"","sources":["../../../src/native/string/checkContains.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"checkContains.js","sourceRoot":"","sources":["../../../src/native/string/checkContains.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC;QACxB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/cropArgs.d.ts.map b/dist/native/string/cropArgs.d.ts.map index b1b17144af..054b185923 100644 --- a/dist/native/string/cropArgs.d.ts.map +++ b/dist/native/string/cropArgs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cropArgs.d.ts","sourceRoot":"","sources":["../../../src/native/string/cropArgs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"cropArgs.d.ts","sourceRoot":"","sources":["../../../src/native/string/cropArgs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/string/cropArgs.js b/dist/native/string/cropArgs.js index 581bb7f7c2..e2e04a6906 100644 --- a/dist/native/string/cropArgs.js +++ b/dist/native/string/cropArgs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/cropArgs.js.map b/dist/native/string/cropArgs.js.map index 3b7b0e1bf8..bb1edd36bd 100644 --- a/dist/native/string/cropArgs.js.map +++ b/dist/native/string/cropArgs.js.map @@ -1 +1 @@ -{"version":3,"file":"cropArgs.js","sourceRoot":"","sources":["../../../src/native/string/cropArgs.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,IAAI;aACC,KAAK,CAAC,IAAI,CAAC;aACX,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC;aAC9B,IAAI,CAAC,GAAG,CAAC,CACjB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cropArgs.js","sourceRoot":"","sources":["../../../src/native/string/cropArgs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CACf,IAAI;aACC,KAAK,CAAC,IAAI,CAAC;aACX,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC;aAC9B,IAAI,CAAC,GAAG,CAAC,CACjB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/cropText.d.ts.map b/dist/native/string/cropText.d.ts.map index 6ea32e7fe6..0c7234a268 100644 --- a/dist/native/string/cropText.d.ts.map +++ b/dist/native/string/cropText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cropText.d.ts","sourceRoot":"","sources":["../../../src/native/string/cropText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"cropText.d.ts","sourceRoot":"","sources":["../../../src/native/string/cropText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/string/cropText.js b/dist/native/string/cropText.js index e841f766fe..4d103e97c2 100644 --- a/dist/native/string/cropText.js +++ b/dist/native/string/cropText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/cropText.js.map b/dist/native/string/cropText.js.map index 66ef33c10c..c38b7c7b56 100644 --- a/dist/native/string/cropText.js.map +++ b/dist/native/string/cropText.js.map @@ -1 +1 @@ -{"version":3,"file":"cropText.js","sourceRoot":"","sources":["../../../src/native/string/cropText.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,CAAC;QACnC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAA;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cropText.js","sourceRoot":"","sources":["../../../src/native/string/cropText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,CAAC;QACnC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,IAAI,SAAS,CAAC,CAAA;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IACxF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/endsWith.d.ts.map b/dist/native/string/endsWith.d.ts.map index 38a0fdfd7f..4ba8166fe1 100644 --- a/dist/native/string/endsWith.d.ts.map +++ b/dist/native/string/endsWith.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"endsWith.d.ts","sourceRoot":"","sources":["../../../src/native/string/endsWith.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"endsWith.d.ts","sourceRoot":"","sources":["../../../src/native/string/endsWith.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/string/endsWith.js b/dist/native/string/endsWith.js index 9778ec478d..d628d95800 100644 --- a/dist/native/string/endsWith.js +++ b/dist/native/string/endsWith.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/endsWith.js.map b/dist/native/string/endsWith.js.map index 80efb14a78..6d92777fab 100644 --- a/dist/native/string/endsWith.js.map +++ b/dist/native/string/endsWith.js.map @@ -1 +1 @@ -{"version":3,"file":"endsWith.js","sourceRoot":"","sources":["../../../src/native/string/endsWith.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"endsWith.js","sourceRoot":"","sources":["../../../src/native/string/endsWith.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAClE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/fromCharCode.d.ts.map b/dist/native/string/fromCharCode.d.ts.map index 810b9ea4ca..2af1cac478 100644 --- a/dist/native/string/fromCharCode.d.ts.map +++ b/dist/native/string/fromCharCode.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"fromCharCode.d.ts","sourceRoot":"","sources":["../../../src/native/string/fromCharCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"fromCharCode.d.ts","sourceRoot":"","sources":["../../../src/native/string/fromCharCode.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/fromCharCode.js b/dist/native/string/fromCharCode.js index 16819439f7..ffe5790b24 100644 --- a/dist/native/string/fromCharCode.js +++ b/dist/native/string/fromCharCode.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/fromCharCode.js.map b/dist/native/string/fromCharCode.js.map index 22c8e68699..efedbb65de 100644 --- a/dist/native/string/fromCharCode.js.map +++ b/dist/native/string/fromCharCode.js.map @@ -1 +1 @@ -{"version":3,"file":"fromCharCode.js","sourceRoot":"","sources":["../../../src/native/string/fromCharCode.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"fromCharCode.js","sourceRoot":"","sources":["../../../src/native/string/fromCharCode.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAA;IACtD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/padEnd.d.ts.map b/dist/native/string/padEnd.d.ts.map index 52aad931c8..f03782ae35 100644 --- a/dist/native/string/padEnd.d.ts.map +++ b/dist/native/string/padEnd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"padEnd.d.ts","sourceRoot":"","sources":["../../../src/native/string/padEnd.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"padEnd.d.ts","sourceRoot":"","sources":["../../../src/native/string/padEnd.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/string/padEnd.js b/dist/native/string/padEnd.js index d70e39b904..85cb2b4a64 100644 --- a/dist/native/string/padEnd.js +++ b/dist/native/string/padEnd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/padEnd.js.map b/dist/native/string/padEnd.js.map index 8dc44aa900..2fc7e3d47f 100644 --- a/dist/native/string/padEnd.js.map +++ b/dist/native/string/padEnd.js.map @@ -1 +1 @@ -{"version":3,"file":"padEnd.js","sourceRoot":"","sources":["../../../src/native/string/padEnd.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,IAAI,SAAS,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"padEnd.js","sourceRoot":"","sources":["../../../src/native/string/padEnd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,IAAI,SAAS,CAAC,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/padStart.d.ts.map b/dist/native/string/padStart.d.ts.map index 48c7ad50df..7509e22352 100644 --- a/dist/native/string/padStart.d.ts.map +++ b/dist/native/string/padStart.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"padStart.d.ts","sourceRoot":"","sources":["../../../src/native/string/padStart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file +{"version":3,"file":"padStart.d.ts","sourceRoot":"","sources":["../../../src/native/string/padStart.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAElE,wBAgCE"} \ No newline at end of file diff --git a/dist/native/string/padStart.js b/dist/native/string/padStart.js index e1e84e6ab1..222271c683 100644 --- a/dist/native/string/padStart.js +++ b/dist/native/string/padStart.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/padStart.js.map b/dist/native/string/padStart.js.map index 0252e4d698..ca660dfb02 100644 --- a/dist/native/string/padStart.js.map +++ b/dist/native/string/padStart.js.map @@ -1 +1 @@ -{"version":3,"file":"padStart.js","sourceRoot":"","sources":["../../../src/native/string/padStart.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,MAAM,IAAI,SAAS,CAAC,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"padStart.js","sourceRoot":"","sources":["../../../src/native/string/padStart.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,MAAM,IAAI,SAAS,CAAC,CAAC,CAAA;IAC/D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/randomString.d.ts.map b/dist/native/string/randomString.d.ts.map index b1ce6bae7d..e1863115c8 100644 --- a/dist/native/string/randomString.d.ts.map +++ b/dist/native/string/randomString.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomString.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomString.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,OAAO,eAAe,CAAA;AACnC,eAAO,MAAM,gBAAgB,+BAA+B,CAAA;AAC5D,eAAO,MAAM,gBAAgB,QAAiC,CAAA;AAE9D,eAAO,MAAM,SAAS,UAIrB,CAAA;;;;;;;;;;;;;;AAED,wBA2BE"} \ No newline at end of file +{"version":3,"file":"randomString.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomString.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,eAAO,MAAM,OAAO,eAAe,CAAA;AACnC,eAAO,MAAM,gBAAgB,+BAA+B,CAAA;AAC5D,eAAO,MAAM,gBAAgB,QAAiC,CAAA;AAE9D,eAAO,MAAM,SAAS,UAIrB,CAAA;;;;;;;;;;;;;;AAED,wBA2BE"} \ No newline at end of file diff --git a/dist/native/string/randomString.js b/dist/native/string/randomString.js index de3e0d52bb..63b9d38c78 100644 --- a/dist/native/string/randomString.js +++ b/dist/native/string/randomString.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.CharArray = exports.UppercaseLetters = exports.LowercaseLetters = exports.Numbers = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/string/randomString.js.map b/dist/native/string/randomString.js.map index 008d48410b..2c47ebed53 100644 --- a/dist/native/string/randomString.js.map +++ b/dist/native/string/randomString.js.map @@ -1 +1 @@ -{"version":3,"file":"randomString.js","sourceRoot":"","sources":["../../../src/native/string/randomString.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAErD,QAAA,OAAO,GAAG,YAAY,CAAA;AACtB,QAAA,gBAAgB,GAAG,4BAA4B,CAAA;AAC/C,QAAA,gBAAgB,GAAG,wBAAgB,CAAC,WAAW,EAAE,CAAA;AAEjD,QAAA,SAAS,GAAG;IACrB,GAAG,eAAO;IACV,GAAG,wBAAgB;IACnB,GAAG,wBAAgB;CACtB,CAAA;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,MAAM,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,iBAAS,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomString.js","sourceRoot":"","sources":["../../../src/native/string/randomString.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAErD,QAAA,OAAO,GAAG,YAAY,CAAA;AACtB,QAAA,gBAAgB,GAAG,4BAA4B,CAAA;AAC/C,QAAA,gBAAgB,GAAG,wBAAgB,CAAC,WAAW,EAAE,CAAA;AAEjD,QAAA,SAAS,GAAG;IACrB,GAAG,eAAO;IACV,GAAG,wBAAgB;IACnB,GAAG,wBAAgB;CACtB,CAAA;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,MAAM,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,iBAAS,CAAA;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IAChH,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/randomText.d.ts.map b/dist/native/string/randomText.d.ts.map index 8218621568..6a06c186c6 100644 --- a/dist/native/string/randomText.d.ts.map +++ b/dist/native/string/randomText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomText.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"randomText.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/string/randomText.js b/dist/native/string/randomText.js index c5460b88e9..a1e2b6c378 100644 --- a/dist/native/string/randomText.js +++ b/dist/native/string/randomText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/randomText.js.map b/dist/native/string/randomText.js.map index f4885f54f1..e8704a0623 100644 --- a/dist/native/string/randomText.js.map +++ b/dist/native/string/randomText.js.map @@ -1 +1 @@ -{"version":3,"file":"randomText.js","sourceRoot":"","sources":["../../../src/native/string/randomText.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,CAAA;QAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomText.js","sourceRoot":"","sources":["../../../src/native/string/randomText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC;QAChB,MAAM,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,CAAA;QAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/randomUUID.d.ts.map b/dist/native/string/randomUUID.d.ts.map index 3c494a04f3..e2f17a3347 100644 --- a/dist/native/string/randomUUID.d.ts.map +++ b/dist/native/string/randomUUID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomUUID.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomUUID.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"randomUUID.d.ts","sourceRoot":"","sources":["../../../src/native/string/randomUUID.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/string/randomUUID.js b/dist/native/string/randomUUID.js index 749ca5e14c..5a5579f23b 100644 --- a/dist/native/string/randomUUID.js +++ b/dist/native/string/randomUUID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const crypto_1 = require("crypto"); const structures_1 = require("../../structures"); diff --git a/dist/native/string/randomUUID.js.map b/dist/native/string/randomUUID.js.map index 6f986c86d1..433ae6ec0e 100644 --- a/dist/native/string/randomUUID.js.map +++ b/dist/native/string/randomUUID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomUUID.js","sourceRoot":"","sources":["../../../src/native/string/randomUUID.ts"],"names":[],"mappings":";;AAAA,mCAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,mBAAU,GAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomUUID.js","sourceRoot":"","sources":["../../../src/native/string/randomUUID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,mCAAmC;AACnC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,mBAAU,GAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/repeat.d.ts.map b/dist/native/string/repeat.d.ts.map index 32d60d0443..549bb1fc0a 100644 --- a/dist/native/string/repeat.d.ts.map +++ b/dist/native/string/repeat.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"repeat.d.ts","sourceRoot":"","sources":["../../../src/native/string/repeat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file +{"version":3,"file":"repeat.d.ts","sourceRoot":"","sources":["../../../src/native/string/repeat.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA2BE"} \ No newline at end of file diff --git a/dist/native/string/repeat.js b/dist/native/string/repeat.js index 59028d7d50..e2eb41f16e 100644 --- a/dist/native/string/repeat.js +++ b/dist/native/string/repeat.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/repeat.js.map b/dist/native/string/repeat.js.map index 5d96ecf110..fc26a6bbc2 100644 --- a/dist/native/string/repeat.js.map +++ b/dist/native/string/repeat.js.map @@ -1 +1 @@ -{"version":3,"file":"repeat.js","sourceRoot":"","sources":["../../../src/native/string/repeat.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"repeat.js","sourceRoot":"","sources":["../../../src/native/string/repeat.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,WAAW,EAAE,oCAAoC;SACpD;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA;IAC1C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/replace.d.ts.map b/dist/native/string/replace.d.ts.map index 0efad75c4f..df462638b9 100644 --- a/dist/native/string/replace.d.ts.map +++ b/dist/native/string/replace.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"replace.d.ts","sourceRoot":"","sources":["../../../src/native/string/replace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA+CE"} \ No newline at end of file +{"version":3,"file":"replace.d.ts","sourceRoot":"","sources":["../../../src/native/string/replace.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA+CE"} \ No newline at end of file diff --git a/dist/native/string/replace.js b/dist/native/string/replace.js index f5526a9fde..3384117669 100644 --- a/dist/native/string/replace.js +++ b/dist/native/string/replace.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/replace.js.map b/dist/native/string/replace.js.map index d956c59cae..448188e3ba 100644 --- a/dist/native/string/replace.js.map +++ b/dist/native/string/replace.js.map @@ -1 +1 @@ -{"version":3,"file":"replace.js","sourceRoot":"","sources":["../../../src/native/string/replace.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,CAAC;QAC3C,MAAM,KAAK,CAAC,CAAC,CAAA;QACb,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAA;SAC3D;QACD,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,MAAO,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"replace.js","sourceRoot":"","sources":["../../../src/native/string/replace.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,cAAc;KACjB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,CAAC;QAC3C,MAAM,KAAK,CAAC,CAAC,CAAA;QACb,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAA;SAC3D;QACD,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,MAAO,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC1F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/replaceRegex.d.ts.map b/dist/native/string/replaceRegex.d.ts.map index f9f164cc46..5a3b0f5549 100644 --- a/dist/native/string/replaceRegex.d.ts.map +++ b/dist/native/string/replaceRegex.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"replaceRegex.d.ts","sourceRoot":"","sources":["../../../src/native/string/replaceRegex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsDE"} \ No newline at end of file +{"version":3,"file":"replaceRegex.d.ts","sourceRoot":"","sources":["../../../src/native/string/replaceRegex.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBAsDE"} \ No newline at end of file diff --git a/dist/native/string/replaceRegex.js b/dist/native/string/replaceRegex.js index 5f8b2800d1..20ee7bf671 100644 --- a/dist/native/string/replaceRegex.js +++ b/dist/native/string/replaceRegex.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/replaceRegex.js.map b/dist/native/string/replaceRegex.js.map index e38ba07c88..a79ed1b3c3 100644 --- a/dist/native/string/replaceRegex.js.map +++ b/dist/native/string/replaceRegex.js.map @@ -1 +1 @@ -{"version":3,"file":"replaceRegex.js","sourceRoot":"","sources":["../../../src/native/string/replaceRegex.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,CAAC;QAChD,MAAM,KAAK,CAAC,CAAC,CAAA;QACb,MAAM,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAEpC,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAA;SACxD;QACD,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,MAAO,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"replaceRegex.js","sourceRoot":"","sources":["../../../src/native/string/replaceRegex.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4CAA4C;YACzD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,CAAC;QAChD,MAAM,KAAK,CAAC,CAAC,CAAA;QACb,MAAM,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAEpC,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;YACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC,CAAA;SACxD;QACD,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,MAAO,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/reverseText.d.ts.map b/dist/native/string/reverseText.d.ts.map index d98321c623..f4addff011 100644 --- a/dist/native/string/reverseText.d.ts.map +++ b/dist/native/string/reverseText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reverseText.d.ts","sourceRoot":"","sources":["../../../src/native/string/reverseText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAcE"} \ No newline at end of file +{"version":3,"file":"reverseText.d.ts","sourceRoot":"","sources":["../../../src/native/string/reverseText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE/D,wBAcE"} \ No newline at end of file diff --git a/dist/native/string/reverseText.js b/dist/native/string/reverseText.js index 74a668a4be..1c4d1c5302 100644 --- a/dist/native/string/reverseText.js +++ b/dist/native/string/reverseText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/reverseText.js.map b/dist/native/string/reverseText.js.map index 519695dbb8..bf53b20f03 100644 --- a/dist/native/string/reverseText.js.map +++ b/dist/native/string/reverseText.js.map @@ -1 +1 @@ -{"version":3,"file":"reverseText.js","sourceRoot":"","sources":["../../../src/native/string/reverseText.ts"],"names":[],"mappings":";;AAAA,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,gBAAG,CAAC,cAAc,EAAE;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reverseText.js","sourceRoot":"","sources":["../../../src/native/string/reverseText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+D;AAE/D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qBAAqB;IAClC,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,gBAAG,CAAC,cAAc,EAAE;KACvB;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/sliceText.d.ts.map b/dist/native/string/sliceText.d.ts.map index caee52a4a2..0fb4556ac1 100644 --- a/dist/native/string/sliceText.d.ts.map +++ b/dist/native/string/sliceText.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sliceText.d.ts","sourceRoot":"","sources":["../../../src/native/string/sliceText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAE1D,wBAiCE"} \ No newline at end of file +{"version":3,"file":"sliceText.d.ts","sourceRoot":"","sources":["../../../src/native/string/sliceText.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;AAE1D,wBAiCE"} \ No newline at end of file diff --git a/dist/native/string/sliceText.js b/dist/native/string/sliceText.js index 40290d7dc3..daf293c9ee 100644 --- a/dist/native/string/sliceText.js +++ b/dist/native/string/sliceText.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/sliceText.js.map b/dist/native/string/sliceText.js.map index 6762e62c66..e242039f6d 100644 --- a/dist/native/string/sliceText.js.map +++ b/dist/native/string/sliceText.js.map @@ -1 +1 @@ -{"version":3,"file":"sliceText.js","sourceRoot":"","sources":["../../../src/native/string/sliceText.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sliceText.js","sourceRoot":"","sources":["../../../src/native/string/sliceText.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAE;QAC7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,EAAE,GAAG,IAAI,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACvG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/snowflake.d.ts.map b/dist/native/string/snowflake.d.ts.map index d9369547d0..36e010b593 100644 --- a/dist/native/string/snowflake.d.ts.map +++ b/dist/native/string/snowflake.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"snowflake.d.ts","sourceRoot":"","sources":["../../../src/native/string/snowflake.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file +{"version":3,"file":"snowflake.d.ts","sourceRoot":"","sources":["../../../src/native/string/snowflake.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBASE"} \ No newline at end of file diff --git a/dist/native/string/snowflake.js b/dist/native/string/snowflake.js index 8ae7c3ea33..c5de601763 100644 --- a/dist/native/string/snowflake.js +++ b/dist/native/string/snowflake.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/string/snowflake.js.map b/dist/native/string/snowflake.js.map index f14297ac8a..4f3b77f04d 100644 --- a/dist/native/string/snowflake.js.map +++ b/dist/native/string/snowflake.js.map @@ -1 +1 @@ -{"version":3,"file":"snowflake.js","sourceRoot":"","sources":["../../../src/native/string/snowflake.ts"],"names":[],"mappings":";;AAAA,2CAA0C;AAC1C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"snowflake.js","sourceRoot":"","sources":["../../../src/native/string/snowflake.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA0C;AAC1C,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,0BAAa,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAA;IAC5D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/startsWith.d.ts.map b/dist/native/string/startsWith.d.ts.map index da49276d88..50d5e931c5 100644 --- a/dist/native/string/startsWith.d.ts.map +++ b/dist/native/string/startsWith.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"startsWith.d.ts","sourceRoot":"","sources":["../../../src/native/string/startsWith.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"startsWith.d.ts","sourceRoot":"","sources":["../../../src/native/string/startsWith.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/string/startsWith.js b/dist/native/string/startsWith.js index 78961d8dda..ab368542ba 100644 --- a/dist/native/string/startsWith.js +++ b/dist/native/string/startsWith.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/startsWith.js.map b/dist/native/string/startsWith.js.map index 4291f514d3..33d459f1a2 100644 --- a/dist/native/string/startsWith.js.map +++ b/dist/native/string/startsWith.js.map @@ -1 +1 @@ -{"version":3,"file":"startsWith.js","sourceRoot":"","sources":["../../../src/native/string/startsWith.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"startsWith.js","sourceRoot":"","sources":["../../../src/native/string/startsWith.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IACpE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toCamelCase.d.ts.map b/dist/native/string/toCamelCase.d.ts.map index 5727ec88cf..858933f8c6 100644 --- a/dist/native/string/toCamelCase.d.ts.map +++ b/dist/native/string/toCamelCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toCamelCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toCamelCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"toCamelCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toCamelCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/toCamelCase.js b/dist/native/string/toCamelCase.js index 61d8822e50..e6e09e0f4d 100644 --- a/dist/native/string/toCamelCase.js +++ b/dist/native/string/toCamelCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const lodash_1 = require("lodash"); diff --git a/dist/native/string/toCamelCase.js.map b/dist/native/string/toCamelCase.js.map index 74aaf1d994..594d149630 100644 --- a/dist/native/string/toCamelCase.js.map +++ b/dist/native/string/toCamelCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toCamelCase.js","sourceRoot":"","sources":["../../../src/native/string/toCamelCase.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toCamelCase.js","sourceRoot":"","sources":["../../../src/native/string/toCamelCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toKebabCase.d.ts.map b/dist/native/string/toKebabCase.d.ts.map index 15a4505425..53a61201e3 100644 --- a/dist/native/string/toKebabCase.d.ts.map +++ b/dist/native/string/toKebabCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toKebabCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toKebabCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"toKebabCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toKebabCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/toKebabCase.js b/dist/native/string/toKebabCase.js index 0495c93f02..1408ffc77b 100644 --- a/dist/native/string/toKebabCase.js +++ b/dist/native/string/toKebabCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const lodash_1 = require("lodash"); diff --git a/dist/native/string/toKebabCase.js.map b/dist/native/string/toKebabCase.js.map index c5e559709e..5845d8c20c 100644 --- a/dist/native/string/toKebabCase.js.map +++ b/dist/native/string/toKebabCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toKebabCase.js","sourceRoot":"","sources":["../../../src/native/string/toKebabCase.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toKebabCase.js","sourceRoot":"","sources":["../../../src/native/string/toKebabCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toLowerCase.d.ts.map b/dist/native/string/toLowerCase.d.ts.map index 1cf774a185..31a57fb03a 100644 --- a/dist/native/string/toLowerCase.d.ts.map +++ b/dist/native/string/toLowerCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toLowerCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toLowerCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"toLowerCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toLowerCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/toLowerCase.js b/dist/native/string/toLowerCase.js index 20694fa432..ceea4eeafe 100644 --- a/dist/native/string/toLowerCase.js +++ b/dist/native/string/toLowerCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/toLowerCase.js.map b/dist/native/string/toLowerCase.js.map index 792960a8f3..f9d9c6a57e 100644 --- a/dist/native/string/toLowerCase.js.map +++ b/dist/native/string/toLowerCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toLowerCase.js","sourceRoot":"","sources":["../../../src/native/string/toLowerCase.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toLowerCase.js","sourceRoot":"","sources":["../../../src/native/string/toLowerCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toSnakeCase.d.ts.map b/dist/native/string/toSnakeCase.d.ts.map index e8b8c5e0ed..404fdbe3fa 100644 --- a/dist/native/string/toSnakeCase.d.ts.map +++ b/dist/native/string/toSnakeCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toSnakeCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toSnakeCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"toSnakeCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toSnakeCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/toSnakeCase.js b/dist/native/string/toSnakeCase.js index 43955d722c..7e2583672b 100644 --- a/dist/native/string/toSnakeCase.js +++ b/dist/native/string/toSnakeCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const lodash_1 = require("lodash"); diff --git a/dist/native/string/toSnakeCase.js.map b/dist/native/string/toSnakeCase.js.map index 9eb79a5bf4..1706599532 100644 --- a/dist/native/string/toSnakeCase.js.map +++ b/dist/native/string/toSnakeCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toSnakeCase.js","sourceRoot":"","sources":["../../../src/native/string/toSnakeCase.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toSnakeCase.js","sourceRoot":"","sources":["../../../src/native/string/toSnakeCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,mCAAkC;AAElC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,kBAAS,EAAC,CAAC,CAAC,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toTitleCase.d.ts.map b/dist/native/string/toTitleCase.d.ts.map index 43ade84435..a70856954c 100644 --- a/dist/native/string/toTitleCase.d.ts.map +++ b/dist/native/string/toTitleCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toTitleCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toTitleCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"toTitleCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toTitleCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/string/toTitleCase.js b/dist/native/string/toTitleCase.js index 1ca80a97a9..67b4861166 100644 --- a/dist/native/string/toTitleCase.js +++ b/dist/native/string/toTitleCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/string/toTitleCase.js.map b/dist/native/string/toTitleCase.js.map index 88cd4eb7ca..ac107c0815 100644 --- a/dist/native/string/toTitleCase.js.map +++ b/dist/native/string/toTitleCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toTitleCase.js","sourceRoot":"","sources":["../../../src/native/string/toTitleCase.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,oDAA2B;AAE3B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CACf,CAAC;aACI,KAAK,CAAC,IAAI,CAAC;aACX,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,gBAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;aAChC,IAAI,CAAC,GAAG,CAAC,CACjB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toTitleCase.js","sourceRoot":"","sources":["../../../src/native/string/toTitleCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,oDAA2B;AAE3B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CACf,CAAC;aACI,KAAK,CAAC,IAAI,CAAC;aACX,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,gBAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;aAChC,IAAI,CAAC,GAAG,CAAC,CACjB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/toUpperCase.d.ts.map b/dist/native/string/toUpperCase.d.ts.map index 9193e0a61e..001e0dc7db 100644 --- a/dist/native/string/toUpperCase.d.ts.map +++ b/dist/native/string/toUpperCase.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"toUpperCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toUpperCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"toUpperCase.d.ts","sourceRoot":"","sources":["../../../src/native/string/toUpperCase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/toUpperCase.js b/dist/native/string/toUpperCase.js index 616d6e5deb..40cd72d834 100644 --- a/dist/native/string/toUpperCase.js +++ b/dist/native/string/toUpperCase.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/toUpperCase.js.map b/dist/native/string/toUpperCase.js.map index 5c983a7121..134fa16700 100644 --- a/dist/native/string/toUpperCase.js.map +++ b/dist/native/string/toUpperCase.js.map @@ -1 +1 @@ -{"version":3,"file":"toUpperCase.js","sourceRoot":"","sources":["../../../src/native/string/toUpperCase.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"toUpperCase.js","sourceRoot":"","sources":["../../../src/native/string/toUpperCase.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/trim.d.ts.map b/dist/native/string/trim.d.ts.map index f4e69bd95e..d4385f3781 100644 --- a/dist/native/string/trim.d.ts.map +++ b/dist/native/string/trim.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"trim.d.ts","sourceRoot":"","sources":["../../../src/native/string/trim.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"trim.d.ts","sourceRoot":"","sources":["../../../src/native/string/trim.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/string/trim.js b/dist/native/string/trim.js index 5e68a34359..799f60b2df 100644 --- a/dist/native/string/trim.js +++ b/dist/native/string/trim.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/trim.js.map b/dist/native/string/trim.js.map index cc8989da60..e9e581a068 100644 --- a/dist/native/string/trim.js.map +++ b/dist/native/string/trim.js.map @@ -1 +1 @@ -{"version":3,"file":"trim.js","sourceRoot":"","sources":["../../../src/native/string/trim.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"trim.js","sourceRoot":"","sources":["../../../src/native/string/trim.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,WAAW,EAAE,gBAAgB;IAC7B,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;IACjC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/trimEnd.d.ts.map b/dist/native/string/trimEnd.d.ts.map index d27657f386..69dc70b3d3 100644 --- a/dist/native/string/trimEnd.d.ts.map +++ b/dist/native/string/trimEnd.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"trimEnd.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimEnd.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"trimEnd.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimEnd.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/trimEnd.js b/dist/native/string/trimEnd.js index 0e1a99e8ba..61e0f23c29 100644 --- a/dist/native/string/trimEnd.js +++ b/dist/native/string/trimEnd.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/trimEnd.js.map b/dist/native/string/trimEnd.js.map index 477baa67fa..92d14dbb8c 100644 --- a/dist/native/string/trimEnd.js.map +++ b/dist/native/string/trimEnd.js.map @@ -1 +1 @@ -{"version":3,"file":"trimEnd.js","sourceRoot":"","sources":["../../../src/native/string/trimEnd.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"trimEnd.js","sourceRoot":"","sources":["../../../src/native/string/trimEnd.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/trimLines.d.ts.map b/dist/native/string/trimLines.d.ts.map index 7c435ebff6..5f6f8c825f 100644 --- a/dist/native/string/trimLines.d.ts.map +++ b/dist/native/string/trimLines.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"trimLines.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimLines.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"trimLines.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimLines.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/trimLines.js b/dist/native/string/trimLines.js index dc3dff1011..a354e22fc4 100644 --- a/dist/native/string/trimLines.js +++ b/dist/native/string/trimLines.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/trimLines.js.map b/dist/native/string/trimLines.js.map index 24ab564612..23cdbcd94e 100644 --- a/dist/native/string/trimLines.js.map +++ b/dist/native/string/trimLines.js.map @@ -1 +1 @@ -{"version":3,"file":"trimLines.js","sourceRoot":"","sources":["../../../src/native/string/trimLines.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"trimLines.js","sourceRoot":"","sources":["../../../src/native/string/trimLines.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/string/trimStart.d.ts.map b/dist/native/string/trimStart.d.ts.map index 524ab595b2..e838459c6f 100644 --- a/dist/native/string/trimStart.d.ts.map +++ b/dist/native/string/trimStart.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"trimStart.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimStart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"trimStart.d.ts","sourceRoot":"","sources":["../../../src/native/string/trimStart.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/string/trimStart.js b/dist/native/string/trimStart.js index 7a561f4b66..b352a25a94 100644 --- a/dist/native/string/trimStart.js +++ b/dist/native/string/trimStart.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/string/trimStart.js.map b/dist/native/string/trimStart.js.map index 466a59f2a9..c1b5f3394d 100644 --- a/dist/native/string/trimStart.js.map +++ b/dist/native/string/trimStart.js.map @@ -1 +1 @@ -{"version":3,"file":"trimStart.js","sourceRoot":"","sources":["../../../src/native/string/trimStart.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"trimStart.js","sourceRoot":"","sources":["../../../src/native/string/trimStart.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/cpu.d.ts.map b/dist/native/system/cpu.d.ts.map index fa37d23c6a..7745192eef 100644 --- a/dist/native/system/cpu.d.ts.map +++ b/dist/native/system/cpu.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cpu.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpu.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"cpu.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpu.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/system/cpu.js b/dist/native/system/cpu.js index b3ba19ea81..690c63427c 100644 --- a/dist/native/system/cpu.js +++ b/dist/native/system/cpu.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); /* eslint-disable no-undef */ const os_1 = require("os"); diff --git a/dist/native/system/cpu.js.map b/dist/native/system/cpu.js.map index b104c347cb..f52795e3c1 100644 --- a/dist/native/system/cpu.js.map +++ b/dist/native/system/cpu.js.map @@ -1 +1 @@ -{"version":3,"file":"cpu.js","sourceRoot":"","sources":["../../../src/native/system/cpu.ts"],"names":[],"mappings":";;AAAA,6BAA6B;AAC7B,2BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,YAAO,GAAE,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cpu.js","sourceRoot":"","sources":["../../../src/native/system/cpu.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6BAA6B;AAC7B,2BAAkC;AAClC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kDAAkD;IAC/D,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,YAAO,GAAE,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAA;IAC3C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/cpuArch.d.ts.map b/dist/native/system/cpuArch.d.ts.map index 3a76634a60..036856c835 100644 --- a/dist/native/system/cpuArch.d.ts.map +++ b/dist/native/system/cpuArch.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cpuArch.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuArch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"cpuArch.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuArch.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/cpuArch.js b/dist/native/system/cpuArch.js index e4c5275c86..7342125ced 100644 --- a/dist/native/system/cpuArch.js +++ b/dist/native/system/cpuArch.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/cpuArch.js.map b/dist/native/system/cpuArch.js.map index 62b3069d2f..58bf791b68 100644 --- a/dist/native/system/cpuArch.js.map +++ b/dist/native/system/cpuArch.js.map @@ -1 +1 @@ -{"version":3,"file":"cpuArch.js","sourceRoot":"","sources":["../../../src/native/system/cpuArch.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cpuArch.js","sourceRoot":"","sources":["../../../src/native/system/cpuArch.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/cpuCores.d.ts.map b/dist/native/system/cpuCores.d.ts.map index 98326b9d4d..ed8bff1ae6 100644 --- a/dist/native/system/cpuCores.d.ts.map +++ b/dist/native/system/cpuCores.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cpuCores.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuCores.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"cpuCores.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuCores.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/cpuCores.js b/dist/native/system/cpuCores.js index 1609726162..9c2657d40e 100644 --- a/dist/native/system/cpuCores.js +++ b/dist/native/system/cpuCores.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/cpuCores.js.map b/dist/native/system/cpuCores.js.map index 09743bbd68..b55ef208fd 100644 --- a/dist/native/system/cpuCores.js.map +++ b/dist/native/system/cpuCores.js.map @@ -1 +1 @@ -{"version":3,"file":"cpuCores.js","sourceRoot":"","sources":["../../../src/native/system/cpuCores.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cpuCores.js","sourceRoot":"","sources":["../../../src/native/system/cpuCores.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,KAAK;IACb,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/cpuModel.d.ts.map b/dist/native/system/cpuModel.d.ts.map index 25fbed882b..228b110e9c 100644 --- a/dist/native/system/cpuModel.d.ts.map +++ b/dist/native/system/cpuModel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cpuModel.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"cpuModel.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuModel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/cpuModel.js b/dist/native/system/cpuModel.js index 4d6e2bba44..cce684bea3 100644 --- a/dist/native/system/cpuModel.js +++ b/dist/native/system/cpuModel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/cpuModel.js.map b/dist/native/system/cpuModel.js.map index 4f1b95b8c3..8824b6131d 100644 --- a/dist/native/system/cpuModel.js.map +++ b/dist/native/system/cpuModel.js.map @@ -1 +1 @@ -{"version":3,"file":"cpuModel.js","sourceRoot":"","sources":["../../../src/native/system/cpuModel.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cpuModel.js","sourceRoot":"","sources":["../../../src/native/system/cpuModel.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/cpuSpeed.d.ts.map b/dist/native/system/cpuSpeed.d.ts.map index d90cd85a37..1ab46e2045 100644 --- a/dist/native/system/cpuSpeed.d.ts.map +++ b/dist/native/system/cpuSpeed.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"cpuSpeed.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuSpeed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"cpuSpeed.d.ts","sourceRoot":"","sources":["../../../src/native/system/cpuSpeed.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/cpuSpeed.js b/dist/native/system/cpuSpeed.js index 6c6e3a5033..73815477e4 100644 --- a/dist/native/system/cpuSpeed.js +++ b/dist/native/system/cpuSpeed.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/cpuSpeed.js.map b/dist/native/system/cpuSpeed.js.map index e6ba15fc6d..a2ba31d4fa 100644 --- a/dist/native/system/cpuSpeed.js.map +++ b/dist/native/system/cpuSpeed.js.map @@ -1 +1 @@ -{"version":3,"file":"cpuSpeed.js","sourceRoot":"","sources":["../../../src/native/system/cpuSpeed.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"cpuSpeed.js","sourceRoot":"","sources":["../../../src/native/system/cpuSpeed.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/networkCardIPs.d.ts.map b/dist/native/system/networkCardIPs.d.ts.map index cdd882d48a..bc5f6a8f43 100644 --- a/dist/native/system/networkCardIPs.d.ts.map +++ b/dist/native/system/networkCardIPs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"networkCardIPs.d.ts","sourceRoot":"","sources":["../../../src/native/system/networkCardIPs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"networkCardIPs.d.ts","sourceRoot":"","sources":["../../../src/native/system/networkCardIPs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/system/networkCardIPs.js b/dist/native/system/networkCardIPs.js index ef5331d607..701d7b8e03 100644 --- a/dist/native/system/networkCardIPs.js +++ b/dist/native/system/networkCardIPs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/networkCardIPs.js.map b/dist/native/system/networkCardIPs.js.map index 8efec37133..ba7b16acb7 100644 --- a/dist/native/system/networkCardIPs.js.map +++ b/dist/native/system/networkCardIPs.js.map @@ -1 +1 @@ -{"version":3,"file":"networkCardIPs.js","sourceRoot":"","sources":["../../../src/native/system/networkCardIPs.ts"],"names":[],"mappings":";;;;;AAAA,2BAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAA,sBAAiB,GAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"networkCardIPs.js","sourceRoot":"","sources":["../../../src/native/system/networkCardIPs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2BAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAA,sBAAiB,GAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChJ,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/networkCardNames.d.ts.map b/dist/native/system/networkCardNames.d.ts.map index ffa3420a4e..7e3c25673e 100644 --- a/dist/native/system/networkCardNames.d.ts.map +++ b/dist/native/system/networkCardNames.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"networkCardNames.d.ts","sourceRoot":"","sources":["../../../src/native/system/networkCardNames.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"networkCardNames.d.ts","sourceRoot":"","sources":["../../../src/native/system/networkCardNames.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAGlE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/system/networkCardNames.js b/dist/native/system/networkCardNames.js index 8bb3221f34..8715dd2211 100644 --- a/dist/native/system/networkCardNames.js +++ b/dist/native/system/networkCardNames.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/networkCardNames.js.map b/dist/native/system/networkCardNames.js.map index 8c18405211..ae92b92618 100644 --- a/dist/native/system/networkCardNames.js.map +++ b/dist/native/system/networkCardNames.js.map @@ -1 +1 @@ -{"version":3,"file":"networkCardNames.js","sourceRoot":"","sources":["../../../src/native/system/networkCardNames.ts"],"names":[],"mappings":";;;;;AAAA,2BAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,IAAA,sBAAiB,GAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"networkCardNames.js","sourceRoot":"","sources":["../../../src/native/system/networkCardNames.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2BAAsC;AACtC,iDAAkE;AAClE,kEAAyC;AAEzC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,GAAkB;IAC/B,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,IAAA,sBAAiB,GAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC3E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/nodeVersion.d.ts.map b/dist/native/system/nodeVersion.d.ts.map index d91a302af3..ce0c07eabb 100644 --- a/dist/native/system/nodeVersion.d.ts.map +++ b/dist/native/system/nodeVersion.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"nodeVersion.d.ts","sourceRoot":"","sources":["../../../src/native/system/nodeVersion.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file +{"version":3,"file":"nodeVersion.d.ts","sourceRoot":"","sources":["../../../src/native/system/nodeVersion.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAUE"} \ No newline at end of file diff --git a/dist/native/system/nodeVersion.js b/dist/native/system/nodeVersion.js index 6fa347bf26..9c238f9404 100644 --- a/dist/native/system/nodeVersion.js +++ b/dist/native/system/nodeVersion.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/system/nodeVersion.js.map b/dist/native/system/nodeVersion.js.map index ebff558885..ecf3056b6e 100644 --- a/dist/native/system/nodeVersion.js.map +++ b/dist/native/system/nodeVersion.js.map @@ -1 +1 @@ -{"version":3,"file":"nodeVersion.js","sourceRoot":"","sources":["../../../src/native/system/nodeVersion.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,oCAAoC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"nodeVersion.js","sourceRoot":"","sources":["../../../src/native/system/nodeVersion.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,oCAAoC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;IACxC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/os.d.ts.map b/dist/native/system/os.d.ts.map index d418339cf7..c488eb8f85 100644 --- a/dist/native/system/os.d.ts.map +++ b/dist/native/system/os.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"os.d.ts","sourceRoot":"","sources":["../../../src/native/system/os.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"os.d.ts","sourceRoot":"","sources":["../../../src/native/system/os.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/os.js b/dist/native/system/os.js index f5f7741791..a1b9ab0534 100644 --- a/dist/native/system/os.js +++ b/dist/native/system/os.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/os.js.map b/dist/native/system/os.js.map index f97a61b294..98a3f48700 100644 --- a/dist/native/system/os.js.map +++ b/dist/native/system/os.js.map @@ -1 +1 @@ -{"version":3,"file":"os.js","sourceRoot":"","sources":["../../../src/native/system/os.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,QAAQ,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"os.js","sourceRoot":"","sources":["../../../src/native/system/os.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,QAAQ,EAAE,CAAC,CAAA;IACtC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/osUptime.d.ts.map b/dist/native/system/osUptime.d.ts.map index 9d892d3239..e0e2f1f037 100644 --- a/dist/native/system/osUptime.d.ts.map +++ b/dist/native/system/osUptime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"osUptime.d.ts","sourceRoot":"","sources":["../../../src/native/system/osUptime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file +{"version":3,"file":"osUptime.d.ts","sourceRoot":"","sources":["../../../src/native/system/osUptime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBASE"} \ No newline at end of file diff --git a/dist/native/system/osUptime.js b/dist/native/system/osUptime.js index 96e93cc092..686fe721b9 100644 --- a/dist/native/system/osUptime.js +++ b/dist/native/system/osUptime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/osUptime.js.map b/dist/native/system/osUptime.js.map index 784ec73f82..67ccd9bd3e 100644 --- a/dist/native/system/osUptime.js.map +++ b/dist/native/system/osUptime.js.map @@ -1 +1 @@ -{"version":3,"file":"osUptime.js","sourceRoot":"","sources":["../../../src/native/system/osUptime.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,MAAM,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"osUptime.js","sourceRoot":"","sources":["../../../src/native/system/osUptime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,MAAM,EAAE,CAAC,CAAA;IACpC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/ram.d.ts.map b/dist/native/system/ram.d.ts.map index db1a479753..17dbd6f17b 100644 --- a/dist/native/system/ram.d.ts.map +++ b/dist/native/system/ram.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ram.d.ts","sourceRoot":"","sources":["../../../src/native/system/ram.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file +{"version":3,"file":"ram.d.ts","sourceRoot":"","sources":["../../../src/native/system/ram.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBAaE"} \ No newline at end of file diff --git a/dist/native/system/ram.js b/dist/native/system/ram.js index 811b443860..e2cfed7e5d 100644 --- a/dist/native/system/ram.js +++ b/dist/native/system/ram.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); /* eslint-disable no-undef */ const structures_1 = require("../../structures"); diff --git a/dist/native/system/ram.js.map b/dist/native/system/ram.js.map index 3071cb3fd1..ca691e90dc 100644 --- a/dist/native/system/ram.js.map +++ b/dist/native/system/ram.js.map @@ -1 +1 @@ -{"version":3,"file":"ram.js","sourceRoot":"","sources":["../../../src/native/system/ram.ts"],"names":[],"mappings":";;AAAA,6BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,OAAO,EAAE;QACL,SAAS;QACT,WAAW;KACd;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC,QAAQ,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ram.js","sourceRoot":"","sources":["../../../src/native/system/ram.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,OAAO,EAAE;QACL,SAAS;QACT,WAAW;KACd;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC,QAAQ,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IACrE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/system/ramTotal.d.ts.map b/dist/native/system/ramTotal.d.ts.map index 703430b5fb..11cdf73c16 100644 --- a/dist/native/system/ramTotal.d.ts.map +++ b/dist/native/system/ramTotal.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ramTotal.d.ts","sourceRoot":"","sources":["../../../src/native/system/ramTotal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBAaE"} \ No newline at end of file +{"version":3,"file":"ramTotal.d.ts","sourceRoot":"","sources":["../../../src/native/system/ramTotal.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAGlE,wBAaE"} \ No newline at end of file diff --git a/dist/native/system/ramTotal.js b/dist/native/system/ramTotal.js index 14a6f2a63a..55b361fc8d 100644 --- a/dist/native/system/ramTotal.js +++ b/dist/native/system/ramTotal.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/system/ramTotal.js.map b/dist/native/system/ramTotal.js.map index a41e538f80..b4ea3727aa 100644 --- a/dist/native/system/ramTotal.js.map +++ b/dist/native/system/ramTotal.js.map @@ -1 +1 @@ -{"version":3,"file":"ramTotal.js","sourceRoot":"","sources":["../../../src/native/system/ramTotal.ts"],"names":[],"mappings":";;;;;AAAA,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,cAAc;QACd,SAAS;KACZ;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,QAAQ,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ramTotal.js","sourceRoot":"","sources":["../../../src/native/system/ramTotal.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,iDAAkE;AAClE,sDAAwB;AAExB,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4DAA4D;IACzE,OAAO,EAAE;QACL,cAAc;QACd,SAAS;KACZ;IACD,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,iBAAE,CAAC,QAAQ,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAA;IACpD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/calendarDay.d.ts.map b/dist/native/time/calendarDay.d.ts.map index 3c079c17b7..fc61b07350 100644 --- a/dist/native/time/calendarDay.d.ts.map +++ b/dist/native/time/calendarDay.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"calendarDay.d.ts","sourceRoot":"","sources":["../../../src/native/time/calendarDay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AASlE,wBASE"} \ No newline at end of file +{"version":3,"file":"calendarDay.d.ts","sourceRoot":"","sources":["../../../src/native/time/calendarDay.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AASlE,wBASE"} \ No newline at end of file diff --git a/dist/native/time/calendarDay.js b/dist/native/time/calendarDay.js index 214307bde1..1e3bf4fdd1 100644 --- a/dist/native/time/calendarDay.js +++ b/dist/native/time/calendarDay.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); function getDayOfYear(date) { diff --git a/dist/native/time/calendarDay.js.map b/dist/native/time/calendarDay.js.map index b5dffac11d..7eb894e83f 100644 --- a/dist/native/time/calendarDay.js.map +++ b/dist/native/time/calendarDay.js.map @@ -1 +1 @@ -{"version":3,"file":"calendarDay.js","sourceRoot":"","sources":["../../../src/native/time/calendarDay.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,SAAS,YAAY,CAAC,IAAU;IAC5B,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAChD,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,EAAE,GAAG,KAAK,CAAC,OAAO,EAAE,CAAA;IAC7C,MAAM,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;IAC9B,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AACpC,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"calendarDay.js","sourceRoot":"","sources":["../../../src/native/time/calendarDay.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,SAAS,YAAY,CAAC,IAAU;IAC5B,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAChD,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,EAAE,GAAG,KAAK,CAAC,OAAO,EAAE,CAAA;IAC7C,MAAM,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;IAC9B,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AACpC,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACvI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/calendarWeek.d.ts.map b/dist/native/time/calendarWeek.d.ts.map index 899ba03bc6..f46a1bb28d 100644 --- a/dist/native/time/calendarWeek.d.ts.map +++ b/dist/native/time/calendarWeek.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"calendarWeek.d.ts","sourceRoot":"","sources":["../../../src/native/time/calendarWeek.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAQlE,wBASE"} \ No newline at end of file +{"version":3,"file":"calendarWeek.d.ts","sourceRoot":"","sources":["../../../src/native/time/calendarWeek.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAQlE,wBASE"} \ No newline at end of file diff --git a/dist/native/time/calendarWeek.js b/dist/native/time/calendarWeek.js index b7a96b47da..313b8ee60b 100644 --- a/dist/native/time/calendarWeek.js +++ b/dist/native/time/calendarWeek.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); function getWeekOfYear(date) { diff --git a/dist/native/time/calendarWeek.js.map b/dist/native/time/calendarWeek.js.map index bce32b3a2b..e2263675fe 100644 --- a/dist/native/time/calendarWeek.js.map +++ b/dist/native/time/calendarWeek.js.map @@ -1 +1 @@ -{"version":3,"file":"calendarWeek.js","sourceRoot":"","sources":["../../../src/native/time/calendarWeek.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,SAAS,aAAa,CAAC,IAAU;IAC7B,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAChD,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAA;IAC1D,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;AACrD,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"calendarWeek.js","sourceRoot":"","sources":["../../../src/native/time/calendarWeek.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,SAAS,aAAa,CAAC,IAAU;IAC7B,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAChD,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAA;IAC1D,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;AACrD,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACxI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/clearInterval.d.ts.map b/dist/native/time/clearInterval.d.ts.map index 00816ea172..9459b62c05 100644 --- a/dist/native/time/clearInterval.d.ts.map +++ b/dist/native/time/clearInterval.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clearInterval.d.ts","sourceRoot":"","sources":["../../../src/native/time/clearInterval.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEvE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"clearInterval.d.ts","sourceRoot":"","sources":["../../../src/native/time/clearInterval.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEvE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/time/clearInterval.js b/dist/native/time/clearInterval.js index 0685239dfa..7a4aa85d1a 100644 --- a/dist/native/time/clearInterval.js +++ b/dist/native/time/clearInterval.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/clearInterval.js.map b/dist/native/time/clearInterval.js.map index 534385d8e9..b8a1996ad8 100644 --- a/dist/native/time/clearInterval.js.map +++ b/dist/native/time/clearInterval.js.map @@ -1 +1 @@ -{"version":3,"file":"clearInterval.js","sourceRoot":"","sources":["../../../src/native/time/clearInterval.ts"],"names":[],"mappings":";;AAAA,iDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC/C,aAAa,CAAC,QAAQ,CAAC,CAAA;QACvB,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clearInterval.js","sourceRoot":"","sources":["../../../src/native/time/clearInterval.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAuE;AAEvE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yCAAyC;IACtD,OAAO,EAAE,CAAC,eAAe,CAAC;IAC1B,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC/C,aAAa,CAAC,QAAQ,CAAC,CAAA;QACvB,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/clearTimeout.d.ts.map b/dist/native/time/clearTimeout.d.ts.map index 7d87cb2702..3cfc99a286 100644 --- a/dist/native/time/clearTimeout.d.ts.map +++ b/dist/native/time/clearTimeout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"clearTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/time/clearTimeout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"clearTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/time/clearTimeout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/time/clearTimeout.js b/dist/native/time/clearTimeout.js index 084af16438..cfe48353a6 100644 --- a/dist/native/time/clearTimeout.js +++ b/dist/native/time/clearTimeout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/clearTimeout.js.map b/dist/native/time/clearTimeout.js.map index 0935f1887e..30f9523fff 100644 --- a/dist/native/time/clearTimeout.js.map +++ b/dist/native/time/clearTimeout.js.map @@ -1 +1 @@ -{"version":3,"file":"clearTimeout.js","sourceRoot":"","sources":["../../../src/native/time/clearTimeout.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,OAAO,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7C,YAAY,CAAC,OAAO,CAAC,CAAA;QACrB,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"clearTimeout.js","sourceRoot":"","sources":["../../../src/native/time/clearTimeout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,OAAO,EAAE,CAAC,cAAc,CAAC;IACzB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,OAAO,GAAG,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7C,YAAY,CAAC,OAAO,CAAC,CAAA;QACrB,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/day.d.ts.map b/dist/native/time/day.d.ts.map index e8c2abf6e1..597a181b2c 100644 --- a/dist/native/time/day.d.ts.map +++ b/dist/native/time/day.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"day.d.ts","sourceRoot":"","sources":["../../../src/native/time/day.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAoBE"} \ No newline at end of file +{"version":3,"file":"day.d.ts","sourceRoot":"","sources":["../../../src/native/time/day.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAoBE"} \ No newline at end of file diff --git a/dist/native/time/day.js b/dist/native/time/day.js index d195909f95..4e08ba9bce 100644 --- a/dist/native/time/day.js +++ b/dist/native/time/day.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const hour_1 = require("./hour"); diff --git a/dist/native/time/day.js.map b/dist/native/time/day.js.map index fb32186b34..475d24dcce 100644 --- a/dist/native/time/day.js.map +++ b/dist/native/time/day.js.map @@ -1 +1 @@ -{"version":3,"file":"day.js","sourceRoot":"","sources":["../../../src/native/time/day.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,GAAG,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"day.js","sourceRoot":"","sources":["../../../src/native/time/day.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,OAAO,EAAE,CAAC,aAAa,CAAC;IACxB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,GAAG,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/discordTimestamp.d.ts b/dist/native/time/discordTimestamp.d.ts index f5252c357d..4eca3ef134 100644 --- a/dist/native/time/discordTimestamp.d.ts +++ b/dist/native/time/discordTimestamp.d.ts @@ -11,11 +11,16 @@ declare const _default: NativeFunction<[{ required: true; enum: { readonly ShortTime: "t"; + readonly MediumTime: "T"; readonly LongTime: "T"; readonly ShortDate: "d"; readonly LongDate: "D"; + readonly LongDateShortTime: "f"; readonly ShortDateTime: "f"; + readonly FullDateShortTime: "F"; readonly LongDateTime: "F"; + readonly ShortDateShortTime: "s"; + readonly ShortDateMediumTime: "S"; readonly RelativeTime: "R"; }; type: ArgType.Enum; diff --git a/dist/native/time/discordTimestamp.d.ts.map b/dist/native/time/discordTimestamp.d.ts.map index e53a071eaa..df1ae7f400 100644 --- a/dist/native/time/discordTimestamp.d.ts.map +++ b/dist/native/time/discordTimestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"discordTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/time/discordTimestamp.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file +{"version":3,"file":"discordTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/time/discordTimestamp.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,wBA2BE"} \ No newline at end of file diff --git a/dist/native/time/discordTimestamp.js b/dist/native/time/discordTimestamp.js index 102934e62c..f5c3decff8 100644 --- a/dist/native/time/discordTimestamp.js +++ b/dist/native/time/discordTimestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/discordTimestamp.js.map b/dist/native/time/discordTimestamp.js.map index cc3bd846c4..76318e29bc 100644 --- a/dist/native/time/discordTimestamp.js.map +++ b/dist/native/time/discordTimestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"discordTimestamp.js","sourceRoot":"","sources":["../../../src/native/time/discordTimestamp.ts"],"names":[],"mappings":";;AAAA,2CAAkD;AAClD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,4BAAe;YACrB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,qBAAqB;SACrC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,KAAK,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAI,EAAC,IAAI,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"discordTimestamp.js","sourceRoot":"","sources":["../../../src/native/time/discordTimestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAkD;AAClD,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,4BAAe;YACrB,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,WAAW,EAAE,qBAAqB;SACrC;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,KAAK,CAAE;QACtB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,iBAAI,EAAC,IAAI,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,CAAA;IAClD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/executionTime.d.ts.map b/dist/native/time/executionTime.d.ts.map index 7019dece38..1eb316c516 100644 --- a/dist/native/time/executionTime.d.ts.map +++ b/dist/native/time/executionTime.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"executionTime.d.ts","sourceRoot":"","sources":["../../../src/native/time/executionTime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"executionTime.d.ts","sourceRoot":"","sources":["../../../src/native/time/executionTime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/time/executionTime.js b/dist/native/time/executionTime.js index 399fb02bfc..ccaf0fbe50 100644 --- a/dist/native/time/executionTime.js +++ b/dist/native/time/executionTime.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/executionTime.js.map b/dist/native/time/executionTime.js.map index 5b8bf4d00f..21b2b745aa 100644 --- a/dist/native/time/executionTime.js.map +++ b/dist/native/time/executionTime.js.map @@ -1 +1 @@ -{"version":3,"file":"executionTime.js","sourceRoot":"","sources":["../../../src/native/time/executionTime.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,CAAC,kBAAkB,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"executionTime.js","sourceRoot":"","sources":["../../../src/native/time/executionTime.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,CAAC,kBAAkB,CAAC,CAAA;IACnE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/getTimestamp.d.ts.map b/dist/native/time/getTimestamp.d.ts.map index 2930992adf..4a995ea7c1 100644 --- a/dist/native/time/getTimestamp.d.ts.map +++ b/dist/native/time/getTimestamp.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"getTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/time/getTimestamp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"getTimestamp.d.ts","sourceRoot":"","sources":["../../../src/native/time/getTimestamp.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/time/getTimestamp.js b/dist/native/time/getTimestamp.js index aef4399968..110b32af37 100644 --- a/dist/native/time/getTimestamp.js +++ b/dist/native/time/getTimestamp.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/getTimestamp.js.map b/dist/native/time/getTimestamp.js.map index e012bf6540..2dfbfd8748 100644 --- a/dist/native/time/getTimestamp.js.map +++ b/dist/native/time/getTimestamp.js.map @@ -1 +1 @@ -{"version":3,"file":"getTimestamp.js","sourceRoot":"","sources":["../../../src/native/time/getTimestamp.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"getTimestamp.js","sourceRoot":"","sources":["../../../src/native/time/getTimestamp.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4BAA4B;IACzC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAA;IACnC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/hour.d.ts.map b/dist/native/time/hour.d.ts.map index 07158a3ed7..514dc8c199 100644 --- a/dist/native/time/hour.d.ts.map +++ b/dist/native/time/hour.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"hour.d.ts","sourceRoot":"","sources":["../../../src/native/time/hour.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,eAAe;IACvB,OAAO,YAAY;IACnB,QAAQ,YAAY;CACvB;;;;;;;;AAED,wBAqBE"} \ No newline at end of file +{"version":3,"file":"hour.d.ts","sourceRoot":"","sources":["../../../src/native/time/hour.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,eAAe;IACvB,OAAO,YAAY;IACnB,QAAQ,YAAY;CACvB;;;;;;;;AAED,wBAqBE"} \ No newline at end of file diff --git a/dist/native/time/hour.js b/dist/native/time/hour.js index 8cfee1a513..6809244792 100644 --- a/dist/native/time/hour.js +++ b/dist/native/time/hour.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BasicTimeFormat = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/time/hour.js.map b/dist/native/time/hour.js.map index 71f0ba7f08..bd6c1acd20 100644 --- a/dist/native/time/hour.js.map +++ b/dist/native/time/hour.js.map @@ -1 +1 @@ -{"version":3,"file":"hour.js","sourceRoot":"","sources":["../../../src/native/time/hour.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,sCAAmB,CAAA;IACnB,uCAAoB,CAAA;AACxB,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,eAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,eAAe,CAAC,OAAO,CAAA;QAClC,MAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QAChI,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"hour.js","sourceRoot":"","sources":["../../../src/native/time/hour.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,sCAAmB,CAAA;IACnB,uCAAoB,CAAA;AACxB,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,eAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,eAAe,CAAC,OAAO,CAAA;QAClC,MAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QAChI,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAClG,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/minute.d.ts.map b/dist/native/time/minute.d.ts.map index 5892677b68..1c4bbe0d79 100644 --- a/dist/native/time/minute.d.ts.map +++ b/dist/native/time/minute.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"minute.d.ts","sourceRoot":"","sources":["../../../src/native/time/minute.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"minute.d.ts","sourceRoot":"","sources":["../../../src/native/time/minute.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/time/minute.js b/dist/native/time/minute.js index 4103e95c99..90694942dd 100644 --- a/dist/native/time/minute.js +++ b/dist/native/time/minute.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const hour_1 = require("./hour"); diff --git a/dist/native/time/minute.js.map b/dist/native/time/minute.js.map index 8a87c78767..c2634312cc 100644 --- a/dist/native/time/minute.js.map +++ b/dist/native/time/minute.js.map @@ -1 +1 @@ -{"version":3,"file":"minute.js","sourceRoot":"","sources":["../../../src/native/time/minute.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,sBAAe,CAAC,OAAO,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QACrH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,sBAAe,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"minute.js","sourceRoot":"","sources":["../../../src/native/time/minute.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,sBAAe,CAAC,OAAO,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QACrH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,sBAAe,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/month.d.ts.map b/dist/native/time/month.d.ts.map index a62697227f..f73dc72f60 100644 --- a/dist/native/time/month.d.ts.map +++ b/dist/native/time/month.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"month.d.ts","sourceRoot":"","sources":["../../../src/native/time/month.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,kBAAkB;IAC1B,OAAO,YAAY;IACnB,QAAQ,YAAY;IACpB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,MAAM,WAAW;CACpB;;;;;;;;AAED,wBAmBE"} \ No newline at end of file +{"version":3,"file":"month.d.ts","sourceRoot":"","sources":["../../../src/native/time/month.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,kBAAkB;IAC1B,OAAO,YAAY;IACnB,QAAQ,YAAY;IACpB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,MAAM,WAAW;CACpB;;;;;;;;AAED,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/month.js b/dist/native/time/month.js index cf9b97acee..a0d08bd78c 100644 --- a/dist/native/time/month.js +++ b/dist/native/time/month.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ExtendedTimeFormat = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/time/month.js.map b/dist/native/time/month.js.map index db670402d4..ec72f604b4 100644 --- a/dist/native/time/month.js.map +++ b/dist/native/time/month.js.map @@ -1 +1 @@ -{"version":3,"file":"month.js","sourceRoot":"","sources":["../../../src/native/time/month.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,kBAMX;AAND,WAAY,kBAAkB;IAC1B,yCAAmB,CAAA;IACnB,0CAAoB,CAAA;IACpB,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,uCAAiB,CAAA;AACrB,CAAC,EANW,kBAAkB,kCAAlB,kBAAkB,QAM7B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,kBAAkB;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"month.js","sourceRoot":"","sources":["../../../src/native/time/month.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,kBAMX;AAND,WAAY,kBAAkB;IAC1B,yCAAmB,CAAA;IACnB,0CAAoB,CAAA;IACpB,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,uCAAiB,CAAA;AACrB,CAAC,EANW,kBAAkB,kCAAlB,kBAAkB,QAM7B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,kBAAkB;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC3I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/parseDate.d.ts.map b/dist/native/time/parseDate.d.ts.map index 097bc48110..b41d8c955f 100644 --- a/dist/native/time/parseDate.d.ts.map +++ b/dist/native/time/parseDate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseDate.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseDate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,QAAQ;IAChB,UAAU,IAAA;IACV,UAAU,IAAA;IACV,MAAM,IAAA;IACN,IAAI,IAAA;IACJ,GAAG,IAAA;IACH,GAAG,IAAA;IACH,IAAI,IAAA;CACP;;;;;;;;;;;;;;;AAED,wBA6CE"} \ No newline at end of file +{"version":3,"file":"parseDate.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseDate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAElE,oBAAY,QAAQ;IAChB,UAAU,IAAA;IACV,UAAU,IAAA;IACV,MAAM,IAAA;IACN,IAAI,IAAA;IACJ,GAAG,IAAA;IACH,GAAG,IAAA;IACH,IAAI,IAAA;CACP;;;;;;;;;;;;;;;AAED,wBA6CE"} \ No newline at end of file diff --git a/dist/native/time/parseDate.js b/dist/native/time/parseDate.js index 9de02b1a6a..c253801a1a 100644 --- a/dist/native/time/parseDate.js +++ b/dist/native/time/parseDate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.DateType = void 0; const structures_1 = require("../../structures"); diff --git a/dist/native/time/parseDate.js.map b/dist/native/time/parseDate.js.map index ba39bf332c..b4f70aab9b 100644 --- a/dist/native/time/parseDate.js.map +++ b/dist/native/time/parseDate.js.map @@ -1 +1 @@ -{"version":3,"file":"parseDate.js","sourceRoot":"","sources":["../../../src/native/time/parseDate.ts"],"names":[],"mappings":";;;AAAA,iDAAkE;AAElE,IAAY,QAQX;AARD,WAAY,QAAQ;IAChB,mDAAU,CAAA;IACV,mDAAU,CAAA;IACV,2CAAM,CAAA;IACN,uCAAI,CAAA;IACJ,qCAAG,CAAA;IACH,qCAAG,CAAA;IACH,uCAAI,CAAA;AACR,CAAC,EARW,QAAQ,wBAAR,QAAQ,QAQnB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC;QACnB,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,CAAA;QAEzB,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,QAAQ,CAAC,IAAI;YAClB,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE;YACrB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,GAAG;gBACnB,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE;gBACpB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,MAAM;oBACtB,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;oBAClF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,UAAU;wBAC1B,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;wBACtF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,UAAU;4BAC1B,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;4BACtF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,IAAI;gCACpB,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE;gCACrB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,GAAG;oCACnB,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE;oCACpB,CAAC,CAAE,IAAc,CAChD,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"parseDate.js","sourceRoot":"","sources":["../../../src/native/time/parseDate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAEF,iDAAkE;AAElE,IAAY,QAQX;AARD,WAAY,QAAQ;IAChB,mDAAU,CAAA;IACV,mDAAU,CAAA;IACV,2CAAM,CAAA;IACN,uCAAI,CAAA;IACJ,qCAAG,CAAA;IACH,qCAAG,CAAA;IACH,uCAAI,CAAA;AACR,CAAC,EARW,QAAQ,wBAAR,QAAQ,QAQnB;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC;QACnB,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,CAAA;QAEzB,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,KAAK,QAAQ,CAAC,IAAI;YAClB,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE;YACrB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,GAAG;gBACnB,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE;gBACpB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,MAAM;oBACtB,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;oBAClF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,UAAU;wBAC1B,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;wBACtF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,UAAU;4BAC1B,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;4BACtF,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,IAAI;gCACpB,CAAC,CAAC,IAAI,CAAC,YAAY,EAAE;gCACrB,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,GAAG;oCACnB,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE;oCACpB,CAAC,CAAE,IAAc,CAChD,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/parseDigital.d.ts.map b/dist/native/time/parseDigital.d.ts.map index 7b1693d589..075318e0eb 100644 --- a/dist/native/time/parseDigital.d.ts.map +++ b/dist/native/time/parseDigital.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseDigital.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseDigital.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"parseDigital.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseDigital.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/parseDigital.js b/dist/native/time/parseDigital.js index c99d3f3319..fc880f8304 100644 --- a/dist/native/time/parseDigital.js +++ b/dist/native/time/parseDigital.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const digital_1 = require("../../functions/digital"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/parseDigital.js.map b/dist/native/time/parseDigital.js.map index 21721da4a9..9294520a90 100644 --- a/dist/native/time/parseDigital.js.map +++ b/dist/native/time/parseDigital.js.map @@ -1 +1 @@ -{"version":3,"file":"parseDigital.js","sourceRoot":"","sources":["../../../src/native/time/parseDigital.ts"],"names":[],"mappings":";;AAAA,qDAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,sBAAY,EAAC,EAAE,CAAC,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"parseDigital.js","sourceRoot":"","sources":["../../../src/native/time/parseDigital.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qDAAsD;AACtD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,sBAAY,EAAC,EAAE,CAAC,CAAC,CAAA;IACzC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/parseMS.d.ts.map b/dist/native/time/parseMS.d.ts.map index b642a43d2c..e79a68121b 100644 --- a/dist/native/time/parseMS.d.ts.map +++ b/dist/native/time/parseMS.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseMS.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseMS.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2CE"} \ No newline at end of file +{"version":3,"file":"parseMS.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseMS.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;AAElE,wBA2CE"} \ No newline at end of file diff --git a/dist/native/time/parseMS.js b/dist/native/time/parseMS.js index 35de0be2bc..07b1a1e398 100644 --- a/dist/native/time/parseMS.js +++ b/dist/native/time/parseMS.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const constants_1 = require("../../constants"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/parseMS.js.map b/dist/native/time/parseMS.js.map index 348b5e854c..42ea51c737 100644 --- a/dist/native/time/parseMS.js.map +++ b/dist/native/time/parseMS.js.map @@ -1 +1 @@ -{"version":3,"file":"parseMS.js","sourceRoot":"","sources":["../../../src/native/time/parseMS.ts"],"names":[],"mappings":";;AAAA,+CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CACf,sBAAU,CAAC,aAAa,CAAC,EAAE,EAAE;YACzB,GAAG,EAAE,GAAG,IAAI,KAAK;YACjB,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,SAAS,EAAE,GAAG,IAAI,GAAG;SACxB,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"parseMS.js","sourceRoot":"","sources":["../../../src/native/time/parseMS.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC;QAC9B,OAAO,IAAI,CAAC,OAAO,CACf,sBAAU,CAAC,aAAa,CAAC,EAAE,EAAE;YACzB,GAAG,EAAE,GAAG,IAAI,KAAK;YACjB,KAAK,EAAE,KAAK,IAAI,SAAS;YACzB,SAAS,EAAE,GAAG,IAAI,GAAG;SACxB,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/parseString.d.ts.map b/dist/native/time/parseString.d.ts.map index c79f898c2d..6d4bf27420 100644 --- a/dist/native/time/parseString.d.ts.map +++ b/dist/native/time/parseString.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"parseString.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseString.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file +{"version":3,"file":"parseString.d.ts","sourceRoot":"","sources":["../../../src/native/time/parseString.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAuBE"} \ No newline at end of file diff --git a/dist/native/time/parseString.js b/dist/native/time/parseString.js index 4b2ec56c4c..9eada80f75 100644 --- a/dist/native/time/parseString.js +++ b/dist/native/time/parseString.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const constants_1 = require("../../constants"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/parseString.js.map b/dist/native/time/parseString.js.map index 42c496cdfd..7b844e51e5 100644 --- a/dist/native/time/parseString.js.map +++ b/dist/native/time/parseString.js.map @@ -1 +1 @@ -{"version":3,"file":"parseString.js","sourceRoot":"","sources":["../../../src/native/time/parseString.ts"],"names":[],"mappings":";;AAAA,+CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,IAAI;YACA,OAAO,IAAI,CAAC,OAAO,CAAC,sBAAU,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAA;SACjD;QAAC,OAAO,KAAK,EAAE;YACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;SACzB;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"parseString.js","sourceRoot":"","sources":["../../../src/native/time/parseString.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,IAAI;YACA,OAAO,IAAI,CAAC,OAAO,CAAC,sBAAU,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAA;SACjD;QAAC,OAAO,KAAK,EAAE;YACZ,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;SACzB;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/second.d.ts.map b/dist/native/time/second.d.ts.map index e28773f220..4150218825 100644 --- a/dist/native/time/second.d.ts.map +++ b/dist/native/time/second.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"second.d.ts","sourceRoot":"","sources":["../../../src/native/time/second.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAqBE"} \ No newline at end of file +{"version":3,"file":"second.d.ts","sourceRoot":"","sources":["../../../src/native/time/second.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAqBE"} \ No newline at end of file diff --git a/dist/native/time/second.js b/dist/native/time/second.js index 2fff9974bd..c0331d39f6 100644 --- a/dist/native/time/second.js +++ b/dist/native/time/second.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const hour_1 = require("./hour"); diff --git a/dist/native/time/second.js.map b/dist/native/time/second.js.map index a49bc30cad..b037c9b00f 100644 --- a/dist/native/time/second.js.map +++ b/dist/native/time/second.js.map @@ -1 +1 @@ -{"version":3,"file":"second.js","sourceRoot":"","sources":["../../../src/native/time/second.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,sBAAe,CAAC,OAAO,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QACrH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,sBAAe,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"second.js","sourceRoot":"","sources":["../../../src/native/time/second.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,KAAK,sBAAe,CAAC,OAAO,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAA;QACrH,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,sBAAe,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAC/F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/setCalendar.d.ts.map b/dist/native/time/setCalendar.d.ts.map index fcd4a7eca3..16b689609a 100644 --- a/dist/native/time/setCalendar.d.ts.map +++ b/dist/native/time/setCalendar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setCalendar.d.ts","sourceRoot":"","sources":["../../../src/native/time/setCalendar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAA;AAC/C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAqBE"} \ No newline at end of file +{"version":3,"file":"setCalendar.d.ts","sourceRoot":"","sources":["../../../src/native/time/setCalendar.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAA;AAC/C,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;AAElE,wBAsBE"} \ No newline at end of file diff --git a/dist/native/time/setCalendar.js b/dist/native/time/setCalendar.js index 4fb9602aaf..78708f018d 100644 --- a/dist/native/time/setCalendar.js +++ b/dist/native/time/setCalendar.js @@ -1,14 +1,19 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const structures_2 = require("../../structures"); exports.default = new structures_2.NativeFunction({ name: "$setCalendar", version: "1.5.0", - aliases: ["$calendar"], description: "Sets the calendar for time functions", + aliases: ["$calendar"], unwrap: true, brackets: true, + experimental: true, args: [ { name: "type", diff --git a/dist/native/time/setCalendar.js.map b/dist/native/time/setCalendar.js.map index 48ea9b06ab..97110a3798 100644 --- a/dist/native/time/setCalendar.js.map +++ b/dist/native/time/setCalendar.js.map @@ -1 +1 @@ -{"version":3,"file":"setCalendar.js","sourceRoot":"","sources":["../../../src/native/time/setCalendar.ts"],"names":[],"mappings":";;AAAA,iDAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,QAAQ,GAAG,IAAI,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setCalendar.js","sourceRoot":"","sources":["../../../src/native/time/setCalendar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA+C;AAC/C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAY;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,GAAG,CAAC,QAAQ,GAAG,IAAI,CAAA;QACnB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/setInterval.d.ts.map b/dist/native/time/setInterval.d.ts.map index 2f9dd72015..895eaec691 100644 --- a/dist/native/time/setInterval.d.ts.map +++ b/dist/native/time/setInterval.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setInterval.d.ts","sourceRoot":"","sources":["../../../src/native/time/setInterval.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElG,wBA6CE"} \ No newline at end of file +{"version":3,"file":"setInterval.d.ts","sourceRoot":"","sources":["../../../src/native/time/setInterval.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElG,wBA6CE"} \ No newline at end of file diff --git a/dist/native/time/setInterval.js b/dist/native/time/setInterval.js index 25ab5aa557..88fddf6b6c 100644 --- a/dist/native/time/setInterval.js +++ b/dist/native/time/setInterval.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/setInterval.js.map b/dist/native/time/setInterval.js.map index 93e58a0310..dd38e8b2f0 100644 --- a/dist/native/time/setInterval.js.map +++ b/dist/native/time/setInterval.js.map @@ -1 +1 @@ -{"version":3,"file":"setInterval.js","sourceRoot":"","sources":["../../../src/native/time/setInterval.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC,CAAA;QACvC,MAAM,IAAI,GAAG,WAAW,CAAC,KAAK,IAAI,EAAE;YAChC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;QACtC,CAAC,EAAE,IAAI,CAAC,KAAe,CAAC,CAAA;QAExB,IAAI,IAAI,CAAC,KAAK;YAAE,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,KAAe,EAAE,IAAI,CAAC,CAAA;QAEpE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setInterval.js","sourceRoot":"","sources":["../../../src/native/time/setInterval.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mDAAmD;IAChE,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC,CAAA;QACvC,MAAM,IAAI,GAAG,WAAW,CAAC,KAAK,IAAI,EAAE;YAChC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;QACtC,CAAC,EAAE,IAAI,CAAC,KAAe,CAAC,CAAA;QAExB,IAAI,IAAI,CAAC,KAAK;YAAE,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,KAAe,EAAE,IAAI,CAAC,CAAA;QAEpE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/setTimeout.d.ts.map b/dist/native/time/setTimeout.d.ts.map index 97de844aa8..620ca1d615 100644 --- a/dist/native/time/setTimeout.d.ts.map +++ b/dist/native/time/setTimeout.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/time/setTimeout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElG,wBA8CE"} \ No newline at end of file +{"version":3,"file":"setTimeout.d.ts","sourceRoot":"","sources":["../../../src/native/time/setTimeout.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElG,wBA8CE"} \ No newline at end of file diff --git a/dist/native/time/setTimeout.js b/dist/native/time/setTimeout.js index cc82894c5c..1979f76db8 100644 --- a/dist/native/time/setTimeout.js +++ b/dist/native/time/setTimeout.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/setTimeout.js.map b/dist/native/time/setTimeout.js.map index 1b15e4b104..8994bfa51f 100644 --- a/dist/native/time/setTimeout.js.map +++ b/dist/native/time/setTimeout.js.map @@ -1 +1 @@ -{"version":3,"file":"setTimeout.js","sourceRoot":"","sources":["../../../src/native/time/setTimeout.ts"],"names":[],"mappings":";;AAAA,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC,CAAA;QACvC,MAAM,IAAI,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;YAC/B,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;YAClC,IAAI,IAAI,CAAC,KAAK;gBAAE,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACpE,CAAC,EAAE,IAAI,CAAC,KAAe,CAAC,CAAA;QAExB,IAAI,IAAI,CAAC,KAAK;YAAE,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,KAAe,EAAE,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setTimeout.js","sourceRoot":"","sources":["../../../src/native/time/setTimeout.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkG;AAElG,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,IAAI,GAAW,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC;YAAE,OAAO,IAAI,CAAA;QAEjD,MAAM,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC,CAAA;QACvC,MAAM,IAAI,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;YAC/B,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;YAClC,IAAI,IAAI,CAAC,KAAK;gBAAE,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,KAAe,CAAC,CAAA;QACpE,CAAC,EAAE,IAAI,CAAC,KAAe,CAAC,CAAA;QAExB,IAAI,IAAI,CAAC,KAAK;YAAE,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,KAAe,EAAE,IAAI,CAAC,CAAA;QAEnE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/setTimezone.d.ts.map b/dist/native/time/setTimezone.d.ts.map index 1c01db952e..0fae1045d1 100644 --- a/dist/native/time/setTimezone.d.ts.map +++ b/dist/native/time/setTimezone.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"setTimezone.d.ts","sourceRoot":"","sources":["../../../src/native/time/setTimezone.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"setTimezone.d.ts","sourceRoot":"","sources":["../../../src/native/time/setTimezone.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file diff --git a/dist/native/time/setTimezone.js b/dist/native/time/setTimezone.js index 22ca45b745..94d9438318 100644 --- a/dist/native/time/setTimezone.js +++ b/dist/native/time/setTimezone.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/setTimezone.js.map b/dist/native/time/setTimezone.js.map index ca0c77118e..3f255a30a2 100644 --- a/dist/native/time/setTimezone.js.map +++ b/dist/native/time/setTimezone.js.map @@ -1 +1 @@ -{"version":3,"file":"setTimezone.js","sourceRoot":"","sources":["../../../src/native/time/setTimezone.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,GAAG,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACvB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"setTimezone.js","sourceRoot":"","sources":["../../../src/native/time/setTimezone.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,WAAW,EAAE,sCAAsC;IACnD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;QACzB,GAAG,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACvB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/unparseDate.d.ts.map b/dist/native/time/unparseDate.d.ts.map index 7f38a61b8e..facffab77d 100644 --- a/dist/native/time/unparseDate.d.ts.map +++ b/dist/native/time/unparseDate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unparseDate.d.ts","sourceRoot":"","sources":["../../../src/native/time/unparseDate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"unparseDate.d.ts","sourceRoot":"","sources":["../../../src/native/time/unparseDate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/unparseDate.js b/dist/native/time/unparseDate.js index f4450774ca..fc3dcbedbf 100644 --- a/dist/native/time/unparseDate.js +++ b/dist/native/time/unparseDate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/time/unparseDate.js.map b/dist/native/time/unparseDate.js.map index 64e1dd9c86..7c3e86a0ba 100644 --- a/dist/native/time/unparseDate.js.map +++ b/dist/native/time/unparseDate.js.map @@ -1 +1 @@ -{"version":3,"file":"unparseDate.js","sourceRoot":"","sources":["../../../src/native/time/unparseDate.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unparseDate.js","sourceRoot":"","sources":["../../../src/native/time/unparseDate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/unparseDigital.d.ts.map b/dist/native/time/unparseDigital.d.ts.map index 5a3b9a4a61..9cfd19cd0e 100644 --- a/dist/native/time/unparseDigital.d.ts.map +++ b/dist/native/time/unparseDigital.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"unparseDigital.d.ts","sourceRoot":"","sources":["../../../src/native/time/unparseDigital.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"unparseDigital.d.ts","sourceRoot":"","sources":["../../../src/native/time/unparseDigital.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/unparseDigital.js b/dist/native/time/unparseDigital.js index 7e66dad909..cec4a658c3 100644 --- a/dist/native/time/unparseDigital.js +++ b/dist/native/time/unparseDigital.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const digital_1 = require("../../functions/digital"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/unparseDigital.js.map b/dist/native/time/unparseDigital.js.map index 8bede6a65f..4f16f3e6d1 100644 --- a/dist/native/time/unparseDigital.js.map +++ b/dist/native/time/unparseDigital.js.map @@ -1 +1 @@ -{"version":3,"file":"unparseDigital.js","sourceRoot":"","sources":["../../../src/native/time/unparseDigital.ts"],"names":[],"mappings":";;AAAA,qDAAwD;AACxD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"unparseDigital.js","sourceRoot":"","sources":["../../../src/native/time/unparseDigital.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qDAAwD;AACxD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,OAAO,CAAE;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAA,wBAAc,EAAC,OAAO,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/wait.d.ts.map b/dist/native/time/wait.d.ts.map index 349b505d4e..93d955700d 100644 --- a/dist/native/time/wait.d.ts.map +++ b/dist/native/time/wait.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"wait.d.ts","sourceRoot":"","sources":["../../../src/native/time/wait.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"wait.d.ts","sourceRoot":"","sources":["../../../src/native/time/wait.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/wait.js b/dist/native/time/wait.js index afd0a6d410..9e39e8ceb4 100644 --- a/dist/native/time/wait.js +++ b/dist/native/time/wait.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const promises_1 = require("timers/promises"); const structures_1 = require("../../structures"); diff --git a/dist/native/time/wait.js.map b/dist/native/time/wait.js.map index 6d8ada0338..8b6b21a9c7 100644 --- a/dist/native/time/wait.js.map +++ b/dist/native/time/wait.js.map @@ -1 +1 @@ -{"version":3,"file":"wait.js","sourceRoot":"","sources":["../../../src/native/time/wait.ts"],"names":[],"mappings":";;AAAA,8CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,IAAA,qBAAU,EAAC,EAAE,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"wait.js","sourceRoot":"","sources":["../../../src/native/time/wait.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0CAA0C;IACvD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,IAAA,qBAAU,EAAC,EAAE,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/week.d.ts.map b/dist/native/time/week.d.ts.map index 4bcb70b5f2..b01c347704 100644 --- a/dist/native/time/week.d.ts.map +++ b/dist/native/time/week.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"week.d.ts","sourceRoot":"","sources":["../../../src/native/time/week.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAOlE,wBASE"} \ No newline at end of file +{"version":3,"file":"week.d.ts","sourceRoot":"","sources":["../../../src/native/time/week.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAOlE,wBASE"} \ No newline at end of file diff --git a/dist/native/time/week.js b/dist/native/time/week.js index cf791dfac5..f534380bf9 100644 --- a/dist/native/time/week.js +++ b/dist/native/time/week.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); function getWeekOfMonth(date) { diff --git a/dist/native/time/week.js.map b/dist/native/time/week.js.map index 36104762dc..0561efb0da 100644 --- a/dist/native/time/week.js.map +++ b/dist/native/time/week.js.map @@ -1 +1 @@ -{"version":3,"file":"week.js","sourceRoot":"","sources":["../../../src/native/time/week.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,SAAS,cAAc,CAAC,IAAU;IAC9B,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,EAAE,CAAA;IAC1B,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;AACpC,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"week.js","sourceRoot":"","sources":["../../../src/native/time/week.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,SAAS,cAAc,CAAC,IAAU;IAC9B,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,EAAE,CAAA;IAC1B,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;AACpC,CAAC;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IACzI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/weekday.d.ts.map b/dist/native/time/weekday.d.ts.map index 57a9953661..7972378bec 100644 --- a/dist/native/time/weekday.d.ts.map +++ b/dist/native/time/weekday.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"weekday.d.ts","sourceRoot":"","sources":["../../../src/native/time/weekday.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;;;;;;;;AAE5C,wBAwBE"} \ No newline at end of file +{"version":3,"file":"weekday.d.ts","sourceRoot":"","sources":["../../../src/native/time/weekday.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;;;;;;;;AAE5C,wBAwBE"} \ No newline at end of file diff --git a/dist/native/time/weekday.js b/dist/native/time/weekday.js index 35a96cfb45..939546c2c4 100644 --- a/dist/native/time/weekday.js +++ b/dist/native/time/weekday.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const month_1 = require("./month"); diff --git a/dist/native/time/weekday.js.map b/dist/native/time/weekday.js.map index 9959db0ece..a30b27a062 100644 --- a/dist/native/time/weekday.js.map +++ b/dist/native/time/weekday.js.map @@ -1 +1 @@ -{"version":3,"file":"weekday.js","sourceRoot":"","sources":["../../../src/native/time/weekday.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,mCAA4C;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAkB;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,OAAO,GAA+B,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAA;QAC9F,IAAI,MAAM,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,SAAS;YAAE,OAAO,CAAC,OAAO,GAAG,MAAM,CAAA;QAEpF,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"weekday.js","sourceRoot":"","sources":["../../../src/native/time/weekday.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,mCAA4C;AAE5C,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,0BAAkB;SAC3B;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,MAAM,OAAO,GAA+B,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAA;QAC9F,IAAI,MAAM,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,SAAS;YAAE,OAAO,CAAC,OAAO,GAAG,MAAM,CAAA;QAEpF,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/time/year.d.ts.map b/dist/native/time/year.d.ts.map index 83a392850f..c3b84fff34 100644 --- a/dist/native/time/year.d.ts.map +++ b/dist/native/time/year.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"year.d.ts","sourceRoot":"","sources":["../../../src/native/time/year.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAmBE"} \ No newline at end of file +{"version":3,"file":"year.d.ts","sourceRoot":"","sources":["../../../src/native/time/year.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAA;;;;;;;;AAExC,wBAmBE"} \ No newline at end of file diff --git a/dist/native/time/year.js b/dist/native/time/year.js index f31cd95a79..bbb03ee99c 100644 --- a/dist/native/time/year.js +++ b/dist/native/time/year.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const hour_1 = require("./hour"); diff --git a/dist/native/time/year.js.map b/dist/native/time/year.js.map index 214807e817..e0482906d3 100644 --- a/dist/native/time/year.js.map +++ b/dist/native/time/year.js.map @@ -1 +1 @@ -{"version":3,"file":"year.js","sourceRoot":"","sources":["../../../src/native/time/year.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC1I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"year.js","sourceRoot":"","sources":["../../../src/native/time/year.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAClE,iCAAwC;AAExC,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,sBAAe;SACxB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,EAAE,KAAK,WAAU,GAAG,EAAE,CAAC,MAAM,CAAC;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,IAAI,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;IAC1I,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/api.d.ts.map b/dist/native/unsafe/api.d.ts.map index 8a47471b94..e1c60cca2a 100644 --- a/dist/native/unsafe/api.d.ts.map +++ b/dist/native/unsafe/api.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/api.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAG1D,wBA2CE"} \ No newline at end of file +{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/api.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;AAG1D,wBA2CE"} \ No newline at end of file diff --git a/dist/native/unsafe/api.js b/dist/native/unsafe/api.js index 39a4128bf3..0b44a69e72 100644 --- a/dist/native/unsafe/api.js +++ b/dist/native/unsafe/api.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/unsafe/api.js.map b/dist/native/unsafe/api.js.map index 9943bc89a7..1c7a47c08f 100644 --- a/dist/native/unsafe/api.js.map +++ b/dist/native/unsafe/api.js.map @@ -1 +1 @@ -{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/native/unsafe/api.ts"],"names":[],"mappings":";;;;;AAAA,2CAAmC;AACnC,iDAA0D;AAC1D,0EAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,aAAa;KAChB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAE;QACvC,mBAAM,CAAC,IAAI,EAAE,CAAA;QACb,MAAM,OAAO,GAAG,mBAAM,CAAC,IAA2B,CAAC,CAAA;QACnD,aAAa;QACb,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,CAAA;QACxD,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QAEvC,OAAO,IAAI,CAAC,gBAAgB,CACxB,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,EAAY,CAAC,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAC5H,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/native/unsafe/api.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAmC;AACnC,iDAA0D;AAC1D,0EAAiD;AAEjD,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAC3E,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE;QACL,aAAa;KAChB;IACD,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;SACd;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAE;QACvC,mBAAM,CAAC,IAAI,EAAE,CAAA;QACb,MAAM,OAAO,GAAG,mBAAM,CAAC,IAA2B,CAAC,CAAA;QACnD,aAAa;QACb,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,CAAA;QACxD,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QAEvC,OAAO,IAAI,CAAC,gBAAgB,CACxB,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,EAAY,CAAC,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAC5H,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/coroutine.d.ts.map b/dist/native/unsafe/coroutine.d.ts.map index 7c4681641e..ba44dfea88 100644 --- a/dist/native/unsafe/coroutine.d.ts.map +++ b/dist/native/unsafe/coroutine.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"coroutine.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/coroutine.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"coroutine.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/coroutine.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/unsafe/coroutine.js b/dist/native/unsafe/coroutine.js index 15e60faa2d..0de8ac568f 100644 --- a/dist/native/unsafe/coroutine.js +++ b/dist/native/unsafe/coroutine.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); /* eslint-disable no-undef */ const structures_1 = require("../../structures"); diff --git a/dist/native/unsafe/coroutine.js.map b/dist/native/unsafe/coroutine.js.map index 9b63a3a768..a990825814 100644 --- a/dist/native/unsafe/coroutine.js.map +++ b/dist/native/unsafe/coroutine.js.map @@ -1 +1 @@ -{"version":3,"file":"coroutine.js","sourceRoot":"","sources":["../../../src/native/unsafe/coroutine.ts"],"names":[],"mappings":";;AAAA,6BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC;YAC3B,IAAI;SACP,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"coroutine.js","sourceRoot":"","sources":["../../../src/native/unsafe/coroutine.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,6BAA6B;AAC7B,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sCAAsC;IACnD,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAE,CAAA;QAClC,OAAO,IAAI,CAAC,OAAO,CACf,MAAM,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC;YAC3B,IAAI;SACP,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/djsEval.d.ts.map b/dist/native/unsafe/djsEval.d.ts.map index 229dfc7686..7922ee8c7c 100644 --- a/dist/native/unsafe/djsEval.d.ts.map +++ b/dist/native/unsafe/djsEval.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"djsEval.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/djsEval.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBA2BE"} \ No newline at end of file +{"version":3,"file":"djsEval.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/djsEval.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBA2BE"} \ No newline at end of file diff --git a/dist/native/unsafe/djsEval.js b/dist/native/unsafe/djsEval.js index aec42b0b67..283f0983ba 100644 --- a/dist/native/unsafe/djsEval.js +++ b/dist/native/unsafe/djsEval.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const util_1 = require("util"); const ForgeError_1 = require("../../structures/forge/ForgeError"); diff --git a/dist/native/unsafe/djsEval.js.map b/dist/native/unsafe/djsEval.js.map index 74a39fcf50..de08f66266 100644 --- a/dist/native/unsafe/djsEval.js.map +++ b/dist/native/unsafe/djsEval.js.map @@ -1 +1 @@ -{"version":3,"file":"djsEval.js","sourceRoot":"","sources":["../../../src/native/unsafe/djsEval.ts"],"names":[],"mappings":";;AAAA,+BAA8B;AAC9B,kEAA6D;AAC7D,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,MAAM,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC1B,IAAI;YACA,IAAI,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,CAAA;YAC7B,IAAI,OAAO,MAAM,KAAK,QAAQ;gBAAE,MAAM,GAAG,IAAA,cAAO,EAAC,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAA;YACtE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;SAC9B;QAAC,OAAO,KAAc,EAAE;YACrB,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,MAAM,EAAG,KAAe,CAAC,OAAO,CAAC,CAAA;SAChE;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"djsEval.js","sourceRoot":"","sources":["../../../src/native/unsafe/djsEval.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,+BAA8B;AAC9B,kEAA6D;AAC7D,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,MAAM,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QAC1B,IAAI;YACA,IAAI,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,CAAA;YAC7B,IAAI,OAAO,MAAM,KAAK,QAAQ;gBAAE,MAAM,GAAG,IAAA,cAAO,EAAC,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAA;YACtE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;SAC9B;QAAC,OAAO,KAAc,EAAE;YACrB,OAAO,IAAI,CAAC,KAAK,CAAC,sBAAS,CAAC,MAAM,EAAG,KAAe,CAAC,OAAO,CAAC,CAAA;SAChE;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/eval.d.ts.map b/dist/native/unsafe/eval.d.ts.map index e9f4138c2b..cb89e4fc9a 100644 --- a/dist/native/unsafe/eval.d.ts.map +++ b/dist/native/unsafe/eval.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/eval.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,OAAO,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file +{"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/eval.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,OAAO,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBAqCE"} \ No newline at end of file diff --git a/dist/native/unsafe/eval.js b/dist/native/unsafe/eval.js index 5ddb122369..83783a2d7a 100644 --- a/dist/native/unsafe/eval.js +++ b/dist/native/unsafe/eval.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../../core"); const structures_1 = require("../../structures"); diff --git a/dist/native/unsafe/eval.js.map b/dist/native/unsafe/eval.js.map index 264dc34106..022b5c2e35 100644 --- a/dist/native/unsafe/eval.js.map +++ b/dist/native/unsafe/eval.js.map @@ -1 +1 @@ -{"version":3,"file":"eval.js","sourceRoot":"","sources":["../../../src/native/unsafe/eval.ts"],"names":[],"mappings":";;AAAA,qCAAkD;AAClD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;SAChD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,IAAI,KAAK,IAAI,CAAA;QACb,IAAI;YACA,MAAM,MAAM,GAAG,MAAM,kBAAW,CAAC,GAAG,CAAC;gBACjC,GAAG,GAAG,CAAC,YAAY,EAAE;gBACrB,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC;gBAC5B,SAAS,EAAE,CAAC,IAAI;aACnB,CAAC,CAAA;YAEF,OAAO,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;SACjF;QAAC,OAAO,KAAU,EAAE;YACjB,mBAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;YACnB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SAC3B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"eval.js","sourceRoot":"","sources":["../../../src/native/unsafe/eval.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAkD;AAClD,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,kBAAkB;SAClC;QACD;YACI,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;SAChD;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QAC3B,IAAI,KAAK,IAAI,CAAA;QACb,IAAI;YACA,MAAM,MAAM,GAAG,MAAM,kBAAW,CAAC,GAAG,CAAC;gBACjC,GAAG,GAAG,CAAC,YAAY,EAAE;gBACrB,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC;gBAC5B,SAAS,EAAE,CAAC,IAAI;aACnB,CAAC,CAAA;YAEF,OAAO,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;SACjF;QAAC,OAAO,KAAU,EAAE;YACjB,mBAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;YACnB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SAC3B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/exec.d.ts.map b/dist/native/unsafe/exec.d.ts.map index 5e0b5c7866..b5e0b105a2 100644 --- a/dist/native/unsafe/exec.d.ts.map +++ b/dist/native/unsafe/exec.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"exec.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/exec.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file +{"version":3,"file":"exec.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/exec.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAwBE"} \ No newline at end of file diff --git a/dist/native/unsafe/exec.js b/dist/native/unsafe/exec.js index 4ccf2e6365..51394e8b98 100644 --- a/dist/native/unsafe/exec.js +++ b/dist/native/unsafe/exec.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const child_process_1 = require("child_process"); const structures_1 = require("../../structures"); diff --git a/dist/native/unsafe/exec.js.map b/dist/native/unsafe/exec.js.map index 25dee973a5..76581f603a 100644 --- a/dist/native/unsafe/exec.js.map +++ b/dist/native/unsafe/exec.js.map @@ -1 +1 @@ -{"version":3,"file":"exec.js","sourceRoot":"","sources":["../../../src/native/unsafe/exec.ts"],"names":[],"mappings":";;AAAA,iDAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,IAAI;YACA,MAAM,IAAI,GAAG,MAAM,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC,CAAA;YAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAU,EAAE;YACjB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SAC3B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"exec.js","sourceRoot":"","sources":["../../../src/native/unsafe/exec.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;QACxB,IAAI;YACA,MAAM,IAAI,GAAG,MAAM,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC,CAAA;YAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAU,EAAE;YACjB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SAC3B;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/function.d.ts.map b/dist/native/unsafe/function.d.ts.map index 12382ad7c5..2f5635c637 100644 --- a/dist/native/unsafe/function.d.ts.map +++ b/dist/native/unsafe/function.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"function.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/function.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"function.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/function.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/native/unsafe/function.js b/dist/native/unsafe/function.js index 8329bbed3a..802cc9241e 100644 --- a/dist/native/unsafe/function.js +++ b/dist/native/unsafe/function.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/unsafe/function.js.map b/dist/native/unsafe/function.js.map index 57ec543062..733a0fc381 100644 --- a/dist/native/unsafe/function.js.map +++ b/dist/native/unsafe/function.js.map @@ -1 +1 @@ -{"version":3,"file":"function.js","sourceRoot":"","sources":["../../../src/native/unsafe/function.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,CAAA;QACzC,IAAI,EAAE,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;aACvC,IAAI,EAAE,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC1C,OAAO,EAAE,CAAA;IACb,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"function.js","sourceRoot":"","sources":["../../../src/native/unsafe/function.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,iBAAiB;YAC9B,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,EAAE,KAAK,WAAW,GAAG;QACxB,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,CAAA;QACzC,IAAI,EAAE,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;aACvC,IAAI,EAAE,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;QAC1C,OAAO,EAAE,CAAA;IACb,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/gc.d.ts.map b/dist/native/unsafe/gc.d.ts.map index 509b28e9dc..2bdc4865d1 100644 --- a/dist/native/unsafe/gc.d.ts.map +++ b/dist/native/unsafe/gc.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"gc.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/gc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBAcE"} \ No newline at end of file +{"version":3,"file":"gc.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/gc.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBAcE"} \ No newline at end of file diff --git a/dist/native/unsafe/gc.js b/dist/native/unsafe/gc.js index ee58cc6745..78c8cb7b01 100644 --- a/dist/native/unsafe/gc.js +++ b/dist/native/unsafe/gc.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const process_1 = require("process"); const structures_1 = require("../../structures"); diff --git a/dist/native/unsafe/gc.js.map b/dist/native/unsafe/gc.js.map index 05a50284f8..25b2433442 100644 --- a/dist/native/unsafe/gc.js.map +++ b/dist/native/unsafe/gc.js.map @@ -1 +1 @@ -{"version":3,"file":"gc.js","sourceRoot":"","sources":["../../../src/native/unsafe/gc.ts"],"names":[],"mappings":";;AAAA,qCAAkC;AAClC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4FAA4F;IACzG,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,kBAAQ,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC;YAC9B,oCAAoC;YACpC,CAAC,EAAG,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;YACf,KAAK,CACZ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"gc.js","sourceRoot":"","sources":["../../../src/native/unsafe/gc.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,qCAAkC;AAClC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4FAA4F;IACzG,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CACf,kBAAQ,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC;YAC9B,oCAAoC;YACpC,CAAC,EAAG,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;YACf,KAAK,CACZ,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/instanceName.d.ts.map b/dist/native/unsafe/instanceName.d.ts.map index 49c4f6b96f..91a3c8a65a 100644 --- a/dist/native/unsafe/instanceName.d.ts.map +++ b/dist/native/unsafe/instanceName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"instanceName.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/instanceName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBAaE"} \ No newline at end of file +{"version":3,"file":"instanceName.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/instanceName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;AAE1D,wBAaE"} \ No newline at end of file diff --git a/dist/native/unsafe/instanceName.js b/dist/native/unsafe/instanceName.js index ba84df075f..515a9963b9 100644 --- a/dist/native/unsafe/instanceName.js +++ b/dist/native/unsafe/instanceName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/instanceName.js.map b/dist/native/unsafe/instanceName.js.map index ba30da8c02..8d91e76e7d 100644 --- a/dist/native/unsafe/instanceName.js.map +++ b/dist/native/unsafe/instanceName.js.map @@ -1 +1 @@ -{"version":3,"file":"instanceName.js","sourceRoot":"","sources":["../../../src/native/unsafe/instanceName.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;QACX,kBAAkB;KACrB;IACD,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,WAAW,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"instanceName.js","sourceRoot":"","sources":["../../../src/native/unsafe/instanceName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;QACX,kBAAkB;KACrB;IACD,WAAW,EAAE,qCAAqC;IAClD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,KAAK;IACb,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,WAAW,EAAE,IAAI,CAAC,CAAA;IACnD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadChannelContext.d.ts.map b/dist/native/unsafe/loadChannelContext.d.ts.map index ebca97d74d..438db9cad7 100644 --- a/dist/native/unsafe/loadChannelContext.d.ts.map +++ b/dist/native/unsafe/loadChannelContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadChannelContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadChannelContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file +{"version":3,"file":"loadChannelContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadChannelContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadChannelContext.js b/dist/native/unsafe/loadChannelContext.js index 247b0bde50..773e760d7b 100644 --- a/dist/native/unsafe/loadChannelContext.js +++ b/dist/native/unsafe/loadChannelContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadChannelContext.js.map b/dist/native/unsafe/loadChannelContext.js.map index 101a7ba9d0..f961b2cbd6 100644 --- a/dist/native/unsafe/loadChannelContext.js.map +++ b/dist/native/unsafe/loadChannelContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadChannelContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadChannelContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,EAAE,CAAA;QACZ,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadChannelContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadChannelContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,EAAE,CAAA;QACZ,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadGuildContext.d.ts.map b/dist/native/unsafe/loadGuildContext.d.ts.map index a004b7d1cf..db87ac683f 100644 --- a/dist/native/unsafe/loadGuildContext.d.ts.map +++ b/dist/native/unsafe/loadGuildContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadGuildContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadGuildContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file +{"version":3,"file":"loadGuildContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadGuildContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadGuildContext.js b/dist/native/unsafe/loadGuildContext.js index e399065804..6be2bd3532 100644 --- a/dist/native/unsafe/loadGuildContext.js +++ b/dist/native/unsafe/loadGuildContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadGuildContext.js.map b/dist/native/unsafe/loadGuildContext.js.map index 0f075ab362..1d9755dbd8 100644 --- a/dist/native/unsafe/loadGuildContext.js.map +++ b/dist/native/unsafe/loadGuildContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadGuildContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadGuildContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,0GAA0G;IACvH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadGuildContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadGuildContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,kBAAkB;QAClB,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,0GAA0G;IACvH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadMemberContext.d.ts.map b/dist/native/unsafe/loadMemberContext.d.ts.map index e98c4b9682..cdedce30fc 100644 --- a/dist/native/unsafe/loadMemberContext.d.ts.map +++ b/dist/native/unsafe/loadMemberContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadMemberContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadMemberContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"loadMemberContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadMemberContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadMemberContext.js b/dist/native/unsafe/loadMemberContext.js index 3786810a45..2afa0802e4 100644 --- a/dist/native/unsafe/loadMemberContext.js +++ b/dist/native/unsafe/loadMemberContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadMemberContext.js.map b/dist/native/unsafe/loadMemberContext.js.map index 19d318923b..f8a6a7f3ab 100644 --- a/dist/native/unsafe/loadMemberContext.js.map +++ b/dist/native/unsafe/loadMemberContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadMemberContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadMemberContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,mBAAmB;QACnB,kBAAkB;KACrB;IACD,WAAW,EAAE,2GAA2G;IACxH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadMemberContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadMemberContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,mBAAmB;QACnB,kBAAkB;KACrB;IACD,WAAW,EAAE,2GAA2G;IACxH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadMessageContext.d.ts.map b/dist/native/unsafe/loadMessageContext.d.ts.map index 27d0006a3b..40dfcdb7e8 100644 --- a/dist/native/unsafe/loadMessageContext.d.ts.map +++ b/dist/native/unsafe/loadMessageContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadMessageContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadMessageContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"loadMessageContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadMessageContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadMessageContext.js b/dist/native/unsafe/loadMessageContext.js index a1b90e9e04..23a8d548ff 100644 --- a/dist/native/unsafe/loadMessageContext.js +++ b/dist/native/unsafe/loadMessageContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadMessageContext.js.map b/dist/native/unsafe/loadMessageContext.js.map index 3d8a193e5e..fe2d929373 100644 --- a/dist/native/unsafe/loadMessageContext.js.map +++ b/dist/native/unsafe/loadMessageContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadMessageContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadMessageContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadMessageContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadMessageContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,WAAW;SAC5B;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadRoleContext.d.ts.map b/dist/native/unsafe/loadRoleContext.d.ts.map index 99be996f41..832733b11a 100644 --- a/dist/native/unsafe/loadRoleContext.d.ts.map +++ b/dist/native/unsafe/loadRoleContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadRoleContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadRoleContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file +{"version":3,"file":"loadRoleContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadRoleContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;AAE1D,wBA+BE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadRoleContext.js b/dist/native/unsafe/loadRoleContext.js index cd7fd927e0..2bfe45b63c 100644 --- a/dist/native/unsafe/loadRoleContext.js +++ b/dist/native/unsafe/loadRoleContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadRoleContext.js.map b/dist/native/unsafe/loadRoleContext.js.map index b372b346be..e7f2d55b9b 100644 --- a/dist/native/unsafe/loadRoleContext.js.map +++ b/dist/native/unsafe/loadRoleContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadRoleContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadRoleContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,gBAAgB;KACnB;IACD,WAAW,EAAE,yGAAyG;IACtH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadRoleContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadRoleContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,gBAAgB;KACnB;IACD,WAAW,EAAE,yGAAyG;IACtH,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,KAAK;SACtB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAE;QACf,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadStickerContext.d.ts.map b/dist/native/unsafe/loadStickerContext.d.ts.map index 9bc2bc7dbb..1f057a5798 100644 --- a/dist/native/unsafe/loadStickerContext.d.ts.map +++ b/dist/native/unsafe/loadStickerContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadStickerContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadStickerContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file +{"version":3,"file":"loadStickerContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadStickerContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadStickerContext.js b/dist/native/unsafe/loadStickerContext.js index aaaef99847..866c5d0d90 100644 --- a/dist/native/unsafe/loadStickerContext.js +++ b/dist/native/unsafe/loadStickerContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadStickerContext.js.map b/dist/native/unsafe/loadStickerContext.js.map index ea6f802003..ee5f1c7201 100644 --- a/dist/native/unsafe/loadStickerContext.js.map +++ b/dist/native/unsafe/loadStickerContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadStickerContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadStickerContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadStickerContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadStickerContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,oBAAoB;QACpB,mBAAmB;KACtB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,4GAA4G;IACzH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/unsafe/loadUserContext.d.ts.map b/dist/native/unsafe/loadUserContext.d.ts.map index b542da3d01..d186ce9378 100644 --- a/dist/native/unsafe/loadUserContext.d.ts.map +++ b/dist/native/unsafe/loadUserContext.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"loadUserContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadUserContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file +{"version":3,"file":"loadUserContext.d.ts","sourceRoot":"","sources":["../../../src/native/unsafe/loadUserContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAuBE"} \ No newline at end of file diff --git a/dist/native/unsafe/loadUserContext.js b/dist/native/unsafe/loadUserContext.js index 74dc3290ee..dface94dd5 100644 --- a/dist/native/unsafe/loadUserContext.js +++ b/dist/native/unsafe/loadUserContext.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/unsafe/loadUserContext.js.map b/dist/native/unsafe/loadUserContext.js.map index 4c2f44e360..c7f28fcedc 100644 --- a/dist/native/unsafe/loadUserContext.js.map +++ b/dist/native/unsafe/loadUserContext.js.map @@ -1 +1 @@ -{"version":3,"file":"loadUserContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadUserContext.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,yGAAyG;IACtH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"loadUserContext.js","sourceRoot":"","sources":["../../../src/native/unsafe/loadUserContext.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,iBAAiB;QACjB,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,yGAAyG;IACtH,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,GAAG,CAAC,GAAG,GAAG,CAAC,CAAA;QACX,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/authorID.d.ts.map b/dist/native/user/authorID.d.ts.map index 9e89d675ce..5b4c6ec104 100644 --- a/dist/native/user/authorID.d.ts.map +++ b/dist/native/user/authorID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"authorID.d.ts","sourceRoot":"","sources":["../../../src/native/user/authorID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBAUE"} \ No newline at end of file +{"version":3,"file":"authorID.d.ts","sourceRoot":"","sources":["../../../src/native/user/authorID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;AAGnF,wBAUE"} \ No newline at end of file diff --git a/dist/native/user/authorID.js b/dist/native/user/authorID.js index b2b68c15c3..7c63ca7b5e 100644 --- a/dist/native/user/authorID.js +++ b/dist/native/user/authorID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/user/authorID.js.map b/dist/native/user/authorID.js.map index ab1c9b9922..fb0703ca68 100644 --- a/dist/native/user/authorID.js.map +++ b/dist/native/user/authorID.js.map @@ -1 +1 @@ -{"version":3,"file":"authorID.js","sourceRoot":"","sources":["../../../src/native/user/authorID.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,wBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"authorID.js","sourceRoot":"","sources":["../../../src/native/user/authorID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAGnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,WAAW,EAAE,uBAAuB;IACpC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,wBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;IACrC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/discriminator.d.ts.map b/dist/native/user/discriminator.d.ts.map index 3fe2b25d95..5b6a310bed 100644 --- a/dist/native/user/discriminator.d.ts.map +++ b/dist/native/user/discriminator.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"discriminator.d.ts","sourceRoot":"","sources":["../../../src/native/user/discriminator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"discriminator.d.ts","sourceRoot":"","sources":["../../../src/native/user/discriminator.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/discriminator.js b/dist/native/user/discriminator.js index 98b86bd1e0..a4c2e3a3a6 100644 --- a/dist/native/user/discriminator.js +++ b/dist/native/user/discriminator.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/discriminator.js.map b/dist/native/user/discriminator.js.map index bf49434a45..fa5259c451 100644 --- a/dist/native/user/discriminator.js.map +++ b/dist/native/user/discriminator.js.map @@ -1 +1 @@ -{"version":3,"file":"discriminator.js","sourceRoot":"","sources":["../../../src/native/user/discriminator.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,aAAa,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"discriminator.js","sourceRoot":"","sources":["../../../src/native/user/discriminator.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,aAAa,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/isBot.d.ts.map b/dist/native/user/isBot.d.ts.map index 8db759a0c6..eafd9cb56c 100644 --- a/dist/native/user/isBot.d.ts.map +++ b/dist/native/user/isBot.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isBot.d.ts","sourceRoot":"","sources":["../../../src/native/user/isBot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isBot.d.ts","sourceRoot":"","sources":["../../../src/native/user/isBot.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/isBot.js b/dist/native/user/isBot.js index 5246d63559..54b6d4548f 100644 --- a/dist/native/user/isBot.js +++ b/dist/native/user/isBot.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/isBot.js.map b/dist/native/user/isBot.js.map index 5c21e97fc9..d3aee8ff27 100644 --- a/dist/native/user/isBot.js.map +++ b/dist/native/user/isBot.js.map @@ -1 +1 @@ -{"version":3,"file":"isBot.js","sourceRoot":"","sources":["../../../src/native/user/isBot.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isBot.js","sourceRoot":"","sources":["../../../src/native/user/isBot.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/isBotVerified.d.ts.map b/dist/native/user/isBotVerified.d.ts.map index 5cc9e8ca2a..9fe9edddd0 100644 --- a/dist/native/user/isBotVerified.d.ts.map +++ b/dist/native/user/isBotVerified.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isBotVerified.d.ts","sourceRoot":"","sources":["../../../src/native/user/isBotVerified.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"isBotVerified.d.ts","sourceRoot":"","sources":["../../../src/native/user/isBotVerified.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/isBotVerified.js b/dist/native/user/isBotVerified.js index 194ebe0ee1..21801027d6 100644 --- a/dist/native/user/isBotVerified.js +++ b/dist/native/user/isBotVerified.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/isBotVerified.js.map b/dist/native/user/isBotVerified.js.map index 5faf2e0895..0fa67b8fd1 100644 --- a/dist/native/user/isBotVerified.js.map +++ b/dist/native/user/isBotVerified.js.map @@ -1 +1 @@ -{"version":3,"file":"isBotVerified.js","sourceRoot":"","sources":["../../../src/native/user/isBotVerified.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,aAAa,CAAC,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isBotVerified.js","sourceRoot":"","sources":["../../../src/native/user/isBotVerified.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,aAAa,CAAC,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/isUserDMEnabled.d.ts.map b/dist/native/user/isUserDMEnabled.d.ts.map index 97995559ed..dfb82a70ea 100644 --- a/dist/native/user/isUserDMEnabled.d.ts.map +++ b/dist/native/user/isUserDMEnabled.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"isUserDMEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/user/isUserDMEnabled.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file +{"version":3,"file":"isUserDMEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/user/isUserDMEnabled.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/user/isUserDMEnabled.js b/dist/native/user/isUserDMEnabled.js index df58b0f7b8..592ba58e79 100644 --- a/dist/native/user/isUserDMEnabled.js +++ b/dist/native/user/isUserDMEnabled.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/user/isUserDMEnabled.js.map b/dist/native/user/isUserDMEnabled.js.map index 79167cc50a..072c47aa6e 100644 --- a/dist/native/user/isUserDMEnabled.js.map +++ b/dist/native/user/isUserDMEnabled.js.map @@ -1 +1 @@ -{"version":3,"file":"isUserDMEnabled.js","sourceRoot":"","sources":["../../../src/native/user/isUserDMEnabled.ts"],"names":[],"mappings":";;AAAA,2CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAElB,IAAI;YACA,MAAM,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;YACnB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAK,EAAE;YACZ,IAAI,KAAK,YAAY,4BAAe,EAAE;gBAClC,IAAI,KAAK,CAAC,IAAI,KAAK,KAAK;oBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA,CAAC,cAAc;gBACnE,IAAI,KAAK,CAAC,IAAI,KAAK,KAAK;oBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA,CAAE,iCAAiC;aACzF;YACD,MAAM,KAAK,CAAA;SACd;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"isUserDMEnabled.js","sourceRoot":"","sources":["../../../src/native/user/isUserDMEnabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAA4C;AAC5C,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAElB,IAAI;YACA,MAAM,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;YACnB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SAC5B;QAAC,OAAO,KAAK,EAAE;YACZ,IAAI,KAAK,YAAY,4BAAe,EAAE;gBAClC,IAAI,KAAK,CAAC,IAAI,KAAK,KAAK;oBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA,CAAC,cAAc;gBACnE,IAAI,KAAK,CAAC,IAAI,KAAK,KAAK;oBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA,CAAE,iCAAiC;aACzF;YACD,MAAM,KAAK,CAAA;SACd;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/randomUserID.d.ts.map b/dist/native/user/randomUserID.d.ts.map index 6d9630c1b9..af9c802c24 100644 --- a/dist/native/user/randomUserID.d.ts.map +++ b/dist/native/user/randomUserID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"randomUserID.d.ts","sourceRoot":"","sources":["../../../src/native/user/randomUserID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"randomUserID.d.ts","sourceRoot":"","sources":["../../../src/native/user/randomUserID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/user/randomUserID.js b/dist/native/user/randomUserID.js index 8e33b9822a..dee0cafaa9 100644 --- a/dist/native/user/randomUserID.js +++ b/dist/native/user/randomUserID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/randomUserID.js.map b/dist/native/user/randomUserID.js.map index e00de66b43..a039a17195 100644 --- a/dist/native/user/randomUserID.js.map +++ b/dist/native/user/randomUserID.js.map @@ -1 +1 @@ -{"version":3,"file":"randomUserID.js","sourceRoot":"","sources":["../../../src/native/user/randomUserID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"randomUserID.js","sourceRoot":"","sources":["../../../src/native/user/randomUserID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,0BAA0B;IACvC,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/sendDM.d.ts.map b/dist/native/user/sendDM.d.ts.map index 12967e4584..c490cab4f5 100644 --- a/dist/native/user/sendDM.d.ts.map +++ b/dist/native/user/sendDM.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sendDM.d.ts","sourceRoot":"","sources":["../../../src/native/user/sendDM.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file +{"version":3,"file":"sendDM.d.ts","sourceRoot":"","sources":["../../../src/native/user/sendDM.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAiCE"} \ No newline at end of file diff --git a/dist/native/user/sendDM.js b/dist/native/user/sendDM.js index f391a66ccf..5a40e8ab5e 100644 --- a/dist/native/user/sendDM.js +++ b/dist/native/user/sendDM.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/sendDM.js.map b/dist/native/user/sendDM.js.map index e78c47edca..db11e52ed0 100644 --- a/dist/native/user/sendDM.js.map +++ b/dist/native/user/sendDM.js.map @@ -1 +1 @@ -{"version":3,"file":"sendDM.js","sourceRoot":"","sources":["../../../src/native/user/sendDM.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,eAAe,CAAC;QAC/C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,IAAI,CAAC,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sendDM.js","sourceRoot":"","sources":["../../../src/native/user/sendDM.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wBAAwB;IACrC,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,qDAAqD;YAClE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,eAAe,CAAC;QAC/C,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAgB,IAAI,CAAC,CAAA;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userAccentColor.d.ts.map b/dist/native/user/userAccentColor.d.ts.map index f00bfa083d..fcb7a3e35a 100644 --- a/dist/native/user/userAccentColor.d.ts.map +++ b/dist/native/user/userAccentColor.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userAccentColor.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAccentColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userAccentColor.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAccentColor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userAccentColor.js b/dist/native/user/userAccentColor.js index 4a7854c641..7e7e7036ff 100644 --- a/dist/native/user/userAccentColor.js +++ b/dist/native/user/userAccentColor.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userAccentColor.js.map b/dist/native/user/userAccentColor.js.map index ac60748d53..f7ba0a8f19 100644 --- a/dist/native/user/userAccentColor.js.map +++ b/dist/native/user/userAccentColor.js.map @@ -1 +1 @@ -{"version":3,"file":"userAccentColor.js","sourceRoot":"","sources":["../../../src/native/user/userAccentColor.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,cAAc,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userAccentColor.js","sourceRoot":"","sources":["../../../src/native/user/userAccentColor.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,cAAc,CAAC,CAAA;IAC3D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userAvatar.d.ts.map b/dist/native/user/userAvatar.d.ts.map index 08d815aac4..78ff5d52bf 100644 --- a/dist/native/user/userAvatar.d.ts.map +++ b/dist/native/user/userAvatar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAvatar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"userAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAvatar.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/user/userAvatar.js b/dist/native/user/userAvatar.js index 0e3f352dff..dbf42b96c4 100644 --- a/dist/native/user/userAvatar.js +++ b/dist/native/user/userAvatar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userAvatar.js.map b/dist/native/user/userAvatar.js.map index 63c2592bf5..d2709bec87 100644 --- a/dist/native/user/userAvatar.js.map +++ b/dist/native/user/userAvatar.js.map @@ -1 +1 @@ -{"version":3,"file":"userAvatar.js","sourceRoot":"","sources":["../../../src/native/user/userAvatar.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC;YACjC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userAvatar.js","sourceRoot":"","sources":["../../../src/native/user/userAvatar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC;YACjC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userAvatarDecoration.d.ts.map b/dist/native/user/userAvatarDecoration.d.ts.map index ffad170a71..173a2f777e 100644 --- a/dist/native/user/userAvatarDecoration.d.ts.map +++ b/dist/native/user/userAvatarDecoration.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userAvatarDecoration.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAvatarDecoration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file +{"version":3,"file":"userAvatarDecoration.d.ts","sourceRoot":"","sources":["../../../src/native/user/userAvatarDecoration.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAoCE"} \ No newline at end of file diff --git a/dist/native/user/userAvatarDecoration.js b/dist/native/user/userAvatarDecoration.js index 0363514f14..b10df77b92 100644 --- a/dist/native/user/userAvatarDecoration.js +++ b/dist/native/user/userAvatarDecoration.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userAvatarDecoration.js.map b/dist/native/user/userAvatarDecoration.js.map index 31a6911175..2f5840f138 100644 --- a/dist/native/user/userAvatarDecoration.js.map +++ b/dist/native/user/userAvatarDecoration.js.map @@ -1 +1 @@ -{"version":3,"file":"userAvatarDecoration.js","sourceRoot":"","sources":["../../../src/native/user/userAvatarDecoration.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,mBAAmB,CAAC;YACpC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userAvatarDecoration.js","sourceRoot":"","sources":["../../../src/native/user/userAvatarDecoration.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CACf,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,mBAAmB,CAAC;YACpC,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userBadges.d.ts.map b/dist/native/user/userBadges.d.ts.map index 59154cee0c..943a4bff0c 100644 --- a/dist/native/user/userBadges.d.ts.map +++ b/dist/native/user/userBadges.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userBadges.d.ts","sourceRoot":"","sources":["../../../src/native/user/userBadges.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file +{"version":3,"file":"userBadges.d.ts","sourceRoot":"","sources":["../../../src/native/user/userBadges.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAElE,wBA0BE"} \ No newline at end of file diff --git a/dist/native/user/userBadges.js b/dist/native/user/userBadges.js index 4ed768d0c3..74464357ec 100644 --- a/dist/native/user/userBadges.js +++ b/dist/native/user/userBadges.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/user/userBadges.js.map b/dist/native/user/userBadges.js.map index aac511a6ce..cd72f0a8f5 100644 --- a/dist/native/user/userBadges.js.map +++ b/dist/native/user/userBadges.js.map @@ -1 +1 @@ -{"version":3,"file":"userBadges.js","sourceRoot":"","sources":["../../../src/native/user/userBadges.ts"],"names":[],"mappings":";;;;;AAAA,2CAAsC;AACtC,kEAAyC;AAEzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,sBAAS,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userBadges.js","sourceRoot":"","sources":["../../../src/native/user/userBadges.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,2CAAsC;AACtC,kEAAyC;AAEzC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,qCAAqC;IAClD,OAAO,EAAE,CAAC,YAAY,CAAC;IACvB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAA,eAAK,EAAC,sBAAS,CAAC;IACxB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAC/E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userBanner.d.ts.map b/dist/native/user/userBanner.d.ts.map index 7ff1dbf28a..f7b60359c0 100644 --- a/dist/native/user/userBanner.d.ts.map +++ b/dist/native/user/userBanner.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userBanner.d.ts","sourceRoot":"","sources":["../../../src/native/user/userBanner.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAwCE"} \ No newline at end of file +{"version":3,"file":"userBanner.d.ts","sourceRoot":"","sources":["../../../src/native/user/userBanner.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAwCE"} \ No newline at end of file diff --git a/dist/native/user/userBanner.js b/dist/native/user/userBanner.js index 31cbaae747..1308d96bae 100644 --- a/dist/native/user/userBanner.js +++ b/dist/native/user/userBanner.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userBanner.js.map b/dist/native/user/userBanner.js.map index 14714f8657..7a4dd8d32f 100644 --- a/dist/native/user/userBanner.js.map +++ b/dist/native/user/userBanner.js.map @@ -1 +1 @@ -{"version":3,"file":"userBanner.js","sourceRoot":"","sources":["../../../src/native/user/userBanner.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAChC,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAElB,IAAI,CAAC,IAAI,EAAE,MAAM;YAAE,MAAM,IAAI,CAAC,KAAK,EAAE,CAAA;QAErC,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,EAAE,SAAS,CAAC;YACZ,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userBanner.js","sourceRoot":"","sources":["../../../src/native/user/userBanner.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,yBAAyB;IACtC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAChC,IAAI,KAAK,GAAG,CAAC,IAAK,CAAA;QAElB,IAAI,CAAC,IAAI,EAAE,MAAM;YAAE,MAAM,IAAI,CAAC,KAAK,EAAE,CAAA;QAErC,OAAO,IAAI,CAAC,OAAO,CACf,IAAI,EAAE,SAAS,CAAC;YACZ,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,IAAI;SACpC,CAAC,CACL,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userCount.d.ts.map b/dist/native/user/userCount.d.ts.map index 7ed1c655ee..9bff915318 100644 --- a/dist/native/user/userCount.d.ts.map +++ b/dist/native/user/userCount.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userCount.d.ts","sourceRoot":"","sources":["../../../src/native/user/userCount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file +{"version":3,"file":"userCount.d.ts","sourceRoot":"","sources":["../../../src/native/user/userCount.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;AAElE,wBASE"} \ No newline at end of file diff --git a/dist/native/user/userCount.js b/dist/native/user/userCount.js index 098d343d49..0d97afe068 100644 --- a/dist/native/user/userCount.js +++ b/dist/native/user/userCount.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userCount.js.map b/dist/native/user/userCount.js.map index 4f071dc1ff..7ab6587cce 100644 --- a/dist/native/user/userCount.js.map +++ b/dist/native/user/userCount.js.map @@ -1 +1 @@ -{"version":3,"file":"userCount.js","sourceRoot":"","sources":["../../../src/native/user/userCount.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userCount.js","sourceRoot":"","sources":["../../../src/native/user/userCount.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG;QACP,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IAC9F,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userCreatedAt.d.ts.map b/dist/native/user/userCreatedAt.d.ts.map index 10ee426111..de35bf230a 100644 --- a/dist/native/user/userCreatedAt.d.ts.map +++ b/dist/native/user/userCreatedAt.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/user/userCreatedAt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userCreatedAt.d.ts","sourceRoot":"","sources":["../../../src/native/user/userCreatedAt.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userCreatedAt.js b/dist/native/user/userCreatedAt.js index 00ba267ab3..01357fb377 100644 --- a/dist/native/user/userCreatedAt.js +++ b/dist/native/user/userCreatedAt.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userCreatedAt.js.map b/dist/native/user/userCreatedAt.js.map index 49f539d7f7..8c36afc066 100644 --- a/dist/native/user/userCreatedAt.js.map +++ b/dist/native/user/userCreatedAt.js.map @@ -1 +1 @@ -{"version":3,"file":"userCreatedAt.js","sourceRoot":"","sources":["../../../src/native/user/userCreatedAt.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userCreatedAt.js","sourceRoot":"","sources":["../../../src/native/user/userCreatedAt.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uDAAuD;IACpE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sCAAsC;YACnD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userDefaultAvatar.d.ts.map b/dist/native/user/userDefaultAvatar.d.ts.map index 5fd4d01320..d60da663de 100644 --- a/dist/native/user/userDefaultAvatar.d.ts.map +++ b/dist/native/user/userDefaultAvatar.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userDefaultAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/user/userDefaultAvatar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userDefaultAvatar.d.ts","sourceRoot":"","sources":["../../../src/native/user/userDefaultAvatar.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userDefaultAvatar.js b/dist/native/user/userDefaultAvatar.js index b6b4409626..6642c149f0 100644 --- a/dist/native/user/userDefaultAvatar.js +++ b/dist/native/user/userDefaultAvatar.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userDefaultAvatar.js.map b/dist/native/user/userDefaultAvatar.js.map index 3fb3cde0af..15cf3060e3 100644 --- a/dist/native/user/userDefaultAvatar.js.map +++ b/dist/native/user/userDefaultAvatar.js.map @@ -1 +1 @@ -{"version":3,"file":"userDefaultAvatar.js","sourceRoot":"","sources":["../../../src/native/user/userDefaultAvatar.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userDefaultAvatar.js","sourceRoot":"","sources":["../../../src/native/user/userDefaultAvatar.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,oBAAoB;IAC1B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC,CAAA;IAC7D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userDisplayName.d.ts.map b/dist/native/user/userDisplayName.d.ts.map index 0a8da02295..310ce3d305 100644 --- a/dist/native/user/userDisplayName.d.ts.map +++ b/dist/native/user/userDisplayName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userDisplayName.d.ts","sourceRoot":"","sources":["../../../src/native/user/userDisplayName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userDisplayName.d.ts","sourceRoot":"","sources":["../../../src/native/user/userDisplayName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userDisplayName.js b/dist/native/user/userDisplayName.js index 6010a8849a..2a1ebd7002 100644 --- a/dist/native/user/userDisplayName.js +++ b/dist/native/user/userDisplayName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userDisplayName.js.map b/dist/native/user/userDisplayName.js.map index aeca87cbde..7d3a8096b5 100644 --- a/dist/native/user/userDisplayName.js.map +++ b/dist/native/user/userDisplayName.js.map @@ -1 +1 @@ -{"version":3,"file":"userDisplayName.js","sourceRoot":"","sources":["../../../src/native/user/userDisplayName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userDisplayName.js","sourceRoot":"","sources":["../../../src/native/user/userDisplayName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oCAAoC;IACjD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAA;IACxD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userExists.d.ts.map b/dist/native/user/userExists.d.ts.map index c986881471..67cdb19a19 100644 --- a/dist/native/user/userExists.d.ts.map +++ b/dist/native/user/userExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userExists.d.ts","sourceRoot":"","sources":["../../../src/native/user/userExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userExists.d.ts","sourceRoot":"","sources":["../../../src/native/user/userExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userExists.js b/dist/native/user/userExists.js index 67540afaac..d15d395c2f 100644 --- a/dist/native/user/userExists.js +++ b/dist/native/user/userExists.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userExists.js.map b/dist/native/user/userExists.js.map index 7b572cf42c..d6ca51edc1 100644 --- a/dist/native/user/userExists.js.map +++ b/dist/native/user/userExists.js.map @@ -1 +1 @@ -{"version":3,"file":"userExists.js","sourceRoot":"","sources":["../../../src/native/user/userExists.ts"],"names":[],"mappings":";;AAAA,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userExists.js","sourceRoot":"","sources":["../../../src/native/user/userExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mBAAmB;YAChC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC7H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userGlobalName.d.ts.map b/dist/native/user/userGlobalName.d.ts.map index d207903f72..4d19abad4d 100644 --- a/dist/native/user/userGlobalName.d.ts.map +++ b/dist/native/user/userGlobalName.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userGlobalName.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGlobalName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userGlobalName.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGlobalName.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userGlobalName.js b/dist/native/user/userGlobalName.js index d45ffcf4ab..645ea40a84 100644 --- a/dist/native/user/userGlobalName.js +++ b/dist/native/user/userGlobalName.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userGlobalName.js.map b/dist/native/user/userGlobalName.js.map index b2345f3e90..d17a5cc977 100644 --- a/dist/native/user/userGlobalName.js.map +++ b/dist/native/user/userGlobalName.js.map @@ -1 +1 @@ -{"version":3,"file":"userGlobalName.js","sourceRoot":"","sources":["../../../src/native/user/userGlobalName.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userGlobalName.js","sourceRoot":"","sources":["../../../src/native/user/userGlobalName.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mCAAmC;IAChD,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,UAAU,CAAC,CAAA;IACvD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userGuildBadge.d.ts.map b/dist/native/user/userGuildBadge.d.ts.map index a61187c01c..84099d70ce 100644 --- a/dist/native/user/userGuildBadge.d.ts.map +++ b/dist/native/user/userGuildBadge.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userGuildBadge.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildBadge.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file +{"version":3,"file":"userGuildBadge.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildBadge.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAkCE"} \ No newline at end of file diff --git a/dist/native/user/userGuildBadge.js b/dist/native/user/userGuildBadge.js index 2fb09c852e..e881707ad3 100644 --- a/dist/native/user/userGuildBadge.js +++ b/dist/native/user/userGuildBadge.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userGuildBadge.js.map b/dist/native/user/userGuildBadge.js.map index d1732ea7c9..77f3ba57d9 100644 --- a/dist/native/user/userGuildBadge.js.map +++ b/dist/native/user/userGuildBadge.js.map @@ -1 +1 @@ -{"version":3,"file":"userGuildBadge.js","sourceRoot":"","sources":["../../../src/native/user/userGuildBadge.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC;YACrD,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,SAAS;SACzC,CAAC,CAAC,CAAA;IACP,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userGuildBadge.js","sourceRoot":"","sources":["../../../src/native/user/userGuildBadge.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+CAA+C;IAC5D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC;QAC1B,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC;YACrD,SAAS,EAAG,GAAsB,IAAI,SAAS;YAC/C,IAAI,EAAG,IAAkB,IAAI,SAAS;SACzC,CAAC,CAAC,CAAA;IACP,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userGuildEnabled.d.ts.map b/dist/native/user/userGuildEnabled.d.ts.map index d7d7bb871d..f3f1fb1f00 100644 --- a/dist/native/user/userGuildEnabled.d.ts.map +++ b/dist/native/user/userGuildEnabled.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userGuildEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildEnabled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userGuildEnabled.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildEnabled.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userGuildEnabled.js b/dist/native/user/userGuildEnabled.js index 1496f8d58d..6df2f565e2 100644 --- a/dist/native/user/userGuildEnabled.js +++ b/dist/native/user/userGuildEnabled.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userGuildEnabled.js.map b/dist/native/user/userGuildEnabled.js.map index 7e2b57a449..37a0ec67aa 100644 --- a/dist/native/user/userGuildEnabled.js.map +++ b/dist/native/user/userGuildEnabled.js.map @@ -1 +1 @@ -{"version":3,"file":"userGuildEnabled.js","sourceRoot":"","sources":["../../../src/native/user/userGuildEnabled.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,eAAe,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userGuildEnabled.js","sourceRoot":"","sources":["../../../src/native/user/userGuildEnabled.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,eAAe,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userGuildID.d.ts.map b/dist/native/user/userGuildID.d.ts.map index e0e8f73dd4..16df2f13a4 100644 --- a/dist/native/user/userGuildID.d.ts.map +++ b/dist/native/user/userGuildID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userGuildID.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userGuildID.js b/dist/native/user/userGuildID.js index 4cc644047b..0a4c720fba 100644 --- a/dist/native/user/userGuildID.js +++ b/dist/native/user/userGuildID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userGuildID.js.map b/dist/native/user/userGuildID.js.map index c8347b2472..f9ea8f0f1d 100644 --- a/dist/native/user/userGuildID.js.map +++ b/dist/native/user/userGuildID.js.map @@ -1 +1 @@ -{"version":3,"file":"userGuildID.js","sourceRoot":"","sources":["../../../src/native/user/userGuildID.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,eAAe,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userGuildID.js","sourceRoot":"","sources":["../../../src/native/user/userGuildID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,KAAK;IACrB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,eAAe,CAAC,CAAA;IAC1E,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userGuildTag.d.ts.map b/dist/native/user/userGuildTag.d.ts.map index 409f18ca60..43e4a543c1 100644 --- a/dist/native/user/userGuildTag.d.ts.map +++ b/dist/native/user/userGuildTag.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userGuildTag.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userGuildTag.d.ts","sourceRoot":"","sources":["../../../src/native/user/userGuildTag.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userGuildTag.js b/dist/native/user/userGuildTag.js index d981bdac06..199df70b92 100644 --- a/dist/native/user/userGuildTag.js +++ b/dist/native/user/userGuildTag.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userGuildTag.js.map b/dist/native/user/userGuildTag.js.map index f2dd3a851d..10dee70702 100644 --- a/dist/native/user/userGuildTag.js.map +++ b/dist/native/user/userGuildTag.js.map @@ -1 +1 @@ -{"version":3,"file":"userGuildTag.js","sourceRoot":"","sources":["../../../src/native/user/userGuildTag.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,GAAG,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userGuildTag.js","sourceRoot":"","sources":["../../../src/native/user/userGuildTag.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mCAAmC;YAChD,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,GAAG,CAAC,CAAA;IAC9D,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userIDs.d.ts.map b/dist/native/user/userIDs.d.ts.map index 184b3470fd..d0f9611093 100644 --- a/dist/native/user/userIDs.d.ts.map +++ b/dist/native/user/userIDs.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userIDs.d.ts","sourceRoot":"","sources":["../../../src/native/user/userIDs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file +{"version":3,"file":"userIDs.d.ts","sourceRoot":"","sources":["../../../src/native/user/userIDs.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;AAE1D,wBAkBE"} \ No newline at end of file diff --git a/dist/native/user/userIDs.js b/dist/native/user/userIDs.js index f840077a54..605dad3264 100644 --- a/dist/native/user/userIDs.js +++ b/dist/native/user/userIDs.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/user/userIDs.js.map b/dist/native/user/userIDs.js.map index edd4041855..8cc80160a6 100644 --- a/dist/native/user/userIDs.js.map +++ b/dist/native/user/userIDs.js.map @@ -1 +1 @@ -{"version":3,"file":"userIDs.js","sourceRoot":"","sources":["../../../src/native/user/userIDs.ts"],"names":[],"mappings":";;;;;AAAA,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userIDs.js","sourceRoot":"","sources":["../../../src/native/user/userIDs.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,kEAAyC;AACzC,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,IAAA,eAAK,GAAgB;IAC7B,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,CAAE;QAChB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAA;IAChF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userRawData.d.ts.map b/dist/native/user/userRawData.d.ts.map index 7f1559af1c..1b106dc2bd 100644 --- a/dist/native/user/userRawData.d.ts.map +++ b/dist/native/user/userRawData.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userRawData.d.ts","sourceRoot":"","sources":["../../../src/native/user/userRawData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userRawData.d.ts","sourceRoot":"","sources":["../../../src/native/user/userRawData.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userRawData.js b/dist/native/user/userRawData.js index cf04be785a..0d1b5756ad 100644 --- a/dist/native/user/userRawData.js +++ b/dist/native/user/userRawData.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userRawData.js.map b/dist/native/user/userRawData.js.map index 5ba79c9f7b..d955297046 100644 --- a/dist/native/user/userRawData.js.map +++ b/dist/native/user/userRawData.js.map @@ -1 +1 @@ -{"version":3,"file":"userRawData.js","sourceRoot":"","sources":["../../../src/native/user/userRawData.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userRawData.js","sourceRoot":"","sources":["../../../src/native/user/userRawData.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userReferenceID.d.ts.map b/dist/native/user/userReferenceID.d.ts.map index 4715233163..52d51d0f4b 100644 --- a/dist/native/user/userReferenceID.d.ts.map +++ b/dist/native/user/userReferenceID.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userReferenceID.d.ts","sourceRoot":"","sources":["../../../src/native/user/userReferenceID.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAuC,MAAM,YAAY,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA8BE"} \ No newline at end of file +{"version":3,"file":"userReferenceID.d.ts","sourceRoot":"","sources":["../../../src/native/user/userReferenceID.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAuC,MAAM,YAAY,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAe3C,WAAW;;;;;;;;;AAblC,wBA8BE"} \ No newline at end of file diff --git a/dist/native/user/userReferenceID.js b/dist/native/user/userReferenceID.js index 4629cf540a..78e70fa67a 100644 --- a/dist/native/user/userReferenceID.js +++ b/dist/native/user/userReferenceID.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userReferenceID.js.map b/dist/native/user/userReferenceID.js.map index d3866702d4..632bff5330 100644 --- a/dist/native/user/userReferenceID.js.map +++ b/dist/native/user/userReferenceID.js.map @@ -1 +1 @@ -{"version":3,"file":"userReferenceID.js","sourceRoot":"","sources":["../../../src/native/user/userReferenceID.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QACjC,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,GAAG,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,EAAE,SAAS,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,MAAO,OAA4B,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACnI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userReferenceID.js","sourceRoot":"","sources":["../../../src/native/user/userReferenceID.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,oDAAoD;IACjE,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,IAAI;IACpB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;SAC7C;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,KAAK;IACf,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;QACjC,OAAO,KAAK,GAAG,CAAC,OAAQ,CAAA;QACxB,MAAM,GAAG,GAAG,CAAC,OAAO,IAAI,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,EAAE,SAAS,CAAA;QAC1D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,MAAO,OAA4B,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACnI,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/userTag.d.ts.map b/dist/native/user/userTag.d.ts.map index cc55415167..3a034778fa 100644 --- a/dist/native/user/userTag.d.ts.map +++ b/dist/native/user/userTag.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"userTag.d.ts","sourceRoot":"","sources":["../../../src/native/user/userTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file +{"version":3,"file":"userTag.d.ts","sourceRoot":"","sources":["../../../src/native/user/userTag.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAE1D,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/userTag.js b/dist/native/user/userTag.js index 849dd245b6..1d7b6eb2de 100644 --- a/dist/native/user/userTag.js +++ b/dist/native/user/userTag.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/user/userTag.js.map b/dist/native/user/userTag.js.map index 7ca3263db2..90ab6d9306 100644 --- a/dist/native/user/userTag.js.map +++ b/dist/native/user/userTag.js.map @@ -1 +1 @@ -{"version":3,"file":"userTag.js","sourceRoot":"","sources":["../../../src/native/user/userTag.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"userTag.js","sourceRoot":"","sources":["../../../src/native/user/userTag.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,CAAC,CAAE;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/user/username.d.ts.map b/dist/native/user/username.d.ts.map index dc05572297..41eddb78c0 100644 --- a/dist/native/user/username.d.ts.map +++ b/dist/native/user/username.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"username.d.ts","sourceRoot":"","sources":["../../../src/native/user/username.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"username.d.ts","sourceRoot":"","sources":["../../../src/native/user/username.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/user/username.js b/dist/native/user/username.js index 47e6dd8601..c21a1f09b2 100644 --- a/dist/native/user/username.js +++ b/dist/native/user/username.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/user/username.js.map b/dist/native/user/username.js.map index 591f367a8a..d8a7ac98a9 100644 --- a/dist/native/user/username.js.map +++ b/dist/native/user/username.js.map @@ -1 +1 @@ -{"version":3,"file":"username.js","sourceRoot":"","sources":["../../../src/native/user/username.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,KAAK,WAAW,GAAG,EAAE,CAAC,IAAI,CAAC;QAChC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAA,CAAC,uBAAuB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"username.js","sourceRoot":"","sources":["../../../src/native/user/username.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,6BAA6B;IAC1C,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,wBAAO,CAAC,MAAM;IACtB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,KAAK;SACd;KACJ;IACD,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,KAAK,WAAW,GAAG,EAAE,CAAC,IAAI,CAAC;QAChC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAA,CAAC,uBAAuB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;IACvC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/delete.d.ts.map b/dist/native/variable/delete.d.ts.map index 147d60a251..62c09cf14e 100644 --- a/dist/native/variable/delete.d.ts.map +++ b/dist/native/variable/delete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"delete.d.ts","sourceRoot":"","sources":["../../../src/native/variable/delete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"delete.d.ts","sourceRoot":"","sources":["../../../src/native/variable/delete.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/variable/delete.js b/dist/native/variable/delete.js index 299e4fee38..d9a4c47ecb 100644 --- a/dist/native/variable/delete.js +++ b/dist/native/variable/delete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/variable/delete.js.map b/dist/native/variable/delete.js.map index 874476cc99..3458e0457f 100644 --- a/dist/native/variable/delete.js.map +++ b/dist/native/variable/delete.js.map @@ -1 +1 @@ -{"version":3,"file":"delete.js","sourceRoot":"","sources":["../../../src/native/variable/delete.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"delete.js","sourceRoot":"","sources":["../../../src/native/variable/delete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAA;IAChD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/env.d.ts.map b/dist/native/variable/env.d.ts.map index 7d67e94525..f17af34219 100644 --- a/dist/native/variable/env.d.ts.map +++ b/dist/native/variable/env.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../../src/native/variable/env.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAuBE"} \ No newline at end of file +{"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../../src/native/variable/env.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAuBE"} \ No newline at end of file diff --git a/dist/native/variable/env.js b/dist/native/variable/env.js index 923cbe2f90..1670842b68 100644 --- a/dist/native/variable/env.js +++ b/dist/native/variable/env.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/variable/env.js.map b/dist/native/variable/env.js.map index 31dc944da2..0267a0cd9b 100644 --- a/dist/native/variable/env.js.map +++ b/dist/native/variable/env.js.map @@ -1 +1 @@ -{"version":3,"file":"env.js","sourceRoot":"","sources":["../../../src/native/variable/env.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,gCAAgC;IAC7C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"env.js","sourceRoot":"","sources":["../../../src/native/variable/env.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACL,WAAW;KACd;IACD,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,gCAAgC;IAC7C,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6BAA6B;YAC1C,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,IAAI,EAAE,IAAI;SACb;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,MAAM,GAAG,GAAG,GAAG,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAA;QAC1C,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/get.d.ts.map b/dist/native/variable/get.d.ts.map index a3c0de988a..c4ed12067d 100644 --- a/dist/native/variable/get.d.ts.map +++ b/dist/native/variable/get.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/native/variable/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file +{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/native/variable/get.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;AAEnF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/variable/get.js b/dist/native/variable/get.js index 485f06f956..13c49f1515 100644 --- a/dist/native/variable/get.js +++ b/dist/native/variable/get.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/variable/get.js.map b/dist/native/variable/get.js.map index a302ed603b..0f6e939e2c 100644 --- a/dist/native/variable/get.js.map +++ b/dist/native/variable/get.js.map @@ -1 +1 @@ -{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../src/native/variable/get.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../src/native/variable/get.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,wBAAO,CAAC,OAAO;IACvB,WAAW,EAAE,qBAAqB;IAClC,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/has.d.ts.map b/dist/native/variable/has.d.ts.map index ffa4c1323d..2a07461154 100644 --- a/dist/native/variable/has.d.ts.map +++ b/dist/native/variable/has.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"has.d.ts","sourceRoot":"","sources":["../../../src/native/variable/has.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"has.d.ts","sourceRoot":"","sources":["../../../src/native/variable/has.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/variable/has.js b/dist/native/variable/has.js index de4854d532..7a080e6ade 100644 --- a/dist/native/variable/has.js +++ b/dist/native/variable/has.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/variable/has.js.map b/dist/native/variable/has.js.map index 4c72120229..9d1b07705c 100644 --- a/dist/native/variable/has.js.map +++ b/dist/native/variable/has.js.map @@ -1 +1 @@ -{"version":3,"file":"has.js","sourceRoot":"","sources":["../../../src/native/variable/has.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"has.js","sourceRoot":"","sources":["../../../src/native/variable/has.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/let.d.ts.map b/dist/native/variable/let.d.ts.map index 270a17f785..756bc5ddae 100644 --- a/dist/native/variable/let.d.ts.map +++ b/dist/native/variable/let.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"let.d.ts","sourceRoot":"","sources":["../../../src/native/variable/let.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA0BE"} \ No newline at end of file +{"version":3,"file":"let.d.ts","sourceRoot":"","sources":["../../../src/native/variable/let.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAA;;;;;;;;;;;;;;AAEnF,wBA0BE"} \ No newline at end of file diff --git a/dist/native/variable/let.js b/dist/native/variable/let.js index e598571009..c732da069a 100644 --- a/dist/native/variable/let.js +++ b/dist/native/variable/let.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const NativeFunction_1 = require("../../structures/@internal/NativeFunction"); exports.default = new NativeFunction_1.NativeFunction({ diff --git a/dist/native/variable/let.js.map b/dist/native/variable/let.js.map index 58bc1bdfdd..4d3883fbaa 100644 --- a/dist/native/variable/let.js.map +++ b/dist/native/variable/let.js.map @@ -1 +1 @@ -{"version":3,"file":"let.js","sourceRoot":"","sources":["../../../src/native/variable/let.ts"],"names":[],"mappings":";;AAAA,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"let.js","sourceRoot":"","sources":["../../../src/native/variable/let.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,8EAAmF;AAEnF,kBAAe,IAAI,+BAAc,CAAC;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kBAAkB;IAC/B,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;QACrB,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;QAC1B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/letDivide.d.ts.map b/dist/native/variable/letDivide.d.ts.map index 6c34bdfb45..56f306dd3a 100644 --- a/dist/native/variable/letDivide.d.ts.map +++ b/dist/native/variable/letDivide.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"letDivide.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letDivide.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"letDivide.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letDivide.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/variable/letDivide.js b/dist/native/variable/letDivide.js index 3dbeb0bb87..2b4b96cec9 100644 --- a/dist/native/variable/letDivide.js +++ b/dist/native/variable/letDivide.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/variable/letDivide.js.map b/dist/native/variable/letDivide.js.map index ee806e39ee..1d20c2d8b2 100644 --- a/dist/native/variable/letDivide.js.map +++ b/dist/native/variable/letDivide.js.map @@ -1 +1 @@ -{"version":3,"file":"letDivide.js","sourceRoot":"","sources":["../../../src/native/variable/letDivide.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"letDivide.js","sourceRoot":"","sources":["../../../src/native/variable/letDivide.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,iDAAiD;IAC9D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/letMulti.d.ts.map b/dist/native/variable/letMulti.d.ts.map index 0c3417bb07..e6a0b9aa6d 100644 --- a/dist/native/variable/letMulti.d.ts.map +++ b/dist/native/variable/letMulti.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"letMulti.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letMulti.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"letMulti.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letMulti.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/variable/letMulti.js b/dist/native/variable/letMulti.js index 561489a36e..95634106de 100644 --- a/dist/native/variable/letMulti.js +++ b/dist/native/variable/letMulti.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/variable/letMulti.js.map b/dist/native/variable/letMulti.js.map index 93f4b739ec..7779f3603c 100644 --- a/dist/native/variable/letMulti.js.map +++ b/dist/native/variable/letMulti.js.map @@ -1 +1 @@ -{"version":3,"file":"letMulti.js","sourceRoot":"","sources":["../../../src/native/variable/letMulti.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"letMulti.js","sourceRoot":"","sources":["../../../src/native/variable/letMulti.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gDAAgD;IAC7D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/letSub.d.ts.map b/dist/native/variable/letSub.d.ts.map index 4200b6d810..dd2a97b41d 100644 --- a/dist/native/variable/letSub.d.ts.map +++ b/dist/native/variable/letSub.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"letSub.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letSub.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"letSub.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letSub.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/variable/letSub.js b/dist/native/variable/letSub.js index 04a29af6f3..a31955f80b 100644 --- a/dist/native/variable/letSub.js +++ b/dist/native/variable/letSub.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/variable/letSub.js.map b/dist/native/variable/letSub.js.map index 25d900f406..beee17f013 100644 --- a/dist/native/variable/letSub.js.map +++ b/dist/native/variable/letSub.js.map @@ -1 +1 @@ -{"version":3,"file":"letSub.js","sourceRoot":"","sources":["../../../src/native/variable/letSub.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"letSub.js","sourceRoot":"","sources":["../../../src/native/variable/letSub.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/variable/letSum.d.ts.map b/dist/native/variable/letSum.d.ts.map index 3f9f28723e..fa715248a3 100644 --- a/dist/native/variable/letSum.d.ts.map +++ b/dist/native/variable/letSum.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"letSum.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letSum.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file +{"version":3,"file":"letSum.d.ts","sourceRoot":"","sources":["../../../src/native/variable/letSum.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAE1D,wBA0BE"} \ No newline at end of file diff --git a/dist/native/variable/letSum.js b/dist/native/variable/letSum.js index cdc4feb57c..15a2783d99 100644 --- a/dist/native/variable/letSum.js +++ b/dist/native/variable/letSum.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/variable/letSum.js.map b/dist/native/variable/letSum.js.map index 6782acee46..4e0ed6774a 100644 --- a/dist/native/variable/letSum.js.map +++ b/dist/native/variable/letSum.js.map @@ -1 +1 @@ -{"version":3,"file":"letSum.js","sourceRoot":"","sources":["../../../src/native/variable/letSum.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"letSum.js","sourceRoot":"","sources":["../../../src/native/variable/letSum.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,QAAQ,EAAE,IAAI;IACd,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,KAAK,CAAE;QACvB,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAA;QACxD,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/getWebhook.d.ts b/dist/native/webhook/getWebhook.d.ts new file mode 100644 index 0000000000..a7c70003cb --- /dev/null +++ b/dist/native/webhook/getWebhook.d.ts @@ -0,0 +1,17 @@ +import { WebhookProperty } from "../../properties/webhook"; +import { ArgType, NativeFunction } from "../../structures"; +declare const _default: NativeFunction<[{ + name: string; + description: string; + rest: false; + type: ArgType.Webhook; + required: true; +}, { + name: string; + description: string; + rest: false; + type: ArgType.Enum; + enum: typeof WebhookProperty; +}], true>; +export default _default; +//# sourceMappingURL=getWebhook.d.ts.map \ No newline at end of file diff --git a/dist/native/webhook/getWebhook.d.ts.map b/dist/native/webhook/getWebhook.d.ts.map new file mode 100644 index 0000000000..5a70eeae45 --- /dev/null +++ b/dist/native/webhook/getWebhook.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"getWebhook.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/getWebhook.ts"],"names":[],"mappings":"AAKA,OAAO,EAAqB,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;AAElE,wBA8BE"} \ No newline at end of file diff --git a/dist/native/webhook/getWebhook.js b/dist/native/webhook/getWebhook.js new file mode 100644 index 0000000000..e8f8574420 --- /dev/null +++ b/dist/native/webhook/getWebhook.js @@ -0,0 +1,41 @@ +"use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ +Object.defineProperty(exports, "__esModule", { value: true }); +const webhook_1 = require("../../properties/webhook"); +const structures_1 = require("../../structures"); +exports.default = new structures_1.NativeFunction({ + name: "$getWebhook", + version: "2.6.0", + description: "Returns a webhook from a channel", + brackets: true, + unwrap: true, + args: [ + { + name: "webhook ID", + description: "The webhook to get", + rest: false, + type: structures_1.ArgType.Webhook, + required: true, + }, + { + name: "property", + description: "The property of the webhook to return", + rest: false, + type: structures_1.ArgType.Enum, + enum: webhook_1.WebhookProperty + }, + ], + output: [ + structures_1.ArgType.Json, + structures_1.ArgType.Unknown + ], + execute(ctx, [web, prop]) { + if (prop) + return this.success(webhook_1.WebhookProperties[prop](web)); + return this.successJSON(web); + }, +}); +//# sourceMappingURL=getWebhook.js.map \ No newline at end of file diff --git a/dist/native/webhook/getWebhook.js.map b/dist/native/webhook/getWebhook.js.map new file mode 100644 index 0000000000..a679a69474 --- /dev/null +++ b/dist/native/webhook/getWebhook.js.map @@ -0,0 +1 @@ +{"version":3,"file":"getWebhook.js","sourceRoot":"","sources":["../../../src/native/webhook/getWebhook.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,sDAA6E;AAC7E,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,yBAAe;SACxB;KACJ;IACD,MAAM,EAAE;QACJ,oBAAO,CAAC,IAAI;QACZ,oBAAO,CAAC,OAAO;KAClB;IACD,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,CAAC;QACpB,IAAI,IAAI;YAAE,OAAO,IAAI,CAAC,OAAO,CAAC,2BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;QAC3D,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookCreate.d.ts.map b/dist/native/webhook/webhookCreate.d.ts.map index 4ad48733f0..f254b35135 100644 --- a/dist/native/webhook/webhookCreate.d.ts.map +++ b/dist/native/webhook/webhookCreate.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookCreate.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookCreate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;AAdlC,wBA0CE"} \ No newline at end of file +{"version":3,"file":"webhookCreate.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookCreate.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAe,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;eAgB3C,WAAW;;;;;;;;;;;;;AAdlC,wBA0CE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookCreate.js b/dist/native/webhook/webhookCreate.js index edd9c5b0da..debae9ab73 100644 --- a/dist/native/webhook/webhookCreate.js +++ b/dist/native/webhook/webhookCreate.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/webhook/webhookCreate.js.map b/dist/native/webhook/webhookCreate.js.map index cc1c5bd3b4..ec9745fbb7 100644 --- a/dist/native/webhook/webhookCreate.js.map +++ b/dist/native/webhook/webhookCreate.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookCreate.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookCreate.ts"],"names":[],"mappings":";;AACA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,eAAe,IAAI,CAAC;SAClD;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACnC,MAAM,EAAE,GAAG,OAAsB,CAAA;QACjC,MAAM,GAAG,GAAG,MAAM,EAAE;aACf,aAAa,CAAC;YACX,IAAI,EAAE,IAAI;YACV,MAAM,EAAE,GAAG,IAAI,SAAS;YACxB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookCreate.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookCreate.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAGF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wDAAwD;IACrE,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,eAAe,IAAI,CAAC;SAClD;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC;QACnC,MAAM,EAAE,GAAG,OAAsB,CAAA;QACjC,MAAM,GAAG,GAAG,MAAM,EAAE;aACf,aAAa,CAAC;YACX,IAAI,EAAE,IAAI;YACV,MAAM,EAAE,GAAG,IAAI,SAAS;YACxB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IACjD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookDelete.d.ts.map b/dist/native/webhook/webhookDelete.d.ts.map index 20a48cd906..b293f42f4d 100644 --- a/dist/native/webhook/webhookDelete.d.ts.map +++ b/dist/native/webhook/webhookDelete.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookDelete.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookDelete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"webhookDelete.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookDelete.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookDelete.js b/dist/native/webhook/webhookDelete.js index 3ba05282f5..6e3eac5ce5 100644 --- a/dist/native/webhook/webhookDelete.js +++ b/dist/native/webhook/webhookDelete.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -9,8 +13,8 @@ exports.default = new structures_1.NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to delete", rest: false, type: structures_1.ArgType.Webhook, required: true, diff --git a/dist/native/webhook/webhookDelete.js.map b/dist/native/webhook/webhookDelete.js.map index 3f71a23fc7..254af17eff 100644 --- a/dist/native/webhook/webhookDelete.js.map +++ b/dist/native/webhook/webhookDelete.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookDelete.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookDelete.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,MAAM,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookDelete.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookDelete.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,MAAM,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC5C,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookEdit.d.ts.map b/dist/native/webhook/webhookEdit.d.ts.map index d060f5ef46..f9f998c220 100644 --- a/dist/native/webhook/webhookEdit.d.ts.map +++ b/dist/native/webhook/webhookEdit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookEdit.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookEdit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file +{"version":3,"file":"webhookEdit.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookEdit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;AAElE,wBAuCE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookEdit.js b/dist/native/webhook/webhookEdit.js index eddaaf0ca2..938f8ec9cf 100644 --- a/dist/native/webhook/webhookEdit.js +++ b/dist/native/webhook/webhookEdit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -7,11 +11,10 @@ exports.default = new structures_1.NativeFunction({ description: "Edits webhook with given id, returns bool", brackets: true, unwrap: true, - output: structures_1.ArgType.Boolean, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to edit", rest: false, type: structures_1.ArgType.Webhook, required: true, @@ -29,6 +32,7 @@ exports.default = new structures_1.NativeFunction({ type: structures_1.ArgType.String, }, ], + output: structures_1.ArgType.Boolean, async execute(ctx, [web, name, avatar]) { const edit = await web .edit({ diff --git a/dist/native/webhook/webhookEdit.js.map b/dist/native/webhook/webhookEdit.js.map index 90830ed75a..1def430124 100644 --- a/dist/native/webhook/webhookEdit.js.map +++ b/dist/native/webhook/webhookEdit.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookEdit.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookEdit.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,CAAC;QAClC,MAAM,IAAI,GAAG,MAAM,GAAG;aACjB,IAAI,CAAC;YACF,MAAM,EAAE,MAAM,IAAI,SAAS;YAC3B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookEdit.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookEdit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,CAAC;QAClC,MAAM,IAAI,GAAG,MAAM,GAAG;aACjB,IAAI,CAAC;YACF,MAAM,EAAE,MAAM,IAAI,SAAS;YAC3B,IAAI,EAAE,IAAI,IAAI,SAAS;YACvB,MAAM,EAAE,GAAG,CAAC,MAAM;SACrB,CAAC;aACD,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAEpB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookEditMessage.d.ts.map b/dist/native/webhook/webhookEditMessage.d.ts.map index b4ad5c4b81..bdc8c2ee7c 100644 --- a/dist/native/webhook/webhookEditMessage.d.ts.map +++ b/dist/native/webhook/webhookEditMessage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookEditMessage.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookEditMessage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA0B,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;eAmC3C,WAAW;;AAjClC,wBA8CE"} \ No newline at end of file +{"version":3,"file":"webhookEditMessage.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookEditMessage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA0B,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;eAmC3C,WAAW;;AAjClC,wBA8CE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookEditMessage.js b/dist/native/webhook/webhookEditMessage.js index 93dab16aa6..8199fdc066 100644 --- a/dist/native/webhook/webhookEditMessage.js +++ b/dist/native/webhook/webhookEditMessage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/webhook/webhookEditMessage.js.map b/dist/native/webhook/webhookEditMessage.js.map index ad6e43e810..49397edb5a 100644 --- a/dist/native/webhook/webhookEditMessage.js.map +++ b/dist/native/webhook/webhookEditMessage.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookEditMessage.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookEditMessage.ts"],"names":[],"mappings":";;AAAA,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,CAAE;QAC5C,MAAM,GAAG,GAAG,IAAI,0BAAa,CAAC,EAAE,GAAG,EAAE,CAAC,CAAA;QAEtC,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,EAAE,EAAE,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;QAEnC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAU,GAAG,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookEditMessage.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookEditMessage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,uCAAuC;IACpD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAE,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,CAAE;QAC5C,MAAM,GAAG,GAAG,IAAI,0BAAa,CAAC,EAAE,GAAG,EAAE,CAAC,CAAA;QAEtC,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,EAAE,EAAE,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,IAAI,GAAG,IAAI,CAAA;QACzB,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;QAEnC,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAU,GAAG,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC,CAAC,CAAA;IACnF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookExists.d.ts.map b/dist/native/webhook/webhookExists.d.ts.map index bd7ddc1c0f..5f1fc19488 100644 --- a/dist/native/webhook/webhookExists.d.ts.map +++ b/dist/native/webhook/webhookExists.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookExists.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookExists.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"webhookExists.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookExists.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAoB,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAEpF,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookExists.js b/dist/native/webhook/webhookExists.js index fd2afd3e6c..f01b23425d 100644 --- a/dist/native/webhook/webhookExists.js +++ b/dist/native/webhook/webhookExists.js @@ -1,24 +1,28 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$webhookExists", version: "1.0.0", - description: "Checks whether given webhook id eixsts", + description: "Checks whether given webhook id exists", brackets: true, unwrap: true, - output: structures_1.ArgType.Boolean, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook id to check for", rest: false, type: structures_1.ArgType.String, required: true, }, ], + output: structures_1.ArgType.Boolean, async execute(ctx, [id]) { - return this.success((await ctx.client.fetchWebhook(id).catch(() => false)) !== false); + return this.success(structures_1.CompiledFunction.IdRegex.test(id) && (await ctx.client.fetchWebhook(id).catch(() => false)) !== false); }, }); //# sourceMappingURL=webhookExists.js.map \ No newline at end of file diff --git a/dist/native/webhook/webhookExists.js.map b/dist/native/webhook/webhookExists.js.map index 3f798eb25d..b7841930bb 100644 --- a/dist/native/webhook/webhookExists.js.map +++ b/dist/native/webhook/webhookExists.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookExists.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookExists.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IACzF,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookExists.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookExists.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAoF;AAEpF,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,wCAAwC;IACrD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,OAAO,CAAC,6BAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;IAC9H,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookIsUserCreated.d.ts.map b/dist/native/webhook/webhookIsUserCreated.d.ts.map index ee14396cc3..71bd85d6d7 100644 --- a/dist/native/webhook/webhookIsUserCreated.d.ts.map +++ b/dist/native/webhook/webhookIsUserCreated.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookIsUserCreated.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookIsUserCreated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"webhookIsUserCreated.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookIsUserCreated.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookIsUserCreated.js b/dist/native/webhook/webhookIsUserCreated.js index 4df3d87d9b..56cc1fca82 100644 --- a/dist/native/webhook/webhookIsUserCreated.js +++ b/dist/native/webhook/webhookIsUserCreated.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ @@ -9,15 +13,15 @@ exports.default = new structures_1.NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, type: structures_1.ArgType.Webhook, required: true, }, ], output: structures_1.ArgType.Boolean, - async execute(ctx, [web]) { + execute(ctx, [web]) { return this.success(web.isUserCreated()); }, }); diff --git a/dist/native/webhook/webhookIsUserCreated.js.map b/dist/native/webhook/webhookIsUserCreated.js.map index 4039599542..12bd76ff61 100644 --- a/dist/native/webhook/webhookIsUserCreated.js.map +++ b/dist/native/webhook/webhookIsUserCreated.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookIsUserCreated.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookIsUserCreated.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookIsUserCreated.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookIsUserCreated.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookSend.d.ts.map b/dist/native/webhook/webhookSend.d.ts.map index c160c872c6..7d2036f97d 100644 --- a/dist/native/webhook/webhookSend.d.ts.map +++ b/dist/native/webhook/webhookSend.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookSend.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookSend.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAmD,MAAM,YAAY,CAAA;AACzF,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA8C3C,WAAW;;;;;;;;;;;;AA5ClC,wBAyEE"} \ No newline at end of file +{"version":3,"file":"webhookSend.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookSend.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAA0B,MAAM,YAAY,CAAA;AAChE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA8C3C,WAAW;;;;;;;;;;;;AA5ClC,wBAyEE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookSend.js b/dist/native/webhook/webhookSend.js index c9a452ccb3..9146221fc9 100644 --- a/dist/native/webhook/webhookSend.js +++ b/dist/native/webhook/webhookSend.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); diff --git a/dist/native/webhook/webhookSend.js.map b/dist/native/webhook/webhookSend.js.map index 0c88cdaf27..be0b30990d 100644 --- a/dist/native/webhook/webhookSend.js.map +++ b/dist/native/webhook/webhookSend.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookSend.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookSend.ts"],"names":[],"mappings":";;AAAA,2CAAyF;AACzF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC;QACvF,MAAM,GAAG,GAAG,IAAI,0BAAa,CAAC,EAAE,GAAG,EAAE,CAAC,CAAA;QAEtC,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,QAAQ,IAAI,SAAS,CAAA;QAC9C,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,EAAE,EAAE,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,IAAI,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,IAAI,SAAS,CAAA;QAC7C,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;QAEnC,MAAM,CAAC,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAU,GAAG,CAAC,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookSend.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookSend.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAgE;AAChE,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,oBAAO,CAAC,OAAO;IACvB,IAAI,EAAE;QACF;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,2CAA2C;YACxD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;SACxB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,KAAK,EAAE,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;SAC1C;QACD;YACI,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC;QACvF,MAAM,GAAG,GAAG,IAAI,0BAAa,CAAC,EAAE,GAAG,EAAE,CAAC,CAAA;QAEtC,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,OAAO,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,QAAQ,IAAI,SAAS,CAAA;QAC9C,GAAG,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,EAAE,EAAE,IAAI,SAAS,CAAA;QAChD,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,IAAI,IAAI,SAAS,CAAA;QAC5C,GAAG,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,IAAI,SAAS,CAAA;QAC7C,GAAG,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAA;QAEnC,MAAM,CAAC,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAU,GAAG,CAAC,CAAA;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;IAChE,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookToken.d.ts b/dist/native/webhook/webhookToken.d.ts index f2373e17d7..86032f0de4 100644 --- a/dist/native/webhook/webhookToken.d.ts +++ b/dist/native/webhook/webhookToken.d.ts @@ -3,7 +3,7 @@ declare const _default: NativeFunction<[{ name: string; description: string; rest: false; - type: ArgType.String; + type: ArgType.Webhook; required: true; }], true>; export default _default; diff --git a/dist/native/webhook/webhookToken.d.ts.map b/dist/native/webhook/webhookToken.d.ts.map index 3d3a7935ff..db2cd45f94 100644 --- a/dist/native/webhook/webhookToken.d.ts.map +++ b/dist/native/webhook/webhookToken.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookToken.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookToken.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"webhookToken.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookToken.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookToken.js b/dist/native/webhook/webhookToken.js index 1089a729d5..cd18ce8c66 100644 --- a/dist/native/webhook/webhookToken.js +++ b/dist/native/webhook/webhookToken.js @@ -1,25 +1,28 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$webhookToken", version: "1.0.0", - description: "Gets webhook token of given id", + description: "Returns the token of a webhook", brackets: true, - output: structures_1.ArgType.String, unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, - type: structures_1.ArgType.String, + type: structures_1.ArgType.Webhook, required: true, }, ], - async execute(ctx, [id]) { - const web = await ctx.client.fetchWebhook(id).catch(ctx.noop); - return this.success(web ? web.token : web); + output: structures_1.ArgType.String, + execute(ctx, [web]) { + return this.success(web.token); }, }); //# sourceMappingURL=webhookToken.js.map \ No newline at end of file diff --git a/dist/native/webhook/webhookToken.js.map b/dist/native/webhook/webhookToken.js.map index 32c540a8d4..4111ddad5c 100644 --- a/dist/native/webhook/webhookToken.js.map +++ b/dist/native/webhook/webhookToken.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookToken.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookToken.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookToken.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookToken.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,eAAe;IACrB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookType.d.ts.map b/dist/native/webhook/webhookType.d.ts.map index 866fbf554a..320cbb7960 100644 --- a/dist/native/webhook/webhookType.d.ts.map +++ b/dist/native/webhook/webhookType.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookType.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookType.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file +{"version":3,"file":"webhookType.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookType.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookType.js b/dist/native/webhook/webhookType.js index 0456edcb17..481f2518a6 100644 --- a/dist/native/webhook/webhookType.js +++ b/dist/native/webhook/webhookType.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); @@ -10,15 +14,15 @@ exports.default = new structures_1.NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, type: structures_1.ArgType.Webhook, required: true, }, ], output: discord_js_1.WebhookType, - async execute(ctx, [web]) { + execute(ctx, [web]) { return this.success(discord_js_1.WebhookType[web.type]); }, }); diff --git a/dist/native/webhook/webhookType.js.map b/dist/native/webhook/webhookType.js.map index 8e2fabb283..cae691ec9e 100644 --- a/dist/native/webhook/webhookType.js.map +++ b/dist/native/webhook/webhookType.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookType.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookType.ts"],"names":[],"mappings":";;AAAA,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookType.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookType.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,2CAAwC;AACxC,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+BAA+B;IAC5C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,wBAAW;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,wBAAW,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAA;IAC9C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/webhook/webhookURL.d.ts b/dist/native/webhook/webhookURL.d.ts index 36cfa02be6..439eabba8e 100644 --- a/dist/native/webhook/webhookURL.d.ts +++ b/dist/native/webhook/webhookURL.d.ts @@ -3,7 +3,7 @@ declare const _default: NativeFunction<[{ name: string; description: string; rest: false; - type: ArgType.String; + type: ArgType.Webhook; required: true; }], true>; export default _default; diff --git a/dist/native/webhook/webhookURL.d.ts.map b/dist/native/webhook/webhookURL.d.ts.map index 3dffb28853..9d521f7c70 100644 --- a/dist/native/webhook/webhookURL.d.ts.map +++ b/dist/native/webhook/webhookURL.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhookURL.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookURL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAoBE"} \ No newline at end of file +{"version":3,"file":"webhookURL.d.ts","sourceRoot":"","sources":["../../../src/native/webhook/webhookURL.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAU,MAAM,kBAAkB,CAAA;;;;;;;;AAElE,wBAmBE"} \ No newline at end of file diff --git a/dist/native/webhook/webhookURL.js b/dist/native/webhook/webhookURL.js index e1752c03e4..670ac69d77 100644 --- a/dist/native/webhook/webhookURL.js +++ b/dist/native/webhook/webhookURL.js @@ -1,25 +1,28 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$webhookURL", version: "1.0.0", - description: "Gets webhook url with given id", + description: "Returns the url of a webhook", brackets: true, - output: structures_1.ArgType.URL, unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, - type: structures_1.ArgType.String, + type: structures_1.ArgType.Webhook, required: true, }, ], - async execute(ctx, [id]) { - const web = await ctx.client.fetchWebhook(id).catch(ctx.noop); - return this.success(web ? web.url : web); + output: structures_1.ArgType.URL, + execute(ctx, [web]) { + return this.success(web.url); }, }); //# sourceMappingURL=webhookURL.js.map \ No newline at end of file diff --git a/dist/native/webhook/webhookURL.js.map b/dist/native/webhook/webhookURL.js.map index 8d63fc6f38..bc02725af3 100644 --- a/dist/native/webhook/webhookURL.js.map +++ b/dist/native/webhook/webhookURL.js.map @@ -1 +1 @@ -{"version":3,"file":"webhookURL.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookURL.ts"],"names":[],"mappings":";;AAAA,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;YACpB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QACnB,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC5C,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhookURL.js","sourceRoot":"","sources":["../../../src/native/webhook/webhookURL.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAAkE;AAElE,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8BAA8B;IAC3C,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,OAAO;YACrB,QAAQ,EAAE,IAAI;SACjB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,GAAG;IACnB,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IAChC,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/websocket/ws.d.ts.map b/dist/native/websocket/ws.d.ts.map index 81045c5ef0..23a1e40aa8 100644 --- a/dist/native/websocket/ws.d.ts.map +++ b/dist/native/websocket/ws.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ws.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/ws.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAK1D,wBAmCE"} \ No newline at end of file +{"version":3,"file":"ws.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/ws.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;AAK1D,wBAmCE"} \ No newline at end of file diff --git a/dist/native/websocket/ws.js b/dist/native/websocket/ws.js index 72626ebcc9..7a3f734cfc 100644 --- a/dist/native/websocket/ws.js +++ b/dist/native/websocket/ws.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); const ws_1 = require("ws"); diff --git a/dist/native/websocket/ws.js.map b/dist/native/websocket/ws.js.map index 1f30e54ac6..c3f9b4eba3 100644 --- a/dist/native/websocket/ws.js.map +++ b/dist/native/websocket/ws.js.map @@ -1 +1 @@ -{"version":3,"file":"ws.js","sourceRoot":"","sources":["../../../src/native/websocket/ws.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAC1D,2BAA8B;AAE9B,IAAI,uBAAuB,GAAG,CAAC,CAAA;AAE/B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE;QACL,YAAY;KACf;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,MAAM,EAAE,GAAG,IAAI,cAAS,CAAC,IAAI,CAAC,CAAA;QAC9B,MAAM,EAAE,GAAG,EAAE,uBAAuB,CAAA;QAEpC,gBAAgB;QAChB,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC,IAAI,CAAC,CAAA;QAEzB,UAAU;QACV,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE;YACjB,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;YAChC,EAAE,CAAC,kBAAkB,EAAE,CAAA;QAC3B,CAAC,CAAC,CAAA;QAEF,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"ws.js","sourceRoot":"","sources":["../../../src/native/websocket/ws.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAC1D,2BAA8B;AAE9B,IAAI,uBAAuB,GAAG,CAAC,CAAA;AAE/B,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,KAAK;IACX,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,4CAA4C;IACzD,OAAO,EAAE;QACL,YAAY;KACf;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,MAAM,EAAE,oBAAO,CAAC,MAAM;IACtB,OAAO,CAAC,GAAG,EAAE,CAAE,IAAI,CAAE;QACjB,MAAM,EAAE,GAAG,IAAI,cAAS,CAAC,IAAI,CAAC,CAAA;QAC9B,MAAM,EAAE,GAAG,EAAE,uBAAuB,CAAA;QAEpC,gBAAgB;QAChB,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC,IAAI,CAAC,CAAA;QAEzB,UAAU;QACV,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE;YACjB,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;YAChC,EAAE,CAAC,kBAAkB,EAAE,CAAA;QAC3B,CAAC,CAAC,CAAA;QAEF,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,CAAA;QACjC,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;IAC3B,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/websocket/wsClose.d.ts.map b/dist/native/websocket/wsClose.d.ts.map index 101dd3bb4c..94dc83a4a4 100644 --- a/dist/native/websocket/wsClose.d.ts.map +++ b/dist/native/websocket/wsClose.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"wsClose.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsClose.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file +{"version":3,"file":"wsClose.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsClose.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;AAE1D,wBA8BE"} \ No newline at end of file diff --git a/dist/native/websocket/wsClose.js b/dist/native/websocket/wsClose.js index 4d4cb50ec9..b88e8bc5f7 100644 --- a/dist/native/websocket/wsClose.js +++ b/dist/native/websocket/wsClose.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/websocket/wsClose.js.map b/dist/native/websocket/wsClose.js.map index 3da827cdb6..e9a8af4da8 100644 --- a/dist/native/websocket/wsClose.js.map +++ b/dist/native/websocket/wsClose.js.map @@ -1 +1 @@ -{"version":3,"file":"wsClose.js","sourceRoot":"","sources":["../../../src/native/websocket/wsClose.ts"],"names":[],"mappings":";;AAAA,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,CAAE;QACrB,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,IAAI,EAAE;YACF,EAAE,CAAC,KAAK,CAAC,IAAI,IAAI,SAAS,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"wsClose.js","sourceRoot":"","sources":["../../../src/native/websocket/wsClose.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0D;AAE1D,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,+DAA+D;IAC5E,OAAO,EAAE;QACL,iBAAiB;KACpB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,EAAE,IAAI,CAAE;QACrB,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,IAAI,EAAE;YACF,EAAE,CAAC,KAAK,CAAC,IAAI,IAAI,SAAS,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/websocket/wsOn.d.ts.map b/dist/native/websocket/wsOn.d.ts.map index d30a682a20..6e9ca59b8b 100644 --- a/dist/native/websocket/wsOn.d.ts.map +++ b/dist/native/websocket/wsOn.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"wsOn.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsOn.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAgEE"} \ No newline at end of file +{"version":3,"file":"wsOn.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsOn.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAgEE"} \ No newline at end of file diff --git a/dist/native/websocket/wsOn.js b/dist/native/websocket/wsOn.js index ea645a537b..4f7e5dcb85 100644 --- a/dist/native/websocket/wsOn.js +++ b/dist/native/websocket/wsOn.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/websocket/wsOn.js.map b/dist/native/websocket/wsOn.js.map index 93df2a79e0..7fae29d00a 100644 --- a/dist/native/websocket/wsOn.js.map +++ b/dist/native/websocket/wsOn.js.map @@ -1 +1 @@ -{"version":3,"file":"wsOn.js","sourceRoot":"","sources":["../../../src/native/websocket/wsOn.ts"],"names":[],"mappings":";;;;;AAAA,0EAAiD;AACjD,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,cAAc;KACjB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qEAAqE;YAClF,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,CAAE,GAAG,IAAI,CAAA;QACrC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,IAAI,EAAE,EAAE;YACJ,EAAE,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE;gBAC9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;oBAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;oBACnB,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;oBACvB,IAAI,CAAC,KAAK;wBACN,MAAK;oBACT,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,GAAG,YAAY,MAAM,CAAC,CAAC,CAAC,IAAA,mBAAS,EAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;iBAC/F;gBAED,yBAAyB;gBACzB,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACxC,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"wsOn.js","sourceRoot":"","sources":["../../../src/native/websocket/wsOn.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;AAEF,0EAAiD;AACjD,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,kCAAkC;IAC/C,MAAM,EAAE,KAAK;IACb,OAAO,EAAE;QACL,cAAc;KACjB;IACD,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qEAAqE;YAClF,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,CAAE,GAAG,IAAI,CAAA;QACrC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEnE,IAAI,EAAE,EAAE;YACJ,EAAE,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE;gBAC9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;oBAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;oBACnB,MAAM,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;oBACvB,IAAI,CAAC,KAAK;wBACN,MAAK;oBACT,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,GAAG,YAAY,MAAM,CAAC,CAAC,CAAC,IAAA,mBAAS,EAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;iBAC/F;gBAED,yBAAyB;gBACzB,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAA;YACxC,CAAC,CAAC,CAAA;SACL;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/websocket/wsSend.d.ts.map b/dist/native/websocket/wsSend.d.ts.map index 4d65054db5..c090b5afa5 100644 --- a/dist/native/websocket/wsSend.d.ts.map +++ b/dist/native/websocket/wsSend.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"wsSend.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsSend.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAwDE"} \ No newline at end of file +{"version":3,"file":"wsSend.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsSend.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAkC,cAAc,EAAE,MAAM,kBAAkB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;AAE1F,wBAwDE"} \ No newline at end of file diff --git a/dist/native/websocket/wsSend.js b/dist/native/websocket/wsSend.js index c6d3ced2b3..daac12e268 100644 --- a/dist/native/websocket/wsSend.js +++ b/dist/native/websocket/wsSend.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ diff --git a/dist/native/websocket/wsSend.js.map b/dist/native/websocket/wsSend.js.map index 16f84a1198..fe48f56243 100644 --- a/dist/native/websocket/wsSend.js.map +++ b/dist/native/websocket/wsSend.js.map @@ -1 +1 @@ -{"version":3,"file":"wsSend.js","sourceRoot":"","sources":["../../../src/native/websocket/wsSend.ts"],"names":[],"mappings":";;AAAA,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,gEAAgE;YAC7E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,EAAE,EAAE,KAAK,EAAE,KAAK,CAAE,GAAG,IAAI,CAAA;QACjC,MAAM,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEjE,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,IAAI,EAAE,EAAE;YACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;gBAC9C,IAAI,KAAK;oBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;gBACrC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAA;YACtC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"wsSend.js","sourceRoot":"","sources":["../../../src/native/websocket/wsSend.ts"],"names":[],"mappings":";AAAA;;;EAGE;;AAEF,iDAA0F;AAE1F,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,2BAA2B;IACxC,OAAO,EAAE;QACL,gBAAgB;KACnB;IACD,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,IAAI;SACrB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0CAA0C;YACvD,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,gEAAgE;YAC7E,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,KAAK,CAAC,OAAO,CAAC,GAAG;QACb,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;QAC5E,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,CAAC;YAAE,OAAO,EAAE,CAAA;QAE7C,MAAM,CAAE,EAAE,EAAE,KAAK,EAAE,KAAK,CAAE,GAAG,IAAI,CAAA;QACjC,MAAM,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,MAAO,CAAC,CAAC,CAAmC,CAAA;QAEjE,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,IAAI,EAAE,EAAE;YACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;gBAC9C,IAAI,KAAK;oBACL,GAAG,CAAC,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;gBACrC,MAAM,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAA;YACtC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;SACjB;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACzB,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/native/websocket/wsState.d.ts.map b/dist/native/websocket/wsState.d.ts.map index 82ae709494..12f9060512 100644 --- a/dist/native/websocket/wsState.d.ts.map +++ b/dist/native/websocket/wsState.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"wsState.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsState.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,oBAAY,eAAe;IACvB,UAA0B;IAC1B,MAAkB;IAClB,OAAoB;IACpB,IAAc;CACjB;;;;;;;;AAED,wBAoBE"} \ No newline at end of file +{"version":3,"file":"wsState.d.ts","sourceRoot":"","sources":["../../../src/native/websocket/wsState.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAE1D,oBAAY,eAAe;IACvB,UAA0B;IAC1B,MAAkB;IAClB,OAAoB;IACpB,IAAc;CACjB;;;;;;;;AAED,wBAoBE"} \ No newline at end of file diff --git a/dist/native/websocket/wsState.js b/dist/native/websocket/wsState.js index 6d6b6fc0fb..d33b1738e2 100644 --- a/dist/native/websocket/wsState.js +++ b/dist/native/websocket/wsState.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/native/websocket/wsState.js.map b/dist/native/websocket/wsState.js.map index c573e0bfb0..15d05bfa93 100644 --- a/dist/native/websocket/wsState.js.map +++ b/dist/native/websocket/wsState.js.map @@ -1 +1 @@ -{"version":3,"file":"wsState.js","sourceRoot":"","sources":["../../../src/native/websocket/wsState.ts"],"names":[],"mappings":";;;;;;AAAA,4CAAmB;AACnB,iDAA0D;AAE1D,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,gDAAa,YAAE,CAAC,UAAU,gBAAA,CAAA;IAC1B,4CAAS,YAAE,CAAC,MAAM,YAAA,CAAA;IAClB,6CAAU,YAAE,CAAC,OAAO,aAAA,CAAA;IACpB,0CAAO,YAAE,CAAC,IAAI,UAAA,CAAA;AAClB,CAAC,EALW,eAAe,+BAAf,eAAe,QAK1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,eAAe;IACvB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,UAAW,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"wsState.js","sourceRoot":"","sources":["../../../src/native/websocket/wsState.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,4CAAmB;AACnB,iDAA0D;AAE1D,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,gDAAa,YAAE,CAAC,UAAU,gBAAA,CAAA;IAC1B,4CAAS,YAAE,CAAC,MAAM,YAAA,CAAA;IAClB,6CAAU,YAAE,CAAC,OAAO,aAAA,CAAA;IACpB,0CAAO,YAAE,CAAC,IAAI,UAAA,CAAA;AAClB,CAAC,EALW,eAAe,+BAAf,eAAe,QAK1B;AAED,kBAAe,IAAI,2BAAc,CAAC;IAC9B,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,OAAO;IAChB,MAAM,EAAE,eAAe;IACvB,WAAW,EAAE,wCAAwC;IACrD,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,IAAI,EAAE;QACF;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,gCAAgC;YAC7C,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,oBAAO,CAAC,MAAM;SACvB;KACJ;IACD,OAAO,CAAC,GAAG,EAAE,CAAE,EAAE,CAAE;QACf,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACxC,OAAO,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,UAAW,CAAC,CAAC,CAAA;IACzD,CAAC;CACJ,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/activity.d.ts.map b/dist/properties/activity.d.ts.map index b73ba98c64..26f808ea20 100644 --- a/dist/properties/activity.d.ts.map +++ b/dist/properties/activity.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../src/properties/activity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAgB,MAAM,YAAY,CAAA;AAGnD,oBAAY,gBAAgB;IACxB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,kBAAkB,uFAiB7B,CAAA"} \ No newline at end of file +{"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../src/properties/activity.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAgB,MAAM,YAAY,CAAA;AAGnD,oBAAY,gBAAgB;IACxB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,kBAAkB,uFAiB7B,CAAA"} \ No newline at end of file diff --git a/dist/properties/activity.js b/dist/properties/activity.js index 500519bb2e..48440430b6 100644 --- a/dist/properties/activity.js +++ b/dist/properties/activity.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -35,7 +39,7 @@ exports.ActivityProperties = (0, defineProperties_1.default)({ endTimestamp: (i) => i?.timestamps?.end?.getTime(), startTimestamp: (i) => i?.timestamps?.start?.getTime(), partyID: (i) => i?.party?.id, - partySize: (i) => i?.party?.size[0], + partySize: (i) => i?.party?.size?.[0], syncID: (i) => i?.syncId, url: (i) => i?.url, largeText: (i) => i?.assets?.largeText, diff --git a/dist/properties/activity.js.map b/dist/properties/activity.js.map index a5b6c64d2b..796e417455 100644 --- a/dist/properties/activity.js.map +++ b/dist/properties/activity.js.map @@ -1 +1 @@ -{"version":3,"file":"activity.js","sourceRoot":"","sources":["../../src/properties/activity.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAmD;AACnD,qFAA4D;AAE5D,IAAY,gBAiBX;AAjBD,WAAY,gBAAgB;IACxB,iCAAa,CAAA;IACb,iCAAa,CAAA;IACb,uCAAmB,CAAA;IACnB,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,2CAAuB,CAAA;IACvB,iDAA6B,CAAA;IAC7B,qDAAiC,CAAA;IACjC,uCAAmB,CAAA;IACnB,2CAAuB,CAAA;IACvB,qCAAiB,CAAA;IACjB,+BAAW,CAAA;IACX,2CAAuB,CAAA;IACvB,6CAAyB,CAAA;IACzB,2CAAuB,CAAA;IACvB,6CAAyB,CAAA;AAC7B,CAAC,EAjBW,gBAAgB,gCAAhB,gBAAgB,QAiB3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAoC;IAClF,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAY,CAAC,CAAC,EAAE,IAAK,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACjD,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,YAAY,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,GAAG,EAAE,OAAO,EAAE;IAClD,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,KAAK,EAAE,OAAO,EAAE;IACtD,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,SAAS;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE;IAC7C,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,SAAS;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE;CAChD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"activity.js","sourceRoot":"","sources":["../../src/properties/activity.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAmD;AACnD,qFAA4D;AAE5D,IAAY,gBAiBX;AAjBD,WAAY,gBAAgB;IACxB,iCAAa,CAAA;IACb,iCAAa,CAAA;IACb,uCAAmB,CAAA;IACnB,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,2CAAuB,CAAA;IACvB,iDAA6B,CAAA;IAC7B,qDAAiC,CAAA;IACjC,uCAAmB,CAAA;IACnB,2CAAuB,CAAA;IACvB,qCAAiB,CAAA;IACjB,+BAAW,CAAA;IACX,2CAAuB,CAAA;IACvB,6CAAyB,CAAA;IACzB,2CAAuB,CAAA;IACvB,6CAAyB,CAAA;AAC7B,CAAC,EAjBW,gBAAgB,gCAAhB,gBAAgB,QAiB3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAoC;IAClF,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,yBAAY,CAAC,CAAC,EAAE,IAAK,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACjD,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,YAAY,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,GAAG,EAAE,OAAO,EAAE;IAClD,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,KAAK,EAAE,OAAO,EAAE;IACtD,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;IACrC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,SAAS;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE;IAC7C,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,SAAS;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE;CAChD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/applicationEmoji.d.ts.map b/dist/properties/applicationEmoji.d.ts.map index 4ab401791e..9e13c3dd70 100644 --- a/dist/properties/applicationEmoji.d.ts.map +++ b/dist/properties/applicationEmoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"applicationEmoji.d.ts","sourceRoot":"","sources":["../../src/properties/applicationEmoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAG7C,oBAAY,wBAAwB;IAChC,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,EAAE,OAAO;IACT,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,GAAG,QAAQ;IACX,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,0BAA0B,uGAWrC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationEmoji.d.ts","sourceRoot":"","sources":["../../src/properties/applicationEmoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAG7C,oBAAY,wBAAwB;IAChC,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,EAAE,OAAO;IACT,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,GAAG,QAAQ;IACX,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,0BAA0B,uGAWrC,CAAA"} \ No newline at end of file diff --git a/dist/properties/applicationEmoji.js b/dist/properties/applicationEmoji.js index 05752d7708..e022c3ac9e 100644 --- a/dist/properties/applicationEmoji.js +++ b/dist/properties/applicationEmoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/applicationEmoji.js.map b/dist/properties/applicationEmoji.js.map index f932756445..9a9d56f8fd 100644 --- a/dist/properties/applicationEmoji.js.map +++ b/dist/properties/applicationEmoji.js.map @@ -1 +1 @@ -{"version":3,"file":"applicationEmoji.js","sourceRoot":"","sources":["../../src/properties/applicationEmoji.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,wBAWX;AAXD,WAAY,wBAAwB;IAChC,iDAAqB,CAAA;IACrB,yCAAa,CAAA;IACb,qCAAS,CAAA;IACT,qDAAyB,CAAA;IACzB,6DAAiC,CAAA;IACjC,+CAAmB,CAAA;IACnB,mDAAuB,CAAA;IACvB,iDAAqB,CAAA;IACrB,uCAAW,CAAA;IACX,6CAAiB,CAAA;AACrB,CAAC,EAXW,wBAAwB,wCAAxB,wBAAwB,QAWnC;AAEY,QAAA,0BAA0B,GAAG,IAAA,0BAAgB,EAAoD;IAC1G,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC5B,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;CACxC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"applicationEmoji.js","sourceRoot":"","sources":["../../src/properties/applicationEmoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,wBAWX;AAXD,WAAY,wBAAwB;IAChC,iDAAqB,CAAA;IACrB,yCAAa,CAAA;IACb,qCAAS,CAAA;IACT,qDAAyB,CAAA;IACzB,6DAAiC,CAAA;IACjC,+CAAmB,CAAA;IACnB,mDAAuB,CAAA;IACvB,iDAAqB,CAAA;IACrB,uCAAW,CAAA;IACX,6CAAiB,CAAA;AACrB,CAAC,EAXW,wBAAwB,wCAAxB,wBAAwB,QAWnC;AAEY,QAAA,0BAA0B,GAAG,IAAA,0BAAgB,EAAoD;IAC1G,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC5B,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;CACxC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/audit.d.ts.map b/dist/properties/audit.d.ts.map index bec90214ff..d932d180da 100644 --- a/dist/properties/audit.d.ts.map +++ b/dist/properties/audit.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"audit.d.ts","sourceRoot":"","sources":["../../src/properties/audit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAG/D,oBAAY,aAAa;IACrB,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,KAAK,UAAU;CAClB;AAED,eAAO,MAAM,eAAe,mbAW1B,CAAA"} \ No newline at end of file +{"version":3,"file":"audit.d.ts","sourceRoot":"","sources":["../../src/properties/audit.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAG/D,oBAAY,aAAa;IACrB,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,KAAK,UAAU;CAClB;AAED,eAAO,MAAM,eAAe,mbAW1B,CAAA"} \ No newline at end of file diff --git a/dist/properties/audit.js b/dist/properties/audit.js index bc9253268d..2d077d8e7f 100644 --- a/dist/properties/audit.js +++ b/dist/properties/audit.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/audit.js.map b/dist/properties/audit.js.map index 8479d7f36d..cc573ac30a 100644 --- a/dist/properties/audit.js.map +++ b/dist/properties/audit.js.map @@ -1 +1 @@ -{"version":3,"file":"audit.js","sourceRoot":"","sources":["../../src/properties/audit.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA+D;AAC/D,qFAA4D;AAE5D,IAAY,aAWX;AAXD,WAAY,aAAa;IACrB,0BAAS,CAAA;IACT,sCAAqB,CAAA;IACrB,wCAAuB,CAAA;IACvB,kCAAiB,CAAA;IACjB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,kCAAiB,CAAA;IACjB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACnB,CAAC,EAXW,aAAa,6BAAb,aAAa,QAWxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAA4C;IACvF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IACrF,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC3D,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,0BAAa,CAAC,CAAC,EAAE,MAAO,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;CACnC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"audit.js","sourceRoot":"","sources":["../../src/properties/audit.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA+D;AAC/D,qFAA4D;AAE5D,IAAY,aAWX;AAXD,WAAY,aAAa;IACrB,0BAAS,CAAA;IACT,sCAAqB,CAAA;IACrB,wCAAuB,CAAA;IACvB,kCAAiB,CAAA;IACjB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,kCAAiB,CAAA;IACjB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACnB,CAAC,EAXW,aAAa,6BAAb,aAAa,QAWxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAA4C;IACvF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IACrF,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC3D,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,0BAAa,CAAC,CAAC,EAAE,MAAO,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;CACnC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/automodRule.d.ts b/dist/properties/automodRule.d.ts index 6f3febc030..381db01290 100644 --- a/dist/properties/automodRule.d.ts +++ b/dist/properties/automodRule.d.ts @@ -1,4 +1,4 @@ -import { AutoModerationRule } from "discord.js"; +import { AutoModerationAction, AutoModerationRule } from "discord.js"; export declare enum AutomodRuleProperty { id = "id", name = "name", @@ -18,4 +18,11 @@ export declare enum AutomodRuleProperty { mentionRaidProtectionEnabled = "mentionRaidProtectionEnabled" } export declare const AutomodRuleProperties: import("../functions/defineProperties").Properties; +export declare enum AutomodRuleActionProperty { + type = "type", + channelID = "channelID", + durationSeconds = "durationSeconds", + customMessage = "customMessage" +} +export declare const AutomodRuleActionProperties: import("../functions/defineProperties").Properties; //# sourceMappingURL=automodRule.d.ts.map \ No newline at end of file diff --git a/dist/properties/automodRule.d.ts.map b/dist/properties/automodRule.d.ts.map index 96cf2cf00b..2e3b0d2b81 100644 --- a/dist/properties/automodRule.d.ts.map +++ b/dist/properties/automodRule.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"automodRule.d.ts","sourceRoot":"","sources":["../../src/properties/automodRule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAmG,MAAM,YAAY,CAAA;AAGhJ,oBAAY,mBAAmB;IAC3B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,aAAa,kBAAkB;IAC/B,aAAa,kBAAkB;IAC/B,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,4BAA4B,iCAAiC;CAChE;AAED,eAAO,MAAM,qBAAqB,oGAiBhC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodRule.d.ts","sourceRoot":"","sources":["../../src/properties/automodRule.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,oBAAoB,EAA4B,kBAAkB,EAAmG,MAAM,YAAY,CAAA;AAGhM,oBAAY,mBAAmB;IAC3B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,aAAa,kBAAkB;IAC/B,aAAa,kBAAkB;IAC/B,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,4BAA4B,iCAAiC;CAChE;AAED,eAAO,MAAM,qBAAqB,oGAiBhC,CAAA;AAEF,oBAAY,yBAAyB;IACjC,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;CAClC;AAED,eAAO,MAAM,2BAA2B,4GAKtC,CAAA"} \ No newline at end of file diff --git a/dist/properties/automodRule.js b/dist/properties/automodRule.js index 208bfc47e0..b385725090 100644 --- a/dist/properties/automodRule.js +++ b/dist/properties/automodRule.js @@ -1,9 +1,13 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.AutomodRuleProperties = exports.AutomodRuleProperty = void 0; +exports.AutomodRuleActionProperties = exports.AutomodRuleActionProperty = exports.AutomodRuleProperties = exports.AutomodRuleProperty = void 0; const discord_js_1 = require("discord.js"); const defineProperties_1 = __importDefault(require("../functions/defineProperties")); var AutomodRuleProperty; @@ -43,4 +47,17 @@ exports.AutomodRuleProperties = (0, defineProperties_1.default)({ mentionTotalLimit: (i) => i?.triggerMetadata.mentionTotalLimit, mentionRaidProtectionEnabled: (i) => i?.triggerMetadata.mentionRaidProtectionEnabled }); +var AutomodRuleActionProperty; +(function (AutomodRuleActionProperty) { + AutomodRuleActionProperty["type"] = "type"; + AutomodRuleActionProperty["channelID"] = "channelID"; + AutomodRuleActionProperty["durationSeconds"] = "durationSeconds"; + AutomodRuleActionProperty["customMessage"] = "customMessage"; +})(AutomodRuleActionProperty || (exports.AutomodRuleActionProperty = AutomodRuleActionProperty = {})); +exports.AutomodRuleActionProperties = (0, defineProperties_1.default)({ + type: (i) => discord_js_1.AutoModerationActionType[i?.type], + channelID: (i) => i?.metadata.channelId, + durationSeconds: (i) => i?.metadata.durationSeconds, + customMessage: (i) => i?.metadata.customMessage, +}); //# sourceMappingURL=automodRule.js.map \ No newline at end of file diff --git a/dist/properties/automodRule.js.map b/dist/properties/automodRule.js.map index 4521da3fb4..a76880ffa2 100644 --- a/dist/properties/automodRule.js.map +++ b/dist/properties/automodRule.js.map @@ -1 +1 @@ -{"version":3,"file":"automodRule.js","sourceRoot":"","sources":["../../src/properties/automodRule.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAgJ;AAChJ,qFAA4D;AAE5D,IAAY,mBAiBX;AAjBD,WAAY,mBAAmB;IAC3B,gCAAS,CAAA;IACT,oCAAa,CAAA;IACb,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;IACvB,kDAA2B,CAAA;IAC3B,0DAAmC,CAAA;IACnC,kDAA2B,CAAA;IAC3B,wDAAiC,CAAA;IACjC,0CAAmB,CAAA;IACnB,sDAA+B,CAAA;IAC/B,sDAA+B,CAAA;IAC/B,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;IACvB,8DAAuC,CAAA;IACvC,oFAA6D,CAAA;AACjE,CAAC,EAjBW,mBAAmB,mCAAnB,mBAAmB,QAiB9B;AAEY,QAAA,qBAAqB,GAAG,IAAA,0BAAgB,EAAiD;IAClG,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC7B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,wCAA2B,CAAC,CAAC,EAAE,SAAU,CAAC;IAC5D,cAAc,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACjF,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC3E,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,0CAA6B,CAAC,CAAC,EAAE,WAAY,CAAC;IAClE,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,CAAC;IACxD,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,eAAe,EAAE,SAAS,EAAE,CAAC,CAAC;IACxE,aAAa,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC7E,aAAa,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC7E,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,gDAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACpH,SAAS,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACrE,iBAAiB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,iBAAiB;IAC9D,4BAA4B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,4BAA4B;CACvF,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"automodRule.js","sourceRoot":"","sources":["../../src/properties/automodRule.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/properties/bulk.d.ts b/dist/properties/bulk.d.ts index ed431a4cdf..01cdaca922 100644 --- a/dist/properties/bulk.d.ts +++ b/dist/properties/bulk.d.ts @@ -8,5 +8,5 @@ export declare enum BulkProperty { users = "users", count = "count" } -export declare const BulkProperties: import("../functions/defineProperties").Properties | import("discord.js").PartialMessage)[]>; +export declare const BulkProperties: import("../functions/defineProperties").Properties | import("discord.js").PartialMessage)[]>; //# sourceMappingURL=bulk.d.ts.map \ No newline at end of file diff --git a/dist/properties/bulk.d.ts.map b/dist/properties/bulk.d.ts.map index eb5fa9c2b0..368bd0642f 100644 --- a/dist/properties/bulk.d.ts.map +++ b/dist/properties/bulk.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"bulk.d.ts","sourceRoot":"","sources":["../../src/properties/bulk.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AAEpC,oBAAY,YAAY;IACpB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;CAClB;AAED,eAAO,MAAM,cAAc,qIAQzB,CAAA"} \ No newline at end of file +{"version":3,"file":"bulk.d.ts","sourceRoot":"","sources":["../../src/properties/bulk.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AAEpC,oBAAY,YAAY;IACpB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;CAClB;AAED,eAAO,MAAM,cAAc,8IAQzB,CAAA"} \ No newline at end of file diff --git a/dist/properties/bulk.js b/dist/properties/bulk.js index b22abc23b3..9ec3c3c787 100644 --- a/dist/properties/bulk.js +++ b/dist/properties/bulk.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/bulk.js.map b/dist/properties/bulk.js.map index e651b17964..a5898712cc 100644 --- a/dist/properties/bulk.js.map +++ b/dist/properties/bulk.js.map @@ -1 +1 @@ -{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../src/properties/bulk.ts"],"names":[],"mappings":";;;;;;AAAA,qFAA4D;AAI5D,IAAY,YAQX;AARD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,qCAAqB,CAAA;IACrB,yCAAyB,CAAA;IACzB,2CAA2B,CAAA;IAC3B,qCAAqB,CAAA;IACrB,+BAAe,CAAA;IACf,+BAAe,CAAA;AACnB,CAAC,EARW,YAAY,4BAAZ,YAAY,QAQvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAAuC;IACjF,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzD,UAAU,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzE,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzG,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACnG,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9E,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9E,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;CACxB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"bulk.js","sourceRoot":"","sources":["../../src/properties/bulk.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,qFAA4D;AAI5D,IAAY,YAQX;AARD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,qCAAqB,CAAA;IACrB,yCAAyB,CAAA;IACzB,2CAA2B,CAAA;IAC3B,qCAAqB,CAAA;IACrB,+BAAe,CAAA;IACf,+BAAe,CAAA;AACnB,CAAC,EARW,YAAY,4BAAZ,YAAY,QAQvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAAuC;IACjF,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzD,UAAU,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzE,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzG,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACnG,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9E,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9E,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;CACxB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/channel.d.ts.map b/dist/properties/channel.d.ts.map index 723b9ab9be..aca4d78cc7 100644 --- a/dist/properties/channel.d.ts.map +++ b/dist/properties/channel.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"channel.d.ts","sourceRoot":"","sources":["../../src/properties/channel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAwC,MAAM,YAAY,CAAA;AAG1E,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,QAAQ,aAAa;IACrB,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,iBAAiB,qFAuB5B,CAAA"} \ No newline at end of file +{"version":3,"file":"channel.d.ts","sourceRoot":"","sources":["../../src/properties/channel.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAwC,MAAM,YAAY,CAAA;AAG1E,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,QAAQ,aAAa;IACrB,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,iBAAiB,qFAuB5B,CAAA"} \ No newline at end of file diff --git a/dist/properties/channel.js b/dist/properties/channel.js index 93013cc459..7433a7980e 100644 --- a/dist/properties/channel.js +++ b/dist/properties/channel.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/channel.js.map b/dist/properties/channel.js.map index b758e7277e..03a6637317 100644 --- a/dist/properties/channel.js.map +++ b/dist/properties/channel.js.map @@ -1 +1 @@ -{"version":3,"file":"channel.js","sourceRoot":"","sources":["../../src/properties/channel.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"channel.js","sourceRoot":"","sources":["../../src/properties/channel.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/properties/component.d.ts.map b/dist/properties/component.d.ts.map index af14a43d27..a43c65dd3e 100644 --- a/dist/properties/component.d.ts.map +++ b/dist/properties/component.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/properties/component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,oBAAoB,EAEpB,kBAAkB,EAClB,yBAAyB,EAEzB,kBAAkB,EACrB,MAAM,YAAY,CAAA;AAGnB,oBAAY,iBAAiB;IACzB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,YAAY,iBAAiB;CAChC;AAED,eAAO,MAAM,mBAAmB,0KAiC9B,CAAA"} \ No newline at end of file +{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/properties/component.ts"],"names":[],"mappings":"AAKA,OAAO,EAEH,oBAAoB,EAEpB,kBAAkB,EAClB,yBAAyB,EAEzB,kBAAkB,EACrB,MAAM,YAAY,CAAA;AAGnB,oBAAY,iBAAiB;IACzB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,YAAY,iBAAiB;CAChC;AAED,eAAO,MAAM,mBAAmB,0KAiC9B,CAAA"} \ No newline at end of file diff --git a/dist/properties/component.js b/dist/properties/component.js index 2945bcb0dc..37cfd63dae 100644 --- a/dist/properties/component.js +++ b/dist/properties/component.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/component.js.map b/dist/properties/component.js.map index f2fb43efa4..59ae3194f7 100644 --- a/dist/properties/component.js.map +++ b/dist/properties/component.js.map @@ -1 +1 @@ -{"version":3,"file":"component.js","sourceRoot":"","sources":["../../src/properties/component.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"component.js","sourceRoot":"","sources":["../../src/properties/component.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/properties/embed.d.ts.map b/dist/properties/embed.d.ts.map index 8ce2ad751f..e22451ddc8 100644 --- a/dist/properties/embed.d.ts.map +++ b/dist/properties/embed.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"embed.d.ts","sourceRoot":"","sources":["../../src/properties/embed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGlD,oBAAY,aAAa;IACrB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,eAAe,wFAgB1B,CAAA"} \ No newline at end of file +{"version":3,"file":"embed.d.ts","sourceRoot":"","sources":["../../src/properties/embed.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGlD,oBAAY,aAAa;IACrB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,eAAe,wFAgB1B,CAAA"} \ No newline at end of file diff --git a/dist/properties/embed.js b/dist/properties/embed.js index 4ea6e44cd4..09f6c55acb 100644 --- a/dist/properties/embed.js +++ b/dist/properties/embed.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/embed.js.map b/dist/properties/embed.js.map index f676bff017..ce725fbaa8 100644 --- a/dist/properties/embed.js.map +++ b/dist/properties/embed.js.map @@ -1 +1 @@ -{"version":3,"file":"embed.js","sourceRoot":"","sources":["../../src/properties/embed.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,aAgBX;AAhBD,WAAY,aAAa;IACrB,gCAAe,CAAA;IACf,sCAAqB,CAAA;IACrB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;IACzB,4CAA2B,CAAA;IAC3B,wCAAuB,CAAA;IACvB,wCAAuB,CAAA;IACvB,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,4CAA2B,CAAA;IAC3B,0CAAyB,CAAA;AAC7B,CAAC,EAhBW,aAAa,6BAAb,aAAa,QAgBxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAqC;IAChF,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ;IAC3C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,GAAG;IACnC,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG;IAC1B,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,IAAI;IACzD,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,KAAK;IAC3D,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,MAAM;IAC7D,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK;IACzB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI;IACvC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,WAAW;IACvC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ;IAC3C,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI;IACvC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,GAAG;IAChC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,EAAE,GAAG;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS;IACnC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK;CAC9B,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"embed.js","sourceRoot":"","sources":["../../src/properties/embed.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,aAgBX;AAhBD,WAAY,aAAa;IACrB,gCAAe,CAAA;IACf,sCAAqB,CAAA;IACrB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,0CAAyB,CAAA;IACzB,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;IACzB,4CAA2B,CAAA;IAC3B,wCAAuB,CAAA;IACvB,wCAAuB,CAAA;IACvB,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,4CAA2B,CAAA;IAC3B,0CAAyB,CAAA;AAC7B,CAAC,EAhBW,aAAa,6BAAb,aAAa,QAgBxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAqC;IAChF,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ;IAC3C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,GAAG;IACnC,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG;IAC1B,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,IAAI;IACzD,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,KAAK;IAC3D,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAM,CAAC,CAAC,MAAM;IAC7D,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK;IACzB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI;IACvC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,WAAW;IACvC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ;IAC3C,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI;IACvC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,GAAG;IAChC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,EAAE,GAAG;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS;IACnC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK;CAC9B,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/emoji.d.ts.map b/dist/properties/emoji.d.ts.map index a6e33b5214..966343c64a 100644 --- a/dist/properties/emoji.d.ts.map +++ b/dist/properties/emoji.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"emoji.d.ts","sourceRoot":"","sources":["../../src/properties/emoji.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAGvC,oBAAY,aAAa;IACrB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,GAAG,QAAQ;IACX,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,eAAe,sFAa1B,CAAA"} \ No newline at end of file +{"version":3,"file":"emoji.d.ts","sourceRoot":"","sources":["../../src/properties/emoji.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAGvC,oBAAY,aAAa;IACrB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,GAAG,QAAQ;IACX,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,eAAe,sFAa1B,CAAA"} \ No newline at end of file diff --git a/dist/properties/emoji.js b/dist/properties/emoji.js index cf7f8cc4f6..147f7008f4 100644 --- a/dist/properties/emoji.js +++ b/dist/properties/emoji.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/emoji.js.map b/dist/properties/emoji.js.map index 66c19d70b5..cc8af2ef7e 100644 --- a/dist/properties/emoji.js.map +++ b/dist/properties/emoji.js.map @@ -1 +1 @@ -{"version":3,"file":"emoji.js","sourceRoot":"","sources":["../../src/properties/emoji.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,aAaX;AAbD,WAAY,aAAa;IACrB,oCAAmB,CAAA;IACnB,8BAAa,CAAA;IACb,0BAAS,CAAA;IACT,sCAAqB,CAAA;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,gCAAe,CAAA;IACf,oCAAmB,CAAA;IACnB,wCAAuB,CAAA;IACvB,sCAAqB,CAAA;IACrB,4BAAW,CAAA;IACX,kCAAiB,CAAA;AACrB,CAAC,EAbW,aAAa,6BAAb,aAAa,QAaxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAmC;IAC9E,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC5B,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACvE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"emoji.js","sourceRoot":"","sources":["../../src/properties/emoji.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,aAaX;AAbD,WAAY,aAAa;IACrB,oCAAmB,CAAA;IACnB,8BAAa,CAAA;IACb,0BAAS,CAAA;IACT,sCAAqB,CAAA;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,gCAAe,CAAA;IACf,oCAAmB,CAAA;IACnB,wCAAuB,CAAA;IACvB,sCAAqB,CAAA;IACrB,4BAAW,CAAA;IACX,kCAAiB,CAAA;AACrB,CAAC,EAbW,aAAa,6BAAb,aAAa,QAaxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAmC;IAC9E,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC5B,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACvE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/entitlement.d.ts.map b/dist/properties/entitlement.d.ts.map index 34015cda15..95b509cbd4 100644 --- a/dist/properties/entitlement.d.ts.map +++ b/dist/properties/entitlement.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"entitlement.d.ts","sourceRoot":"","sources":["../../src/properties/entitlement.ts"],"names":[],"mappings":"AAIA,oBAAY,mBAAmB;IAC3B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,EAAE,OAAO;IACT,KAAK,UAAU;IACf,IAAI,SAAS;IACb,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,iBAAiB,sBAAsB;IACvC,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,qBAAqB,kHAahC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlement.d.ts","sourceRoot":"","sources":["../../src/properties/entitlement.ts"],"names":[],"mappings":"AASA,oBAAY,mBAAmB;IAC3B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,EAAE,OAAO;IACT,KAAK,UAAU;IACf,IAAI,SAAS;IACb,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,iBAAiB,sBAAsB;IACvC,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,qBAAqB,kHAahC,CAAA"} \ No newline at end of file diff --git a/dist/properties/entitlement.js b/dist/properties/entitlement.js index bcfdc12e0c..6c08d5a15d 100644 --- a/dist/properties/entitlement.js +++ b/dist/properties/entitlement.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/entitlement.js.map b/dist/properties/entitlement.js.map index 7138ca18aa..d32818ef47 100644 --- a/dist/properties/entitlement.js.map +++ b/dist/properties/entitlement.js.map @@ -1 +1 @@ -{"version":3,"file":"entitlement.js","sourceRoot":"","sources":["../../src/properties/entitlement.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA4C;AAC5C,qFAA4D;AAG5D,IAAY,mBAaX;AAbD,WAAY,mBAAmB;IAC3B,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,gCAAS,CAAA;IACT,sCAAe,CAAA;IACf,oCAAa,CAAA;IACb,oDAA6B,CAAA;IAC7B,wDAAiC,CAAA;IACjC,wCAAiB,CAAA;IACjB,oCAAa,CAAA;IACb,8DAAuC,CAAA;IACvC,4DAAqC,CAAA;AACzC,CAAC,EAbW,mBAAmB,mCAAnB,mBAAmB,QAa9B;AAEY,QAAA,qBAAqB,GAAG,IAAA,0BAAgB,EAAqD;IACtG,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,4BAAe,CAAC,CAAC,EAAE,IAAK,CAAC;IACtC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE;IACtB,iBAAiB,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,mBAAmB,EAAE;IAChD,gBAAgB,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,kBAAkB,EAAE;IAC9C,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IAC7B,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IACjC,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC/B,YAAY,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa;IAC1C,cAAc,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe;CACjD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"entitlement.js","sourceRoot":"","sources":["../../src/properties/entitlement.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA4C;AAC5C,qFAA4D;AAG5D,IAAY,mBAaX;AAbD,WAAY,mBAAmB;IAC3B,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,gCAAS,CAAA;IACT,sCAAe,CAAA;IACf,oCAAa,CAAA;IACb,oDAA6B,CAAA;IAC7B,wDAAiC,CAAA;IACjC,wCAAiB,CAAA;IACjB,oCAAa,CAAA;IACb,8DAAuC,CAAA;IACvC,4DAAqC,CAAA;AACzC,CAAC,EAbW,mBAAmB,mCAAnB,mBAAmB,QAa9B;AAEY,QAAA,qBAAqB,GAAG,IAAA,0BAAgB,EAAqD;IACtG,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,4BAAe,CAAC,CAAC,EAAE,IAAK,CAAC;IACtC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE;IACtB,iBAAiB,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,mBAAmB,EAAE;IAChD,gBAAgB,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,kBAAkB,EAAE;IAC9C,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IAC7B,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IACjC,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC/B,YAAY,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa;IAC1C,cAAc,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe;CACjD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/forumTag.d.ts.map b/dist/properties/forumTag.d.ts.map index b7c692908c..e6d668a529 100644 --- a/dist/properties/forumTag.d.ts.map +++ b/dist/properties/forumTag.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"forumTag.d.ts","sourceRoot":"","sources":["../../src/properties/forumTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAG1C,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,EAAE,OAAO;IACT,SAAS,cAAc;IACvB,IAAI,SAAS;CAChB;AAED,eAAO,MAAM,kBAAkB,4FAU7B,CAAA"} \ No newline at end of file +{"version":3,"file":"forumTag.d.ts","sourceRoot":"","sources":["../../src/properties/forumTag.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAG1C,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,EAAE,OAAO;IACT,SAAS,cAAc;IACvB,IAAI,SAAS;CAChB;AAED,eAAO,MAAM,kBAAkB,4FAU7B,CAAA"} \ No newline at end of file diff --git a/dist/properties/forumTag.js b/dist/properties/forumTag.js index dc353a5c01..a02d0554f6 100644 --- a/dist/properties/forumTag.js +++ b/dist/properties/forumTag.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/forumTag.js.map b/dist/properties/forumTag.js.map index e06441fe75..6b514ce602 100644 --- a/dist/properties/forumTag.js.map +++ b/dist/properties/forumTag.js.map @@ -1 +1 @@ -{"version":3,"file":"forumTag.js","sourceRoot":"","sources":["../../src/properties/forumTag.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,gBAKX;AALD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,6BAAS,CAAA;IACT,2CAAuB,CAAA;IACvB,iCAAa,CAAA;AACjB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAyC;IACvF,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CACT,CAAC,IAAI,OAAO,IAAI,CAAC;QACb,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;YACT,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,GAAG;YACtC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI;QACnB,CAAC,CAAC,IAAI;IACd,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;CACvB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"forumTag.js","sourceRoot":"","sources":["../../src/properties/forumTag.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,gBAKX;AALD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,6BAAS,CAAA;IACT,2CAAuB,CAAA;IACvB,iCAAa,CAAA;AACjB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAyC;IACvF,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CACT,CAAC,IAAI,OAAO,IAAI,CAAC;QACb,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;YACT,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,GAAG;YACtC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI;QACnB,CAAC,CAAC,IAAI;IACd,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;CACvB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/guild.d.ts.map b/dist/properties/guild.d.ts.map index 4d9ddd043e..1163a8bbf3 100644 --- a/dist/properties/guild.d.ts.map +++ b/dist/properties/guild.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"guild.d.ts","sourceRoot":"","sources":["../../src/properties/guild.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAGhD,oBAAY,aAAa;IACrB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,eAAe,oBAAoB;IACnC,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,sBAAsB,2BAA2B;IACjD,wBAAwB,6BAA6B;CACxD;AAED,eAAO,MAAM,eAAe,iFAuB1B,CAAA;AAEF,oBAAY,oBAAoB;IAC5B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,eAAe,oBAAoB;IACnC,sBAAsB,2BAA2B;IACjD,wBAAwB,6BAA6B;CACxD;AAED,eAAO,MAAM,sBAAsB,+FAajC,CAAA"} \ No newline at end of file +{"version":3,"file":"guild.d.ts","sourceRoot":"","sources":["../../src/properties/guild.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAGhD,oBAAY,aAAa;IACrB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,eAAe,oBAAoB;IACnC,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,sBAAsB,2BAA2B;IACjD,wBAAwB,6BAA6B;CACxD;AAED,eAAO,MAAM,eAAe,iFAuB1B,CAAA;AAEF,oBAAY,oBAAoB;IAC5B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,eAAe,oBAAoB;IACnC,sBAAsB,2BAA2B;IACjD,wBAAwB,6BAA6B;CACxD;AAED,eAAO,MAAM,sBAAsB,+FAajC,CAAA"} \ No newline at end of file diff --git a/dist/properties/guild.js b/dist/properties/guild.js index ef703bc5ec..e561fbccc2 100644 --- a/dist/properties/guild.js +++ b/dist/properties/guild.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/guild.js.map b/dist/properties/guild.js.map index 1d8c1f5d26..44cfd78ef5 100644 --- a/dist/properties/guild.js.map +++ b/dist/properties/guild.js.map @@ -1 +1 @@ -{"version":3,"file":"guild.js","sourceRoot":"","sources":["../../src/properties/guild.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"guild.js","sourceRoot":"","sources":["../../src/properties/guild.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/properties/invite.d.ts.map b/dist/properties/invite.d.ts.map index 5df4f09b8c..ec3aa60bb2 100644 --- a/dist/properties/invite.d.ts.map +++ b/dist/properties/invite.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"invite.d.ts","sourceRoot":"","sources":["../../src/properties/invite.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAgC,MAAM,YAAY,CAAA;AAGjE,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,gBAAgB,qBAAqB;IACrC,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,gBAAgB,mFAkB3B,CAAA"} \ No newline at end of file +{"version":3,"file":"invite.d.ts","sourceRoot":"","sources":["../../src/properties/invite.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAgC,MAAM,YAAY,CAAA;AAGjE,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,gBAAgB,qBAAqB;IACrC,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,gBAAgB,mFAkB3B,CAAA"} \ No newline at end of file diff --git a/dist/properties/invite.js b/dist/properties/invite.js index ac5b0a255f..170dde1aa8 100644 --- a/dist/properties/invite.js +++ b/dist/properties/invite.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/invite.js.map b/dist/properties/invite.js.map index c577cd45a3..e4880be427 100644 --- a/dist/properties/invite.js.map +++ b/dist/properties/invite.js.map @@ -1 +1 @@ -{"version":3,"file":"invite.js","sourceRoot":"","sources":["../../src/properties/invite.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAiE;AACjE,qFAA4D;AAE5D,IAAY,cAkBX;AAlBD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,yCAAuB,CAAA;IACvB,qCAAmB,CAAA;IACnB,+BAAa,CAAA;IACb,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IACjB,yCAAuB,CAAA;IACvB,+BAAa,CAAA;IACb,6BAAW,CAAA;IACX,+BAAa,CAAA;IACb,uDAAqC,CAAA;IACrC,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,6CAA2B,CAAA;IAC3B,iDAA+B,CAAA;IAC/B,2CAAyB,CAAA;IACzB,2CAAyB,CAAA;AAC7B,CAAC,EAlBW,cAAc,8BAAd,cAAc,QAkBzB;AAEY,QAAA,gBAAgB,GAAG,IAAA,0BAAgB,EAAgC;IAC5E,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC7B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,uBAAU,CAAC,CAAC,EAAE,IAAK,CAAC;IACjC,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,6BAAgB,CAAC,CAAC,EAAE,UAAW,CAAC;IACnD,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,EAAE;CACvC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"invite.js","sourceRoot":"","sources":["../../src/properties/invite.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAiE;AACjE,qFAA4D;AAE5D,IAAY,cAkBX;AAlBD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,yCAAuB,CAAA;IACvB,qCAAmB,CAAA;IACnB,+BAAa,CAAA;IACb,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IACjB,yCAAuB,CAAA;IACvB,+BAAa,CAAA;IACb,6BAAW,CAAA;IACX,+BAAa,CAAA;IACb,uDAAqC,CAAA;IACrC,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,6CAA2B,CAAA;IAC3B,iDAA+B,CAAA;IAC/B,2CAAyB,CAAA;IACzB,2CAAyB,CAAA;AAC7B,CAAC,EAlBW,cAAc,8BAAd,cAAc,QAkBzB;AAEY,QAAA,gBAAgB,GAAG,IAAA,0BAAgB,EAAgC;IAC5E,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC7B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,uBAAU,CAAC,CAAC,EAAE,IAAK,CAAC;IACjC,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa;IACtC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,6BAAgB,CAAC,CAAC,EAAE,UAAW,CAAC;IACnD,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,EAAE;CACvC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/member.d.ts.map b/dist/properties/member.d.ts.map index 3af2f258e7..1264a38286 100644 --- a/dist/properties/member.d.ts.map +++ b/dist/properties/member.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"member.d.ts","sourceRoot":"","sources":["../../src/properties/member.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAO,WAAW,EAA8D,MAAM,YAAY,CAAA;AAGpI,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,YAAY,iBAAiB;IAC7B,KAAK,UAAU;IACf,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,EAAE,OAAO;IACT,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,aAAa,kBAAkB;IAC/B,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;IAC/B,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,gBAAgB,oHA0C3B,CAAA"} \ No newline at end of file +{"version":3,"file":"member.d.ts","sourceRoot":"","sources":["../../src/properties/member.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,yBAAyB,EAAO,WAAW,EAA8D,MAAM,YAAY,CAAA;AAGpI,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,YAAY,iBAAiB;IAC7B,KAAK,UAAU;IACf,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,EAAE,OAAO;IACT,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,aAAa,kBAAkB;IAC/B,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;IAC/B,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,gBAAgB,oHA0C3B,CAAA"} \ No newline at end of file diff --git a/dist/properties/member.js b/dist/properties/member.js index ae66927121..a56de0a572 100644 --- a/dist/properties/member.js +++ b/dist/properties/member.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/member.js.map b/dist/properties/member.js.map index c3bfe06b58..7baf62c3bc 100644 --- a/dist/properties/member.js.map +++ b/dist/properties/member.js.map @@ -1 +1 @@ -{"version":3,"file":"member.js","sourceRoot":"","sources":["../../src/properties/member.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"member.js","sourceRoot":"","sources":["../../src/properties/member.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/properties/message.d.ts.map b/dist/properties/message.d.ts.map index 38dc5e1d75..d557e30631 100644 --- a/dist/properties/message.d.ts.map +++ b/dist/properties/message.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/properties/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,eAAe,EAAe,MAAM,YAAY,CAAA;AAGlE,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,aAAa,kBAAkB;IAC/B,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;CACxB;AAED,eAAO,MAAM,iBAAiB,gHAiB5B,CAAA"} \ No newline at end of file +{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/properties/message.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,eAAe,EAAe,MAAM,YAAY,CAAA;AAGlE,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,aAAa,kBAAkB;IAC/B,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;CACxB;AAED,eAAO,MAAM,iBAAiB,gHAiB5B,CAAA"} \ No newline at end of file diff --git a/dist/properties/message.js b/dist/properties/message.js index ed3f2c6968..73fa93ddbd 100644 --- a/dist/properties/message.js +++ b/dist/properties/message.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/message.js.map b/dist/properties/message.js.map index 1a5978fd41..f4e696e1cf 100644 --- a/dist/properties/message.js.map +++ b/dist/properties/message.js.map @@ -1 +1 @@ -{"version":3,"file":"message.js","sourceRoot":"","sources":["../../src/properties/message.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAkE;AAClE,qFAA4D;AAE5D,IAAY,eAiBX;AAjBD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,sCAAmB,CAAA;IACnB,kCAAe,CAAA;IACf,wCAAqB,CAAA;IACrB,gCAAa,CAAA;IACb,0CAAuB,CAAA;IACvB,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,0CAAuB,CAAA;IACvB,kDAA+B,CAAA;IAC/B,sCAAmB,CAAA;IACnB,oCAAiB,CAAA;IACjB,oCAAiB,CAAA;IACjB,8BAAW,CAAA;IACX,8CAA2B,CAAA;IAC3B,wCAAqB,CAAA;AACzB,CAAC,EAjBW,eAAe,+BAAf,eAAe,QAiB1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAoD;IACjG,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,wBAAW,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAClD,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,QAAQ;IACpC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe;IACxC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzE,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACtE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"message.js","sourceRoot":"","sources":["../../src/properties/message.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAkE;AAClE,qFAA4D;AAE5D,IAAY,eAiBX;AAjBD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,sCAAmB,CAAA;IACnB,kCAAe,CAAA;IACf,wCAAqB,CAAA;IACrB,gCAAa,CAAA;IACb,0CAAuB,CAAA;IACvB,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,0CAAuB,CAAA;IACvB,kDAA+B,CAAA;IAC/B,sCAAmB,CAAA;IACnB,oCAAiB,CAAA;IACjB,oCAAiB,CAAA;IACjB,8BAAW,CAAA;IACX,8CAA2B,CAAA;IAC3B,wCAAqB,CAAA;AACzB,CAAC,EAjBW,eAAe,+BAAf,eAAe,QAiB1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAoD;IACjG,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,wBAAW,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAClD,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,QAAQ;IACpC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,eAAe;IACxC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI;IACzB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzE,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACtE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/permissionOverwrites.d.ts.map b/dist/properties/permissionOverwrites.d.ts.map index 1a15ae3120..dcf664b798 100644 --- a/dist/properties/permissionOverwrites.d.ts.map +++ b/dist/properties/permissionOverwrites.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"permissionOverwrites.d.ts","sourceRoot":"","sources":["../../src/properties/permissionOverwrites.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,oBAAoB,EAAE,MAAM,YAAY,CAAA;AAGhE,oBAAY,4BAA4B;IACpC,EAAE,OAAO;IACT,IAAI,SAAS;IACb,KAAK,UAAU;IACf,IAAI,SAAS;CAChB;AAED,eAAO,MAAM,8BAA8B,+GAKzC,CAAA"} \ No newline at end of file +{"version":3,"file":"permissionOverwrites.d.ts","sourceRoot":"","sources":["../../src/properties/permissionOverwrites.ts"],"names":[],"mappings":"AAKA,OAAO,EAAiB,oBAAoB,EAAE,MAAM,YAAY,CAAA;AAGhE,oBAAY,4BAA4B;IACpC,EAAE,OAAO;IACT,IAAI,SAAS;IACb,KAAK,UAAU;IACf,IAAI,SAAS;CAChB;AAED,eAAO,MAAM,8BAA8B,+GAKzC,CAAA"} \ No newline at end of file diff --git a/dist/properties/permissionOverwrites.js b/dist/properties/permissionOverwrites.js index 09c2f71c77..440a72d428 100644 --- a/dist/properties/permissionOverwrites.js +++ b/dist/properties/permissionOverwrites.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/permissionOverwrites.js.map b/dist/properties/permissionOverwrites.js.map index 2f22ac5bff..d3bbdf415e 100644 --- a/dist/properties/permissionOverwrites.js.map +++ b/dist/properties/permissionOverwrites.js.map @@ -1 +1 @@ -{"version":3,"file":"permissionOverwrites.js","sourceRoot":"","sources":["../../src/properties/permissionOverwrites.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAgE;AAChE,qFAA4D;AAE5D,IAAY,4BAKX;AALD,WAAY,4BAA4B;IACpC,yCAAS,CAAA;IACT,6CAAa,CAAA;IACb,+CAAe,CAAA;IACf,6CAAa,CAAA;AACjB,CAAC,EALW,4BAA4B,4CAA5B,4BAA4B,QAKvC;AAEY,QAAA,8BAA8B,GAAG,IAAA,0BAAgB,EAA4D;IACtH,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,0BAAa,CAAC,CAAC,EAAE,IAAK,CAAC;IACpC,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACxD,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"permissionOverwrites.js","sourceRoot":"","sources":["../../src/properties/permissionOverwrites.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAgE;AAChE,qFAA4D;AAE5D,IAAY,4BAKX;AALD,WAAY,4BAA4B;IACpC,yCAAS,CAAA;IACT,6CAAa,CAAA;IACb,+CAAe,CAAA;IACf,6CAAa,CAAA;AACjB,CAAC,EALW,4BAA4B,4CAA5B,4BAA4B,QAKvC;AAEY,QAAA,8BAA8B,GAAG,IAAA,0BAAgB,EAA4D;IACtH,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,0BAAa,CAAC,CAAC,EAAE,IAAK,CAAC;IACpC,KAAK,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACvD,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CACxD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/poll.d.ts.map b/dist/properties/poll.d.ts.map index 46af59884c..378216ed1b 100644 --- a/dist/properties/poll.d.ts.map +++ b/dist/properties/poll.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"poll.d.ts","sourceRoot":"","sources":["../../src/properties/poll.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,YAAY,CAAA;AAG7D,oBAAY,YAAY;IACpB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,cAAc,+EASzB,CAAA;AAEF,oBAAY,kBAAkB;IAC1B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,SAAS,cAAc;CAC1B;AAED,eAAO,MAAM,oBAAoB,2FAM/B,CAAA"} \ No newline at end of file +{"version":3,"file":"poll.d.ts","sourceRoot":"","sources":["../../src/properties/poll.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,YAAY,CAAA;AAG7D,oBAAY,YAAY;IACpB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;CACxC;AAED,eAAO,MAAM,cAAc,+EASzB,CAAA;AAEF,oBAAY,kBAAkB;IAC1B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,SAAS,cAAc;CAC1B;AAED,eAAO,MAAM,oBAAoB,2FAM/B,CAAA"} \ No newline at end of file diff --git a/dist/properties/poll.js b/dist/properties/poll.js index 6988bbb8d1..13ae08e294 100644 --- a/dist/properties/poll.js +++ b/dist/properties/poll.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/poll.js.map b/dist/properties/poll.js.map index def7ab1686..c8d031dcba 100644 --- a/dist/properties/poll.js.map +++ b/dist/properties/poll.js.map @@ -1 +1 @@ -{"version":3,"file":"poll.js","sourceRoot":"","sources":["../../src/properties/poll.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA6D;AAC7D,qFAA4D;AAE5D,IAAY,YASX;AATD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,yCAAyB,CAAA;IACzB,mCAAmB,CAAA;IACnB,2CAA2B,CAAA;IAC3B,yCAAyB,CAAA;IACzB,qDAAqC,CAAA;IACrC,qDAAqC,CAAA;IACrC,qDAAqC,CAAA;AACzC,CAAC,EATW,YAAY,4BAAZ,YAAY,QASvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC,IAAI;IACjC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAc,CAAC,CAAC,EAAE,UAAW,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,CAAC;IACxD,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI;IACnC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,IAAI,CAAC;IACvE,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;CAC/C,CAAC,CAAA;AAEF,IAAY,kBAMX;AAND,WAAY,kBAAkB;IAC1B,+BAAS,CAAA;IACT,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;AAC3B,CAAC,EANW,kBAAkB,kCAAlB,kBAAkB,QAM7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE;CACvC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"poll.js","sourceRoot":"","sources":["../../src/properties/poll.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA6D;AAC7D,qFAA4D;AAE5D,IAAY,YASX;AATD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,yCAAyB,CAAA;IACzB,mCAAmB,CAAA;IACnB,2CAA2B,CAAA;IAC3B,yCAAyB,CAAA;IACzB,qDAAqC,CAAA;IACrC,qDAAqC,CAAA;IACrC,qDAAqC,CAAA;AACzC,CAAC,EATW,YAAY,4BAAZ,YAAY,QASvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC,IAAI;IACjC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,2BAAc,CAAC,CAAC,EAAE,UAAW,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,CAAC;IACxD,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI;IACnC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,IAAI,CAAC;IACvE,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IAC5C,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;CAC/C,CAAC,CAAA;AAEF,IAAY,kBAMX;AAND,WAAY,kBAAkB;IAC1B,+BAAS,CAAA;IACT,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;AAC3B,CAAC,EANW,kBAAkB,kCAAlB,kBAAkB,QAM7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE;CACvC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/presence.d.ts.map b/dist/properties/presence.d.ts.map index 6dc7cd3c4d..141048a4df 100644 --- a/dist/properties/presence.d.ts.map +++ b/dist/properties/presence.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"presence.d.ts","sourceRoot":"","sources":["../../src/properties/presence.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAGrC,oBAAY,gBAAgB;IACxB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB;AAED,eAAO,MAAM,kBAAkB,uFAK7B,CAAA"} \ No newline at end of file +{"version":3,"file":"presence.d.ts","sourceRoot":"","sources":["../../src/properties/presence.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAGrC,oBAAY,gBAAgB;IACxB,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACxB;AAED,eAAO,MAAM,kBAAkB,uFAK7B,CAAA"} \ No newline at end of file diff --git a/dist/properties/presence.js b/dist/properties/presence.js index bfab584c34..9102a4fee6 100644 --- a/dist/properties/presence.js +++ b/dist/properties/presence.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/presence.js.map b/dist/properties/presence.js.map index c1f47ef0ed..5ce8dba87b 100644 --- a/dist/properties/presence.js.map +++ b/dist/properties/presence.js.map @@ -1 +1 @@ -{"version":3,"file":"presence.js","sourceRoot":"","sources":["../../src/properties/presence.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,gBAKX;AALD,WAAY,gBAAgB;IACxB,6BAAS,CAAA;IACT,uCAAmB,CAAA;IACnB,qCAAiB,CAAA;IACjB,yCAAqB,CAAA;AACzB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAoC;IAClF,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;IAClB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;IACtB,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,YAAY,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CAC7E,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"presence.js","sourceRoot":"","sources":["../../src/properties/presence.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,gBAKX;AALD,WAAY,gBAAgB;IACxB,6BAAS,CAAA;IACT,uCAAmB,CAAA;IACnB,qCAAiB,CAAA;IACjB,yCAAqB,CAAA;AACzB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAAoC;IAClF,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;IAClB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;IACtB,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,YAAY,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CAC7E,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/reaction.d.ts.map b/dist/properties/reaction.d.ts.map index 68a361dcad..d8d462b7e7 100644 --- a/dist/properties/reaction.d.ts.map +++ b/dist/properties/reaction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"reaction.d.ts","sourceRoot":"","sources":["../../src/properties/reaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAG5C,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,WAAW,gBAAgB;CAC9B;AAED,eAAO,MAAM,kBAAkB,8FAQ7B,CAAA"} \ No newline at end of file +{"version":3,"file":"reaction.d.ts","sourceRoot":"","sources":["../../src/properties/reaction.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAG5C,oBAAY,gBAAgB;IACxB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,WAAW,gBAAgB;CAC9B;AAED,eAAO,MAAM,kBAAkB,8FAQ7B,CAAA"} \ No newline at end of file diff --git a/dist/properties/reaction.js b/dist/properties/reaction.js index b53c16b18f..0d9d60fffc 100644 --- a/dist/properties/reaction.js +++ b/dist/properties/reaction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/reaction.js.map b/dist/properties/reaction.js.map index 3f2691a81d..1e37357798 100644 --- a/dist/properties/reaction.js.map +++ b/dist/properties/reaction.js.map @@ -1 +1 @@ -{"version":3,"file":"reaction.js","sourceRoot":"","sources":["../../src/properties/reaction.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,gBAQX;AARD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,mCAAe,CAAA;IACf,6CAAyB,CAAA;IACzB,+CAA2B,CAAA;IAC3B,6BAAS,CAAA;IACT,uCAAmB,CAAA;IACnB,+CAA2B,CAAA;AAC/B,CAAC,EARW,gBAAgB,gCAAhB,gBAAgB,QAQ3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAA2C;IACzF,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK;IACxC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,CAAC,MAAM;IAC1C,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CAC7D,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"reaction.js","sourceRoot":"","sources":["../../src/properties/reaction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,gBAQX;AARD,WAAY,gBAAgB;IACxB,mCAAe,CAAA;IACf,mCAAe,CAAA;IACf,6CAAyB,CAAA;IACzB,+CAA2B,CAAA;IAC3B,6BAAS,CAAA;IACT,uCAAmB,CAAA;IACnB,+CAA2B,CAAA;AAC/B,CAAC,EARW,gBAAgB,gCAAhB,gBAAgB,QAQ3B;AAEY,QAAA,kBAAkB,GAAG,IAAA,0BAAgB,EAA2C;IACzF,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK;IACxC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,CAAC,MAAM;IAC1C,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;CAC7D,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/role.d.ts.map b/dist/properties/role.d.ts.map index 77fa8c82a0..6252764b44 100644 --- a/dist/properties/role.d.ts.map +++ b/dist/properties/role.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"role.d.ts","sourceRoot":"","sources":["../../src/properties/role.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAIjC,oBAAY,YAAY;IACpB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,aAAa,kBAAkB;CAClC;AAED,eAAO,MAAM,cAAc,+EAiBzB,CAAA"} \ No newline at end of file +{"version":3,"file":"role.d.ts","sourceRoot":"","sources":["../../src/properties/role.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAIjC,oBAAY,YAAY;IACpB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,aAAa,kBAAkB;CAClC;AAED,eAAO,MAAM,cAAc,+EAiBzB,CAAA"} \ No newline at end of file diff --git a/dist/properties/role.js b/dist/properties/role.js index 202422482e..b89fd5b843 100644 --- a/dist/properties/role.js +++ b/dist/properties/role.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/role.js.map b/dist/properties/role.js.map index 5a24b0db82..578e1b6301 100644 --- a/dist/properties/role.js.map +++ b/dist/properties/role.js.map @@ -1 +1 @@ -{"version":3,"file":"role.js","sourceRoot":"","sources":["../../src/properties/role.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAC5D,0CAA0C;AAE1C,IAAY,YAiBX;AAjBD,WAAY,YAAY;IACpB,yBAAS,CAAA;IACT,6BAAa,CAAA;IACb,6BAAa,CAAA;IACb,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,mCAAmB,CAAA;IACnB,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;IAC3B,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;IACvB,2CAA2B,CAAA;IAC3B,6BAAa,CAAA;IACb,mCAAmB,CAAA;IACnB,6CAA6B,CAAA;IAC7B,iDAAiC,CAAA;IACjC,+CAA+B,CAAA;AACnC,CAAC,EAjBW,YAAY,4BAAZ,YAAY,QAiBvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IACzB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACxB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAClE,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACnE,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9D,YAAY,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY;IACpC,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI;IAChG,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,CAAC,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,IAAI;CAChG,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"role.js","sourceRoot":"","sources":["../../src/properties/role.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAC5D,0CAA0C;AAE1C,IAAY,YAiBX;AAjBD,WAAY,YAAY;IACpB,yBAAS,CAAA;IACT,6BAAa,CAAA;IACb,6BAAa,CAAA;IACb,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,mCAAmB,CAAA;IACnB,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;IAC3B,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;IACvB,2CAA2B,CAAA;IAC3B,6BAAa,CAAA;IACb,mCAAmB,CAAA;IACnB,6CAA6B,CAAA;IAC7B,iDAAiC,CAAA;IACjC,+CAA+B,CAAA;AACnC,CAAC,EAjBW,YAAY,4BAAZ,YAAY,QAiBvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IACzB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACxB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAClE,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,WAAW,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACnE,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9D,YAAY,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY;IACpC,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI;IAChG,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,GAAG,IAAA,aAAO,EAAC,CAAC,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,IAAI;CAChG,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/scheduledEvent.d.ts b/dist/properties/scheduledEvent.d.ts index 4dfa0790e7..065687ea7f 100644 --- a/dist/properties/scheduledEvent.d.ts +++ b/dist/properties/scheduledEvent.d.ts @@ -1,4 +1,4 @@ -import { GuildScheduledEvent } from "discord.js"; +import { GuildScheduledEvent, GuildScheduledEventStatus } from "discord.js"; export declare enum ScheduledEventProperty { id = "id", userID = "userID", @@ -14,7 +14,9 @@ export declare enum ScheduledEventProperty { cover = "cover", entityID = "entityID", location = "location", - entityType = "entityType" + entityType = "entityType", + privacyLevel = "privacyLevel", + status = "status" } -export declare const ScheduledEventProperties: import("../functions/defineProperties").Properties>; +export declare const ScheduledEventProperties: import("../functions/defineProperties").Properties>; //# sourceMappingURL=scheduledEvent.d.ts.map \ No newline at end of file diff --git a/dist/properties/scheduledEvent.d.ts.map b/dist/properties/scheduledEvent.d.ts.map index db6a5cd919..82ec376c4e 100644 --- a/dist/properties/scheduledEvent.d.ts.map +++ b/dist/properties/scheduledEvent.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"scheduledEvent.d.ts","sourceRoot":"","sources":["../../src/properties/scheduledEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAGhD,oBAAY,sBAAsB;IAC9B,EAAE,OAAO;IACT,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,YAAY,iBAAiB;IAC7B,SAAS,cAAc;IACvB,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,wBAAwB,wJAgBnC,CAAA"} \ No newline at end of file +{"version":3,"file":"scheduledEvent.d.ts","sourceRoot":"","sources":["../../src/properties/scheduledEvent.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAkE,yBAAyB,EAAE,MAAM,YAAY,CAAA;AAG3I,oBAAY,sBAAsB;IAC9B,EAAE,OAAO;IACT,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,YAAY,iBAAiB;IAC7B,SAAS,cAAc;IACvB,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,YAAY,iBAAiB;IAC7B,MAAM,WAAW;CACpB;AAED,eAAO,MAAM,wBAAwB,mIAkBnC,CAAA"} \ No newline at end of file diff --git a/dist/properties/scheduledEvent.js b/dist/properties/scheduledEvent.js index 95a52954db..f2df09ef55 100644 --- a/dist/properties/scheduledEvent.js +++ b/dist/properties/scheduledEvent.js @@ -1,9 +1,14 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ScheduledEventProperties = exports.ScheduledEventProperty = void 0; +const discord_js_1 = require("discord.js"); const defineProperties_1 = __importDefault(require("../functions/defineProperties")); var ScheduledEventProperty; (function (ScheduledEventProperty) { @@ -22,6 +27,8 @@ var ScheduledEventProperty; ScheduledEventProperty["entityID"] = "entityID"; ScheduledEventProperty["location"] = "location"; ScheduledEventProperty["entityType"] = "entityType"; + ScheduledEventProperty["privacyLevel"] = "privacyLevel"; + ScheduledEventProperty["status"] = "status"; })(ScheduledEventProperty || (exports.ScheduledEventProperty = ScheduledEventProperty = {})); exports.ScheduledEventProperties = (0, defineProperties_1.default)({ channelID: i => i?.channelId, @@ -38,6 +45,8 @@ exports.ScheduledEventProperties = (0, defineProperties_1.default)({ cover: i => i?.coverImageURL(), entityID: i => i?.entityId, location: i => i?.entityMetadata?.location, - entityType: i => i?.entityType + entityType: i => discord_js_1.GuildScheduledEventEntityType[i?.entityType], + privacyLevel: i => discord_js_1.GuildScheduledEventPrivacyLevel[i?.privacyLevel], + status: i => discord_js_1.GuildScheduledEventStatus[i?.status] }); //# sourceMappingURL=scheduledEvent.js.map \ No newline at end of file diff --git a/dist/properties/scheduledEvent.js.map b/dist/properties/scheduledEvent.js.map index f9a5428d9d..b1810e1204 100644 --- a/dist/properties/scheduledEvent.js.map +++ b/dist/properties/scheduledEvent.js.map @@ -1 +1 @@ -{"version":3,"file":"scheduledEvent.js","sourceRoot":"","sources":["../../src/properties/scheduledEvent.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,sBAgBX;AAhBD,WAAY,sBAAsB;IAC9B,mCAAS,CAAA;IACT,2CAAiB,CAAA;IACjB,6CAAmB,CAAA;IACnB,iDAAuB,CAAA;IACvB,uCAAa,CAAA;IACb,iDAAuB,CAAA;IACvB,qDAA2B,CAAA;IAC3B,2DAAiC,CAAA;IACjC,uDAA6B,CAAA;IAC7B,iDAAuB,CAAA;IACvB,qCAAW,CAAA;IACX,yCAAe,CAAA;IACf,+CAAqB,CAAA;IACrB,+CAAqB,CAAA;IACrB,mDAAyB,CAAA;AAC7B,CAAC,EAhBW,sBAAsB,sCAAtB,sBAAsB,QAgBjC;AAEY,QAAA,wBAAwB,GAAG,IAAA,0BAAgB,EAAqD;IACzG,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO;IACxB,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI;IAClB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IACzB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW;IAChC,cAAc,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,uBAAuB;IAC/C,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB;IAC3C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACnC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG;IAChB,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE;IAC9B,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,cAAc,EAAE,QAAQ;IAC1C,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU;CACjC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"scheduledEvent.js","sourceRoot":"","sources":["../../src/properties/scheduledEvent.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA2I;AAC3I,qFAA4D;AAE5D,IAAY,sBAkBX;AAlBD,WAAY,sBAAsB;IAC9B,mCAAS,CAAA;IACT,2CAAiB,CAAA;IACjB,6CAAmB,CAAA;IACnB,iDAAuB,CAAA;IACvB,uCAAa,CAAA;IACb,iDAAuB,CAAA;IACvB,qDAA2B,CAAA;IAC3B,2DAAiC,CAAA;IACjC,uDAA6B,CAAA;IAC7B,iDAAuB,CAAA;IACvB,qCAAW,CAAA;IACX,yCAAe,CAAA;IACf,+CAAqB,CAAA;IACrB,+CAAqB,CAAA;IACrB,mDAAyB,CAAA;IACzB,uDAA6B,CAAA;IAC7B,2CAAiB,CAAA;AACrB,CAAC,EAlBW,sBAAsB,sCAAtB,sBAAsB,QAkBjC;AAEY,QAAA,wBAAwB,GAAG,IAAA,0BAAgB,EAAqD;IACzG,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO;IACxB,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI;IAClB,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IACzB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW;IAChC,cAAc,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,uBAAuB;IAC/C,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB;IAC3C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACnC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG;IAChB,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE;IAC9B,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC1B,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,cAAc,EAAE,QAAQ;IAC1C,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,0CAA6B,CAAC,CAAC,EAAE,UAAW,CAAC;IAC9D,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,4CAA+B,CAAC,CAAC,EAAE,YAAa,CAAC;IACpE,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,sCAAyB,CAAC,CAAC,EAAE,MAAO,CAAC;CACrD,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/sound.d.ts.map b/dist/properties/sound.d.ts.map index 3661e62276..89a2d89285 100644 --- a/dist/properties/sound.d.ts.map +++ b/dist/properties/sound.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sound.d.ts","sourceRoot":"","sources":["../../src/properties/sound.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAG1F,oBAAY,uBAAuB;IAC/B,IAAI,SAAS;IACb,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,GAAG,QAAQ;CACd;AAED,eAAO,MAAM,yBAAyB,qJAUpC,CAAA"} \ No newline at end of file +{"version":3,"file":"sound.d.ts","sourceRoot":"","sources":["../../src/properties/sound.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAG1F,oBAAY,uBAAuB;IAC/B,IAAI,SAAS;IACb,EAAE,OAAO;IACT,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,GAAG,QAAQ;CACd;AAED,eAAO,MAAM,yBAAyB,qJAUpC,CAAA"} \ No newline at end of file diff --git a/dist/properties/sound.js b/dist/properties/sound.js index dc26f10c17..f48d328534 100644 --- a/dist/properties/sound.js +++ b/dist/properties/sound.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/sound.js.map b/dist/properties/sound.js.map index ba666291a5..caaebabf78 100644 --- a/dist/properties/sound.js.map +++ b/dist/properties/sound.js.map @@ -1 +1 @@ -{"version":3,"file":"sound.js","sourceRoot":"","sources":["../../src/properties/sound.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,uBAUX;AAVD,WAAY,uBAAuB;IAC/B,wCAAa,CAAA;IACb,oCAAS,CAAA;IACT,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;IACjB,0CAAe,CAAA;IACf,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,kDAAuB,CAAA;IACvB,sCAAW,CAAA;AACf,CAAC,EAVW,uBAAuB,uCAAvB,uBAAuB,QAUlC;AAEY,QAAA,yBAAyB,GAAG,IAAA,0BAAgB,EAAkG;IACvJ,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE;IAC1B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IACrB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;CACrB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sound.js","sourceRoot":"","sources":["../../src/properties/sound.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,uBAUX;AAVD,WAAY,uBAAuB;IAC/B,wCAAa,CAAA;IACb,oCAAS,CAAA;IACT,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;IACjB,0CAAe,CAAA;IACf,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,kDAAuB,CAAA;IACvB,sCAAW,CAAA;AACf,CAAC,EAVW,uBAAuB,uCAAvB,uBAAuB,QAUlC;AAEY,QAAA,yBAAyB,GAAG,IAAA,0BAAgB,EAAkG;IACvJ,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE;IAC1B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IACrB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;CACrB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/stage.d.ts.map b/dist/properties/stage.d.ts.map index f05c55af63..b5336d9018 100644 --- a/dist/properties/stage.d.ts.map +++ b/dist/properties/stage.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../src/properties/stage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAA6B,MAAM,YAAY,CAAA;AAGrE,oBAAY,aAAa;IACrB,SAAS,cAAc;IACvB,EAAE,OAAO;IACT,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;CACtB;AAED,eAAO,MAAM,eAAe,yFAQ1B,CAAA"} \ No newline at end of file +{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../src/properties/stage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAA6B,MAAM,YAAY,CAAA;AAGrE,oBAAY,aAAa;IACrB,SAAS,cAAc;IACvB,EAAE,OAAO;IACT,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;CACtB;AAED,eAAO,MAAM,eAAe,yFAQ1B,CAAA"} \ No newline at end of file diff --git a/dist/properties/stage.js b/dist/properties/stage.js index 7ac71119da..5ae1692a45 100644 --- a/dist/properties/stage.js +++ b/dist/properties/stage.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/stage.js.map b/dist/properties/stage.js.map index ad35718046..232f10d616 100644 --- a/dist/properties/stage.js.map +++ b/dist/properties/stage.js.map @@ -1 +1 @@ -{"version":3,"file":"stage.js","sourceRoot":"","sources":["../../src/properties/stage.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAqE;AACrE,qFAA4D;AAE5D,IAAY,aAQX;AARD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0BAAS,CAAA;IACT,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,oCAAmB,CAAA;IACnB,8CAA6B,CAAA;IAC7B,oCAAmB,CAAA;AACvB,CAAC,EARW,aAAa,6BAAb,aAAa,QAQxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAsC;IACjF,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE;IACd,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO;IACxB,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK;IACpB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACnC,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,sCAAyB,CAAC,CAAC,EAAE,YAAa,CAAC;IAC9D,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB;CACzC,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"stage.js","sourceRoot":"","sources":["../../src/properties/stage.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAqE;AACrE,qFAA4D;AAE5D,IAAY,aAQX;AARD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0BAAS,CAAA;IACT,gCAAe,CAAA;IACf,wCAAuB,CAAA;IACvB,oCAAmB,CAAA;IACnB,8CAA6B,CAAA;IAC7B,oCAAmB,CAAA;AACvB,CAAC,EARW,aAAa,6BAAb,aAAa,QAQxB;AAEY,QAAA,eAAe,GAAG,IAAA,0BAAgB,EAAsC;IACjF,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE;IACd,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO;IACxB,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK;IACpB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACnC,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,sCAAyB,CAAC,CAAC,EAAE,YAAa,CAAC;IAC9D,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB;CACzC,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/sticker.d.ts.map b/dist/properties/sticker.d.ts.map index 641e039891..3edf461b86 100644 --- a/dist/properties/sticker.d.ts.map +++ b/dist/properties/sticker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"sticker.d.ts","sourceRoot":"","sources":["../../src/properties/sticker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAqB,MAAM,YAAY,CAAA;AAGvD,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,WAAW,gBAAgB;CAC9B;AAED,eAAO,MAAM,iBAAiB,qFAa5B,CAAA"} \ No newline at end of file +{"version":3,"file":"sticker.d.ts","sourceRoot":"","sources":["../../src/properties/sticker.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAqB,MAAM,YAAY,CAAA;AAGvD,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,WAAW,gBAAgB;CAC9B;AAED,eAAO,MAAM,iBAAiB,qFAa5B,CAAA"} \ No newline at end of file diff --git a/dist/properties/sticker.js b/dist/properties/sticker.js index 9bf4b37c33..b1821b62e1 100644 --- a/dist/properties/sticker.js +++ b/dist/properties/sticker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/sticker.js.map b/dist/properties/sticker.js.map index 3d67a14763..03fbdffa92 100644 --- a/dist/properties/sticker.js.map +++ b/dist/properties/sticker.js.map @@ -1 +1 @@ -{"version":3,"file":"sticker.js","sourceRoot":"","sources":["../../src/properties/sticker.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAuD;AACvD,qFAA4D;AAE5D,IAAY,eAaX;AAbD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,gCAAa,CAAA;IACb,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,0CAAuB,CAAA;IACvB,8BAAW,CAAA;IACX,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,gCAAa,CAAA;IACb,0CAAuB,CAAA;IACvB,oCAAiB,CAAA;IACjB,8CAA2B,CAAA;AAC/B,CAAC,EAbW,eAAe,+BAAf,eAAe,QAa1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAkC;IAC/E,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE;IAC5B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,8BAAiB,CAAC,CAAC,EAAE,MAAO,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACzB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;CACzB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"sticker.js","sourceRoot":"","sources":["../../src/properties/sticker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAuD;AACvD,qFAA4D;AAE5D,IAAY,eAaX;AAbD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,gCAAa,CAAA;IACb,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,0CAAuB,CAAA;IACvB,8BAAW,CAAA;IACX,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,gCAAa,CAAA;IACb,0CAAuB,CAAA;IACvB,oCAAiB,CAAA;IACjB,8CAA2B,CAAA;AAC/B,CAAC,EAbW,eAAe,+BAAf,eAAe,QAa1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAkC;IAC/E,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE;IAC5B,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;IAClB,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,8BAAiB,CAAC,CAAC,EAAE,MAAO,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW;IAChC,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACzB,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,SAAS;IAC5B,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM;CACzB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/subscription.d.ts.map b/dist/properties/subscription.d.ts.map index 4c154a1aa6..b842158c3b 100644 --- a/dist/properties/subscription.d.ts.map +++ b/dist/properties/subscription.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../src/properties/subscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAsB,MAAM,YAAY,CAAA;AAG7D,oBAAY,oBAAoB;IAC5B,EAAE,OAAO;IACT,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IACjC,iBAAiB,sBAAsB;IACvC,kBAAkB,uBAAuB;IACzC,oBAAoB,yBAAyB;CAChD;AAED,eAAO,MAAM,sBAAsB,+FAWjC,CAAA"} \ No newline at end of file +{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../src/properties/subscription.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAsB,MAAM,YAAY,CAAA;AAG7D,oBAAY,oBAAoB;IAC5B,EAAE,OAAO;IACT,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IACjC,iBAAiB,sBAAsB;IACvC,kBAAkB,uBAAuB;IACzC,oBAAoB,yBAAyB;CAChD;AAED,eAAO,MAAM,sBAAsB,+FAWjC,CAAA"} \ No newline at end of file diff --git a/dist/properties/subscription.js b/dist/properties/subscription.js index 2a5042dde8..75a47c60c5 100644 --- a/dist/properties/subscription.js +++ b/dist/properties/subscription.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/subscription.js.map b/dist/properties/subscription.js.map index 08b363e009..de02968625 100644 --- a/dist/properties/subscription.js.map +++ b/dist/properties/subscription.js.map @@ -1 +1 @@ -{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../src/properties/subscription.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA6D;AAC7D,qFAA4D;AAE5D,IAAY,oBAWX;AAXD,WAAY,oBAAoB;IAC5B,iCAAS,CAAA;IACT,yCAAiB,CAAA;IACjB,yCAAiB,CAAA;IACjB,2CAAmB,CAAA;IACnB,yCAAiB,CAAA;IACjB,uDAA+B,CAAA;IAC/B,yDAAiC,CAAA;IACjC,+DAAuC,CAAA;IACvC,iEAAyC,CAAA;IACzC,qEAA6C,CAAA;AACjD,CAAC,EAXW,oBAAoB,oCAApB,oBAAoB,QAW/B;AAEY,QAAA,sBAAsB,GAAG,IAAA,0BAAgB,EAA4C;IAC9F,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,+BAAkB,CAAC,CAAC,EAAE,MAAO,CAAC;IAC7C,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC/C,aAAa,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9D,cAAc,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC/D,iBAAiB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,iBAAiB;IAC9C,kBAAkB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,yBAAyB;IACvD,oBAAoB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,2BAA2B;CAC9D,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../src/properties/subscription.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAA6D;AAC7D,qFAA4D;AAE5D,IAAY,oBAWX;AAXD,WAAY,oBAAoB;IAC5B,iCAAS,CAAA;IACT,yCAAiB,CAAA;IACjB,yCAAiB,CAAA;IACjB,2CAAmB,CAAA;IACnB,yCAAiB,CAAA;IACjB,uDAA+B,CAAA;IAC/B,yDAAiC,CAAA;IACjC,+DAAuC,CAAA;IACvC,iEAAyC,CAAA;IACzC,qEAA6C,CAAA;AACjD,CAAC,EAXW,oBAAoB,oCAApB,oBAAoB,QAW/B;AAEY,QAAA,sBAAsB,GAAG,IAAA,0BAAgB,EAA4C;IAC9F,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,+BAAkB,CAAC,CAAC,EAAE,MAAO,CAAC;IAC7C,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC/C,aAAa,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC9D,cAAc,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAC/D,iBAAiB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,iBAAiB;IAC9C,kBAAkB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,yBAAyB;IACvD,oBAAoB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,2BAA2B;CAC9D,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/teamMember.d.ts.map b/dist/properties/teamMember.d.ts.map index 1c37b7edde..aaeed63493 100644 --- a/dist/properties/teamMember.d.ts.map +++ b/dist/properties/teamMember.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"teamMember.d.ts","sourceRoot":"","sources":["../../src/properties/teamMember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAA6C,MAAM,YAAY,CAAA;AAGlF,oBAAY,kBAAkB;IAC1B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,oBAAoB,2FAI/B,CAAA"} \ No newline at end of file +{"version":3,"file":"teamMember.d.ts","sourceRoot":"","sources":["../../src/properties/teamMember.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAA6C,MAAM,YAAY,CAAA;AAGlF,oBAAY,kBAAkB;IAC1B,EAAE,OAAO;IACT,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,oBAAoB,2FAI/B,CAAA"} \ No newline at end of file diff --git a/dist/properties/teamMember.js b/dist/properties/teamMember.js index 3826fcf75e..f1ca0e4568 100644 --- a/dist/properties/teamMember.js +++ b/dist/properties/teamMember.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/teamMember.js.map b/dist/properties/teamMember.js.map index 044f372a4c..d562cfe230 100644 --- a/dist/properties/teamMember.js.map +++ b/dist/properties/teamMember.js.map @@ -1 +1 @@ -{"version":3,"file":"teamMember.js","sourceRoot":"","sources":["../../src/properties/teamMember.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAkF;AAClF,qFAA4D;AAE5D,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,+BAAS,CAAA;IACT,mCAAa,CAAA;IACb,+CAAyB,CAAA;AAC7B,CAAC,EAJW,kBAAkB,kCAAlB,kBAAkB,QAI7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,2BAAc,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/E,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,sCAAyB,CAAC,CAAC,EAAE,eAAgB,CAAC;CACpE,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"teamMember.js","sourceRoot":"","sources":["../../src/properties/teamMember.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAkF;AAClF,qFAA4D;AAE5D,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,+BAAS,CAAA;IACT,mCAAa,CAAA;IACb,+CAAyB,CAAA;AAC7B,CAAC,EAJW,kBAAkB,kCAAlB,kBAAkB,QAI7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,2BAAc,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/E,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,sCAAyB,CAAC,CAAC,EAAE,eAAgB,CAAC;CACpE,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/user.d.ts.map b/dist/properties/user.d.ts.map index cbe83e399a..a3e945f012 100644 --- a/dist/properties/user.d.ts.map +++ b/dist/properties/user.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/properties/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAGjC,oBAAY,YAAY;IACpB,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;IACrC,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,mBAAmB,wBAAwB;IAC3C,cAAc,mBAAmB;CACpC;AAED,eAAO,MAAM,cAAc,+EAgBzB,CAAA"} \ No newline at end of file +{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/properties/user.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAGjC,oBAAY,YAAY;IACpB,EAAE,OAAO;IACT,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;IACrC,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,mBAAmB,wBAAwB;IAC3C,cAAc,mBAAmB;CACpC;AAED,eAAO,MAAM,cAAc,+EAgBzB,CAAA"} \ No newline at end of file diff --git a/dist/properties/user.js b/dist/properties/user.js index 740259c069..2c0c24da6d 100644 --- a/dist/properties/user.js +++ b/dist/properties/user.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/user.js.map b/dist/properties/user.js.map index 1bd64cc7ec..714d386f79 100644 --- a/dist/properties/user.js.map +++ b/dist/properties/user.js.map @@ -1 +1 @@ -{"version":3,"file":"user.js","sourceRoot":"","sources":["../../src/properties/user.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,YAgBX;AAhBD,WAAY,YAAY;IACpB,yBAAS,CAAA;IACT,qCAAqB,CAAA;IACrB,2CAA2B,CAAA;IAC3B,yCAAyB,CAAA;IACzB,iCAAiB,CAAA;IACjB,iCAAiB,CAAA;IACjB,2CAA2B,CAAA;IAC3B,iCAAiB,CAAA;IACjB,uCAAuB,CAAA;IACvB,2CAA2B,CAAA;IAC3B,qDAAqC,CAAA;IACrC,mDAAmC,CAAA;IACnC,uDAAuC,CAAA;IACvC,2DAA2C,CAAA;IAC3C,iDAAiC,CAAA;AACrC,CAAC,EAhBW,YAAY,4BAAZ,YAAY,QAgBvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB,EAAE;IACpC,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzD,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,mBAAmB,EAAE;IACjD,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,GAAG;IAC5C,iBAAiB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB,EAAE;IAC/C,mBAAmB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,eAAe;IAC5D,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,eAAe;CAC1D,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"user.js","sourceRoot":"","sources":["../../src/properties/user.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,YAgBX;AAhBD,WAAY,YAAY;IACpB,yBAAS,CAAA;IACT,qCAAqB,CAAA;IACrB,2CAA2B,CAAA;IAC3B,yCAAyB,CAAA;IACzB,iCAAiB,CAAA;IACjB,iCAAiB,CAAA;IACjB,2CAA2B,CAAA;IAC3B,iCAAiB,CAAA;IACjB,uCAAuB,CAAA;IACvB,2CAA2B,CAAA;IAC3B,qDAAqC,CAAA;IACrC,mDAAmC,CAAA;IACnC,uDAAuC,CAAA;IACvC,2DAA2C,CAAA;IAC3C,iDAAiC,CAAA;AACrC,CAAC,EAhBW,YAAY,4BAAZ,YAAY,QAgBvB;AAEY,QAAA,cAAc,GAAG,IAAA,0BAAgB,EAA4B;IACtE,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB,EAAE;IACpC,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IACzD,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU;IAChC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ;IAC5B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,cAAc;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,mBAAmB,EAAE;IACjD,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,GAAG;IAC5C,iBAAiB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB,EAAE;IAC/C,mBAAmB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,eAAe;IAC5D,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,eAAe;CAC1D,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/voiceEffect.d.ts.map b/dist/properties/voiceEffect.d.ts.map index 3d5f482ccc..5dc7bce6e5 100644 --- a/dist/properties/voiceEffect.d.ts.map +++ b/dist/properties/voiceEffect.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceEffect.d.ts","sourceRoot":"","sources":["../../src/properties/voiceEffect.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAuC,MAAM,YAAY,CAAA;AAGpF,oBAAY,mBAAmB;IAC3B,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;CAClC;AAED,eAAO,MAAM,qBAAqB,oGAShC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceEffect.d.ts","sourceRoot":"","sources":["../../src/properties/voiceEffect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAuC,MAAM,YAAY,CAAA;AAGpF,oBAAY,mBAAmB;IAC3B,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;CAClC;AAED,eAAO,MAAM,qBAAqB,oGAShC,CAAA"} \ No newline at end of file diff --git a/dist/properties/voiceEffect.js b/dist/properties/voiceEffect.js index d243d8d8a2..e86a8480ee 100644 --- a/dist/properties/voiceEffect.js +++ b/dist/properties/voiceEffect.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/voiceEffect.js.map b/dist/properties/voiceEffect.js.map index ab5ce87bf9..ce9d7f5aad 100644 --- a/dist/properties/voiceEffect.js.map +++ b/dist/properties/voiceEffect.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceEffect.js","sourceRoot":"","sources":["../../src/properties/voiceEffect.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAoF;AACpF,qFAA4D;AAE5D,IAAY,mBASX;AATD,WAAY,mBAAmB;IAC3B,sCAAe,CAAA;IACf,8CAAuB,CAAA;IACvB,0CAAmB,CAAA;IACnB,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,kDAA2B,CAAA;IAC3B,kDAA2B,CAAA;IAC3B,sDAA+B,CAAA;AACnC,CAAC,EATW,mBAAmB,mCAAnB,mBAAmB,QAS9B;AAEY,QAAA,qBAAqB,GAAG,IAAA,0BAAgB,EAAiD;IAClG,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,gDAAmC,CAAC,CAAC,EAAE,aAAc,CAAC;CAC/E,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceEffect.js","sourceRoot":"","sources":["../../src/properties/voiceEffect.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAoF;AACpF,qFAA4D;AAE5D,IAAY,mBASX;AATD,WAAY,mBAAmB;IAC3B,sCAAe,CAAA;IACf,8CAAuB,CAAA;IACvB,0CAAmB,CAAA;IACnB,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,kDAA2B,CAAA;IAC3B,kDAA2B,CAAA;IAC3B,sDAA+B,CAAA;AACnC,CAAC,EATW,mBAAmB,mCAAnB,mBAAmB,QAS9B;AAEY,QAAA,qBAAqB,GAAG,IAAA,0BAAgB,EAAiD;IAClG,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM;IACxB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,WAAW,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW;IAClC,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,gDAAmC,CAAC,CAAC,EAAE,aAAc,CAAC;CAC/E,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/voiceState.d.ts.map b/dist/properties/voiceState.d.ts.map index d31c7acd08..338c21a1c4 100644 --- a/dist/properties/voiceState.d.ts.map +++ b/dist/properties/voiceState.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"voiceState.d.ts","sourceRoot":"","sources":["../../src/properties/voiceState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAGvC,oBAAY,kBAAkB;IAC1B,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,oBAAoB,2FAc/B,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceState.d.ts","sourceRoot":"","sources":["../../src/properties/voiceState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAGvC,oBAAY,kBAAkB;IAC1B,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,UAAU,eAAe;CAC5B;AAED,eAAO,MAAM,oBAAoB,2FAc/B,CAAA"} \ No newline at end of file diff --git a/dist/properties/voiceState.js b/dist/properties/voiceState.js index 0093c4f415..d2176c4478 100644 --- a/dist/properties/voiceState.js +++ b/dist/properties/voiceState.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/voiceState.js.map b/dist/properties/voiceState.js.map index 9efcf8fd2c..0119057dc6 100644 --- a/dist/properties/voiceState.js.map +++ b/dist/properties/voiceState.js.map @@ -1 +1 @@ -{"version":3,"file":"voiceState.js","sourceRoot":"","sources":["../../src/properties/voiceState.ts"],"names":[],"mappings":";;;;;;AACA,qFAA4D;AAE5D,IAAY,kBAcX;AAdD,WAAY,kBAAkB;IAC1B,6CAAuB,CAAA;IACvB,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,mCAAa,CAAA;IACb,2CAAqB,CAAA;IACrB,6CAAuB,CAAA;IACvB,qCAAe,CAAA;IACf,6CAAuB,CAAA;IACvB,+CAAyB,CAAA;IACzB,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;IACvB,+CAAyB,CAAA;AAC7B,CAAC,EAdW,kBAAkB,kCAAlB,kBAAkB,QAc7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,gBAAgB;IAC9C,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,IAAI,KAAK;IAC7B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,IAAI,KAAK;IACxC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,IAAI,KAAK;IACzC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,IAAI,KAAK;IAC9B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;IACtC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;CAC1C,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"voiceState.js","sourceRoot":"","sources":["../../src/properties/voiceState.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,qFAA4D;AAE5D,IAAY,kBAcX;AAdD,WAAY,kBAAkB;IAC1B,6CAAuB,CAAA;IACvB,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,mCAAa,CAAA;IACb,2CAAqB,CAAA;IACrB,6CAAuB,CAAA;IACvB,qCAAe,CAAA;IACf,6CAAuB,CAAA;IACvB,+CAAyB,CAAA;IACzB,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;IACvB,+CAAyB,CAAA;AAC7B,CAAC,EAdW,kBAAkB,kCAAlB,kBAAkB,QAc7B;AAEY,QAAA,oBAAoB,GAAG,IAAA,0BAAgB,EAAwC;IACxF,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,gBAAgB;IAC9C,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE;IAC3B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,IAAI,KAAK;IAC7B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,IAAI,KAAK;IACxC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,IAAI,KAAK;IACzC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,IAAI,KAAK;IAC9B,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;IACrC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;IACtC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,IAAI,KAAK;IACvC,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,QAAQ,IAAI,KAAK;CAC1C,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/properties/webhook.d.ts.map b/dist/properties/webhook.d.ts.map index 4d1e843c7b..86ccc5d4b7 100644 --- a/dist/properties/webhook.d.ts.map +++ b/dist/properties/webhook.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"webhook.d.ts","sourceRoot":"","sources":["../../src/properties/webhook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAGjD,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;IAC/B,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,GAAG,QAAQ;CACd;AAED,eAAO,MAAM,iBAAiB,kGAa5B,CAAA"} \ No newline at end of file +{"version":3,"file":"webhook.d.ts","sourceRoot":"","sources":["../../src/properties/webhook.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAGjD,oBAAY,eAAe;IACvB,EAAE,OAAO;IACT,IAAI,SAAS;IACb,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;IAC/B,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,GAAG,QAAQ;CACd;AAED,eAAO,MAAM,iBAAiB,kGAa5B,CAAA"} \ No newline at end of file diff --git a/dist/properties/webhook.js b/dist/properties/webhook.js index 067cff52b6..885572c9dc 100644 --- a/dist/properties/webhook.js +++ b/dist/properties/webhook.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/properties/webhook.js.map b/dist/properties/webhook.js.map index 407d77f67f..e8de650a98 100644 --- a/dist/properties/webhook.js.map +++ b/dist/properties/webhook.js.map @@ -1 +1 @@ -{"version":3,"file":"webhook.js","sourceRoot":"","sources":["../../src/properties/webhook.ts"],"names":[],"mappings":";;;;;;AAAA,2CAAiD;AACjD,qFAA4D;AAE5D,IAAY,eAaX;AAbD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,gCAAa,CAAA;IACb,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;IACnB,0CAAuB,CAAA;IACvB,sCAAmB,CAAA;IACnB,sDAAmC,CAAA;IACnC,kDAA+B,CAAA;IAC/B,0CAAuB,CAAA;IACvB,kCAAe,CAAA;IACf,8BAAW,CAAA;AACf,CAAC,EAbW,eAAe,+BAAf,eAAe,QAa1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAkC;IAC/E,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,wBAAW,CAAC,CAAC,EAAE,IAAK,CAAC;IAClC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE,EAAE;IAC5C,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,EAAE,EAAE;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;CACrB,CAAC,CAAA"} \ No newline at end of file +{"version":3,"file":"webhook.js","sourceRoot":"","sources":["../../src/properties/webhook.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CAAiD;AACjD,qFAA4D;AAE5D,IAAY,eAaX;AAbD,WAAY,eAAe;IACvB,4BAAS,CAAA;IACT,gCAAa,CAAA;IACb,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;IACnB,0CAAuB,CAAA;IACvB,sCAAmB,CAAA;IACnB,sDAAmC,CAAA;IACnC,kDAA+B,CAAA;IAC/B,0CAAuB,CAAA;IACvB,kCAAe,CAAA;IACf,8BAAW,CAAA;AACf,CAAC,EAbW,eAAe,+BAAf,eAAe,QAa1B;AAEY,QAAA,iBAAiB,GAAG,IAAA,0BAAgB,EAAkC;IAC/E,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI;IACpB,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,wBAAW,CAAC,CAAC,EAAE,IAAK,CAAC;IAClC,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,SAAS;IAC9B,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,OAAO;IAC1B,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,aAAa,EAAE,EAAE;IAC5C,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,WAAW,EAAE,EAAE;IACxC,SAAS,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,gBAAgB;IACrC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,KAAK;IACtB,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG;CACrB,CAAC,CAAA"} \ No newline at end of file diff --git a/dist/structures/@internal/Arg.d.ts.map b/dist/structures/@internal/Arg.d.ts.map index 6d58a08902..18430d53a6 100644 --- a/dist/structures/@internal/Arg.d.ts.map +++ b/dist/structures/@internal/Arg.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Arg.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Arg.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Arg.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Arg.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/Arg.js b/dist/structures/@internal/Arg.js index 0b3d3ade4c..74c2a232b9 100644 --- a/dist/structures/@internal/Arg.js +++ b/dist/structures/@internal/Arg.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Arg = void 0; const NativeFunction_1 = require("./NativeFunction"); diff --git a/dist/structures/@internal/Arg.js.map b/dist/structures/@internal/Arg.js.map index 13122da0a8..bec017b069 100644 --- a/dist/structures/@internal/Arg.js.map +++ b/dist/structures/@internal/Arg.js.map @@ -1 +1 @@ -{"version":3,"file":"Arg.js","sourceRoot":"","sources":["../../../src/structures/@internal/Arg.ts"],"names":[],"mappings":";;;AAAA,qDAA0E;AAE1E,MAAa,GAAG;IACZ,gBAAuB,CAAC;IAEjB,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,OAAe,SAAS,EAAE,OAAe,oBAAoB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,aAAa,EAAE,OAAe,qBAAqB,EAAE,WAAoB,KAAK;QACnH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,OAAO;YACrB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;SACjB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,aAAa,EAAE,OAAe,oBAAoB;QAC3F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,aAAa,EAAE,OAAe,qBAAqB,EAAE,WAAoB,KAAK;QACnH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAqB,EAAK,EAAE,OAAe,YAAY,EAAE,OAAe,uBAAuB;QACrH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,EAAE;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAqB,EAAK,EAAE,OAAe,YAAY,EAAE,OAAe,wBAAwB;QACtH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,EAAE;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAqB,EAAK,EAAE,OAAe,aAAa,EAAE,OAAe,wBAAwB,EAAE,WAAoB,KAAK;QAC9I,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,IAAI,EAAE,EAAE;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,eAAe,EAAE,OAAe,kBAAkB;QACzF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,eAAe,EAAE,OAAe,kBAAkB;QACzF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,OAAe,kBAAkB,EAAE,OAAe,mBAAmB,EAAE,WAAoB,KAAK;QACpH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,OAAe,WAAW,EAAE,OAAe,mBAAmB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,SAAS,EAAE,OAAe,iBAAiB;QACjF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,SAAS,EAAE,OAAe,iBAAiB;QACjF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB,EAAE,WAAoB,KAAK;QAC1G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;YAClB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,aAAa,EAAE,OAAe,qBAAqB,EAAE,WAAoB,KAAK;QACnH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,WAAW,EAAE,OAAe,6BAA6B;QAC/F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,OAAe,YAAY,EAAE,OAAe,8BAA8B,EAAE,WAAoB,KAAK;QACxH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,WAAW,EAAE,OAAe,6BAA6B;QAC/F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,OAAe,SAAS,EAAE,OAAe,oBAAoB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB,EAAE,WAAoB,KAAK;QAC1G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,SAAS,EAAE,OAAe,iBAAiB;QACjF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,SAAS,EAAE,OAAe,iBAAiB;QACjF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,WAAW,EAAE,OAAe,yBAAyB;QAC7F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,OAAe,YAAY,EAAE,OAAe,0BAA0B,EAAE,WAAoB,KAAK;QACtH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,WAAW,EAAE,OAAe,yBAAyB;QAC7F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;YACpB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,mBAAmB,CAAC,OAAe,SAAS,EAAE,OAAe,+BAA+B;QACtG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,UAAU,EAAE,OAAe,+BAA+B,EAAE,WAAoB,KAAK;QAC9H,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,mBAAmB,CAAC,OAAe,SAAS,EAAE,OAAe,+BAA+B;QACtG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,WAAW;YACzB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,sBAAsB,CAAC,OAAe,UAAU,EAAE,OAAe,kCAAkC;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,WAAW,EAAE,OAAe,mCAAmC,EAAE,WAAoB,KAAK;QACtI,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,sBAAsB,CAAC,OAAe,UAAU,EAAE,OAAe,kCAAkC;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,cAAc;YAC5B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,qBAAqB,CAAC,OAAe,UAAU,EAAE,OAAe,2BAA2B;QACrG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,aAAa;YAC3B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,iBAAiB,CAAC,OAAe,WAAW,EAAE,OAAe,4BAA4B,EAAE,WAAoB,KAAK;QAC9H,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,aAAa;YAC3B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,qBAAqB,CAAC,OAAe,UAAU,EAAE,OAAe,2BAA2B;QACrG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,aAAa;YAC3B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,uBAAuB,CAAC,OAAe,UAAU,EAAE,OAAe,6BAA6B;QACzG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,mBAAmB,CAAC,OAAe,WAAW,EAAE,OAAe,8BAA8B,EAAE,WAAoB,KAAK;QAClI,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,uBAAuB,CAAC,OAAe,UAAU,EAAE,OAAe,6BAA6B;QACzG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,eAAe;YAC7B,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,QAAQ,EAAE,OAAe,sBAAsB;QACzF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,QAAQ,EAAE,OAAe,sBAAsB;QACzF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,SAAS,EAAE,OAAe,uBAAuB,EAAE,WAAoB,KAAK;QAClH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,kBAAkB,EAAE,OAAe,0BAA0B,EAAE,WAAoB,KAAK;QACjI,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,WAAW;SAC5B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,mBAAmB,CAAC,OAAe,iBAAiB,EAAE,OAAe,yBAAyB;QACxG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,WAAW;SAC5B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,mBAAmB,CAAC,OAAe,iBAAiB,EAAE,OAAe,yBAAyB;QACxG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,WAAW;SAC5B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,WAAW,EAAE,OAAe,yBAAyB,EAAE,WAAoB,KAAK;QACxH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,UAAU;YACxB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,UAAU,EAAE,OAAe,wBAAwB;QAC/F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,UAAU;YACxB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,UAAU,EAAE,OAAe,wBAAwB;QAC/F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,UAAU;YACxB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,oBAAoB,CAAC,OAAe,WAAW,EAAE,OAAe,+BAA+B,EAAE,WAAoB,KAAK;QACpI,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,gBAAgB;SACjC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,wBAAwB,CAAC,OAAe,UAAU,EAAE,OAAe,8BAA8B;QAC3G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,gBAAgB;SACjC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,wBAAwB,CAAC,OAAe,UAAU,EAAE,OAAe,8BAA8B;QAC3G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,gBAAgB;SACjC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,OAAe,WAAW,EAAE,OAAe,mBAAmB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,aAAa,CAAC,OAAe,UAAU,EAAE,OAAe,kBAAkB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,KAAK;SACtB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,aAAa,EAAE,OAAe,wBAAwB,EAAE,WAAoB,KAAK;QACzH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,YAAY,EAAE,OAAe,uBAAuB;QAChG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,YAAY,EAAE,OAAe,uBAAuB;QAChG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,QAAQ,EAAE,OAAe,mBAAmB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,OAAe,SAAS,EAAE,OAAe,oBAAoB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,KAAK,EAAE,OAAe,gBAAgB;QAC3E,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,GAAG;SACpB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,KAAK,EAAE,OAAe,gBAAgB;QAC3E,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,GAAG;SACpB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,OAAO,CAAC,OAAe,MAAM,EAAE,OAAe,iBAAiB,EAAE,WAAoB,KAAK;QACpG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,GAAG;SACpB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,MAAM,EAAE,OAAe,oBAAoB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,OAAO,EAAE,OAAe,qBAAqB,EAAE,WAAoB,KAAK;QAC7G,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,MAAM,EAAE,OAAe,oBAAoB;QACpF,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,aAAa,EAAE,OAAe,wBAAwB;QAC9F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,aAAa,EAAE,OAAe,wBAAwB;QAC9F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,OAAe,cAAc,EAAE,OAAe,yBAAyB,EAAE,WAAoB,KAAK;QACvH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,MAAM;SACvB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,OAAe,aAAa,EAAE,OAAe,qBAAqB,EAAE,WAAoB,KAAK;QACnH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,eAAe,CAAC,OAAe,YAAY,EAAE,OAAe,oBAAoB;QAC1F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,OAAO;SACxB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,eAAe,EAAE,OAAe,0BAA0B;QACpG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,QAAQ;SACzB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,eAAe,EAAE,OAAe,0BAA0B;QACpG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,QAAQ;SACzB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B,EAAE,WAAoB,KAAK;QAC7H,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,QAAQ;SACzB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B;QACtG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B;QACtG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,iBAAiB,EAAE,OAAe,4BAA4B,EAAE,WAAoB,KAAK;QAC/H,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,QAAQ;YACtB,OAAO,EAAE,CAAC;SACb,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,OAAe,eAAe,EAAE,OAAe,0BAA0B,EAAE,WAAoB,KAAK;QACvH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,eAAe,EAAE,OAAe,0BAA0B;QAChG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,eAAe,EAAE,OAAe,0BAA0B;QAChG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B;QAClG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B;QAClG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,OAAe,gBAAgB,EAAE,OAAe,2BAA2B,EAAE,WAAoB,KAAK;QACzH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,aAAa,EAAE,OAAe,wBAAwB,EAAE,WAAoB,KAAK;QACzH,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,aAAa,EAAE,OAAe,uBAAuB;QACjG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,YAAY,EAAE,OAAe,uBAAuB;QAChG,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,2BAA2B,CAAC,OAAe,sBAAsB,EAAE,OAAe,sDAAsD;QAClJ,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,wBAAO,CAAC,mBAAmB;SACpC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,uBAAuB,CAAC,OAAe,uBAAuB,EAAE,OAAe,uDAAuD,EAAE,WAAoB,KAAK;QAC3K,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,mBAAmB;SACpC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,2BAA2B,CAAC,OAAe,sBAAsB,EAAE,OAAe,sDAAsD;QAClJ,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,mBAAmB;SACpC,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,WAAW,EAAE,OAAe,sBAAsB;QAC9F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;YACxB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,OAAe,cAAc,EAAE,OAAe,yBAAyB,EAAE,WAAoB,KAAK;QAC3H,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,OAAO,EAAE,CAAC;YACV,eAAe,EAAE,OAAO;YACxB,IAAI,EAAE,IAAI;YACV,QAAQ;YACR,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,kBAAkB,CAAC,OAAe,WAAW,EAAE,OAAe,sBAAsB;QAC9F,OAAO,GAAG,CAAC,MAAM,CAAC;YACd,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,IAAI;YACd,eAAe,EAAE,OAAO;YACxB,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,wBAAO,CAAC,UAAU;SAC3B,CAAC,CAAA;IACN,CAAC;IAEO,MAAM,CAAC,MAAM,CAA8F,IAAsC;QACrJ,OAAO,IAAI,CAAA;IACf,CAAC;CACJ;AAtgCD,kBAsgCC"} \ No newline at end of file +{"version":3,"file":"Arg.js","sourceRoot":"","sources":["../../../src/structures/@internal/Arg.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/CompiledFunction.d.ts.map b/dist/structures/@internal/CompiledFunction.d.ts.map index c84761c723..e2d0852a44 100644 --- a/dist/structures/@internal/CompiledFunction.d.ts.map +++ b/dist/structures/@internal/CompiledFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CompiledFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/CompiledFunction.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,+BAA+B,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAGvG,OAAO,EAAE,SAAS,EAAE,YAAY,EAAc,MAAM,qBAAqB,CAAA;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,cAAc,EAAE,OAAO,EAAuB,MAAM,kBAAkB,CAAA;AACjG,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAI1D,MAAM,WAAW,uCAAwC,SAAQ,IAAI,CAAC,+BAA+B,EAAE,KAAK,GAAG,KAAK,CAAC;IACjH,GAAG,EAAE,8BAA8B,CAAA;IACnC,GAAG,CAAC,EAAE,8BAA8B,CAAA;CACvC;AAED,MAAM,WAAW,8BAA+B,SAAQ,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC;IAC7F,SAAS,EAAE,gBAAgB,EAAE,CAAA;IAC7B,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CAC3G;AAED,MAAM,WAAW,yBAA0B,SAAQ,IAAI,CAAC,iBAAiB,EAAE,QAAQ,CAAC;IAChF,MAAM,EAAE,CAAC,8BAA8B,GAAG,uCAAuC,CAAC,EAAE,GAAG,IAAI,CAAA;CAC9F;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,CAAC,SAAS,CAAC,GAAG,MAAM,EAAE,CAAC;IAC/E,IAAI,EAAE;SACD,CAAC,IAAI,MAAM,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;KACtC,CAAA;IACD,MAAM,EAAE,MAAM,CAAA;CACjB;AAED,qBAAa,gBAAgB,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,CAAC,GAAG,IAAI,EAAE,EAAE,MAAM,SAAS,OAAO,GAAG,OAAO;IAC1F,gBAAuB,sBAAsB;;;;MAI5C;IAED,gBAAuB,OAAO,SAAkB;IAChD,gBAAuB,QAAQ,SAAiB;IAChD,gBAAuB,UAAU,SAA4D;IAE7F,SAAgB,IAAI,EAAE,yBAAyB,CAAA;IAC/C,SAAgB,EAAE,EAAE,cAAc,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;gBAE1B,GAAG,EAAE,iBAAiB;IA4BlC,YAAY,CAAC,CAAC,EAAE,MAAM;IAa7B,IAAW,OAAO,IAAI,MAAM,CAY3B;IAED;;;;OAIG;YACW,WAAW;YAeX,mBAAmB;IAuBjC;;;;;OAKG;YACW,mBAAmB;YAqCnB,gBAAgB;YAchB,WAAW;IAmBzB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,aAAa;IAMrB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,aAAa;IAIrB,OAAO,KAAK,cAAc,GAEzB;IAED,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,cAAc;YAKR,kBAAkB;IAMhC,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,WAAW;IAKnB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,iBAAiB;YASX,uBAAuB;YAUvB,YAAY;IAU1B,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,cAAc;YAQR,iBAAiB;IAmB/B,OAAO,CAAC,aAAa;IAKrB,OAAO,CAAC,kBAAkB;IAK1B,OAAO,CAAC,qBAAqB;IAK7B,OAAO,CAAC,sBAAsB;IAK9B,OAAO,CAAC,oBAAoB;YASd,eAAe;IAQ7B,OAAO,CAAC,UAAU;IAalB,OAAO,CAAC,aAAa;IAKrB,OAAO,CAAC,cAAc;YAKR,eAAe;IAI7B,OAAO,CAAC,0BAA0B;IAkBlC,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,cAAc;YAKR,UAAU;IA8BxB,IAAW,SAAS,YAEnB;IAEM,QAAQ,CAAC,CAAC,EAAE,MAAM;IAIlB,KAAK,CAAC,GAAG,EAAE,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC;IAC3C,KAAK,CAAC,CAAC,SAAS,SAAS,EAAE,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC;IAMvF,WAAW,CAAC,GAAG,EAAE,MAAM;IAIjB,OAAO,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC;IAanD,OAAO,CAAC,iBAAiB;YAIX,IAAI;WAWJ,kBAAkB,CAAC,IAAI,EAAE,OAAO;IAIvC,WAAW,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,cAAc;IAInD,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,cAAc;IAQpD,MAAM,CAAC,KAAK,EAAE,WAAW,CAAC,UAAU,CAAC,MAAM,CAAC;IAI5C,IAAI;IAIJ,KAAK;IAIL,QAAQ;IAIR,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC;IAIlD,gBAAgB,CAAC,KAAK,EAAE,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC;IAIvD,aAAa,CAAC,KAAK,GAAE,WAAW,CAAC,UAAU,CAAC,OAAO,CAAQ;IAI3D,OAAO,CAAC,KAAK,GAAE,WAAW,CAAC,UAAU,CAAC,OAAO,CAAQ;CAG/D"} \ No newline at end of file +{"version":3,"file":"CompiledFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/CompiledFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/CompiledFunction.js b/dist/structures/@internal/CompiledFunction.js index 55495a2dd3..77ebcf3b60 100644 --- a/dist/structures/@internal/CompiledFunction.js +++ b/dist/structures/@internal/CompiledFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/structures/@internal/CompiledFunction.js.map b/dist/structures/@internal/CompiledFunction.js.map index 0570307cda..d9b3d7e91c 100644 --- a/dist/structures/@internal/CompiledFunction.js.map +++ b/dist/structures/@internal/CompiledFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"CompiledFunction.js","sourceRoot":"","sources":["../../../src/structures/@internal/CompiledFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"CompiledFunction.js","sourceRoot":"","sources":["../../../src/structures/@internal/CompiledFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/Container.d.ts b/dist/structures/@internal/Container.d.ts index cf8003afb3..12adf1f9b5 100644 --- a/dist/structures/@internal/Container.d.ts +++ b/dist/structures/@internal/Container.d.ts @@ -10,6 +10,7 @@ export declare class Container { reply: boolean; followUp: boolean; edit: boolean; + silent: boolean; ephemeral: boolean; tts: boolean; update: boolean; @@ -32,7 +33,8 @@ export declare class Container { send(obj: Sendable, content?: string, messageID?: string): Promise; isValidMessage(options: MessageReplyOptions & InteractionReplyOptions & InteractionEditReplyOptions): boolean; embed(index: number): EmbedBuilder; - unparseMention(type: MessageMentionTypes): MessageMentionTypes[]; + parseMentions(type?: MessageMentionTypes): void; + unparseMentions(type: MessageMentionTypes): void; /** * Checks if current context is inside a component builder function. * @param type The type of the component to check for. diff --git a/dist/structures/@internal/Container.d.ts.map b/dist/structures/@internal/Container.d.ts.map index 873f59dfb8..37ff2fadee 100644 --- a/dist/structures/@internal/Container.d.ts.map +++ b/dist/structures/@internal/Container.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Container.ts"],"names":[],"mappings":"AACA,OAAO,EACH,gBAAgB,EAChB,kCAAkC,EAClC,gBAAgB,EAChB,iBAAiB,EACjB,6BAA6B,EAE7B,WAAW,EAEX,OAAO,EACP,aAAa,EACb,gBAAgB,EAChB,yBAAyB,EACzB,YAAY,EACZ,KAAK,EACL,KAAK,EACL,UAAU,EACV,WAAW,EACX,mBAAmB,EACnB,WAAW,EAEX,2BAA2B,EAC3B,uBAAuB,EACvB,MAAM,EACN,OAAO,EACP,gCAAgC,EAChC,qBAAqB,EACrB,mBAAmB,EACnB,eAAe,EACf,mBAAmB,EACnB,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,IAAI,EACJ,eAAe,EACf,OAAO,EACP,iBAAiB,EAEjB,uBAAuB,EACvB,IAAI,EACJ,UAAU,EACV,aAAa,EAChB,MAAM,YAAY,CAAA;AAInB,MAAM,MAAM,QAAQ,GACd,EAAE,GACF,OAAO,GACP,mBAAmB,GACnB,IAAI,GACJ,QAAQ,GACR,OAAO,GACP,IAAI,GACJ,WAAW,GACX,WAAW,GACX,WAAW,GACX,UAAU,GACV,aAAa,GACb,UAAU,GACV,KAAK,GACL,eAAe,GACf,MAAM,GACN,6BAA6B,GAC7B,eAAe,GACf,KAAK,GACL,gBAAgB,CAAA;AAEtB,qBAAa,SAAS;IACX,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,iBAA4B;IAClC,UAAU,mDAA4D;IACtE,SAAS,CAAC,EAAE,gBAAgB,CAAC,gCAAgC,CAAC,CAAA;IAC9D,MAAM,kBAAyB;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,UAAQ;IACb,QAAQ,UAAQ;IAChB,IAAI,UAAQ;IACZ,SAAS,UAAQ;IACjB,GAAG,UAAQ;IACX,MAAM,UAAQ;IACd,cAAc,UAAQ;IACtB,KAAK,sBAAiC;IACtC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,sBAAiC;IACzC,YAAY,UAAQ;IACpB,cAAc,UAAQ;IACtB,KAAK,CAAC,EAAE,YAAY,CAAA;IACpB,OAAO,wDAAmE;IAC1E,eAAe,EAAE,qBAAqB,CAAK;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,QAAQ,CAAC,EAAE,uBAAuB,CAAA;IAClC,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEX,IAAI,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IAwD/F,cAAc,CAAC,OAAO,EAAE,mBAAmB,GAAG,uBAAuB,GAAG,2BAA2B;IAenG,KAAK,CAAC,KAAK,EAAE,MAAM;IAInB,cAAc,CAAC,IAAI,EAAE,mBAAmB;IAK/C;;;;OAIG;IACI,QAAQ,CAAC,IAAI,EAAE,aAAa;IAI5B,KAAK;IAkCL,UAAU,CAAC,CAAC,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,CAAC;CAwC5C"} \ No newline at end of file +{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Container.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,gBAAgB,EAChB,kCAAkC,EAClC,gBAAgB,EAChB,iBAAiB,EACjB,6BAA6B,EAE7B,WAAW,EAEX,OAAO,EACP,aAAa,EACb,gBAAgB,EAChB,yBAAyB,EACzB,YAAY,EACZ,KAAK,EACL,KAAK,EACL,UAAU,EACV,WAAW,EACX,mBAAmB,EACnB,WAAW,EAEX,2BAA2B,EAC3B,uBAAuB,EACvB,MAAM,EACN,OAAO,EACP,gCAAgC,EAChC,qBAAqB,EACrB,mBAAmB,EACnB,eAAe,EACf,mBAAmB,EACnB,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,IAAI,EACJ,eAAe,EACf,OAAO,EACP,iBAAiB,EAEjB,uBAAuB,EACvB,IAAI,EACJ,UAAU,EACV,aAAa,EAChB,MAAM,YAAY,CAAA;AAMnB,MAAM,MAAM,QAAQ,GACd,EAAE,GACF,OAAO,GACP,mBAAmB,GACnB,IAAI,GACJ,QAAQ,GACR,OAAO,GACP,IAAI,GACJ,WAAW,GACX,WAAW,GACX,WAAW,GACX,UAAU,GACV,aAAa,GACb,UAAU,GACV,KAAK,GACL,eAAe,GACf,MAAM,GACN,6BAA6B,GAC7B,eAAe,GACf,KAAK,GACL,gBAAgB,CAAA;AAEtB,qBAAa,SAAS;IACX,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,iBAA4B;IAClC,UAAU,mDAA4D;IACtE,SAAS,CAAC,EAAE,gBAAgB,CAAC,gCAAgC,CAAC,CAAA;IAC9D,MAAM,kBAAyB;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,UAAQ;IACb,QAAQ,UAAQ;IAChB,IAAI,UAAQ;IACZ,MAAM,UAAQ;IACd,SAAS,UAAQ;IACjB,GAAG,UAAQ;IACX,MAAM,UAAQ;IACd,cAAc,UAAQ;IACtB,KAAK,sBAAiC;IACtC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,sBAAiC;IACzC,YAAY,UAAQ;IACpB,cAAc,UAAQ;IACtB,KAAK,CAAC,EAAE,YAAY,CAAA;IACpB,OAAO,wDAAmE;IAC1E,eAAe,EAAE,qBAAqB,CAAK;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,QAAQ,CAAC,EAAE,uBAAuB,CAAA;IAClC,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEX,IAAI,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IAwD/F,cAAc,CAAC,OAAO,EAAE,mBAAmB,GAAG,uBAAuB,GAAG,2BAA2B;IAenG,KAAK,CAAC,KAAK,EAAE,MAAM;IAInB,aAAa,CAAC,IAAI,CAAC,EAAE,mBAAmB;IAMxC,eAAe,CAAC,IAAI,EAAE,mBAAmB;IAIhD;;;;OAIG;IACI,QAAQ,CAAC,IAAI,EAAE,aAAa;IAI5B,KAAK;IAmCL,UAAU,CAAC,CAAC,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,CAAC;CAyC5C"} \ No newline at end of file diff --git a/dist/structures/@internal/Container.js b/dist/structures/@internal/Container.js index e33d8601b0..f02f322243 100644 --- a/dist/structures/@internal/Container.js +++ b/dist/structures/@internal/Container.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -8,6 +12,7 @@ exports.Container = void 0; const discord_js_1 = require("discord.js"); const noop_1 = __importDefault(require("../../functions/noop")); const discord_js_2 = require("discord.js"); +const mentions = ["everyone", "roles", "users"]; class Container { content; embeds = new Array(); @@ -18,6 +23,7 @@ class Container { reply = false; followUp = false; edit = false; + silent = false; ephemeral = false; tts = false; update = false; @@ -109,9 +115,13 @@ class Container { embed(index) { return (this.embeds[index] ??= new discord_js_1.EmbedBuilder()); } - unparseMention(type) { - this.allowedMentions.parse ??= ["everyone", "roles", "users"]; - return (this.allowedMentions.parse = this.allowedMentions.parse.filter((x) => x !== type)); + parseMentions(type) { + this.allowedMentions.parse = type + ? [...new Set([...(this.allowedMentions.parse ?? []), type])] + : [...mentions]; + } + unparseMentions(type) { + this.allowedMentions.parse = (this.allowedMentions.parse ?? mentions).filter((x) => x !== type); } /** * Checks if current context is inside a component builder function. @@ -139,6 +149,7 @@ class Container { this.update = false; this.ephemeral = false; this.withResponse = false; + this.silent = false; this.edit = false; this.tts = false; this.isComponentsV2 = false; @@ -157,6 +168,8 @@ class Container { const flags = new Array(); if (this.ephemeral) flags.push(discord_js_2.MessageFlags.Ephemeral); + if (this.silent) + flags.push(discord_js_2.MessageFlags.SuppressNotifications); if (this.isComponentsV2) flags.push(discord_js_2.MessageFlags.IsComponentsV2); return (content diff --git a/dist/structures/@internal/Container.js.map b/dist/structures/@internal/Container.js.map index 6c3059393c..b5217ef0bf 100644 --- a/dist/structures/@internal/Container.js.map +++ b/dist/structures/@internal/Container.js.map @@ -1 +1 @@ -{"version":3,"file":"Container.js","sourceRoot":"","sources":["../../../src/structures/@internal/Container.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Container.js","sourceRoot":"","sources":["../../../src/structures/@internal/Container.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/Context.d.ts b/dist/structures/@internal/Context.d.ts index 2e8dc9577c..8ac4c50cad 100644 --- a/dist/structures/@internal/Context.d.ts +++ b/dist/structures/@internal/Context.d.ts @@ -1,4 +1,4 @@ -import { AnySelectMenuInteraction, AutoModerationActionExecution, AutoModerationActionOptions, AutoModerationTriggerMetadataOptions, BaseChannel, ChatInputCommandInteraction, ContextMenuCommandInteraction, Emoji, Entitlement, Guild, GuildMember, Interaction, MediaGalleryBuilder, Message, MessageReaction, Role, SectionBuilder, SoundboardSound, Sticker, Subscription, User } from "discord.js"; +import { AnySelectMenuInteraction, AutoModerationActionExecution, AutoModerationActionOptions, AutoModerationTriggerMetadataOptions, BaseChannel, ChatInputCommandInteraction, ContextMenuCommandInteraction, Emoji, Entitlement, Guild, GuildMember, GuildScheduledEventEntityMetadataOptions, Interaction, LabelBuilder, MediaGalleryBuilder, Message, MessageReaction, Role, SectionBuilder, SoundboardSound, Sticker, Subscription, User, VoiceBasedChannel } from "discord.js"; import { CompiledFunction, IExtendedCompiledFunctionField } from "./CompiledFunction"; import { Container, Sendable } from "./Container"; import { IArg, UnwrapArgs } from "./NativeFunction"; @@ -27,6 +27,10 @@ export interface IAutomodRuleOptions { exemptRoles?: string[]; exemptChannels?: string[]; } +export interface IScheduledEventOptions { + channel?: VoiceBasedChannel; + entityMetadata?: GuildScheduledEventEntityMetadataOptions; +} export interface ILocalFunctionData { code: IExtendedCompiledFunctionField; args: string[]; @@ -34,6 +38,8 @@ export interface ILocalFunctionData { export interface IComponentOptions { section: SectionBuilder; gallery: MediaGalleryBuilder; + label: LabelBuilder; + required?: boolean; } export declare enum CalendarType { Buddhist = "buddhist", @@ -83,10 +89,10 @@ export declare class Context { executionTimestamp: number; http: Partial; automodRule: Partial; + scheduledEvent: Partial; component: Partial; timezone: string; calendar?: CalendarType; - localFunctions: Map; private _reason?; container: Container; constructor(runtime: IRunnable); @@ -117,6 +123,7 @@ export declare class Context { handleNotSuccess(fn: CompiledFunction, rt: Return): boolean; clearHttpOptions(): void; clearAutomodRuleOptions(): void; + clearScheduledEventOptions(): void; /** * Fetches all emojis of the application. * @param once Whether to fetch only when the collection is empty. @@ -133,6 +140,9 @@ export declare class Context { deleteKeyword(name: string): boolean; setKeyword(name: string, value: unknown): unknown; hasKeyword(name: string): boolean; + getLocalFunction(name: string): ILocalFunctionData; + deleteLocalFunction(name: string): boolean; + setLocalFunction(name: string, data: ILocalFunctionData): ILocalFunctionData; clearKeywords(): void; clearEnvironment(): void; isSelectMenu(): this is this & { @@ -162,7 +172,7 @@ export declare class Context { }; cloneEmpty(): Context; /** - * Clones keywords and environment vars + * Clones keywords, environment vars, and local functions. * @returns */ clone(props?: Partial, syncVars?: boolean): Context; diff --git a/dist/structures/@internal/Context.d.ts.map b/dist/structures/@internal/Context.d.ts.map index 1b751be151..2a6bcbfaa2 100644 --- a/dist/structures/@internal/Context.d.ts.map +++ b/dist/structures/@internal/Context.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Context.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Context.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Context.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Context.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/Context.js b/dist/structures/@internal/Context.js index b3ecf6cf00..6892e5a2af 100644 --- a/dist/structures/@internal/Context.js +++ b/dist/structures/@internal/Context.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; @@ -41,12 +45,13 @@ class Context { executionTimestamp; http = {}; automodRule = {}; + scheduledEvent = {}; component = {}; timezone = "UTC"; calendar; - localFunctions = new Map(); #keywords = {}; #environment = {}; + #localFunctions = {}; _reason; container; // eslint-disable-next-line no-unused-vars @@ -56,6 +61,8 @@ class Context { this.#environment = runtime.environment; if (runtime.keywords) this.#keywords = runtime.keywords; + if (runtime.localFunctions) + this.#localFunctions = runtime.localFunctions; this.container = runtime.container ??= new Container_1.Container(); } get client() { @@ -201,6 +208,9 @@ class Context { clearAutomodRuleOptions() { this.automodRule = {}; } + clearScheduledEventOptions() { + this.scheduledEvent = {}; + } /** * Fetches all emojis of the application. * @param once Whether to fetch only when the collection is empty. @@ -272,6 +282,15 @@ class Context { hasKeyword(name) { return name in this.#keywords; } + getLocalFunction(name) { + return this.#localFunctions[name]; + } + deleteLocalFunction(name) { + return delete this.#localFunctions[name]; + } + setLocalFunction(name, data) { + return (this.#localFunctions[name] = data); + } clearKeywords() { this.#keywords = {}; } @@ -315,13 +334,14 @@ class Context { return new Context({ ...this.runtime }); } /** - * Clones keywords and environment vars + * Clones keywords, environment vars, and local functions. * @returns */ clone(props, syncVars = false) { const empty = this.cloneEmpty(); empty.#keywords = syncVars ? this.#keywords : { ...this.#keywords }; empty.#environment = syncVars ? this.#environment : { ...this.#environment }; + empty.#localFunctions = syncVars ? this.#localFunctions : { ...this.#localFunctions }; if (props) { const keys = Object.keys(props); for (let i = 0, len = keys.length; i < len; i++) { @@ -334,6 +354,7 @@ class Context { cloneRuntime() { this.runtime.keywords = this.#keywords; this.runtime.environment = this.#environment; + this.runtime.localFunctions = this.#localFunctions; return this.runtime; } clearCache() { diff --git a/dist/structures/@internal/Context.js.map b/dist/structures/@internal/Context.js.map index 81db3001c6..57b28a2181 100644 --- a/dist/structures/@internal/Context.js.map +++ b/dist/structures/@internal/Context.js.map @@ -1 +1 @@ -{"version":3,"file":"Context.js","sourceRoot":"","sources":["../../../src/structures/@internal/Context.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"Context.js","sourceRoot":"","sources":["../../../src/structures/@internal/Context.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAEF,2CA0BmB;AAEnB,2CAAiD;AAEjD,qCAA6C;AAG7C,qCAAiC;AAEjC,8EAAqD;AAMrD,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,qDAAI,CAAA;IACJ,qDAAI,CAAA;AACR,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B;AAsCD,IAAY,YAmBX;AAnBD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,mCAAmB,CAAA;IACnB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;IACrB,mCAAmB,CAAA;IACnB,iCAAiB,CAAA;IACjB,iCAAiB,CAAA;IACjB,mCAAmB,CAAA;IACnB,oDAAoC,CAAA;IACpC,4CAA4B,CAAA;IAC5B,8CAA8B,CAAA;IAC9B,4CAA4B,CAAA;IAC5B,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;IACrB,mCAAmB,CAAA;IACnB,2BAAW,CAAA;AACf,CAAC,EAnBW,YAAY,4BAAZ,YAAY,QAmBvB;AAyBD,MAAa,OAAO;IAuBmB;IAtBnC,MAAM,GAA2B,EAAE,CAAC;IAKpC,kBAAkB,CAAS;IAC3B,IAAI,GAA0B,EAAE,CAAA;IAChC,WAAW,GAAiC,EAAE,CAAA;IAC9C,cAAc,GAAoC,EAAE,CAAA;IACpD,SAAS,GAA+B,EAAE,CAAA;IAC1C,QAAQ,GAAW,KAAK,CAAA;IACxB,QAAQ,CAAe;IAEvB,SAAS,GAA4B,EAAE,CAAA;IACvC,YAAY,GAA4B,EAAE,CAAA;IAC1C,eAAe,GAAuC,EAAE,CAAA;IAEhD,OAAO,CAAS;IAEjB,SAAS,CAAW;IAE3B,0CAA0C;IAC1C,YAAmC,OAAkB;QAAlB,YAAO,GAAP,OAAO,CAAW;QACjD,IAAI,OAAO,CAAC,WAAW;YAAE,IAAI,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAA;QAChE,IAAI,OAAO,CAAC,QAAQ;YAAE,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAA;QACvD,IAAI,OAAO,CAAC,cAAc;YAAE,IAAI,CAAC,eAAe,GAAG,OAAO,CAAC,cAAc,CAAA;QACzE,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,KAAK,IAAI,qBAAS,EAAE,CAAA;IAC1D,CAAC;IAED,IAAW,MAAM;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAA;IAC9B,CAAC;IAED,IAAW,GAAG,CAAC,CAAW;QACtB,IAAI,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,CAAA;QACpB,IAAI,CAAC,UAAU,EAAE,CAAA;IACrB,CAAC;IAED,IAAW,MAAM,CAAC,GAAuB;QACrC,IAAI,CAAC,OAAO,GAAG,GAAG,CAAA;IACtB,CAAC;IAED,IAAW,MAAM;QACb,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAA;QACxB,IAAI,CAAC,OAAO,GAAG,SAAS,CAAA;QACxB,OAAO,GAAG,CAAA;IACd,CAAC;IAED,IAAW,GAAG;QACV,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,CAAA;IAC/B,CAAC;IAED,IAAW,GAAG;QACV,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAA;IAC3B,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAA;IAClC,CAAC;IAED,IAAW,MAAM;QACb,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAA;IAC9B,CAAC;IAED,IAAW,OAAO;QACd,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,KAAK,IAAI,CAAC,GAAG,YAAY,0CAA6B,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAA;IACtG,CAAC;IAED,IAAW,WAAW;QAClB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,KAAK,IAAI,CAAC,GAAG,YAAY,wBAAW,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAA;IACxF,CAAC;IAED,IAAW,YAAY;QACnB,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,KAAK,IAAI,CAAC,GAAG,YAAY,yBAAY,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAA;IAC1F,CAAC;IAED,IAAW,MAAM;QACb,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM;YACtB,IAAI,CAAC,GAAG,YAAY,wBAAW;gBAC3B,CAAC,CAAC,IAAI,CAAC,GAAG;gBACV,CAAC,CAAC,QAAQ,IAAI,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,MAAM,YAAY,wBAAW;oBAC5D,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM;oBACjB,CAAC,CAAC,IAAI,CAAC,CAAA;IACvB,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,IAAI,CAAC,GAAG,YAAY,kBAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC9E,CAAC;IAED,IAAW,OAAO;QACd,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,KAAK,IAAI,CAAC,GAAG,YAAY,oBAAO,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAClF,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,IAAI,CAAC,GAAG,YAAY,4BAAe,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IACxF,CAAC;IAED,IAAW,IAAI;QACX,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,KAAK,IAAI,CAAC,GAAG,YAAY,iBAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC5E,CAAC;IAED,IAAW,QAAQ;QACf,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,KAAK,IAAI,CAAC,GAAG,YAAY,4BAAe,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC3F,CAAC;IAED,IAAW,OAAO;QACd,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO;YACvB,SAAS,IAAI,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,OAAO;gBACrC,CAAC,CAAE,IAAI,CAAC,GAAG,CAAC,OAAmB;gBAC/B,CAAC,CAAC,IAAI,CAAC,GAAG,YAAY,oBAAO;oBACzB,CAAC,CAAC,IAAI,CAAC,GAAG;oBACV,CAAC,CAAC,IAAI,CAAC,CAAA;IACvB,CAAC;IAED,IAAW,WAAW;QAClB,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,KAAK,IAAI,CAAC,GAAG,YAAY,4BAAe,CAAC,CAAC,CAAC,IAAI,CAAC,GAAkB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC7G,CAAC;IAED,IAAW,IAAI;QACX,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI;YACpB,MAAM,IAAI,IAAI,CAAC,GAAG;gBACd,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI;gBACf,CAAC,CAAC,QAAQ,IAAI,IAAI,CAAC,GAAG;oBAClB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM;oBACjB,CAAC,CAAC,IAAI,CAAC,GAAG,YAAY,iBAAI;wBACtB,CAAC,CAAC,IAAI,CAAC,GAAG;wBACV,CAAC,CAAC,QAAQ,IAAI,IAAI,CAAC,GAAG;4BAClB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,IAAI,IAAI;4BAC/B,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK;YACrB,OAAO,IAAI,IAAI,CAAC,GAAG;gBACf,CAAC,CAAE,IAAI,CAAC,GAAG,CAAC,KAAe;gBAC3B,CAAC,CAAC,IAAI,CAAC,GAAG,YAAY,kBAAK;oBACvB,CAAC,CAAC,IAAI,CAAC,GAAG;oBACV,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG;wBACnB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK;wBACxB,CAAC,CAAC,IAAI,CAAC,CAAA;IAC3B,CAAC;IAED,IAAW,OAAO;QACd,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO;YACvB,SAAS,IAAI,IAAI,CAAC,GAAG;gBACjB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO;oBACvB,CAAC,CAAC,IAAI;oBACN,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO;gBACtB,CAAC,CAAC,IAAI,CAAC,GAAG,YAAY,wBAAW;oBAC7B,CAAC,CAAC,IAAI,CAAC,GAAG;oBACV,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG;wBACnB,CAAC,CAAE,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,OAAuB;wBAC3C,CAAC,CAAC,IAAI,CAAC,CAAA;IAC3B,CAAC;IAEM,KAAK,CAAC,MAAM,CACf,EAAkC,EAClC,EAAgC;QAEhC,MAAM,MAAM,GAAG,MAAM,EAAE,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,CAAA;QAE5C,gCAAgC;QAChC,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE;YACjB,OAAO,MAAM,CAAA;SAChB;QAED,qBAAqB;QACrB,OAAO,EAAE,CAAC,MAAM,CAAC,KAAyB,CAAC,CAAA;IAC/C,CAAC;IAEM,KAAK,CAAC,OAAe;QACxB,IAAI,IAAI,CAAC,OAAO,CAAC,uBAAuB,EAAE;YACtC,eAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;YACrB,OAAO,OAAO,CAAC,OAAO,EAAE,CAAA;SAC3B;QAED,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;QACtB,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;IAEM,gBAAgB,CAAC,EAAoB,EAAE,EAAU;QACpD,IAAI,EAAE,CAAC,IAAI,CAAC,MAAM;YACd,OAAO,KAAK,CAAA;aACX,IAAI,EAAE,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,mBAAmB,EAAE;YACpD,MAAM,IAAI,eAAM,CAAC,mBAAU,CAAC,MAAM,EAAE,EAAE,CAAC,KAAe,CAAC,CAAA;SAC1D;aAAM,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,KAAK,IAAI,EAAE,CAAC,QAAQ,EAAE;YAC7C,MAAM,GAAG,GAAG,MAAM,GAAG,mBAAU,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,8CAA8C,CAAA;YACzF,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,eAAM,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;SACtD;aAAM,IAAI,EAAE,CAAC,KAAK,EAAE;YACjB,MAAM,GAAG,GAAG,EAAE,CAAC,KAAmB,CAAA;YAClC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,eAAM,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;SAC9D;QAED,OAAO,KAAK,CAAA;IAChB,CAAC;IAEM,gBAAgB;QACnB,IAAI,CAAC,IAAI,GAAG,EAAE,CAAA;IAClB,CAAC;IAEM,uBAAuB;QAC1B,IAAI,CAAC,WAAW,GAAG,EAAE,CAAA;IACzB,CAAC;IAEM,0BAA0B;QAC7B,IAAI,CAAC,cAAc,GAAG,EAAE,CAAA;IAC5B,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,sBAAsB,CAAC,IAAc;QAC9C,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,WAAW,CAAA;QAE1C,IAAI,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE;YAC3B,OAAO,MAAM,CAAC,KAAK,CAAA;SACtB;QACD,OAAO,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;IAEM,iBAAiB,CAAC,IAAY,EAAE,KAAc;QACjD,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAA;IAC5C,CAAC;IAEM,4BAA4B,CAAC,GAAG,IAAc;QACjD,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,IAAI,CAAC,CAAC,GAAG,IAAI,IAAI,CAAC;gBACd,OAAO,KAAK,CAAA;YAChB,IAAI,GAAG,IAAI,CAAC,GAAG,CAA4B,CAAA;SAC9C;QAED,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QACjC,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;YACnB,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;QACtC,OAAO,OAAO,IAAI,CAAC,GAAG,CAAC,CAAA;IAC3B,CAAC;IAEM,yBAAyB,CAAC,KAAc,EAAE,GAAG,IAAc;QAC9D,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,IAAI,CAAC,CAAC,GAAG,IAAI,IAAI,CAAC;gBACd,OAAO,KAAK,CAAA;YAChB,IAAI,GAAG,IAAI,CAAC,GAAG,CAA4B,CAAA;SAC9C;QAED,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QACrC,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAA;QAErB,OAAO,IAAI,CAAA;IACf,CAAC;IAEM,oBAAoB,CAAC,IAAY;QACpC,OAAO,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAA;IACzC,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,QAAgB,EAAE,GAAG,IAAc;QAC9D,IAAI,CAAC,QAAQ;YACT,OAAO,QAAQ,CAAA;QAEnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC7C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,IAAI,CAAC,CAAC,GAAG,IAAI,QAAQ,CAAC;gBAAE,OAAM;YAC9B,QAAQ,GAAG,QAAQ,CAAC,GAA4B,CAAC,CAAA;YACjD,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,QAAQ,KAAK,IAAI;gBAAE,MAAK;SAC/D;QAED,OAAO,QAAQ,CAAA;IACnB,CAAC;IAEM,iBAAiB,CAAC,GAAG,IAAc;QACtC,OAAO,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,YAAY,EAAE,GAAG,IAAI,CAAC,CAAA;IAC/D,CAAC;IAEM,UAAU,CAAC,IAAY;QAC1B,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAA;IAC/B,CAAC;IAEM,aAAa,CAAC,IAAY;QAC7B,OAAO,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAA;IACtC,CAAC;IAEM,UAAU,CAAC,IAAY,EAAE,KAAc;QAC1C,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAA;IACzC,CAAC;IAEM,UAAU,CAAC,IAAY;QAC1B,OAAO,IAAI,IAAI,IAAI,CAAC,SAAS,CAAA;IACjC,CAAC;IAEM,gBAAgB,CAAC,IAAY;QAChC,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAA;IACrC,CAAC;IAEM,mBAAmB,CAAC,IAAY;QACnC,OAAO,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAA;IAC5C,CAAC;IAEM,gBAAgB,CAAC,IAAY,EAAE,IAAwB;QAC1D,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAA;IAC9C,CAAC;IAEM,aAAa;QAChB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAA;IACvB,CAAC;IAEM,gBAAgB;QACnB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAA;IAC1B,CAAC;IAEM,YAAY;QACf,OAAO,CAAC,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,CAAC,eAAe,EAAE,CAAA;IACnE,CAAC;IAEM,gBAAgB;QACnB,OAAO,CAAC,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,CAAA;IACxE,CAAC;IAEM,SAAS;QACZ,OAAO,CAAC,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,CAAA;IACtE,CAAC;IAEM,sBAAsB,CAAsB,IAAO,EAAE,GAAG,IAAc;QACzE,MAAM,GAAG,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAA;QAC3C,OAAO,CAAC,GAAG,IAAI,GAAG,YAAY,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAA4B,CAAA;IAC/E,CAAC;IAEM,WAAW,CAAwC,GAAM,EAAE,IAAO;QACrE,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,SAAS,IAAI,IAAI,CAAC,GAAG,CAAC,YAAY,IAAI,CAAA;IAC/D,CAAC;IAEM,GAAG,CAAI,GAAgB;QAC1B,OAAO,IAAI,CAAC,GAAG,CAAM,CAAA;IACzB,CAAC;IAEM,wBAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,oBAAoB,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,oBAAoB,KAAK,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE,wBAAwB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAA;IACpJ,CAAC;IAEM,WAAW,CAAwC,GAAM,EAAE,IAAO;QACrE,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,EAAE,IAAI,CAAC;YAC3B,OAAO,IAAI,CAAC,GAAG,CAAC,CAAA;QACpB,OAAO,IAAI,CAAA;IACf,CAAC;IAEO,KAAK;QACT,MAAM,IAAI,CAAA;IACd,CAAC;IAED,IAAW,YAAY;QACnB,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACrD,CAAC;IAEM,UAAU;QACb,OAAO,IAAI,OAAO,CAAC,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,CAAC,CAAA;IAC3C,CAAC;IAED;;;OAGG;IACI,KAAK,CAAC,KAA0B,EAAE,QAAQ,GAAG,KAAK;QACrD,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,EAAE,CAAA;QAE/B,KAAK,CAAC,SAAS,GAAG,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,SAAS,EAAE,CAAA;QACnE,KAAK,CAAC,YAAY,GAAG,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,YAAY,EAAE,CAAA;QAC5E,KAAK,CAAC,eAAe,GAAG,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,eAAe,EAAE,CAAA;QAErF,IAAI,KAAK,EAAE;YACP,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;YAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;gBAC7C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;gBACnB,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,CAAC,GAAsB,CAAC,CAAC,CAAA;aACjE;SACJ;QAED,OAAO,KAAK,CAAA;IAChB,CAAC;IAEM,YAAY;QACf,IAAI,CAAC,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAA;QACtC,IAAI,CAAC,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5C,IAAI,CAAC,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC,eAAe,CAAA;QAClD,OAAO,IAAI,CAAC,OAAO,CAAA;IACvB,CAAC;IAEO,UAAU;QACd,IAAI,CAAC,MAAM,GAAG,EAAE,CAAA;IACpB,CAAC;IAED,IAAW,IAAI;QACX,OAAO,qBAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ;AA9YD,0BA8YC"} \ No newline at end of file diff --git a/dist/structures/@internal/Logger.d.ts.map b/dist/structures/@internal/Logger.d.ts.map index 223b36b714..a63746fac5 100644 --- a/dist/structures/@internal/Logger.d.ts.map +++ b/dist/structures/@internal/Logger.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Logger.ts"],"names":[],"mappings":"AAAA,OAAO,GAAc,MAAM,OAAO,CAAA;AAIlC,oBAAY,WAAW;IACnB;;OAEG;IACH,IAAI,IAAA;IAEJ;;OAEG;IACH,OAAO,IAAA;IAEP;;OAEG;IACH,GAAG,IAAA;IAEH;;OAEG;IACH,MAAM,IAAA;IAEN;;OAEG;IACH,IAAI,IAAA;CACP;AAED,oBAAY,OAAO;IACf,IAAI,IAAA;IACJ,UAAU,IAAA;IACV,KAAK,IAAA;IACL,IAAI,IAAA;IACJ,KAAK,IAAA;CACR;AAED,qBAAa,MAAM;IACf,OAAc,QAAQ,cAAqB;IAC3C,gBAAuB,MAAM;;;;;;MAMK;IAClC,gBAAuB,SAAS,YAAiB;IAEjD,OAAO,CAAC,MAAM,CAAC,GAAG;IASlB,OAAO,CAAC,MAAM,CAAC,SAAS;WAKV,KAAK,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIxB,IAAI,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIvB,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAI7B,KAAK,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIxB,IAAI,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIvB,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK7B,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK7B,WAAW,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK9B,gBAAgB,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAKnC,WAAW,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;CAI/C"} \ No newline at end of file +{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Logger.ts"],"names":[],"mappings":"AAKA,OAAO,GAAc,MAAM,OAAO,CAAA;AAIlC,oBAAY,WAAW;IACnB;;OAEG;IACH,IAAI,IAAA;IAEJ;;OAEG;IACH,OAAO,IAAA;IAEP;;OAEG;IACH,GAAG,IAAA;IAEH;;OAEG;IACH,MAAM,IAAA;IAEN;;OAEG;IACH,IAAI,IAAA;CACP;AAED,oBAAY,OAAO;IACf,IAAI,IAAA;IACJ,UAAU,IAAA;IACV,KAAK,IAAA;IACL,IAAI,IAAA;IACJ,KAAK,IAAA;CACR;AAED,qBAAa,MAAM;IACf,OAAc,QAAQ,cAAqB;IAC3C,gBAAuB,MAAM;;;;;;MAMK;IAClC,gBAAuB,SAAS,YAAiB;IAEjD,OAAO,CAAC,MAAM,CAAC,GAAG;IASlB,OAAO,CAAC,MAAM,CAAC,SAAS;WAKV,KAAK,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIxB,IAAI,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIvB,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAI7B,KAAK,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIxB,IAAI,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAIvB,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK7B,UAAU,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK7B,WAAW,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAK9B,gBAAgB,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;WAKnC,WAAW,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;CAI/C"} \ No newline at end of file diff --git a/dist/structures/@internal/Logger.js b/dist/structures/@internal/Logger.js index 0daf79e2a4..783ee5d929 100644 --- a/dist/structures/@internal/Logger.js +++ b/dist/structures/@internal/Logger.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/structures/@internal/Logger.js.map b/dist/structures/@internal/Logger.js.map index dc4bddc24a..e27f603fe7 100644 --- a/dist/structures/@internal/Logger.js.map +++ b/dist/structures/@internal/Logger.js.map @@ -1 +1 @@ -{"version":3,"file":"Logger.js","sourceRoot":"","sources":["../../../src/structures/@internal/Logger.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAkC;AAClC,qCAAgC;AAChC,+BAA8B;AAE9B,IAAY,WAyBX;AAzBD,WAAY,WAAW;IACnB;;OAEG;IACH,6CAAI,CAAA;IAEJ;;OAEG;IACH,mDAAO,CAAA;IAEP;;OAEG;IACH,2CAAG,CAAA;IAEH;;OAEG;IACH,iDAAM,CAAA;IAEN;;OAEG;IACH,6CAAI,CAAA;AACR,CAAC,EAzBW,WAAW,2BAAX,WAAW,QAyBtB;AAED,IAAY,OAMX;AAND,WAAY,OAAO;IACf,qCAAI,CAAA;IACJ,iDAAU,CAAA;IACV,uCAAK,CAAA;IACL,qCAAI,CAAA;IACJ,uCAAK,CAAA;AACT,CAAC,EANW,OAAO,uBAAP,OAAO,QAMlB;AAED,MAAa,MAAM;IACR,MAAM,CAAC,QAAQ,GAAG,WAAW,CAAC,MAAM,CAAA;IACpC,MAAM,CAAU,MAAM,GAAG;QAC5B,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,eAAG,CAAC,WAAW,CAAC,IAAI;QACrC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,eAAG,CAAC,GAAG,CAAC,IAAI;QAC7B,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,eAAG,CAAC,MAAM,CAAC,IAAI;QAC/B,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,eAAG,CAAC,OAAO,CAAC,IAAI;QACtC,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,eAAG,CAAC,IAAI,CAAC,IAAI;KACC,CAAA;IAC3B,MAAM,CAAU,SAAS,GAAG,eAAG,CAAC,KAAK,CAAC,IAAI,CAAA;IAEzC,MAAM,CAAC,GAAG,CAAC,QAAqB,EAAE,IAAa,EAAE,GAAG,IAAe;QACvE,IAAI,IAAI,CAAC,QAAQ,GAAG,QAAQ;YAAE,OAAM;QACpC,OAAO,CAAC,GAAG,CACP,MAAM,CAAC,SAAS,CAAC,IAAI,IAAI,IAAI,EAAE,CAAC,kBAAkB,EAAE,IAAI,IAAI,IAAI,EAAE,CAAC,kBAAkB,EAAE,GAAG,CAAC,EAC3F,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,GAAG,CAAC,EACvD,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAA,cAAO,EAAC,CAAC,CAAC,CAAC,CAAC,CAChF,CAAA;IACL,CAAC;IAEO,MAAM,CAAC,SAAS;QACpB,gBAAM,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;QACxB,gBAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;IACvB,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,GAAG,IAAe;QAClC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,KAAK,EAAE,GAAG,IAAI,CAAC,CAAA;IACtD,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,GAAG,IAAe;QACjC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAA;IACvD,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,GAAG,IAAe;QACvC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC,CAAA;IAC7D,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,GAAG,IAAe;QAClC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,OAAO,CAAC,KAAK,EAAE,GAAG,IAAI,CAAC,CAAA;IACrD,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,GAAG,IAAe;QACjC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAA;IACxD,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,GAAG,IAAe;QACvC,IAAI,CAAC,SAAS,EAAE,CAAA;QAChB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAA;IAC7B,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,GAAG,IAAe;QACvC,IAAI,CAAC,SAAS,EAAE,CAAA;QAChB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAA;IAC7B,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,GAAG,IAAe;QACxC,IAAI,CAAC,SAAS,EAAE,CAAA;QAChB,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;IAC9B,CAAC;IAEM,MAAM,CAAC,gBAAgB,CAAC,GAAG,IAAe;QAC7C,IAAI,CAAC,SAAS,EAAE,CAAA;QAChB,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAA;IACnC,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,GAAG,IAAe;QACxC,IAAI,CAAC,SAAS,EAAE,CAAA;QAChB,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;IAC9B,CAAC;;AApEL,wBAqEC"} \ No newline at end of file +{"version":3,"file":"Logger.js","sourceRoot":"","sources":["../../../src/structures/@internal/Logger.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/NativeFunction.d.ts b/dist/structures/@internal/NativeFunction.d.ts index 6403d479cb..d66f7aaa3e 100644 --- a/dist/structures/@internal/NativeFunction.d.ts +++ b/dist/structures/@internal/NativeFunction.d.ts @@ -58,11 +58,11 @@ export interface IArg) => boolean; /** - * Defaults to false + * Defaults to `false`. */ required?: Required; /** - * Whether this argument is an array of values + * Whether this argument is an array of values. */ rest: Rest; } @@ -70,9 +70,12 @@ export type NativeFunctionExecutor { name: `$${string}`; description: string; - examples?: string[]; experimental?: boolean; deprecated?: boolean; + /** + * @deprecated Not being used. + */ + examples?: string[]; /** * Resolves all arguments and are passed through execute params. */ @@ -84,15 +87,15 @@ export interface INativeFunction; diff --git a/dist/structures/@internal/NativeFunction.d.ts.map b/dist/structures/@internal/NativeFunction.d.ts.map index 4aa33bf2dd..6a518a7803 100644 --- a/dist/structures/@internal/NativeFunction.d.ts.map +++ b/dist/structures/@internal/NativeFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NativeFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/NativeFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"NativeFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/NativeFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/@internal/NativeFunction.js b/dist/structures/@internal/NativeFunction.js index 4831fd96cf..891e039b52 100644 --- a/dist/structures/@internal/NativeFunction.js +++ b/dist/structures/@internal/NativeFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.NativeFunction = exports.ArgType = void 0; var ArgType; diff --git a/dist/structures/@internal/NativeFunction.js.map b/dist/structures/@internal/NativeFunction.js.map index 43021ab1e9..caf171bad0 100644 --- a/dist/structures/@internal/NativeFunction.js.map +++ b/dist/structures/@internal/NativeFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"NativeFunction.js","sourceRoot":"","sources":["../../../src/structures/@internal/NativeFunction.ts"],"names":[],"mappings":";;;AAmCA,IAAY,OAoCX;AApCD,WAAY,OAAO;IACf,mCAAG,CAAA;IACH,yCAAM,CAAA;IACN,yCAAM,CAAA;IACN,2CAAO,CAAA;IACP,mDAAW,CAAA;IACX,mEAAmB,CAAA;IACnB,yCAAM,CAAA;IACN,qCAAI,CAAA;IACJ,qCAAI,CAAA;IACJ,uCAAK,CAAA;IACL,kDAAU,CAAA;IACV,0CAAM,CAAA;IACN,kDAAU,CAAA;IACV,sCAAI,CAAA;IACJ,wCAAK,CAAA;IACL,sCAAI,CAAA;IACJ,8CAAQ,CAAA;IACR,wCAAK,CAAA;IACL,kDAAU,CAAA;IACV,4CAAO,CAAA;IACP,kDAAU,CAAA;IACV,8CAAQ,CAAA;IACR,4CAAO,CAAA;IACP,4CAAO,CAAA;IACP,sCAAI,CAAA;IACJ,4CAAO,CAAA;IACP,4CAAO,CAAA;IACP,sCAAI,CAAA;IACJ,0CAAM,CAAA;IACN,8DAAgB,CAAA;IAChB,oDAAW,CAAA;IACX,0DAAc,CAAA;IACd,wDAAa,CAAA;IACb,4DAAe,CAAA;IACf,8CAAQ,CAAA;AACZ,CAAC,EApCW,OAAO,uBAAP,OAAO,QAoClB;AAmKD,MAAa,cAAc;IAIY;IAHnB,KAAK,CAAS;IACvB,IAAI,CAAS;IAEpB,YAAmC,IAAgC;QAAhC,SAAI,GAAJ,IAAI,CAA4B;QAC/D,aAAa;QACb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,eAAe,CAAA;IACrE,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;CACJ;AAZD,wCAYC"} \ No newline at end of file +{"version":3,"file":"NativeFunction.js","sourceRoot":"","sources":["../../../src/structures/@internal/NativeFunction.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAqCF,IAAY,OAoCX;AApCD,WAAY,OAAO;IACf,mCAAG,CAAA;IACH,yCAAM,CAAA;IACN,yCAAM,CAAA;IACN,2CAAO,CAAA;IACP,mDAAW,CAAA;IACX,mEAAmB,CAAA;IACnB,yCAAM,CAAA;IACN,qCAAI,CAAA;IACJ,qCAAI,CAAA;IACJ,uCAAK,CAAA;IACL,kDAAU,CAAA;IACV,0CAAM,CAAA;IACN,kDAAU,CAAA;IACV,sCAAI,CAAA;IACJ,wCAAK,CAAA;IACL,sCAAI,CAAA;IACJ,8CAAQ,CAAA;IACR,wCAAK,CAAA;IACL,kDAAU,CAAA;IACV,4CAAO,CAAA;IACP,kDAAU,CAAA;IACV,8CAAQ,CAAA;IACR,4CAAO,CAAA;IACP,4CAAO,CAAA;IACP,sCAAI,CAAA;IACJ,4CAAO,CAAA;IACP,4CAAO,CAAA;IACP,sCAAI,CAAA;IACJ,0CAAM,CAAA;IACN,8DAAgB,CAAA;IAChB,oDAAW,CAAA;IACX,0DAAc,CAAA;IACd,wDAAa,CAAA;IACb,4DAAe,CAAA;IACf,8CAAQ,CAAA;AACZ,CAAC,EApCW,OAAO,uBAAP,OAAO,QAoClB;AAuKD,MAAa,cAAc;IAIY;IAHnB,KAAK,CAAS;IACvB,IAAI,CAAS;IAEpB,YAAmC,IAAgC;QAAhC,SAAI,GAAJ,IAAI,CAA4B;QAC/D,aAAa;QACb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,eAAe,CAAA;IACrE,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;CACJ;AAZD,wCAYC"} \ No newline at end of file diff --git a/dist/structures/@internal/Output.d.ts.map b/dist/structures/@internal/Output.d.ts.map index 9942032dda..e273a2f07c 100644 --- a/dist/structures/@internal/Output.d.ts.map +++ b/dist/structures/@internal/Output.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Output.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Output.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAErC,qBAAa,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,UAAU,EAAE,CAAC;aAEvB,KAAK,EAAE,CAAC;gBAAR,KAAK,EAAE,CAAC;CAI/B"} \ No newline at end of file +{"version":3,"file":"Output.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Output.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAErC,qBAAa,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,UAAU,EAAE,CAAC;aAEvB,KAAK,EAAE,CAAC;gBAAR,KAAK,EAAE,CAAC;CAI/B"} \ No newline at end of file diff --git a/dist/structures/@internal/Output.js b/dist/structures/@internal/Output.js index e16f0ace0d..6668c2ab8a 100644 --- a/dist/structures/@internal/Output.js +++ b/dist/structures/@internal/Output.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Output = void 0; class Output { diff --git a/dist/structures/@internal/Output.js.map b/dist/structures/@internal/Output.js.map index e276974888..a9cb0b8b50 100644 --- a/dist/structures/@internal/Output.js.map +++ b/dist/structures/@internal/Output.js.map @@ -1 +1 @@ -{"version":3,"file":"Output.js","sourceRoot":"","sources":["../../../src/structures/@internal/Output.ts"],"names":[],"mappings":";;;AAEA,MAAa,MAAM;IAEK;IADpB,YACoB,KAAQ;QAAR,UAAK,GAAL,KAAK,CAAG;IAG5B,CAAC;CACJ;AAND,wBAMC"} \ No newline at end of file +{"version":3,"file":"Output.js","sourceRoot":"","sources":["../../../src/structures/@internal/Output.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAIF,MAAa,MAAM;IAEK;IADpB,YACoB,KAAQ;QAAR,UAAK,GAAL,KAAK,CAAG;IAG5B,CAAC;CACJ;AAND,wBAMC"} \ No newline at end of file diff --git a/dist/structures/@internal/Return.d.ts.map b/dist/structures/@internal/Return.d.ts.map index 64d352e0d8..ac9a2776e0 100644 --- a/dist/structures/@internal/Return.d.ts.map +++ b/dist/structures/@internal/Return.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Return.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Return.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAEhD,oBAAY,UAAU;IAClB,KAAK,IAAA;IACL,IAAI,IAAA;IACJ,OAAO,IAAA;IACP,MAAM,IAAA;IACN,KAAK,IAAA;IACL,QAAQ,IAAA;CACX;AAED,MAAM,MAAM,WAAW,CAAC,CAAC,SAAS,UAAU,IAAI,CAAC,SAAS,UAAU,CAAC,KAAK,GACpE,UAAU,GACV,CAAC,SAAS,UAAU,CAAC,MAAM,GAC3B,MAAM,GACN,CAAC,SAAS,UAAU,CAAC,OAAO,GAC5B,OAAO,GACP,CAAC,SAAS,UAAU,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,QAAQ,GAClE,IAAI,GACJ,KAAK,CAAA;AAEX,qBAAa,MAAM,CAAC,CAAC,SAAS,UAAU,GAAG,UAAU;aACrB,IAAI,EAAE,CAAC;aAAkB,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC;gBAA9C,IAAI,EAAE,CAAC,EAAkB,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC;IAE1E,IAAW,KAAK,YAEf;IAED,IAAW,IAAI,YAEd;IAED,IAAW,MAAM,YAEhB;IAED,IAAW,OAAO,YAEjB;IAED,IAAW,QAAQ,YAElB;IAED,IAAW,KAAK,YAEf;CACJ"} \ No newline at end of file +{"version":3,"file":"Return.d.ts","sourceRoot":"","sources":["../../../src/structures/@internal/Return.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAEhD,oBAAY,UAAU;IAClB,KAAK,IAAA;IACL,IAAI,IAAA;IACJ,OAAO,IAAA;IACP,MAAM,IAAA;IACN,KAAK,IAAA;IACL,QAAQ,IAAA;CACX;AAED,MAAM,MAAM,WAAW,CAAC,CAAC,SAAS,UAAU,IAAI,CAAC,SAAS,UAAU,CAAC,KAAK,GACpE,UAAU,GACV,CAAC,SAAS,UAAU,CAAC,MAAM,GAC3B,MAAM,GACN,CAAC,SAAS,UAAU,CAAC,OAAO,GAC5B,OAAO,GACP,CAAC,SAAS,UAAU,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,QAAQ,GAClE,IAAI,GACJ,KAAK,CAAA;AAEX,qBAAa,MAAM,CAAC,CAAC,SAAS,UAAU,GAAG,UAAU;aACrB,IAAI,EAAE,CAAC;aAAkB,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC;gBAA9C,IAAI,EAAE,CAAC,EAAkB,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC;IAE1E,IAAW,KAAK,YAEf;IAED,IAAW,IAAI,YAEd;IAED,IAAW,MAAM,YAEhB;IAED,IAAW,OAAO,YAEjB;IAED,IAAW,QAAQ,YAElB;IAED,IAAW,KAAK,YAEf;CACJ"} \ No newline at end of file diff --git a/dist/structures/@internal/Return.js b/dist/structures/@internal/Return.js index 68942ea2d2..a48a27640a 100644 --- a/dist/structures/@internal/Return.js +++ b/dist/structures/@internal/Return.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.Return = exports.ReturnType = void 0; var ReturnType; diff --git a/dist/structures/@internal/Return.js.map b/dist/structures/@internal/Return.js.map index 125502f4d1..78a87cbfeb 100644 --- a/dist/structures/@internal/Return.js.map +++ b/dist/structures/@internal/Return.js.map @@ -1 +1 @@ -{"version":3,"file":"Return.js","sourceRoot":"","sources":["../../../src/structures/@internal/Return.ts"],"names":[],"mappings":";;;AAGA,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,6CAAK,CAAA;IACL,2CAAI,CAAA;IACJ,iDAAO,CAAA;IACP,+CAAM,CAAA;IACN,6CAAK,CAAA;IACL,mDAAQ,CAAA;AACZ,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAYD,MAAa,MAAM;IACa;IAAyB;IAArD,YAA4B,IAAO,EAAkB,KAAqB;QAA9C,SAAI,GAAJ,IAAI,CAAG;QAAkB,UAAK,GAAL,KAAK,CAAgB;IAAG,CAAC;IAE9E,IAAW,KAAK;QACZ,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,KAAK,CAAA;IACzC,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,IAAI,CAAA;IACxC,CAAC;IAED,IAAW,MAAM;QACb,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,MAAM,CAAA;IAC1C,CAAC;IAED,IAAW,OAAO;QACd,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,OAAO,CAAA;IAC3C,CAAC;IAED,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,QAAQ,CAAA;IAC5C,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,KAAK,CAAA;IACzC,CAAC;CACJ;AA1BD,wBA0BC"} \ No newline at end of file +{"version":3,"file":"Return.js","sourceRoot":"","sources":["../../../src/structures/@internal/Return.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAKF,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,6CAAK,CAAA;IACL,2CAAI,CAAA;IACJ,iDAAO,CAAA;IACP,+CAAM,CAAA;IACN,6CAAK,CAAA;IACL,mDAAQ,CAAA;AACZ,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAYD,MAAa,MAAM;IACa;IAAyB;IAArD,YAA4B,IAAO,EAAkB,KAAqB;QAA9C,SAAI,GAAJ,IAAI,CAAG;QAAkB,UAAK,GAAL,KAAK,CAAgB;IAAG,CAAC;IAE9E,IAAW,KAAK;QACZ,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,KAAK,CAAA;IACzC,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,IAAI,CAAA;IACxC,CAAC;IAED,IAAW,MAAM;QACb,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,MAAM,CAAA;IAC1C,CAAC;IAED,IAAW,OAAO;QACd,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,OAAO,CAAA;IAC3C,CAAC;IAED,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,QAAQ,CAAA;IAC5C,CAAC;IAED,IAAW,KAAK;QACZ,OAAO,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,KAAK,CAAA;IACzC,CAAC;CACJ;AA1BD,wBA0BC"} \ No newline at end of file diff --git a/dist/structures/base/ApplicationCommand.d.ts.map b/dist/structures/base/ApplicationCommand.d.ts.map index 763a73f71e..809db1f85b 100644 --- a/dist/structures/base/ApplicationCommand.d.ts.map +++ b/dist/structures/base/ApplicationCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ApplicationCommand.d.ts","sourceRoot":"","sources":["../../../src/structures/base/ApplicationCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sCAAsC,EAAE,MAAM,YAAY,CAAA;AACnE,OAAO,EAAY,0BAA0B,EAAE,MAAM,YAAY,CAAA;AACjE,OAAO,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAGpG,qBAAa,kBAAkB;aAGQ,OAAO,EAAE,uBAAuB;IAFnE,QAAQ,EAAE,0BAA0B,CAAA;gBAED,OAAO,EAAE,uBAAuB;IAInE,IAAW,IAAI,WAEd;IAED,IAAW,gBAAgB,qBAE1B;IAEM,cAAc,CAAC,IAAI,EAAE,OAAO,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,GAAG,CAAC;IAIpE,MAAM,IAAI,sCAAsC;CAM1D"} \ No newline at end of file +{"version":3,"file":"ApplicationCommand.d.ts","sourceRoot":"","sources":["../../../src/structures/base/ApplicationCommand.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,sCAAsC,EAAE,MAAM,YAAY,CAAA;AACnE,OAAO,EAAY,0BAA0B,EAAE,MAAM,YAAY,CAAA;AACjE,OAAO,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAA;AAGpG,qBAAa,kBAAkB;aAGQ,OAAO,EAAE,uBAAuB;IAFnE,QAAQ,EAAE,0BAA0B,CAAA;gBAED,OAAO,EAAE,uBAAuB;IAInE,IAAW,IAAI,WAEd;IAED,IAAW,gBAAgB,qBAE1B;IAEM,cAAc,CAAC,IAAI,EAAE,OAAO,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,GAAG,CAAC;IAIpE,MAAM,IAAI,sCAAsC;CAM1D"} \ No newline at end of file diff --git a/dist/structures/base/ApplicationCommand.js b/dist/structures/base/ApplicationCommand.js index 5ff4476c77..486d3b2d52 100644 --- a/dist/structures/base/ApplicationCommand.js +++ b/dist/structures/base/ApplicationCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ApplicationCommand = void 0; const core_1 = require("../../core"); diff --git a/dist/structures/base/ApplicationCommand.js.map b/dist/structures/base/ApplicationCommand.js.map index 8eaf4fa099..81da99a636 100644 --- a/dist/structures/base/ApplicationCommand.js.map +++ b/dist/structures/base/ApplicationCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"ApplicationCommand.js","sourceRoot":"","sources":["../../../src/structures/base/ApplicationCommand.ts"],"names":[],"mappings":";;;AACA,qCAAiE;AACjE,wFAAoG;AACpG,oDAA2D;AAE3D,MAAa,kBAAkB;IAGQ;IAFnC,QAAQ,CAA4B;IAEpC,YAAmC,OAAgC;QAAhC,YAAO,GAAP,OAAO,CAAyB;QAC/D,IAAI,CAAC,QAAQ,GAAG,eAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA;IACjC,CAAC;IAED,IAAW,gBAAgB;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,4CAAgB,CAAC,MAAM,CAAA;IACvD,CAAC;IAEM,cAAc,CAAC,IAAqD;QACvE,OAAO,IAAI,CAAC,gBAAgB,KAAK,4CAAgB,CAAC,GAAG,IAAI,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAA;IAC3F,CAAC;IAEM,MAAM;QACT,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI;YAClB,MAAM,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,6BAA6B,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,YAAY,CAAC,CAAA;QAE1G,OAAO,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAA;IACzF,CAAC;CACJ;AAzBD,gDAyBC"} \ No newline at end of file +{"version":3,"file":"ApplicationCommand.js","sourceRoot":"","sources":["../../../src/structures/base/ApplicationCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,qCAAiE;AACjE,wFAAoG;AACpG,oDAA2D;AAE3D,MAAa,kBAAkB;IAGQ;IAFnC,QAAQ,CAA4B;IAEpC,YAAmC,OAAgC;QAAhC,YAAO,GAAP,OAAO,CAAyB;QAC/D,IAAI,CAAC,QAAQ,GAAG,eAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,CAAA;IAChE,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA;IACjC,CAAC;IAED,IAAW,gBAAgB;QACvB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,4CAAgB,CAAC,MAAM,CAAA;IACvD,CAAC;IAEM,cAAc,CAAC,IAAqD;QACvE,OAAO,IAAI,CAAC,gBAAgB,KAAK,4CAAgB,CAAC,GAAG,IAAI,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAA;IAC3F,CAAC;IAEM,MAAM;QACT,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI;YAClB,MAAM,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,6BAA6B,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,YAAY,CAAC,CAAA;QAE1G,OAAO,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAA;IACzF,CAAC;CACJ;AAzBD,gDAyBC"} \ No newline at end of file diff --git a/dist/structures/base/BaseCommand.d.ts.map b/dist/structures/base/BaseCommand.d.ts.map index c81c966adc..c97bd9efc4 100644 --- a/dist/structures/base/BaseCommand.d.ts.map +++ b/dist/structures/base/BaseCommand.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"BaseCommand.d.ts","sourceRoot":"","sources":["../../../src/structures/base/BaseCommand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAA;AAC5B,OAAO,EAAE,0BAA0B,EAAY,WAAW,EAAE,MAAM,YAAY,CAAA;AAG9E,MAAM,MAAM,WAAW,GAAG,MAAM,YAAY,CAAA;AAC5C,MAAM,MAAM,iBAAiB,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,OAAO,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAA;AAE3E,MAAM,MAAM,uBAAuB,GAC/B,QAAQ,GACR,OAAO,GACP,cAAc,GACd,cAAc,GACd,aAAa,GACb,YAAY,GACZ,iBAAiB,CAAA;AAErB,MAAM,WAAW,YAAY,CAAC,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,CAAC,CAAA;IACP,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,uBAAuB,CAAC,EAAE,uBAAuB,EAAE,CAAA;IACnD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,CAAC,CAAC,EAAE,WAAW,GAAG,OAAO,CAAA;IAEzB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,0BAA0B,CAAA;IACjC,IAAI,EAAE,0BAA0B,CAAA;CACnC;AAGD,qBAAa,WAAW,CAAC,CAAC;aAIa,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;IAHxD,SAAgB,QAAQ,EAAE,gBAAgB,CAAA;IAC1C,SAAgB,EAAE,SAAO;gBAEU,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;IAOjD,OAAO,CAAC,CAAC,EAAE,MAAM;IAKjB,QAAQ;WAKD,IAAI,CAAC,IAAI,EAAE,MAAM;IAO/B,IAAW,IAAI,uBAEd;IAED,IAAW,IAAI,MAEd;IAEM,wBAAwB,CAAC,MAAM,EAAE,WAAW;IAI5C,sBAAsB,CAAC,CAAC,EAAE,WAAW;CAsB/C"} \ No newline at end of file +{"version":3,"file":"BaseCommand.d.ts","sourceRoot":"","sources":["../../../src/structures/base/BaseCommand.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAA;AAC5B,OAAO,EAAE,0BAA0B,EAAY,WAAW,EAAE,MAAM,YAAY,CAAA;AAG9E,MAAM,MAAM,WAAW,GAAG,MAAM,YAAY,CAAA;AAC5C,MAAM,MAAM,iBAAiB,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,OAAO,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAA;AAE3E,MAAM,MAAM,uBAAuB,GAC/B,QAAQ,GACR,OAAO,GACP,cAAc,GACd,cAAc,GACd,aAAa,GACb,YAAY,GACZ,iBAAiB,CAAA;AAErB,MAAM,WAAW,YAAY,CAAC,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,CAAC,CAAA;IACP,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,uBAAuB,CAAC,EAAE,uBAAuB,EAAE,CAAA;IACnD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,CAAC,CAAC,EAAE,WAAW,GAAG,OAAO,CAAA;IAEzB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,0BAA0B,CAAA;IACjC,IAAI,EAAE,0BAA0B,CAAA;CACnC;AAGD,qBAAa,WAAW,CAAC,CAAC;aAIa,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;IAHxD,SAAgB,QAAQ,EAAE,gBAAgB,CAAA;IAC1C,SAAgB,EAAE,SAAO;gBAEU,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;IAOjD,OAAO,CAAC,CAAC,EAAE,MAAM;IAKjB,QAAQ;WAKD,IAAI,CAAC,IAAI,EAAE,MAAM;IAO/B,IAAW,IAAI,uBAEd;IAED,IAAW,IAAI,MAEd;IAEM,wBAAwB,CAAC,MAAM,EAAE,WAAW;IAI5C,sBAAsB,CAAC,CAAC,EAAE,WAAW;CAsB/C"} \ No newline at end of file diff --git a/dist/structures/base/BaseCommand.js b/dist/structures/base/BaseCommand.js index fb272608a8..79ee039aa8 100644 --- a/dist/structures/base/BaseCommand.js +++ b/dist/structures/base/BaseCommand.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseCommand = void 0; const core_1 = require("../../core"); diff --git a/dist/structures/base/BaseCommand.js.map b/dist/structures/base/BaseCommand.js.map index 67856b1dca..5aaefb55b2 100644 --- a/dist/structures/base/BaseCommand.js.map +++ b/dist/structures/base/BaseCommand.js.map @@ -1 +1 @@ -{"version":3,"file":"BaseCommand.js","sourceRoot":"","sources":["../../../src/structures/base/BaseCommand.ts"],"names":[],"mappings":";;;AAEA,qCAA8E;AAC9E,oDAA2D;AA0C3D,IAAI,EAAE,GAAG,CAAC,CAAA;AACV,MAAa,WAAW;IAIe;IAHnB,QAAQ,CAAkB;IAC1B,EAAE,GAAG,EAAE,EAAE,CAAA;IAEzB,YAAmC,IAAqB;QAArB,SAAI,GAAJ,IAAI,CAAiB;QACpD,IAAI,CAAC,QAAQ,GAAG;YACZ,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;YACjD,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;SACpD,CAAA;IACL,CAAC;IAEM,OAAO,CAAC,CAAS;QACpB,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAA;QAClB,OAAO,IAAI,CAAA;IACf,CAAC;IAEM,QAAQ;QACX,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;YACf,MAAM,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,kBAAkB,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAChF,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,IAAY;QAC3B,OAAO,IAAI,IAAI,CAAC;YACZ,IAAI;YACJ,IAAI,EAAE,IAAI;SACb,CAAC,CAAA;IACN,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAEM,wBAAwB,CAAC,MAAmB;QAC/C,OAAO,IAAI,CAAC,IAAI,CAAC,oBAAoB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,oBAAoB,KAAK,SAAS,IAAI,MAAM,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAA;IAClI,CAAC;IAEM,sBAAsB,CAAC,CAAc;QACxC,OAAO,CACH,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;YACf,CACI,UAAU,IAAI,CAAC;gBACf,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,QAAQ,CAChC,CACJ,IAAI,CACD,CAAC,IAAI,CAAC,IAAI,CAAC,uBAAuB,EAAE,MAAM,IAAI,CAC1C,IAAI,CAAC,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAClC,IAAI,CAAC,EAAE,CACH,CAAC,IAAI,KAAK,cAAc,IAAI,CAAC,CAAC,kBAAkB,EAAE,CAAC;YACnD,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC;YACnC,CAAC,IAAI,KAAK,YAAY,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;YAC9C,CAAC,IAAI,KAAK,OAAO,IAAI,CAAC,CAAC,aAAa,EAAE,CAAC;YACvC,CAAC,IAAI,KAAK,cAAc,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC;YAC/C,CAAC,IAAI,KAAK,aAAa,IAAI,CAAC,CAAC,oBAAoB,EAAE,CAAC;YACpD,CAAC,IAAI,KAAK,iBAAiB,IAAI,CAAC,CAAC,0BAA0B,EAAE,CAAC,CACrE,CACJ,CACJ,CAAA;IACL,CAAC;CACJ;AA9DD,kCA8DC"} \ No newline at end of file +{"version":3,"file":"BaseCommand.js","sourceRoot":"","sources":["../../../src/structures/base/BaseCommand.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAIF,qCAA8E;AAC9E,oDAA2D;AA0C3D,IAAI,EAAE,GAAG,CAAC,CAAA;AACV,MAAa,WAAW;IAIe;IAHnB,QAAQ,CAAkB;IAC1B,EAAE,GAAG,EAAE,EAAE,CAAA;IAEzB,YAAmC,IAAqB;QAArB,SAAI,GAAJ,IAAI,CAAiB;QACpD,IAAI,CAAC,QAAQ,GAAG;YACZ,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;YACjD,IAAI,EAAE,eAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;SACpD,CAAA;IACL,CAAC;IAEM,OAAO,CAAC,CAAS;QACpB,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAA;QAClB,OAAO,IAAI,CAAA;IACf,CAAC;IAEM,QAAQ;QACX,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;YACf,MAAM,IAAI,uBAAU,CAAC,IAAI,EAAE,sBAAS,CAAC,kBAAkB,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAChF,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,IAAY;QAC3B,OAAO,IAAI,IAAI,CAAC;YACZ,IAAI;YACJ,IAAI,EAAE,IAAI;SACb,CAAC,CAAA;IACN,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAEM,wBAAwB,CAAC,MAAmB;QAC/C,OAAO,IAAI,CAAC,IAAI,CAAC,oBAAoB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,oBAAoB,KAAK,SAAS,IAAI,MAAM,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAA;IAClI,CAAC;IAEM,sBAAsB,CAAC,CAAc;QACxC,OAAO,CACH,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;YACf,CACI,UAAU,IAAI,CAAC;gBACf,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,QAAQ,CAChC,CACJ,IAAI,CACD,CAAC,IAAI,CAAC,IAAI,CAAC,uBAAuB,EAAE,MAAM,IAAI,CAC1C,IAAI,CAAC,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAClC,IAAI,CAAC,EAAE,CACH,CAAC,IAAI,KAAK,cAAc,IAAI,CAAC,CAAC,kBAAkB,EAAE,CAAC;YACnD,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC;YACnC,CAAC,IAAI,KAAK,YAAY,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;YAC9C,CAAC,IAAI,KAAK,OAAO,IAAI,CAAC,CAAC,aAAa,EAAE,CAAC;YACvC,CAAC,IAAI,KAAK,cAAc,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC;YAC/C,CAAC,IAAI,KAAK,aAAa,IAAI,CAAC,CAAC,oBAAoB,EAAE,CAAC;YACpD,CAAC,IAAI,KAAK,iBAAiB,IAAI,CAAC,CAAC,0BAA0B,EAAE,CAAC,CACrE,CACJ,CACJ,CAAA;IACL,CAAC;CACJ;AA9DD,kCA8DC"} \ No newline at end of file diff --git a/dist/structures/base/BaseEventHandler.d.ts.map b/dist/structures/base/BaseEventHandler.d.ts.map index 66bcbe0f2b..4691d69df2 100644 --- a/dist/structures/base/BaseEventHandler.d.ts.map +++ b/dist/structures/base/BaseEventHandler.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"BaseEventHandler.d.ts","sourceRoot":"","sources":["../../../src/structures/base/BaseEventHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,oBAAoB,EAAE,MAAM,YAAY,CAAA;AAC/D,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEzD,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,EAAE,GAAG,CAAC,GAAG,KAAK,CAAA;AAE3D,MAAM,WAAW,MAAM,CAAC,MAAM,EAAE,CAAC,SAAS,MAAM,MAAM;IAClD,IAAI,EAAE,CAAC,CAAA;IACP,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,IAAI,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IACrF,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAA;IAChC,UAAU,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,qBAAa,gBAAgB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,SAAS,MAAM,MAAM,GAAG,MAAM,MAAM;aAChE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;gBAAvB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IAE1D,IAAW,QAAQ,gFAElB;IAED,IAAW,WAAW,WAErB;IAED,IAAW,IAAI,MAEd;IAEM,QAAQ,CAAC,MAAM,EAAE,WAAW;CACtC"} \ No newline at end of file +{"version":3,"file":"BaseEventHandler.d.ts","sourceRoot":"","sources":["../../../src/structures/base/BaseEventHandler.ts"],"names":[],"mappings":"AAKA,OAAO,EAAgB,oBAAoB,EAAE,MAAM,YAAY,CAAA;AAC/D,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEzD,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,EAAE,GAAG,CAAC,GAAG,KAAK,CAAA;AAE3D,MAAM,WAAW,MAAM,CAAC,MAAM,EAAE,CAAC,SAAS,MAAM,MAAM;IAClD,IAAI,EAAE,CAAC,CAAA;IACP,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,IAAI,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IACrF,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAA;IAChC,UAAU,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,qBAAa,gBAAgB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,SAAS,MAAM,MAAM,GAAG,MAAM,MAAM;aAChE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;gBAAvB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IAE1D,IAAW,QAAQ,gFAElB;IAED,IAAW,WAAW,WAErB;IAED,IAAW,IAAI,MAEd;IAEM,QAAQ,CAAC,MAAM,EAAE,WAAW;CACtC"} \ No newline at end of file diff --git a/dist/structures/base/BaseEventHandler.js b/dist/structures/base/BaseEventHandler.js index d655ee9bb3..6d59631811 100644 --- a/dist/structures/base/BaseEventHandler.js +++ b/dist/structures/base/BaseEventHandler.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseEventHandler = void 0; class BaseEventHandler { diff --git a/dist/structures/base/BaseEventHandler.js.map b/dist/structures/base/BaseEventHandler.js.map index c41fe973a6..bd853e0a55 100644 --- a/dist/structures/base/BaseEventHandler.js.map +++ b/dist/structures/base/BaseEventHandler.js.map @@ -1 +1 @@ -{"version":3,"file":"BaseEventHandler.js","sourceRoot":"","sources":["../../../src/structures/base/BaseEventHandler.ts"],"names":[],"mappings":";;;AAcA,MAAa,gBAAgB;IACU;IAAnC,YAAmC,IAAuB;QAAvB,SAAI,GAAJ,IAAI,CAAmB;IAAG,CAAC;IAE9D,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAA;IAC7B,CAAC;IAED,IAAW,WAAW;QAClB,OAAO,IAAI,CAAC,IAAI,CAAC,WAAW,CAAA;IAChC,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAEM,QAAQ,CAAC,MAAmB,IAAG,CAAC;CAC1C;AAhBD,4CAgBC"} \ No newline at end of file +{"version":3,"file":"BaseEventHandler.js","sourceRoot":"","sources":["../../../src/structures/base/BaseEventHandler.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAgBF,MAAa,gBAAgB;IACU;IAAnC,YAAmC,IAAuB;QAAvB,SAAI,GAAJ,IAAI,CAAmB;IAAG,CAAC;IAE9D,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAA;IAC7B,CAAC;IAED,IAAW,WAAW;QAClB,OAAO,IAAI,CAAC,IAAI,CAAC,WAAW,CAAA;IAChC,CAAC;IAED,IAAW,IAAI;QACX,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IAEM,QAAQ,CAAC,MAAmB,IAAG,CAAC;CAC1C;AAhBD,4CAgBC"} \ No newline at end of file diff --git a/dist/structures/extended/DiscordEventHandler.d.ts.map b/dist/structures/extended/DiscordEventHandler.d.ts.map index 83fa06f8cc..c39b6e9089 100644 --- a/dist/structures/extended/DiscordEventHandler.d.ts.map +++ b/dist/structures/extended/DiscordEventHandler.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"DiscordEventHandler.d.ts","sourceRoot":"","sources":["../../../src/structures/extended/DiscordEventHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAwB,MAAM,YAAY,CAAA;AACpE,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAE3D,qBAAa,mBAAmB,CAAC,CAAC,SAAS,MAAM,YAAY,CAAE,SAAQ,gBAAgB,CAAC,YAAY,EAAE,CAAC,CAAC;IAC7F,QAAQ,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;CAG7C"} \ No newline at end of file +{"version":3,"file":"DiscordEventHandler.d.ts","sourceRoot":"","sources":["../../../src/structures/extended/DiscordEventHandler.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,YAAY,EAAwB,MAAM,YAAY,CAAA;AACpE,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAE3D,qBAAa,mBAAmB,CAAC,CAAC,SAAS,MAAM,YAAY,CAAE,SAAQ,gBAAgB,CAAC,YAAY,EAAE,CAAC,CAAC;IAC7F,QAAQ,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;CAG7C"} \ No newline at end of file diff --git a/dist/structures/extended/DiscordEventHandler.js b/dist/structures/extended/DiscordEventHandler.js index 093f617ca8..1985c9ba2e 100644 --- a/dist/structures/extended/DiscordEventHandler.js +++ b/dist/structures/extended/DiscordEventHandler.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.DiscordEventHandler = void 0; const BaseEventHandler_1 = require("../base/BaseEventHandler"); diff --git a/dist/structures/extended/DiscordEventHandler.js.map b/dist/structures/extended/DiscordEventHandler.js.map index 62b126dfa0..209ff9fd64 100644 --- a/dist/structures/extended/DiscordEventHandler.js.map +++ b/dist/structures/extended/DiscordEventHandler.js.map @@ -1 +1 @@ -{"version":3,"file":"DiscordEventHandler.js","sourceRoot":"","sources":["../../../src/structures/extended/DiscordEventHandler.ts"],"names":[],"mappings":";;;AAEA,+DAA2D;AAE3D,MAAa,mBAAkD,SAAQ,mCAAiC;IAC7F,QAAQ,CAAC,MAAmB;QAC/B,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAQ,CAAC,CAAA;IAC3D,CAAC;CACJ;AAJD,kDAIC"} \ No newline at end of file +{"version":3,"file":"DiscordEventHandler.js","sourceRoot":"","sources":["../../../src/structures/extended/DiscordEventHandler.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAIF,+DAA2D;AAE3D,MAAa,mBAAkD,SAAQ,mCAAiC;IAC7F,QAAQ,CAAC,MAAmB;QAC/B,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAQ,CAAC,CAAA;IAC3D,CAAC;CACJ;AAJD,kDAIC"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeError.d.ts.map b/dist/structures/forge/ForgeError.d.ts.map index 18f1e8a87a..5c89a494e8 100644 --- a/dist/structures/forge/ForgeError.d.ts.map +++ b/dist/structures/forge/ForgeError.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ForgeError.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeError.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAA;AAEhE,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,CAAC,OAAO,EAAE,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;AAEnH,oBAAY,SAAS;IACjB,cAAc,qDAAqD;IACnE,UAAU,uCAAuC;IACjD,aAAa,kCAAkC;IAC/C,YAAY,4BAA4B;IACxC,MAAM,OAAO;IACb,6BAA6B,yDAAyD;IACtF,iBAAiB,+DAA+D;IAChF,kBAAkB,uCAAuC;IACzD,2BAA2B,gEAAgE;IAC3F,iBAAiB,gEAAgE;IACjF,aAAa,qBAAqB;CACrC;AAED,qBAAa,UAAU,CAAC,CAAC,SAAS,SAAS,GAAG,SAAS,CAAE,SAAQ,KAAK;IAClE,gBAAuB,KAAK,SAAa;gBAEtB,EAAE,EAAE,gBAAgB,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;WAInE,IAAI,CAAC,EAAE,EAAE,gBAAgB,GAAG,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE;CAQtF"} \ No newline at end of file +{"version":3,"file":"ForgeError.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeError.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAA;AAEhE,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,CAAC,OAAO,EAAE,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;AAEnH,oBAAY,SAAS;IACjB,cAAc,qDAAqD;IACnE,UAAU,uCAAuC;IACjD,aAAa,kCAAkC;IAC/C,YAAY,4BAA4B;IACxC,MAAM,OAAO;IACb,6BAA6B,yDAAyD;IACtF,iBAAiB,+DAA+D;IAChF,kBAAkB,uCAAuC;IACzD,2BAA2B,gEAAgE;IAC3F,iBAAiB,gEAAgE;IACjF,aAAa,qBAAqB;CACrC;AAED,qBAAa,UAAU,CAAC,CAAC,SAAS,SAAS,GAAG,SAAS,CAAE,SAAQ,KAAK;IAClE,gBAAuB,KAAK,SAAa;gBAEtB,EAAE,EAAE,gBAAgB,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC;WAInE,IAAI,CAAC,EAAE,EAAE,gBAAgB,GAAG,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE;CAQtF"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeError.js b/dist/structures/forge/ForgeError.js index a8b200d625..974d3db078 100644 --- a/dist/structures/forge/ForgeError.js +++ b/dist/structures/forge/ForgeError.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.ForgeError = exports.ErrorType = void 0; var ErrorType; diff --git a/dist/structures/forge/ForgeError.js.map b/dist/structures/forge/ForgeError.js.map index 4af690f765..15cf6709c1 100644 --- a/dist/structures/forge/ForgeError.js.map +++ b/dist/structures/forge/ForgeError.js.map @@ -1 +1 @@ -{"version":3,"file":"ForgeError.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeError.ts"],"names":[],"mappings":";;;AAIA,IAAY,SAYX;AAZD,WAAY,SAAS;IACjB,gFAAmE,CAAA;IACnE,8DAAiD,CAAA;IACjD,4DAA+C,CAAA;IAC/C,qDAAwC,CAAA;IACxC,0BAAa,CAAA;IACb,mGAAsF,CAAA;IACtF,6FAAgF,CAAA;IAChF,sEAAyD,CAAA;IACzD,wGAA2F,CAAA;IAC3F,8FAAiF,CAAA;IACjF,+CAAkC,CAAA;AACtC,CAAC,EAZW,SAAS,yBAAT,SAAS,QAYpB;AAED,MAAa,UAA4C,SAAQ,KAAK;IAC3D,MAAM,CAAU,KAAK,GAAG,UAAU,CAAA;IAEzC,YAAmB,EAA2B,EAAE,IAAO,EAAE,GAAG,IAAqB;QAC7E,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,EAA2B,EAAE,IAAe,EAAE,GAAG,IAAe;QAC/E,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CACpB,IAAI,CAAC,KAAK,EACV,CAAC,KAAK,EAAE,EAAE,CACN,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,CACzG,CAAA;QACD,OAAO,KAAK,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAA;IACzD,CAAC;;AAdL,gCAeC"} \ No newline at end of file +{"version":3,"file":"ForgeError.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeError.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAMF,IAAY,SAYX;AAZD,WAAY,SAAS;IACjB,gFAAmE,CAAA;IACnE,8DAAiD,CAAA;IACjD,4DAA+C,CAAA;IAC/C,qDAAwC,CAAA;IACxC,0BAAa,CAAA;IACb,mGAAsF,CAAA;IACtF,6FAAgF,CAAA;IAChF,sEAAyD,CAAA;IACzD,wGAA2F,CAAA;IAC3F,8FAAiF,CAAA;IACjF,+CAAkC,CAAA;AACtC,CAAC,EAZW,SAAS,yBAAT,SAAS,QAYpB;AAED,MAAa,UAA4C,SAAQ,KAAK;IAC3D,MAAM,CAAU,KAAK,GAAG,UAAU,CAAA;IAEzC,YAAmB,EAA2B,EAAE,IAAO,EAAE,GAAG,IAAqB;QAC7E,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAA;IAC7C,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,EAA2B,EAAE,IAAe,EAAE,GAAG,IAAe;QAC/E,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CACpB,IAAI,CAAC,KAAK,EACV,CAAC,KAAK,EAAE,EAAE,CACN,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,CACzG,CAAA;QACD,OAAO,KAAK,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAA;IACzD,CAAC;;AAdL,gCAeC"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeExtension.d.ts.map b/dist/structures/forge/ForgeExtension.d.ts.map index d7a02a4752..820aaacd30 100644 --- a/dist/structures/forge/ForgeExtension.d.ts.map +++ b/dist/structures/forge/ForgeExtension.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ForgeExtension.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,OAAO,EAAE,kBAAkB,EAAmB,MAAM,gBAAgB,CAAA;AAIpE,8BAAsB,cAAc;IAChC,OAAO,CAAC,SAAS,CAAC,CAAoC;IAEtD,SAAgB,IAAI,EAAE,MAAM,CAAA;IAC5B,SAAgB,WAAW,EAAE,MAAM,CAAA;IACnC,SAAgB,OAAO,EAAE,MAAM,CAAA;IAE/B;;OAEG;IACI,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IAEhC;;OAEG;IACI,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;aAEnB,IAAI,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAE/C,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,WAAW;IAkC7C,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM;IAI3B,iBAAiB;CAcpB"} \ No newline at end of file +{"version":3,"file":"ForgeExtension.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeExtension.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,OAAO,EAAE,kBAAkB,EAAmB,MAAM,gBAAgB,CAAA;AAIpE,8BAAsB,cAAc;IAChC,OAAO,CAAC,SAAS,CAAC,CAAoC;IAEtD,SAAgB,IAAI,EAAE,MAAM,CAAA;IAC5B,SAAgB,WAAW,EAAE,MAAM,CAAA;IACnC,SAAgB,OAAO,EAAE,MAAM,CAAA;IAE/B;;OAEG;IACI,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IAEhC;;OAEG;IACI,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;aAEnB,IAAI,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAE/C,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,WAAW;IAkC7C,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM;IAI3B,iBAAiB;CAcpB"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeExtension.js b/dist/structures/forge/ForgeExtension.js index 6007ae55a4..60f471bf45 100644 --- a/dist/structures/forge/ForgeExtension.js +++ b/dist/structures/forge/ForgeExtension.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/structures/forge/ForgeExtension.js.map b/dist/structures/forge/ForgeExtension.js.map index 34a10f5bf0..84d1439a58 100644 --- a/dist/structures/forge/ForgeExtension.js.map +++ b/dist/structures/forge/ForgeExtension.js.map @@ -1 +1 @@ -{"version":3,"file":"ForgeExtension.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeExtension.ts"],"names":[],"mappings":";;;;;;AACA,wFAA+D;AAC/D,6CAAoE;AACpE,gDAA4C;AAC5C,6CAAoD;AAEpD,MAAsB,cAAc;IACxB,SAAS,CAAqC;IAMtD;;OAEG;IACI,cAAc,CAAW;IAEhC;;OAEG;IACI,iBAAiB,CAAW;IAIzB,eAAe,CAAC,MAAmB;QACzC,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAA;QAC9B,MAAM,CAAC,GAAG,IAAA,0BAAgB,EAAC,OAAO,CAAC,CAAA;QAEnC,IAAI,IAAI,CAAC,cAAc,EAAE,MAAM,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,0BAAgB,EAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE;YAC1F,MAAM,IAAI,uBAAU,CAChB,IAAI,EACJ,sBAAS,CAAC,2BAA2B,EACrC,IAAI,CAAC,IAAI,EACT,OAAO,CACV,CAAA;SACJ;QAED,IAAI,IAAI,CAAC,iBAAiB,EAAE,MAAM,EAAE;YAChC,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,iBAAiB,EAAE;gBACzC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,UAAW,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,MAAM,CAAC,EAAE;oBAC1D,MAAM,IAAI,uBAAU,CAChB,IAAI,EACJ,sBAAS,CAAC,iBAAiB,EAC3B,IAAI,CAAC,IAAI,EACT,MAAM,CACT,CAAA;iBACJ;aACJ;SACJ;QAED,IAAI;YACA,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;YACjB,eAAM,CAAC,IAAI,CAAC,aAAa,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,mBAAmB,CAAC,CAAA;SACzE;QAAC,OAAO,KAAK,EAAE;YACZ,eAAM,CAAC,KAAK,CAAC,aAAa,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,kBAAkB,EAAE,KAAK,CAAC,CAAA;SAChF;IACL,CAAC;IAES,IAAI,CAAC,IAAY;QACvB,OAAO,0BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;IAChD,CAAC;IAED,iBAAiB;QACb,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI;YACvB,OAAO,IAAI,CAAC,SAAS,CAAA;QAEzB,MAAM,IAAI,GAAG,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAA;QAC7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;YACpC,IAAI,KAAK,YAAY,6BAAkB;gBACnC,OAAO,IAAI,CAAC,SAAS,GAAG,KAAK,CAAA;SACpC;QAED,OAAO,IAAI,CAAC,SAAS,GAAG,IAAI,CAAA;IAChC,CAAC;CACJ;AAvED,wCAuEC"} \ No newline at end of file +{"version":3,"file":"ForgeExtension.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeExtension.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;AAGF,wFAA+D;AAC/D,6CAAoE;AACpE,gDAA4C;AAC5C,6CAAoD;AAEpD,MAAsB,cAAc;IACxB,SAAS,CAAqC;IAMtD;;OAEG;IACI,cAAc,CAAW;IAEhC;;OAEG;IACI,iBAAiB,CAAW;IAIzB,eAAe,CAAC,MAAmB;QACzC,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAA;QAC9B,MAAM,CAAC,GAAG,IAAA,0BAAgB,EAAC,OAAO,CAAC,CAAA;QAEnC,IAAI,IAAI,CAAC,cAAc,EAAE,MAAM,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,0BAAgB,EAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE;YAC1F,MAAM,IAAI,uBAAU,CAChB,IAAI,EACJ,sBAAS,CAAC,2BAA2B,EACrC,IAAI,CAAC,IAAI,EACT,OAAO,CACV,CAAA;SACJ;QAED,IAAI,IAAI,CAAC,iBAAiB,EAAE,MAAM,EAAE;YAChC,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,iBAAiB,EAAE;gBACzC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,UAAW,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,MAAM,CAAC,EAAE;oBAC1D,MAAM,IAAI,uBAAU,CAChB,IAAI,EACJ,sBAAS,CAAC,iBAAiB,EAC3B,IAAI,CAAC,IAAI,EACT,MAAM,CACT,CAAA;iBACJ;aACJ;SACJ;QAED,IAAI;YACA,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;YACjB,eAAM,CAAC,IAAI,CAAC,aAAa,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,mBAAmB,CAAC,CAAA;SACzE;QAAC,OAAO,KAAK,EAAE;YACZ,eAAM,CAAC,KAAK,CAAC,aAAa,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,kBAAkB,EAAE,KAAK,CAAC,CAAA;SAChF;IACL,CAAC;IAES,IAAI,CAAC,IAAY;QACvB,OAAO,0BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;IAChD,CAAC;IAED,iBAAiB;QACb,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI;YACvB,OAAO,IAAI,CAAC,SAAS,CAAA;QAEzB,MAAM,IAAI,GAAG,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAA;QAC7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAC,CAAC,GAAG,GAAG,EAAC,CAAC,EAAE,EAAE;YAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;YACnB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;YACpC,IAAI,KAAK,YAAY,6BAAkB;gBACnC,OAAO,IAAI,CAAC,SAAS,GAAG,KAAK,CAAA;SACpC;QAED,OAAO,IAAI,CAAC,SAAS,GAAG,IAAI,CAAA;IAChC,CAAC;CACJ;AAvED,wCAuEC"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeFunction.d.ts.map b/dist/structures/forge/ForgeFunction.d.ts.map index 0a13d776cc..2cee160e10 100644 --- a/dist/structures/forge/ForgeFunction.d.ts.map +++ b/dist/structures/forge/ForgeFunction.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ForgeFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeFunction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAA2C,cAAc,EAAE,MAAM,IAAI,CAAA;AACpG,OAAO,EAAE,0BAA0B,EAAyB,MAAM,YAAY,CAAA;AAG9E,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAGxD,MAAM,WAAW,mBAAmB;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,OAAO,OAAO,CAAA;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,mBAAmB,CAAC,CAAA;IAC5C,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAAa,aAAa;aAGa,IAAI,EAAE,cAAc;IAFhD,QAAQ,CAAC,EAAE,0BAA0B,CAAA;gBAET,IAAI,EAAE,cAAc;IAKhD,QAAQ;IAIR,QAAQ;IAoCT,IAAI,CAAC,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE;CA8B1C"} \ No newline at end of file +{"version":3,"file":"ForgeFunction.d.ts","sourceRoot":"","sources":["../../../src/structures/forge/ForgeFunction.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAA2C,cAAc,EAAE,MAAM,IAAI,CAAA;AACpG,OAAO,EAAE,0BAA0B,EAAyB,MAAM,YAAY,CAAA;AAG9E,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAGxD,MAAM,WAAW,mBAAmB;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,OAAO,OAAO,CAAA;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,mBAAmB,CAAC,CAAA;IAC5C,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAAa,aAAa;aAGa,IAAI,EAAE,cAAc;IAFhD,QAAQ,CAAC,EAAE,0BAA0B,CAAA;gBAET,IAAI,EAAE,cAAc;IAKhD,QAAQ;IAIR,QAAQ;IAoCT,IAAI,CAAC,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE;CA8B1C"} \ No newline at end of file diff --git a/dist/structures/forge/ForgeFunction.js b/dist/structures/forge/ForgeFunction.js index 5075747685..1c8f153e38 100644 --- a/dist/structures/forge/ForgeFunction.js +++ b/dist/structures/forge/ForgeFunction.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/structures/forge/ForgeFunction.js.map b/dist/structures/forge/ForgeFunction.js.map index 9dfa712104..034bab5516 100644 --- a/dist/structures/forge/ForgeFunction.js.map +++ b/dist/structures/forge/ForgeFunction.js.map @@ -1 +1 @@ -{"version":3,"file":"ForgeFunction.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"ForgeFunction.js","sourceRoot":"","sources":["../../../src/structures/forge/ForgeFunction.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/index.d.ts.map b/dist/structures/index.d.ts.map index 24d56c85dd..b8f6ca57fa 100644 --- a/dist/structures/index.d.ts.map +++ b/dist/structures/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/structures/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,qBAAqB,CAAA;AACnC,cAAc,yBAAyB,CAAA;AACvC,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,uBAAuB,CAAA;AACrC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,0BAA0B,CAAA;AACxC,cAAc,2BAA2B,CAAA;AACzC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/structures/index.ts"],"names":[],"mappings":"AAKA,cAAc,oBAAoB,CAAA;AAClC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,qBAAqB,CAAA;AACnC,cAAc,yBAAyB,CAAA;AACvC,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,uBAAuB,CAAA;AACrC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,0BAA0B,CAAA;AACxC,cAAc,2BAA2B,CAAA;AACzC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"} \ No newline at end of file diff --git a/dist/structures/index.js b/dist/structures/index.js index 940163d0be..69e3531580 100644 --- a/dist/structures/index.js +++ b/dist/structures/index.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); diff --git a/dist/structures/index.js.map b/dist/structures/index.js.map index aff194c47b..731be6e206 100644 --- a/dist/structures/index.js.map +++ b/dist/structures/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/structures/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,+DAA4C;AAC5C,wDAAqC;AACrC,sDAAmC;AACnC,0DAAuC;AACvC,qDAAkC;AAClC,yDAAsC;AACtC,wDAAqC;AACrC,6DAA0C;AAC1C,qDAAkC;AAClC,0DAAuC;AACvC,iEAA8C;AAC9C,2DAAwC;AACxC,4DAAyC;AACzC,qDAAkC;AAClC,0DAAuC;AACvC,kDAA+B"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/structures/index.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;;;;;;;;;;;;;;AAEF,qDAAkC;AAClC,+DAA4C;AAC5C,wDAAqC;AACrC,sDAAmC;AACnC,0DAAuC;AACvC,qDAAkC;AAClC,yDAAsC;AACtC,wDAAqC;AACrC,6DAA0C;AAC1C,qDAAkC;AAClC,0DAAuC;AACvC,iEAA8C;AAC9C,2DAAwC;AACxC,4DAAyC;AACzC,qDAAkC;AAClC,0DAAuC;AACvC,kDAA+B"} \ No newline at end of file diff --git a/dist/structures/trackers/InviteTracker.d.ts.map b/dist/structures/trackers/InviteTracker.d.ts.map index e7767dc1e1..b5de894b77 100644 --- a/dist/structures/trackers/InviteTracker.d.ts.map +++ b/dist/structures/trackers/InviteTracker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"InviteTracker.d.ts","sourceRoot":"","sources":["../../../src/structures/trackers/InviteTracker.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,YAAY,EACZ,UAAU,EAIV,KAAK,EACL,WAAW,EACX,MAAM,EACN,kBAAkB,EACrB,MAAM,YAAY,CAAA;AAEnB,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAMxC,MAAM,WAAW,aAAa;IAC1B,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;CACf;AAED,MAAM,WAAW,YAAY;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACf;AAED,qBAAa,aAAa;IACtB,gBAAuB,OAAO,qCAA2C;IAEzE,gBAAuB,eAAe,ifAAuE;IAE7G,gBAAuB,cAAc,yBAQV;IAE3B;;OAEG;IACH,gBAAuB,QAAQ,wDAA8D;IAE7F,OAAO,CAAC,MAAM,CAAC,IAAI;WAYL,cAAc,CAAC,KAAK,EAAE,KAAK;WAI3B,OAAO,CAAC,KAAK,EAAE,KAAK;WAKd,QAAQ,CAAC,MAAM,EAAE,WAAW;WAM5B,KAAK,CAAC,KAAK,EAAE,KAAK;WAuBlB,mBAAmB,CAAC,MAAM,EAAE,MAAM;WAgBlC,mBAAmB,CAAC,MAAM,EAAE,MAAM;WAOxC,aAAa,CAAC,MAAM,EAAE,WAAW,GAAG,kBAAkB;WAIhD,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,kBAAkB;CAsC3E"} \ No newline at end of file +{"version":3,"file":"InviteTracker.d.ts","sourceRoot":"","sources":["../../../src/structures/trackers/InviteTracker.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,YAAY,EACZ,UAAU,EAIV,KAAK,EACL,WAAW,EACX,MAAM,EACN,kBAAkB,EACrB,MAAM,YAAY,CAAA;AAEnB,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAMxC,MAAM,WAAW,aAAa;IAC1B,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;CACf;AAED,MAAM,WAAW,YAAY;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACf;AAED,qBAAa,aAAa;IACtB,gBAAuB,OAAO,qCAA2C;IAEzE,gBAAuB,eAAe,ifAAuE;IAE7G,gBAAuB,cAAc,yBAQV;IAE3B;;OAEG;IACH,gBAAuB,QAAQ,wDAA8D;IAE7F,OAAO,CAAC,MAAM,CAAC,IAAI;WAYL,cAAc,CAAC,KAAK,EAAE,KAAK;WAI3B,OAAO,CAAC,KAAK,EAAE,KAAK;WAKd,QAAQ,CAAC,MAAM,EAAE,WAAW;WAM5B,KAAK,CAAC,KAAK,EAAE,KAAK;WAuBlB,mBAAmB,CAAC,MAAM,EAAE,MAAM;WAgBlC,mBAAmB,CAAC,MAAM,EAAE,MAAM;WAOxC,aAAa,CAAC,MAAM,EAAE,WAAW,GAAG,kBAAkB;WAIhD,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,kBAAkB;CAsC3E"} \ No newline at end of file diff --git a/dist/structures/trackers/InviteTracker.js b/dist/structures/trackers/InviteTracker.js index a6d7bf343a..cc5cc73540 100644 --- a/dist/structures/trackers/InviteTracker.js +++ b/dist/structures/trackers/InviteTracker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; diff --git a/dist/structures/trackers/InviteTracker.js.map b/dist/structures/trackers/InviteTracker.js.map index e9fd07c9e2..4e4c993449 100644 --- a/dist/structures/trackers/InviteTracker.js.map +++ b/dist/structures/trackers/InviteTracker.js.map @@ -1 +1 @@ -{"version":3,"file":"InviteTracker.js","sourceRoot":"","sources":["../../../src/structures/trackers/InviteTracker.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"InviteTracker.js","sourceRoot":"","sources":["../../../src/structures/trackers/InviteTracker.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/dist/structures/trackers/VoiceTracker.d.ts.map b/dist/structures/trackers/VoiceTracker.d.ts.map index edc1d12ba5..47135069fa 100644 --- a/dist/structures/trackers/VoiceTracker.d.ts.map +++ b/dist/structures/trackers/VoiceTracker.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"VoiceTracker.d.ts","sourceRoot":"","sources":["../../../src/structures/trackers/VoiceTracker.ts"],"names":[],"mappings":"AAGA,qBAAa,YAAY;IACrB,OAAO;IAEP,OAAO,CAAC,MAAM,CAAC,IAAI;CAGtB"} \ No newline at end of file +{"version":3,"file":"VoiceTracker.d.ts","sourceRoot":"","sources":["../../../src/structures/trackers/VoiceTracker.ts"],"names":[],"mappings":"AAQA,qBAAa,YAAY;IACrB,OAAO;IAEP,OAAO,CAAC,MAAM,CAAC,IAAI;CAGtB"} \ No newline at end of file diff --git a/dist/structures/trackers/VoiceTracker.js b/dist/structures/trackers/VoiceTracker.js index 6f72280d7a..503aa09bdd 100644 --- a/dist/structures/trackers/VoiceTracker.js +++ b/dist/structures/trackers/VoiceTracker.js @@ -1,4 +1,8 @@ "use strict"; +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.VoiceTracker = void 0; const Logger_1 = require("../@internal/Logger"); diff --git a/dist/structures/trackers/VoiceTracker.js.map b/dist/structures/trackers/VoiceTracker.js.map index 920ac21075..fa4d0a73a1 100644 --- a/dist/structures/trackers/VoiceTracker.js.map +++ b/dist/structures/trackers/VoiceTracker.js.map @@ -1 +1 @@ -{"version":3,"file":"VoiceTracker.js","sourceRoot":"","sources":["../../../src/structures/trackers/VoiceTracker.ts"],"names":[],"mappings":";;;AACA,gDAA4C;AAE5C,MAAa,YAAY;IACrB,gBAAuB,CAAC;IAEhB,MAAM,CAAC,IAAI,CAAC,MAAmB;QACnC,eAAM,CAAC,IAAI,CAAC,0EAA0E,CAAC,CAAA;IAC3F,CAAC;CACJ;AAND,oCAMC"} \ No newline at end of file +{"version":3,"file":"VoiceTracker.js","sourceRoot":"","sources":["../../../src/structures/trackers/VoiceTracker.ts"],"names":[],"mappings":";AAAA;;;EAGE;;;AAGF,gDAA4C;AAE5C,MAAa,YAAY;IACrB,gBAAuB,CAAC;IAEhB,MAAM,CAAC,IAAI,CAAC,MAAmB;QACnC,eAAM,CAAC,IAAI,CAAC,0EAA0E,CAAC,CAAA;IAC3F,CAAC;CACJ;AAND,oCAMC"} \ No newline at end of file diff --git a/docs/assets/navigation.js b/docs/assets/navigation.js index 2f9f78eaf9..2fada802c9 100644 --- a/docs/assets/navigation.js +++ b/docs/assets/navigation.js @@ -1 +1 @@ -window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAE52ZTW/jNhCG/4vPQdNNu9s2N9dJNgvESeB1t4eih1lpIhOmSIGibAfF/veCkmWTIjlkchP4vvPwayR+6J//ZhoPenY9m6tq/drg7GLWgN7Mrmcourq9PBb/tNE1n13MtkyUs+vff1yc4hbAUZSgQsG2FifcKiWD4SchHnu/Xj8vpNAodIgwkeOcB1k9KyYV069ThiWR8aH6j8XxuKcGFehw920tTlhhxVqtQDMpQpSpTpF0pyKMUYlHz5uGs6KvZiHrGkR5phQc2hbbS9/j8j5c0cQlCKhQ5YCPVpKvqgBJVVTMn9BitHuWmMmIdsj3pIi3OxT6HkTJYzzbQdEWsm4Yx/KuE4UZUZ82dWTQAm0aFTpaaGAiHH6UUvHmKRiNB03HSl7KvYhO0sRAsW5YW0hV0pMUMFHM3hdtnK1SlDvGcYVQhhhnjSRIVeGCMxSBcbbEJKP/3kcQvZYmHDSKNpizrp4kxZPfkbM50XkKuUhqEpjP+iI0qkahDnEskWbsmMa1gmIbplgyxXmQVbA7QzkV+Qia7ZJf1JArTY2ngatTpGH19AlDORW53iiEeJccmeJ8k6yIT5GtkjPtr7I3oOEMZCZjXqAw0x72uvirj58cvL0eO6zpmjwN7LSsZbnqOD41psY2wvF8JDa41tu86Ho/AblJ13+YIy0MOVPohvF+mFfYdlxHua4tA4ol2fmJKQvov00hYvidSiAXUpTMPNwx5Ikmh2PeVN0basmDS4FCk9k7dSWQ/fZmAcUGY7izI4EadjkxzKCSiD6Rw/G9RAebNbvsEy0n1aP2N1SSytSY+11V5GRuXuy7qn9HrenKrF0fmdO+L42lp4bYnVGwZ1BQZxB7H4n93DFeDrueMM8y5IJUkqRI1L3WDTkPloEEPcgC+DgW8cXfsyWh8QkdVRKx7LhmDce5qlbYSr6LjL3vI7GxPaCNpPaBE9wK9sTbNqpJROa7FbQm4WRfLUMuqO/SDb4wwbK4E39uNUvQxSYJ7100ElutWEENq+WgUZ0Q8J1HMnFUScRXDRoj7Rg0Mnw4H3hXIDbFsWTAqJXXdmSg1tBuKZDRacxwZImMz6hSiHnbotJzVVkM/dqYa8CTMon/+Y/fPny8sm+JzCnqi2g1iAKnGEfMIrnXrxbFv30NEIa9eH9yh2K88fU6F7Fl0oMtPEspyq3o6ge29RBjeTL+0GChF8D5dyi2HsVRU6w7xjWqZyUbVJr5AzXVU7zPqL3fKAPprGQwzFAEAKY4J9rclIVy2tZSnCWo7WPHufsBGzi2lsMxX8wQw5Sn4t3V9faARaftO8KBFnal2E87VHvFND6jqlnrXhsO4IAlRV3BfmiAGZ6FLL3h8wxJIhadatkO50rBq4dz1DTL3Dl9A9757TpLKcpX81cvkBljeTJ+sq4do0Mrmhf7l9graJy7oiH8JGQTvBaclRTjbwVNY05G/vxaUjbleIojcZYn/aU+mq0e7kAxMzf9r4+j6nJ+8V+8/nT+CDWGOBMLARv/ZAabcxIJQIXCmHCJGkrn2PFyfOnby6nHxX369ce//wOgFe777R4AAA==" \ No newline at end of file +window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAE52ZzW7jNhSF38XroOmknWmbneskkwHiJPC400XRxR3pRiZMkQJF2Q6KefeCkmWTInnJZGfwnPPxVyJF//PfTONBz65nc1WtXxucXcwa0JvZ9QxFV7eXx+KfNrrms4vZlolydv37j4tTbgEcRQkqFLa1OOFWKRmMn4R49n69fl5IoVHoEGEixzkPsnpWTCqmX6cMSyLzofqPxfHcU4MKdLj7thYnrLBirVagmRQhylSnSLpTEcaoxNPzpuGs6KtZyLoGUZ4pBYe2xfbS97i8D1c0cQkCKlQ54KOV5KsqQFIVlfkTWox2zxIzGdEO+Z4U8XaHQt+DKHmMZzso2kLWDeNY3nWiMCPq06aODFqgTaNCp4UGJsLxo5TKm1/BNB40nZW8lHsRnaSJgWLdsLaQqqQnKWCimL0v2jhbpSh3jOMKoQwxzhpJkKrCBWcoAuNsiUlG/76PIHotTThoFG1wzbp6khRf/I6czYnOU8hFUpPAfNYXoVE1CnWIY4k0Y8c0rhUU2zDFkinOg6yC3RnKqeQjaLZLvlFDrjQ1vgxcnSINu6dPGMqp5HqjEOJdcmSK802yIj5FtkrOtL/L3oCGM5CZFfMChZn2sNfFX3385ODt/dhhTffkabDTspblquP41Jga2wjH85HY4F5v86L7/QTkLrr+xRxpYciZQjeM98O8wrbjOsp1bRlQLMnOT0xZQP9pChHDz1QCuZCiZObHHUOeaHI486bq3lBLHlwKFJpcvVNXAtkfbxZQbDCGOzsSqOGUE8MMKonoF3I430t02OzZZb/QcpZ61P6GSlIrNeZ+VxU5Kzcv+67q31FrujLr1Eeuad+XxtJTQ5zOKNgzKKgziL2PxH7uGC+HU0+YZxlyQSpJUiTqXuuGnAfLQIIeZAF8HIv45u/ZktD4hI4qiVh2XLOG41xVK2wl30XG3veR2NgZ0EZS58AJbgV74mkb1SQi89kKWpNwsq+WIRfUd+kGX5hgWdyJP7eaJehik4T3LhqJrVasoIbVctCoTgj4ziMrcVRJxNdig2XHcbgSIGc7aKXhGjTGaL1GxoePD+9+xaY4lgwYta3bjgzUGtotBTI6jRm+hyLjM6oUYt62qPRcVRZDvzbmjvGkTPI///Hbh49X9hWU+UT7IloNosApxhGzSO7drkXxr3YDhOGg318LQDFeJ3udi9gy6cEWnqUU5VZ09QPbeoixPJk/NFjoBXD+HYqtR3HUFOuOcY3qWckGlWb+QE31FO8zau8/moF0VjIYZigCAFOckzbXcKE1bWspzhLU9rHj3H07Dhxby+GY13GIYcpTeXfrvj1g0Wn7AnKghV0p9tMO1V4xjc+oata6d5IDOGBJUVewHxpghmchS2/4PEOSiEWnWrbDuVLw6uEcNc0yF1rfgHd+u85SivLV/GUYWBljeTI/2deO6dCO5mX/EnsFjXMRNcRPQjbBa8FZSTH+VtA05rPLn19LyqYcPxFJnOVJv6mPZquHO1DMzE3/v8pRdTm/+A9ef1J5hBpDnImFgI1/kwabcxIJQIXCmHCJGkrnm+bl+NC3l1OPi/v0649//weCKGUqSh8AAA==" \ No newline at end of file diff --git a/docs/assets/search.js b/docs/assets/search.js index e5271ee66c..e2630f850a 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/docs/classes/ApplicationCommand.html b/docs/classes/ApplicationCommand.html index 209c8403b1..a71a0c1731 100644 --- a/docs/classes/ApplicationCommand.html +++ b/docs/classes/ApplicationCommand.html @@ -1,8 +1,8 @@ -ApplicationCommand | @tryforge/forgescript

Constructors

constructor +ApplicationCommand | @tryforge/forgescript

Constructors

Properties

Accessors

Methods

Constructors

Properties

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ApplicationCommandManager.html b/docs/classes/ApplicationCommandManager.html index 784ca70ba2..8a50b4cc7c 100644 --- a/docs/classes/ApplicationCommandManager.html +++ b/docs/classes/ApplicationCommandManager.html @@ -1,4 +1,4 @@ -ApplicationCommandManager | @tryforge/forgescript

Class ApplicationCommandManager

Constructors

constructor +ApplicationCommandManager | @tryforge/forgescript

Class ApplicationCommandManager

Constructors

Properties

client commands path @@ -13,13 +13,13 @@ resolve toJSON validate -

Constructors

Properties

client: ForgeClient
commands: Collection<string, ApplicationCommand | Collection<string, ApplicationCommand | Collection<string, ApplicationCommand>>> = ...

If:

+

Constructors

Properties

client: ForgeClient
commands: Collection<string, ApplicationCommand | Collection<string, ApplicationCommand | Collection<string, ApplicationCommand>>> = ...

If:

  • value is app command = slash command
  • value is collection:
  • value is slash command = subcommands
  • value is collection = group with subcommands
-
path: string

Methods

  • Returns undefined | Promise<Collection<string, ApplicationCommand<{
        guild: GuildResolvable;
    }>>>

  • Parameters

    • g: Guild

    Returns undefined | Promise<Collection<string, ApplicationCommand<{}>>>

Generated using TypeDoc

\ No newline at end of file +
path: string

Methods

  • Returns undefined | Promise<Collection<string, ApplicationCommand<{
        guild: GuildResolvable;
    }>>>

  • Parameters

    • g: Guild

    Returns undefined | Promise<Collection<string, ApplicationCommand<{}>>>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Arg.html b/docs/classes/Arg.html index 94d102ab5a..63cb0a52ae 100644 --- a/docs/classes/Arg.html +++ b/docs/classes/Arg.html @@ -1,4 +1,4 @@ -Arg | @tryforge/forgescript

Constructors

constructor +Arg | @tryforge/forgescript

Constructors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/BaseCommand.html b/docs/classes/BaseCommand.html index eb79b51f51..815230efca 100644 --- a/docs/classes/BaseCommand.html +++ b/docs/classes/BaseCommand.html @@ -1,4 +1,4 @@ -BaseCommand | @tryforge/forgescript

Type Parameters

  • T

Constructors

constructor +BaseCommand | @tryforge/forgescript

Type Parameters

  • T

Constructors

Properties

compiled data id @@ -9,4 +9,4 @@ setPath validate from -

Constructors

Properties

data: IBaseCommand<T>
id: number = ++id

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

data: IBaseCommand<T>
id: number = ++id

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/BaseCommandManager.html b/docs/classes/BaseCommandManager.html index 22f46c1a50..28b32646b6 100644 --- a/docs/classes/BaseCommandManager.html +++ b/docs/classes/BaseCommandManager.html @@ -1,4 +1,4 @@ -BaseCommandManager | @tryforge/forgescript

Class BaseCommandManager<T>Abstract

Type Parameters

  • T

Hierarchy

Constructors

constructor +BaseCommandManager | @tryforge/forgescript

Class BaseCommandManager<T>Abstract

Type Parameters

  • T

Hierarchy

Constructors

Properties

Constructors

Properties

client: ForgeClient
commands: Collection<T, BaseCommand<T>[]> = ...
handlerName: string
paths: string[] = ...
defaultMaxListeners: number

Accessors

Methods

  • Type Parameters

    • U extends "update"

    Parameters

    Returns boolean

  • Type Parameters

    • U extends "update"

    Returns U[]

  • Returns number

  • Parameters

    • type: "update"

    Returns number

  • Type Parameters

    • U extends "update"

    Parameters

    • type: U

    Returns ICommandManagerEvents<T>[U][]

  • Type Parameters

    • U extends "update"

    Parameters

    Returns BaseCommandManager<T>

  • Type Parameters

    • U extends "update"

    Parameters

    • type: U

    Returns ICommandManagerEvents<T>[U][]

  • Parameters

    • Optional event: "update"

    Returns BaseCommandManager<T>

  • Parameters

    • n: number

    Returns BaseCommandManager<T>

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

client: ForgeClient
commands: Collection<T, BaseCommand<T>[]> = ...
handlerName: string
paths: string[] = ...
defaultMaxListeners: number

Accessors

Methods

  • Type Parameters

    • U extends "update"

    Parameters

    Returns boolean

  • Type Parameters

    • U extends "update"

    Returns U[]

  • Returns number

  • Parameters

    • type: "update"

    Returns number

  • Type Parameters

    • U extends "update"

    Parameters

    • type: U

    Returns ICommandManagerEvents<T>[U][]

  • Type Parameters

    • U extends "update"

    Parameters

    Returns BaseCommandManager<T>

  • Type Parameters

    • U extends "update"

    Parameters

    • type: U

    Returns ICommandManagerEvents<T>[U][]

  • Parameters

    • Optional event: "update"

    Returns BaseCommandManager<T>

  • Parameters

    • n: number

    Returns BaseCommandManager<T>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/BaseEventHandler.html b/docs/classes/BaseEventHandler.html index 33db10d3ee..3fc6de13df 100644 --- a/docs/classes/BaseEventHandler.html +++ b/docs/classes/BaseEventHandler.html @@ -1,7 +1,7 @@ -BaseEventHandler | @tryforge/forgescript

Class BaseEventHandler<Events, T>

Type Parameters

  • Events = Record<string, unknown[]>

  • T extends keyof Events = keyof Events

Hierarchy

Constructors

constructor +BaseEventHandler | @tryforge/forgescript

Class BaseEventHandler<Events, T>

Type Parameters

  • Events = Record<string, unknown[]>

  • T extends keyof Events = keyof Events

Hierarchy

Constructors

Properties

Accessors

Methods

Constructors

Properties

data: IEvent<Events, T>

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

data: IEvent<Events, T>

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/CompiledFunction.html b/docs/classes/CompiledFunction.html index 63866c9a0d..b657f168d6 100644 --- a/docs/classes/CompiledFunction.html +++ b/docs/classes/CompiledFunction.html @@ -1,4 +1,4 @@ -CompiledFunction | @tryforge/forgescript

Class CompiledFunction<T, Unwrap>

Type Parameters

  • T extends [...IArg[]] = IArg[]

  • Unwrap extends boolean = boolean

Constructors

constructor +CompiledFunction | @tryforge/forgescript

Class CompiledFunction<T, Unwrap>

Type Parameters

  • T extends [...IArg[]] = IArg[]

  • Unwrap extends boolean = boolean

Constructors

Properties

Constructors

Properties

fn: NativeFunction<T, Unwrap>
CDNIdRegex: RegExp = ...
IdRegex: RegExp = ...
OverwriteSymbolMapping: {
    +: boolean;
    -: boolean;
    /: null;
} = ...

Type declaration

  • +: boolean
  • -: boolean
  • /: null
URLRegex: RegExp = ...

Accessors

Methods

  • Parameters

    Returns Promise<undefined | DMChannel | PartialDMChannel | PartialGroupDMChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel>

  • Parameters

    Returns "resolveURL" | "resolveString" | "resolveBigInt" | "resolveUnknown" | "resolveTextChannel" | "resolveOverwritePermission" | "resolveNumber" | "resolveUser" | "resolveDate" | "resolveGuild" | "resolveRoleOrUser" | "resolveInvite" | "resolvePermission" | "resolveJson" | "resolveColor" | "resolveEnum" | "resolveForumTag" | "resolveEmoji" | "resolveGuildEmoji" | "resolveBoolean" | "resolveAttachment" | "resolveReaction" | "resolveMessage" | "resolveChannel" | "resolveRole" | "resolveWebhook" | "resolveSticker" | "resolveTime" | "resolveMember" | "resolveApplicationEmoji" | "resolveAutomodRule" | "resolveScheduledEvent" | "resolveStageInstance" | "resolveSoundboardSound" | "resolveTemplate"

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

fn: NativeFunction<T, Unwrap>
CDNIdRegex: RegExp = ...
IdRegex: RegExp = ...
OverwriteSymbolMapping: {
    +: boolean;
    -: boolean;
    /: null;
} = ...

Type declaration

  • +: boolean
  • -: boolean
  • /: null
URLRegex: RegExp = ...

Accessors

Methods

  • Parameters

    Returns Promise<undefined | DMChannel | PartialDMChannel | PartialGroupDMChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel>

  • Parameters

    Returns "resolveURL" | "resolveString" | "resolveBigInt" | "resolveUnknown" | "resolveTextChannel" | "resolveOverwritePermission" | "resolveNumber" | "resolveUser" | "resolveDate" | "resolveGuild" | "resolveRoleOrUser" | "resolveInvite" | "resolvePermission" | "resolveJson" | "resolveColor" | "resolveEnum" | "resolveForumTag" | "resolveEmoji" | "resolveGuildEmoji" | "resolveBoolean" | "resolveAttachment" | "resolveReaction" | "resolveMessage" | "resolveChannel" | "resolveRole" | "resolveWebhook" | "resolveSticker" | "resolveTime" | "resolveMember" | "resolveApplicationEmoji" | "resolveAutomodRule" | "resolveScheduledEvent" | "resolveStageInstance" | "resolveSoundboardSound" | "resolveTemplate"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Compiler.html b/docs/classes/Compiler.html index 7ab3211661..8450d8c25c 100644 --- a/docs/classes/Compiler.html +++ b/docs/classes/Compiler.html @@ -1,5 +1,5 @@ Compiler | @tryforge/forgescript

REWRITE NEEDED

-

Constructors

Constructors

Properties

Constructors

Properties

code?: string
id: number = 0
index: number = 0
matchIndex: number = 0
outputCode: string = ""
outputFunctions: ICompiledFunction[] = ...
path?: null | string
EscapeRegex: RegExp = ...
Functions: Collection<string, IRawFunction> = ...
InvalidCharRegex: RegExp = ...
Regex: RegExp
Syntax: {
    Close: string;
    Count: string;
    Escape: string;
    Negation: string;
    Open: string;
    Separator: string;
    Silent: string;
} = ...

Type declaration

  • Close: string
  • Count: string
  • Escape: string
  • Negation: string
  • Open: string
  • Separator: string
  • Silent: string
SystemRegex: RegExp = ...

Accessors

Methods

  • Parameters

    • char: string

    Returns {
        isClosure: boolean;
        isEscape: boolean;
        isSeparator: boolean;
    }

    • isClosure: boolean
    • isEscape: boolean
    • isSeparator: boolean
  • Parameters

    • syntax: {
          Close: string;
          Count: string;
          Escape: string;
          Negation: string;
          Open: string;
          Separator: string;
          Silent: string;
      }
      • Close: string
      • Count: string
      • Escape: string
      • Negation: string
      • Open: string
      • Separator: string
      • Silent: string

    Returns void

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

code?: string
id: number = 0
index: number = 0
matchIndex: number = 0
outputCode: string = ""
outputFunctions: ICompiledFunction[] = ...
path?: null | string
EscapeRegex: RegExp = ...
Functions: Collection<string, IRawFunction> = ...
InvalidCharRegex: RegExp = ...
Regex: RegExp
Syntax: {
    Close: string;
    Count: string;
    Escape: string;
    Negation: string;
    Open: string;
    Separator: string;
    Silent: string;
} = ...

Type declaration

  • Close: string
  • Count: string
  • Escape: string
  • Negation: string
  • Open: string
  • Separator: string
  • Silent: string
SystemRegex: RegExp = ...

Accessors

Methods

  • Parameters

    • char: string

    Returns {
        isClosure: boolean;
        isEscape: boolean;
        isSeparator: boolean;
    }

    • isClosure: boolean
    • isEscape: boolean
    • isSeparator: boolean
  • Parameters

    • syntax: {
          Close: string;
          Count: string;
          Escape: string;
          Negation: string;
          Open: string;
          Separator: string;
          Silent: string;
      }
      • Close: string
      • Count: string
      • Escape: string
      • Negation: string
      • Open: string
      • Separator: string
      • Silent: string

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Container.html b/docs/classes/Container.html index 5f9c395c9a..d661dc3c6d 100644 --- a/docs/classes/Container.html +++ b/docs/classes/Container.html @@ -1,4 +1,4 @@ -Container | @tryforge/forgescript

Constructors

constructor +Container | @tryforge/forgescript

Constructors

Properties

actionRow?: ActionRowBuilder<MessageActionRowComponentBuilder>
allowedMentions: MessageMentionOptions = {}
appliedTags?: string[]
avatarURL?: string
channel?: Channel
choices: ApplicationCommandOptionChoiceData<string | number>[] = ...
components: (ContainerBuilder | ContainerComponentBuilder)[] = ...
content?: string
deleteIn?: number
edit: boolean = false
embeds: EmbedBuilder[] = ...
ephemeral: boolean = false
files: AttachmentBuilder[] = ...
followUp: boolean = false
inside: ComponentType[] = ...
isComponentsV2: boolean = false
modal?: ModalBuilder
poll?: PollData
reference?: string
reply: boolean = false
stickers: StickerResolvable[] = ...
threadId?: ThreadChannelResolvable
threadName?: string
tts: boolean = false
update: boolean = false
username?: string
withComponents: boolean = false
withResponse: boolean = false

Methods

  • Checks if current context is inside a component builder function.

    +unparseMentions +

Constructors

Properties

actionRow?: ActionRowBuilder<MessageActionRowComponentBuilder>
allowedMentions: MessageMentionOptions = {}
appliedTags?: string[]
avatarURL?: string
channel?: Channel
choices: ApplicationCommandOptionChoiceData<string | number>[] = ...
components: (ContainerBuilder | ContainerComponentBuilder)[] = ...
content?: string
deleteIn?: number
edit: boolean = false
embeds: EmbedBuilder[] = ...
ephemeral: boolean = false
files: AttachmentBuilder[] = ...
followUp: boolean = false
inside: ComponentType[] = ...
isComponentsV2: boolean = false
modal?: ModalBuilder
poll?: PollData
reference?: string
reply: boolean = false
silent: boolean = false
stickers: StickerResolvable[] = ...
threadId?: ThreadChannelResolvable
threadName?: string
tts: boolean = false
update: boolean = false
username?: string
withComponents: boolean = false
withResponse: boolean = false

Methods

  • Checks if current context is inside a component builder function.

    Parameters

    • type: ComponentType

      The type of the component to check for.

      -

    Returns boolean

Generated using TypeDoc

\ No newline at end of file +

Returns boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Context.html b/docs/classes/Context.html index 4077a58b49..8a71f4a0cb 100644 --- a/docs/classes/Context.html +++ b/docs/classes/Context.html @@ -1,7 +1,8 @@ -Context | @tryforge/forgescript

Indexable

[props: PropertyKey]: unknown

Constructors

constructor +Context | @tryforge/forgescript

Indexable

[props: PropertyKey]: unknown

Constructors

Properties

#cache: Partial<IContextCache> = {}
#environment: Record<string, unknown> = {}
#keywords: Record<string, unknown> = {}
_reason?: string
automodRule: Partial<IAutomodRuleOptions> = {}
calendar?: CalendarType
component: Partial<IComponentOptions> = {}
container: Container
executionTimestamp: number
http: Partial<IHttpOptions> = {}
localFunctions: Map<string, ILocalFunctionData> = ...
runtime: IRunnable
timezone: string = "UTC"

Accessors

  • get channel(): null | BaseChannel | CategoryChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel | ForumChannel | MediaChannel
  • Returns null | BaseChannel | CategoryChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel | ForumChannel | MediaChannel

Methods

  • Fetches all emojis of the application.

    +

Constructors

Properties

#cache: Partial<IContextCache> = {}
#environment: Record<string, unknown> = {}
#keywords: Record<string, unknown> = {}
#localFunctions: Record<string, ILocalFunctionData> = {}
_reason?: string
automodRule: Partial<IAutomodRuleOptions> = {}
calendar?: CalendarType
component: Partial<IComponentOptions> = {}
container: Container
executionTimestamp: number
http: Partial<IHttpOptions> = {}
runtime: IRunnable
scheduledEvent: Partial<IScheduledEventOptions> = {}
timezone: string = "UTC"

Accessors

  • get channel(): null | BaseChannel | CategoryChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel | ForumChannel | MediaChannel
  • Returns null | BaseChannel | CategoryChannel | NewsChannel | StageChannel | TextChannel | PublicThreadChannel<boolean> | PrivateThreadChannel | VoiceChannel | ForumChannel | MediaChannel

Methods

  • Fetches all emojis of the application.

    Parameters

    • Optional once: boolean

      Whether to fetch only when the collection is empty.

      -

    Returns Promise<void | Collection<string, ApplicationEmoji>>

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<void | Collection<string, ApplicationEmoji>>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/CooldownManager.html b/docs/classes/CooldownManager.html index fb6cbf468c..46b51d088f 100644 --- a/docs/classes/CooldownManager.html +++ b/docs/classes/CooldownManager.html @@ -1,4 +1,4 @@ -CooldownManager | @tryforge/forgescript

Constructors

constructor +CooldownManager | @tryforge/forgescript

Constructors

Properties

Methods

add @@ -6,4 +6,4 @@ delete getTimeLeft identifier -

Constructors

Properties

client: ForgeClient
cooldowns: Collection<string, ICooldown> = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

client: ForgeClient
cooldowns: Collection<string, ICooldown> = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DiscordEventHandler.html b/docs/classes/DiscordEventHandler.html index d1c56c6b0a..d0f6c5ada7 100644 --- a/docs/classes/DiscordEventHandler.html +++ b/docs/classes/DiscordEventHandler.html @@ -1,7 +1,7 @@ -DiscordEventHandler | @tryforge/forgescript

Class DiscordEventHandler<T>

Type Parameters

  • T extends keyof ClientEvents

Hierarchy

Constructors

constructor +DiscordEventHandler | @tryforge/forgescript

Class DiscordEventHandler<T>

Type Parameters

  • T extends keyof ClientEvents

Hierarchy

Constructors

Properties

Accessors

Methods

Constructors

Properties

data: IEvent<ClientEvents, T>

Accessors

  • get listener(): ((this, ...args) => void | Promise<void>)
  • Returns ((this, ...args) => void | Promise<void>)

      • (this, ...args): void | Promise<void>
      • Parameters

        Returns void | Promise<void>

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

data: IEvent<ClientEvents, T>

Accessors

  • get listener(): ((this, ...args) => void | Promise<void>)
  • Returns ((this, ...args) => void | Promise<void>)

      • (this, ...args): void | Promise<void>
      • Parameters

        Returns void | Promise<void>

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/EventManager.html b/docs/classes/EventManager.html index 2f51ad44ce..4e9be50bf8 100644 --- a/docs/classes/EventManager.html +++ b/docs/classes/EventManager.html @@ -1,4 +1,4 @@ -EventManager | @tryforge/forgescript

Constructors

constructor +EventManager | @tryforge/forgescript

Constructors

Properties

Constructors

Properties

client: ForgeClient
events: Collection<string, Collection<string, BaseEventHandler<Record<string, unknown[]>, string>>> = ...
Loaded: Partial<Record<string, Record<string, BaseEventHandler<Record<string, unknown[]>, string>>>> = {}

Methods

  • Parameters

    • name: string

    Returns {
        deprecated?: boolean;
        description: string;
        intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[];
        listener: ((this, ...args) => void | Promise<void>);
        name: string;
        version?: string;
    }[]

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

client: ForgeClient
events: Collection<string, Collection<string, BaseEventHandler<Record<string, unknown[]>, string>>> = ...
Loaded: Partial<Record<string, Record<string, BaseEventHandler<Record<string, unknown[]>, string>>>> = {}

Methods

  • Parameters

    • name: string

    Returns {
        deprecated?: boolean;
        description: string;
        intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[];
        listener: ((this, ...args) => void | Promise<void>);
        name: string;
        version?: string;
    }[]

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/FileReader.html b/docs/classes/FileReader.html index 174c7f19ea..11d59830a4 100644 --- a/docs/classes/FileReader.html +++ b/docs/classes/FileReader.html @@ -1,4 +1,4 @@ -FileReader | @tryforge/forgescript

Constructors

constructor +FileReader | @tryforge/forgescript

Constructors

Properties

code index req @@ -9,4 +9,4 @@ readName readValue read -

Constructors

Properties

code: string
index: number = 0
req: any
Syntax: {
    Close: string;
    Escape: string;
    Open: string;
} = ...

Type declaration

  • Close: string
  • Escape: string
  • Open: string

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

code: string
index: number = 0
req: any
Syntax: {
    Close: string;
    Escape: string;
    Open: string;
} = ...

Type declaration

  • Close: string
  • Escape: string
  • Open: string

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ForgeClient.html b/docs/classes/ForgeClient.html index 1aecdc1147..4f409365e6 100644 --- a/docs/classes/ForgeClient.html +++ b/docs/classes/ForgeClient.html @@ -1,4 +1,4 @@ -ForgeClient | @tryforge/forgescript

Hierarchy

  • Client<true>
    • ForgeClient

Indexable

[x: PropertyKey]: unknown

Constructors

constructor +ForgeClient | @tryforge/forgescript

Hierarchy

  • Client<true>
    • ForgeClient

Indexable

[x: PropertyKey]: unknown

Constructors

Properties

Constructors

Properties

application: ClientApplication
applicationCommands: ApplicationCommandManager = ...
channels: ChannelManager
commands: NativeCommandManager = ...
cooldowns: CooldownManager = ...
events: EventManager = ...
functions: ForgeFunctionManager = ...
globalVariables: Record<string, string> = {}
guilds: GuildManager
intervals: Map<string, Timeout> = ...
options: Omit<ClientOptions, "intents"> & {
    intents: IntentsBitField;
} & IForgeClientOptions

Type declaration

  • intents: IntentsBitField
readyTimestamp: number
rest: REST
shard: null | ShardClientUtil
sweepers: Sweepers
threading: ThreadManager = ...
timeouts: Map<string, Timeout> = ...
token: string
user: ClientUser
users: UserManager
voice: ClientVoiceManager
websockets: Map<number, WebSocket> = ...
ws: WebSocketManager
captureRejectionSymbol: typeof captureRejectionSymbol

Value: Symbol.for('nodejs.rejection')

+

Constructors

Properties

application: ClientApplication
applicationCommands: ApplicationCommandManager = ...
channels: ChannelManager
commands: NativeCommandManager = ...
cooldowns: CooldownManager = ...
events: EventManager = ...
functions: ForgeFunctionManager = ...
globalVariables: Record<string, string> = {}
guilds: GuildManager
intervals: Map<string, Timeout> = ...
options: Omit<ClientOptions, "intents"> & {
    intents: IntentsBitField;
} & IForgeClientOptions

Type declaration

  • intents: IntentsBitField
readyTimestamp: number
rest: REST
shard: null | ShardClientUtil
sweepers: Sweepers
threading: ThreadManager = ...
timeouts: Map<string, Timeout> = ...
token: string
user: ClientUser
users: UserManager
voice: ClientVoiceManager
websockets: Map<number, WebSocket> = ...
ws: WebSocketManager
captureRejectionSymbol: typeof captureRejectionSymbol

Value: Symbol.for('nodejs.rejection')

See how to write a custom rejection handler.

Since

v13.4.0, v12.16.0

captureRejections: boolean

Value: boolean

@@ -108,19 +108,19 @@

Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

Since

v13.6.0, v12.17.0

-

Accessors

  • get _censoredToken(): null | string
  • Returns null | string

  • get emojis(): BaseGuildEmojiManager
  • Returns BaseGuildEmojiManager

  • get readyAt(): If<Ready, Date, null>
  • Returns If<Ready, Date, null>

  • get uptime(): If<Ready, number, null>
  • Returns If<Ready, number, null>

Methods

  • Returns Promise<void>

  • Parameters

    • error: Error
    • event: string
    • Rest ...args: any[]

    Returns void

  • Alias for emitter.on(eventName, listener).

    +

Accessors

  • get _censoredToken(): null | string
  • Returns null | string

  • get emojis(): BaseGuildEmojiManager
  • Returns BaseGuildEmojiManager

  • get readyAt(): If<Ready, Date, null>
  • Returns If<Ready, Date, null>

  • get uptime(): If<Ready, number, null>
  • Returns If<Ready, number, null>

Methods

  • Returns Promise<void>

  • Parameters

    • error: Error
    • event: string
    • Rest ...args: any[]

    Returns void

  • Alias for emitter.on(eventName, listener).

    Parameters

    • eventName: string | symbol
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

    Since

    v0.1.26

    -
  • Parameters

    • id: string
    • Optional options: WebhookDeleteOptions

    Returns Promise<void>

  • Returns Promise<void>

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • Rest ...args: ClientEvents[Event]

    Returns boolean

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • Rest ...args: unknown[]

    Returns boolean

  • Returns an array listing the events for which the emitter has registered +

  • Parameters

    • id: string
    • Optional options: WebhookDeleteOptions

    Returns Promise<void>

  • Returns Promise<void>

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • Rest ...args: ClientEvents[Event]

    Returns boolean

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • Rest ...args: unknown[]

    Returns boolean

  • Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbols.

    import { EventEmitter } from 'node:events';

    const myEE = new EventEmitter();
    myEE.on('foo', () => {});
    myEE.on('bar', () => {});

    const sym = Symbol('symbol');
    myEE.on(sym, () => {});

    console.log(myEE.eventNames());
    // Prints: [ 'foo', 'bar', Symbol(symbol) ]

    Returns (string | symbol)[]

    Since

    v6.0.0

    -
  • Parameters

    • guild: GuildResolvable

    Returns Promise<GuildPreview>

  • Parameters

    • template: string

    Returns Promise<GuildTemplate>

  • Parameters

    • guild: GuildResolvable

    Returns Promise<Widget>

  • Parameters

    • invite: string
    • Optional options: ClientFetchInviteOptions

    Returns Promise<Invite>

  • Returns Promise<Collection<string, StickerPack>>

    Deprecated

    Use Client.fetchStickerPacks instead.

    -
  • Parameters

    • id: string

    Returns Promise<Sticker>

  • Parameters

    • options: {
          packId: string;
      }
      • packId: string

    Returns Promise<StickerPack>

  • Parameters

    • Optional options: StickerPackFetchOptions

    Returns Promise<Collection<string, StickerPack>>

  • Returns Promise<Collection<string, VoiceRegion>>

  • Parameters

    • id: string
    • Optional token: string

    Returns Promise<Webhook<WebhookType>>

  • Parameters

    • Optional options: InviteGenerationOptions

    Returns string

  • Returns the current max listener value for the EventEmitter which is either +

  • Parameters

    • guild: GuildResolvable

    Returns Promise<GuildPreview>

  • Parameters

    • template: string

    Returns Promise<GuildTemplate>

  • Parameters

    • guild: GuildResolvable

    Returns Promise<Widget>

  • Parameters

    • invite: string
    • Optional options: ClientFetchInviteOptions

    Returns Promise<Invite>

  • Returns Promise<Collection<string, StickerPack>>

    Deprecated

    Use Client.fetchStickerPacks instead.

    +
  • Parameters

    • id: string

    Returns Promise<Sticker>

  • Parameters

    • options: {
          packId: string;
      }
      • packId: string

    Returns Promise<StickerPack>

  • Parameters

    • Optional options: StickerPackFetchOptions

    Returns Promise<Collection<string, StickerPack>>

  • Returns Promise<Collection<string, VoiceRegion>>

  • Parameters

    • id: string
    • Optional token: string

    Returns Promise<Webhook<WebhookType>>

  • Parameters

    • Optional options: InviteGenerationOptions

    Returns string

  • Returns the current max listener value for the EventEmitter which is either set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    Returns number

    Since

    v1.0.0

    -
  • Parameters

    • msg: Message<boolean>

    Returns Promise<null | string>

  • Returns this is Client<true>

  • Returns the number of listeners listening for the event named eventName. +

  • Parameters

    • msg: Message<boolean>

    Returns Promise<null | string>

  • Returns this is Client<true>

  • Returns the number of listeners listening for the event named eventName. If listener is provided, it will return how many times the listener is found in the list of the listeners of the event.

    Parameters

    • eventName: string | symbol

      The name of the event being listened for

      @@ -130,7 +130,7 @@
      server.on('connection', (stream) => {
      console.log('someone connected!');
      });
      console.log(util.inspect(server.listeners('connection')));
      // Prints: [ [Function] ]

      Parameters

      • eventName: string | symbol

      Returns Function[]

      Since

      v0.1.26

      -
  • Parameters

    • Optional token: string

    Returns Promise<string>

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Adds the listener function to the beginning of the listeners array for the +

  • Parameters

    • Optional token: string

    Returns Promise<string>

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • event: Event
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: ClientEvents[Event]

          Returns void

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • event: Exclude<Event, keyof ClientEvents>
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ForgeClient

  • Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

    @@ -153,7 +153,7 @@
    import { EventEmitter } from 'node:events';
    const emitter = new EventEmitter();
    emitter.once('log', () => console.log('log once'));

    // Returns a new Array with a function `onceWrapper` which has a property
    // `listener` which contains the original listener bound above
    const listeners = emitter.rawListeners('log');
    const logFnWrapper = listeners[0];

    // Logs "log once" to the console and does not unbind the `once` event
    logFnWrapper.listener();

    // Logs "log once" to the console and removes the listener
    logFnWrapper();

    emitter.on('log', () => console.log('log persistently'));
    // Will return a new Array with a single function bound by `.on()` above
    const newListeners = emitter.rawListeners('log');

    // Logs "log persistently" twice
    newListeners[0]();
    emitter.emit('log');

    Parameters

    • eventName: string | symbol

    Returns Function[]

    Since

    v9.4.0

    -
  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • Optional event: Event

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • Optional event: Exclude<Event, keyof ClientEvents>

    Returns ForgeClient

  • Removes the specified listener from the listener array for the event namedeventName.

    +
  • Type Parameters

    • Event extends keyof ClientEvents

    Parameters

    • Optional event: Event

    Returns ForgeClient

  • Type Parameters

    • Event extends string | symbol

    Parameters

    • Optional event: Exclude<Event, keyof ClientEvents>

    Returns ForgeClient

  • Removes the specified listener from the listener array for the event namedeventName.

    const callback = (stream) => {
    console.log('someone connected!');
    };
    server.on('connection', callback);
    // ...
    server.removeListener('connection', callback);

    removeListener() will remove, at most, one instance of a listener from the @@ -183,7 +183,7 @@ modified for this specific EventEmitter instance. The value can be set toInfinity (or 0) to indicate an unlimited number of listeners.

    Returns a reference to the EventEmitter, so that calls can be chained.

    Parameters

    • n: number

    Returns ForgeClient

    Since

    v0.3.5

    -
  • Returns unknown

  • Experimental

    Listens once to the abort event on the provided signal.

    +
  • Returns unknown

  • Experimental

    Listens once to the abort event on the provided signal.

    Listening to the abort event on abort signals is unsafe and may lead to resource leaks since another third party with the signal can call e.stopImmediatePropagation(). Unfortunately Node.js cannot change @@ -221,7 +221,7 @@

  • eventName: string | symbol

    The event name

Returns number

Since

v0.9.12

Deprecated

Since v3.2.0 - Use listenerCount instead.

-
  • Type Parameters

    • Emitter extends EventEmitter

    • Event extends keyof ClientEvents

    Parameters

    • eventEmitter: Emitter
    • eventName: Emitter extends Client<boolean>
          ? Event
          : string | symbol
    • Optional options: {
          signal?: AbortSignal;
      }
      • Optional signal?: AbortSignal

    Returns AsyncEventIterator<Emitter extends Client<boolean>
        ? ClientEvents[Event]
        : any[]>

  • Type Parameters

    • Emitter extends EventEmitter

    • Event extends keyof ClientEvents

    Parameters

    • eventEmitter: Emitter
    • eventName: Emitter extends Client<boolean>
          ? Event
          : string | symbol
    • Optional options: {
          signal?: AbortSignal;
      }
      • Optional signal?: AbortSignal

    Returns Promise<Emitter extends Client<boolean>
        ? ClientEvents[Event]
        : any[]>

  • import { setMaxListeners, EventEmitter } from 'node:events';

    const target = new EventTarget();
    const emitter = new EventEmitter();

    setMaxListeners(5, target, emitter); +
  • Type Parameters

    • Emitter extends EventEmitter

    • Event extends keyof ClientEvents

    Parameters

    • eventEmitter: Emitter
    • eventName: Emitter extends Client<boolean>
          ? Event
          : string | symbol
    • Optional options: {
          signal?: AbortSignal;
      }
      • Optional signal?: AbortSignal

    Returns AsyncEventIterator<Emitter extends Client<boolean>
        ? ClientEvents[Event]
        : any[]>

  • Type Parameters

    • Emitter extends EventEmitter

    • Event extends keyof ClientEvents

    Parameters

    • eventEmitter: Emitter
    • eventName: Emitter extends Client<boolean>
          ? Event
          : string | symbol
    • Optional options: {
          signal?: AbortSignal;
      }
      • Optional signal?: AbortSignal

    Returns Promise<Emitter extends Client<boolean>
        ? ClientEvents[Event]
        : any[]>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ForgeExtension.html b/docs/classes/ForgeExtension.html index e8cd480c0b..353815c345 100644 --- a/docs/classes/ForgeExtension.html +++ b/docs/classes/ForgeExtension.html @@ -1,4 +1,4 @@ -ForgeExtension | @tryforge/forgescript

Class ForgeExtensionAbstract

Constructors

constructor +ForgeExtension | @tryforge/forgescript

Class ForgeExtensionAbstract

Constructors

Properties

Constructors

Properties

_commands?: null | BaseCommandManager<unknown>
description: string
name: string
requireExtensions?: string[]

A list of extension names this extension requires

-
targetVersions?: string[]

Only the versions written here will be allowed

-
version: string

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

_commands?: null | BaseCommandManager<unknown>
description: string
name: string
requireExtensions?: string[]

A list of extension names this extension requires

+
targetVersions?: string[]

Only the versions written here will be allowed

+
version: string

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ForgeFunction.html b/docs/classes/ForgeFunction.html index cfc08654a7..8c6bfec29f 100644 --- a/docs/classes/ForgeFunction.html +++ b/docs/classes/ForgeFunction.html @@ -1,7 +1,7 @@ -ForgeFunction | @tryforge/forgescript

Constructors

constructor +ForgeFunction | @tryforge/forgescript

Constructors

Properties

Methods

Constructors

Properties

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ForgeFunctionManager.html b/docs/classes/ForgeFunctionManager.html index b71ad9001a..41d3882abe 100644 --- a/docs/classes/ForgeFunctionManager.html +++ b/docs/classes/ForgeFunctionManager.html @@ -1,4 +1,4 @@ -ForgeFunctionManager | @tryforge/forgescript

Constructors

constructor +ForgeFunctionManager | @tryforge/forgescript

Constructors

Properties

Methods

add @@ -6,4 +6,4 @@ load populate resolve -

Constructors

Properties

client: ForgeClient
functions: Map<string, ForgeFunction> = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

client: ForgeClient
functions: Map<string, ForgeFunction> = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/FunctionManager.html b/docs/classes/FunctionManager.html index 29ce82251f..c4fd448781 100644 --- a/docs/classes/FunctionManager.html +++ b/docs/classes/FunctionManager.html @@ -1,4 +1,4 @@ -FunctionManager | @tryforge/forgescript

Constructors

constructor +FunctionManager | @tryforge/forgescript

Constructors

Properties

Accessors

Methods

add @@ -8,4 +8,4 @@ loadNative reload toJSON -

Constructors

Properties

Functions: Map<string, NativeFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>> = ...

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

Functions: Map<string, NativeFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>> = ...

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Interpreter.html b/docs/classes/Interpreter.html index e941e5ff6b..f55dbecd20 100644 --- a/docs/classes/Interpreter.html +++ b/docs/classes/Interpreter.html @@ -1,3 +1,3 @@ -Interpreter | @tryforge/forgescript

Constructors

constructor +Interpreter | @tryforge/forgescript

Constructors

Methods

run -

Constructors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/InviteTracker.html b/docs/classes/InviteTracker.html index 246903297f..0dc95dfc41 100644 --- a/docs/classes/InviteTracker.html +++ b/docs/classes/InviteTracker.html @@ -1,4 +1,4 @@ -InviteTracker | @tryforge/forgescript

Constructors

constructor +InviteTracker | @tryforge/forgescript

Constructors

Properties

Constructors

Properties

Inviters: Collection<string, Collection<string, IGuildInviter>> = ...

Guild => invited user => invited by

-
Invites: Collection<string, IGuildInvite[]> = ...
RequiredEvents: (keyof ClientEvents)[] = ...
RequiredIntents: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[] = ...

Methods

Generated using TypeDoc

\ No newline at end of file +
Invites: Collection<string, IGuildInvite[]> = ...
RequiredEvents: (keyof ClientEvents)[] = ...
RequiredIntents: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[] = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Logger.html b/docs/classes/Logger.html index 00ef8a5d76..e800e8d7ac 100644 --- a/docs/classes/Logger.html +++ b/docs/classes/Logger.html @@ -1,4 +1,4 @@ -Logger | @tryforge/forgescript

Constructors

constructor +Logger | @tryforge/forgescript

Constructors

Properties

Constructors

Properties

Colors: {
    0: Chalk;
    1: Chalk;
    2: Chalk;
    3: Chalk;
    4: Chalk;
} = ...

Type declaration

  • 0: Chalk
  • 1: Chalk
  • 2: Chalk
  • 3: Chalk
  • 4: Chalk
DateColor: Chalk = clc.green.bold
Priority: LogPriority = LogPriority.Medium

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

Colors: {
    0: Chalk;
    1: Chalk;
    2: Chalk;
    3: Chalk;
    4: Chalk;
} = ...

Type declaration

  • 0: Chalk
  • 1: Chalk
  • 2: Chalk
  • 3: Chalk
  • 4: Chalk
DateColor: Chalk = clc.green.bold
Priority: LogPriority = LogPriority.Medium

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/NativeCommandManager.html b/docs/classes/NativeCommandManager.html index 28e2d9592c..f3aa161083 100644 --- a/docs/classes/NativeCommandManager.html +++ b/docs/classes/NativeCommandManager.html @@ -1,4 +1,4 @@ -NativeCommandManager | @tryforge/forgescript

Hierarchy

Constructors

constructor +NativeCommandManager | @tryforge/forgescript

Hierarchy

Constructors

Properties

Accessors

Constructors

Properties

handlerName: string = NativeEventName
defaultMaxListeners: number

Accessors

Methods

  • Type Parameters

    • U extends "update"

    Parameters

    Returns boolean

  • Type Parameters

    • U extends "update"

    Returns U[]

  • Parameters

    • type: "update"

    Returns number

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

handlerName: string = NativeEventName
defaultMaxListeners: number

Accessors

Methods

  • Type Parameters

    • U extends "update"

    Parameters

    Returns boolean

  • Type Parameters

    • U extends "update"

    Returns U[]

  • Parameters

    • type: "update"

    Returns number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/NativeFunction.html b/docs/classes/NativeFunction.html index b64ee919f0..7d2ac445e6 100644 --- a/docs/classes/NativeFunction.html +++ b/docs/classes/NativeFunction.html @@ -1,6 +1,6 @@ -NativeFunction | @tryforge/forgescript

Class NativeFunction<T, Unwrap>

Type Parameters

  • T extends [...IArg[]] = IArg[]

  • Unwrap extends boolean = boolean

Constructors

constructor +NativeFunction | @tryforge/forgescript

Class NativeFunction<T, Unwrap>

Type Parameters

  • T extends [...IArg[]] = IArg[]

  • Unwrap extends boolean = boolean

Constructors

Properties

Accessors

Constructors

Properties

async: boolean
data: INativeFunction<T, Unwrap>
path: string

Accessors

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

async: boolean
data: INativeFunction<T, Unwrap>
path: string

Accessors

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Return.html b/docs/classes/Return.html index 0620a04b6e..1ee93cf9ce 100644 --- a/docs/classes/Return.html +++ b/docs/classes/Return.html @@ -1,4 +1,4 @@ -Return | @tryforge/forgescript

Type Parameters

Constructors

constructor +Return | @tryforge/forgescript

Type Parameters

Constructors

Properties

Accessors

break @@ -7,4 +7,4 @@ return stop success -

Constructors

Properties

type: T
value: ReturnValue<T>

Accessors

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

type: T
value: ReturnValue<T>

Accessors

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ThreadManager.html b/docs/classes/ThreadManager.html index ba4127c7f6..9a29f6c943 100644 --- a/docs/classes/ThreadManager.html +++ b/docs/classes/ThreadManager.html @@ -1,4 +1,4 @@ -ThreadManager | @tryforge/forgescript

Constructors

constructor +ThreadManager | @tryforge/forgescript

Constructors

Properties

Constructors

Properties

available: Set<Worker> = ...
busy: Set<Worker> = ...
client: ForgeClient
executing: Map<number, IThreadTask> = ...
increment: number = 0
maxWorkerCount: number = 1
queue: Map<number, IThreadTask> = ...

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

available: Set<Worker> = ...
busy: Set<Worker> = ...
client: ForgeClient
executing: Map<number, IThreadTask> = ...
increment: number = 0
maxWorkerCount: number = 1
queue: Map<number, IThreadTask> = ...

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/VoiceTracker.html b/docs/classes/VoiceTracker.html index be8abb9bad..eda99c7915 100644 --- a/docs/classes/VoiceTracker.html +++ b/docs/classes/VoiceTracker.html @@ -1,3 +1,3 @@ -VoiceTracker | @tryforge/forgescript

Constructors

constructor +VoiceTracker | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Constructors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/ArgType.html b/docs/enums/ArgType.html index 87a36309fb..74742c6565 100644 --- a/docs/enums/ArgType.html +++ b/docs/enums/ArgType.html @@ -1,4 +1,4 @@ -ArgType | @tryforge/forgescript

Enumeration ArgType

Enumeration Members

ApplicationEmoji +ArgType | @tryforge/forgescript

Enumeration ArgType

Enumeration Members

Enumeration Members

ApplicationEmoji: 29
Attachment: 20
AutomodRule: 30
BigInt: 2
Boolean: 19
Channel: 23
Color: 14
Date: 8
Emoji: 17
Enum: 15
ForumTag: 16
Guild: 9
GuildEmoji: 18
Invite: 11
Json: 13
Member: 28
Message: 22
Number: 6
OverwritePermission: 5
Permission: 12
Reaction: 21
Role: 24
RoleOrUser: 10
ScheduledEvent: 31
SoundboardSound: 33
StageInstance: 32
Sticker: 26
String: 1
Template: 34
TextChannel: 4
Time: 27
URL: 0
Unknown: 3
User: 7
Webhook: 25

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

ApplicationEmoji: 29
Attachment: 20
AutomodRule: 30
BigInt: 2
Boolean: 19
Channel: 23
Color: 14
Date: 8
Emoji: 17
Enum: 15
ForumTag: 16
Guild: 9
GuildEmoji: 18
Invite: 11
Json: 13
Member: 28
Message: 22
Number: 6
OverwritePermission: 5
Permission: 12
Reaction: 21
Role: 24
RoleOrUser: 10
ScheduledEvent: 31
SoundboardSound: 33
StageInstance: 32
Sticker: 26
String: 1
Template: 34
TextChannel: 4
Time: 27
URL: 0
Unknown: 3
User: 7
Webhook: 25

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/CalendarType.html b/docs/enums/CalendarType.html index d98ed6230b..af96a0fca8 100644 --- a/docs/enums/CalendarType.html +++ b/docs/enums/CalendarType.html @@ -1,4 +1,4 @@ -CalendarType | @tryforge/forgescript

Enumeration CalendarType

Enumeration Members

Buddhist +CalendarType | @tryforge/forgescript

Enumeration CalendarType

Enumeration Members

Enumeration Members

Buddhist: "buddhist"
Chinese: "chinese"
Coptic: "coptic"
Dangi: "dangi"
Ethioaa: "ethioaa"
Ethiopic: "ethiopic"
Gregory: "gregory"
Hebrew: "hebrew"
Indian: "indian"
Islamic: "islamic"
IslamicCivil: "islamic-civil"
IslamicRgsa: "islamic-rgsa"
IslamicTbla: "islamic-tbla"
IslamicUmalqura: "islamic-umalqura"
Iso8601: "iso8601"
Japanese: "japanese"
Persian: "persian"
Roc: "roc"

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

Buddhist: "buddhist"
Chinese: "chinese"
Coptic: "coptic"
Dangi: "dangi"
Ethioaa: "ethioaa"
Ethiopic: "ethiopic"
Gregory: "gregory"
Hebrew: "hebrew"
Indian: "indian"
Islamic: "islamic"
IslamicCivil: "islamic-civil"
IslamicRgsa: "islamic-rgsa"
IslamicTbla: "islamic-tbla"
IslamicUmalqura: "islamic-umalqura"
Iso8601: "iso8601"
Japanese: "japanese"
Persian: "persian"
Roc: "roc"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/ErrorType.html b/docs/enums/ErrorType.html index 8ca5661d53..7e578b2bdf 100644 --- a/docs/enums/ErrorType.html +++ b/docs/enums/ErrorType.html @@ -1,4 +1,4 @@ -ErrorType | @tryforge/forgescript

Enumeration ErrorType

Enumeration Members

CompilerError +ErrorType | @tryforge/forgescript

Enumeration ErrorType

Enumeration Members

CompilerError: "$1 at $2:$3 ($4)"
Custom: "$1"
ExtensionNotFound: "Extension $1 does not seem to be loaded but is being used."
InvalidArgType: "Given value $1 for argument $2 is not of type $3"
MissingApplicationCommandData: "An application command is missing data property ($1)"
MissingArg: "Function $1 is missing argument $2"
MissingCommandType: "A command is missing its type ($1)"
MissingFields: "Function $1 requires brackets"
RequiredExtension: "Extension $1 requires the next extension: $2 loaded to work"
UnknownXName: "Unknown $1 with name $2"
UnsupportedExtensionVersion: "Extension $1 does not work for your ForgeScript version: $2"

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

CompilerError: "$1 at $2:$3 ($4)"
Custom: "$1"
ExtensionNotFound: "Extension $1 does not seem to be loaded but is being used."
InvalidArgType: "Given value $1 for argument $2 is not of type $3"
MissingApplicationCommandData: "An application command is missing data property ($1)"
MissingArg: "Function $1 is missing argument $2"
MissingCommandType: "A command is missing its type ($1)"
MissingFields: "Function $1 requires brackets"
RequiredExtension: "Extension $1 requires the next extension: $2 loaded to work"
UnknownXName: "Unknown $1 with name $2"
UnsupportedExtensionVersion: "Extension $1 does not work for your ForgeScript version: $2"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/HTTPContentType.html b/docs/enums/HTTPContentType.html index adcca79958..be9e088084 100644 --- a/docs/enums/HTTPContentType.html +++ b/docs/enums/HTTPContentType.html @@ -1,3 +1,3 @@ -HTTPContentType | @tryforge/forgescript

Enumeration HTTPContentType

Enumeration Members

Json +HTTPContentType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

Json: 0
Text: 1

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/LogPriority.html b/docs/enums/LogPriority.html index 5eec3fe81d..cc67150346 100644 --- a/docs/enums/LogPriority.html +++ b/docs/enums/LogPriority.html @@ -1,11 +1,11 @@ -LogPriority | @tryforge/forgescript

Enumeration LogPriority

Enumeration Members

High +LogPriority | @tryforge/forgescript

Enumeration LogPriority

Enumeration Members

Enumeration Members

High: 4

Logs info, debug data, warnings and errors

-
Low: 2

Logs only info and errors

-
Medium: 3

Logs only info, warnings and errors

-
None: 0

Does not log anything

-
VeryLow: 1

Logs only info

-

Generated using TypeDoc

\ No newline at end of file +
Low: 2

Logs only info and errors

+
Medium: 3

Logs only info, warnings and errors

+
None: 0

Does not log anything

+
VeryLow: 1

Logs only info

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/LogType.html b/docs/enums/LogType.html index ecd98a6a39..ef76ff2070 100644 --- a/docs/enums/LogType.html +++ b/docs/enums/LogType.html @@ -1,6 +1,6 @@ -LogType | @tryforge/forgescript

Enumeration LogType

Enumeration Members

Debug +LogType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

Debug: 2
Deprecated: 1
Error: 4
Info: 3
Warn: 0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/OperatorType.html b/docs/enums/OperatorType.html index 5833a731bc..646dec6ef4 100644 --- a/docs/enums/OperatorType.html +++ b/docs/enums/OperatorType.html @@ -1,8 +1,8 @@ -OperatorType | @tryforge/forgescript

Enumeration OperatorType

Enumeration Members

Eq +OperatorType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

Eq: "=="
Gt: ">"
Gte: ">="
Lt: "<"
Lte: "<="
None: "unknown"
NotEq: "!="

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/RegistrationType.html b/docs/enums/RegistrationType.html index 0b280256ad..a44879eb91 100644 --- a/docs/enums/RegistrationType.html +++ b/docs/enums/RegistrationType.html @@ -1,4 +1,4 @@ -RegistrationType | @tryforge/forgescript

Enumeration RegistrationType

Enumeration Members

All +RegistrationType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

All: 2
Global: 0
Guild: 1

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/ReturnType.html b/docs/enums/ReturnType.html index e3b83cc7a5..4479488ede 100644 --- a/docs/enums/ReturnType.html +++ b/docs/enums/ReturnType.html @@ -1,7 +1,7 @@ -ReturnType | @tryforge/forgescript

Enumeration ReturnType

Enumeration Members

Break +ReturnType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

Break: 4
Continue: 5
Error: 0
Return: 3
Stop: 1
Success: 2

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/functions/generateMetadata.html b/docs/functions/generateMetadata.html index 0ae11a6b54..9fbcf59987 100644 --- a/docs/functions/generateMetadata.html +++ b/docs/functions/generateMetadata.html @@ -1 +1 @@ -generateMetadata | @tryforge/forgescript

Function generateMetadata

  • Parameters

    • functionsAbsolutePath: string
    • Optional mainCategoryName: string
    • Optional eventName: string
    • warnOnNoOutput: boolean = false
    • Optional expose: Record<string, EnumLike>
    • Optional eventsAbsolutePath: string
    • translate: string[] = []

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +generateMetadata | @tryforge/forgescript

Function generateMetadata

  • Parameters

    • functionsAbsolutePath: string
    • Optional mainCategoryName: string
    • Optional eventName: string
    • warnOnNoOutput: boolean = false
    • Optional expose: Record<string, EnumLike>
    • Optional eventsAbsolutePath: string
    • translate: string[] = []

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IApplicationCommandData.html b/docs/interfaces/IApplicationCommandData.html index a2ee84a0e4..891f83f10a 100644 --- a/docs/interfaces/IApplicationCommandData.html +++ b/docs/interfaces/IApplicationCommandData.html @@ -1,6 +1,6 @@ -IApplicationCommandData | @tryforge/forgescript

Interface IApplicationCommandData

interface IApplicationCommandData {
    code: string;
    data: RESTPostAPIApplicationCommandsJSONBody | SlashCommandBuilder | ContextMenuCommandBuilder;
    independent?: boolean;
    path?: null | string;
    type?: RegistrationType;
}

Properties

code +IApplicationCommandData | @tryforge/forgescript

Interface IApplicationCommandData

interface IApplicationCommandData {
    code: string;
    data: RESTPostAPIApplicationCommandsJSONBody | SlashCommandBuilder | ContextMenuCommandBuilder;
    independent?: boolean;
    path?: null | string;
    type?: RegistrationType;
}

Properties

code: string
data: RESTPostAPIApplicationCommandsJSONBody | SlashCommandBuilder | ContextMenuCommandBuilder
independent?: boolean
path?: null | string

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
data: RESTPostAPIApplicationCommandsJSONBody | SlashCommandBuilder | ContextMenuCommandBuilder
independent?: boolean
path?: null | string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IArg.html b/docs/interfaces/IArg.html index e1053189cf..463c5bfe13 100644 --- a/docs/interfaces/IArg.html +++ b/docs/interfaces/IArg.html @@ -1,4 +1,4 @@ -IArg | @tryforge/forgescript

Interface IArg<Type, Required, Rest, Enum>

interface IArg {
    check?: ((i) => boolean);
    condition?: boolean;
    delimiter?: string;
    description: string;
    enum?: Enum;
    name: string;
    pointer?: number;
    pointerProperty?: string;
    required?: Required;
    rest: Rest;
    type: Type;
}

Type Parameters

Properties

check? +IArg | @tryforge/forgescript

Interface IArg<Type, Required, Rest, Enum>

interface IArg {
    check?: ((i) => boolean);
    condition?: boolean;
    delimiter?: string;
    description: string;
    enum?: Enum;
    name: string;
    pointer?: number;
    pointerProperty?: string;
    required?: Required;
    rest: Rest;
    type: Type;
}

Type Parameters

Properties

check?: ((i) => boolean)

Type declaration

    • (i): boolean
    • Parameters

      Returns boolean

condition?: boolean
delimiter?: string
description: string
enum?: Enum
name: string
pointer?: number

Arg index to look at when a type requires a previously guild arg or depends on something.

-
pointerProperty?: string
required?: Required

Defaults to false

-
rest: Rest

Whether this argument is an array of values

-
type: Type

Generated using TypeDoc

\ No newline at end of file +

Properties

check?: ((i) => boolean)

Type declaration

    • (i): boolean
    • Parameters

      Returns boolean

condition?: boolean
delimiter?: string
description: string
enum?: Enum
name: string
pointer?: number

Arg index to look at when a type requires a previously guild arg or depends on something.

+
pointerProperty?: string
required?: Required

Defaults to false.

+
rest: Rest

Whether this argument is an array of values.

+
type: Type

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IAutomodRuleOptions.html b/docs/interfaces/IAutomodRuleOptions.html index 97e2abce7e..b3ba79d321 100644 --- a/docs/interfaces/IAutomodRuleOptions.html +++ b/docs/interfaces/IAutomodRuleOptions.html @@ -1,5 +1,5 @@ -IAutomodRuleOptions | @tryforge/forgescript

Interface IAutomodRuleOptions

interface IAutomodRuleOptions {
    actions: AutoModerationActionOptions[];
    exemptChannels?: string[];
    exemptRoles?: string[];
    triggerMetadata?: AutoModerationTriggerMetadataOptions;
}

Properties

actions +IAutomodRuleOptions | @tryforge/forgescript

Interface IAutomodRuleOptions

interface IAutomodRuleOptions {
    actions: AutoModerationActionOptions[];
    exemptChannels?: string[];
    exemptRoles?: string[];
    triggerMetadata?: AutoModerationTriggerMetadataOptions;
}

Properties

actions: AutoModerationActionOptions[]
exemptChannels?: string[]
exemptRoles?: string[]
triggerMetadata?: AutoModerationTriggerMetadataOptions

Generated using TypeDoc

\ No newline at end of file +

Properties

actions: AutoModerationActionOptions[]
exemptChannels?: string[]
exemptRoles?: string[]
triggerMetadata?: AutoModerationTriggerMetadataOptions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IBaseCommand.html b/docs/interfaces/IBaseCommand.html index f2266fa18a..8c18aab127 100644 --- a/docs/interfaces/IBaseCommand.html +++ b/docs/interfaces/IBaseCommand.html @@ -1,4 +1,4 @@ -IBaseCommand | @tryforge/forgescript

Interface IBaseCommand<T>

interface IBaseCommand {
    aliases?: string[];
    allowBots?: boolean;
    allowedInteractionTypes?: CommandInteractionTypes[];
    code: string;
    disableConsoleErrors?: boolean;
    guildOnly?: boolean;
    name?: string;
    path?: string;
    type: T;
    unloadable?: boolean;
    unprefixed?: boolean;
    [x: PropertyKey]: unknown;
}

Type Parameters

  • T

Indexable

[x: PropertyKey]: unknown

Properties

aliases? +IBaseCommand | @tryforge/forgescript

Interface IBaseCommand<T>

interface IBaseCommand {
    aliases?: string[];
    allowBots?: boolean;
    allowedInteractionTypes?: CommandInteractionTypes[];
    code: string;
    disableConsoleErrors?: boolean;
    guildOnly?: boolean;
    name?: string;
    path?: string;
    type: T;
    unloadable?: boolean;
    unprefixed?: boolean;
    [x: PropertyKey]: unknown;
}

Type Parameters

  • T

Indexable

[x: PropertyKey]: unknown

Properties

aliases?: string[]
allowBots?: boolean
allowedInteractionTypes?: CommandInteractionTypes[]
code: string
disableConsoleErrors?: boolean
guildOnly?: boolean
name?: string
path?: string

Do not define

-
type: T
unloadable?: boolean

Do not define

-
unprefixed?: boolean

Generated using TypeDoc

\ No newline at end of file +

Properties

aliases?: string[]
allowBots?: boolean
allowedInteractionTypes?: CommandInteractionTypes[]
code: string
disableConsoleErrors?: boolean
guildOnly?: boolean
name?: string
path?: string

Do not define

+
type: T
unloadable?: boolean

Do not define

+
unprefixed?: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICommandManagerEvents.html b/docs/interfaces/ICommandManagerEvents.html index 37c2c4485c..602f687476 100644 --- a/docs/interfaces/ICommandManagerEvents.html +++ b/docs/interfaces/ICommandManagerEvents.html @@ -1,2 +1,2 @@ -ICommandManagerEvents | @tryforge/forgescript

Interface ICommandManagerEvents<T>

interface ICommandManagerEvents {
    update: (() => void);
}

Type Parameters

  • T

Properties

Properties

update: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc

\ No newline at end of file +ICommandManagerEvents | @tryforge/forgescript

Interface ICommandManagerEvents<T>

interface ICommandManagerEvents {
    update: (() => void);
}

Type Parameters

  • T

Properties

Properties

update: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICompilationResult.html b/docs/interfaces/ICompilationResult.html index 40385914c1..d3af14cf25 100644 --- a/docs/interfaces/ICompilationResult.html +++ b/docs/interfaces/ICompilationResult.html @@ -1,4 +1,4 @@ -ICompilationResult | @tryforge/forgescript

Interface ICompilationResult

interface ICompilationResult {
    code: string;
    functions: ICompiledFunction[];
    resolve: WrappedCode;
}

Properties

code +ICompilationResult | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
functions: ICompiledFunction[]
resolve: WrappedCode

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICompiledCommand.html b/docs/interfaces/ICompiledCommand.html index 324c5e7c81..78dc439efd 100644 --- a/docs/interfaces/ICompiledCommand.html +++ b/docs/interfaces/ICompiledCommand.html @@ -1,3 +1,3 @@ -ICompiledCommand | @tryforge/forgescript

Interface ICompiledCommand

interface ICompiledCommand {
    code: IExtendedCompilationResult;
    name?: IExtendedCompilationResult;
}

Properties

code +ICompiledCommand | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICompiledFunction.html b/docs/interfaces/ICompiledFunction.html index a1dcc55f49..83f79298d2 100644 --- a/docs/interfaces/ICompiledFunction.html +++ b/docs/interfaces/ICompiledFunction.html @@ -1,10 +1,10 @@ -ICompiledFunction | @tryforge/forgescript

Interface ICompiledFunction

interface ICompiledFunction {
    count: null | string;
    fields: null | (ICompiledFunctionField | ICompiledFunctionConditionField)[];
    id: string;
    index: number;
    name: string;
    negated: boolean;
    silent: boolean;
}

Properties

count +ICompiledFunction | @tryforge/forgescript

Interface ICompiledFunction

interface ICompiledFunction {
    count: null | string;
    fields: null | (ICompiledFunctionField | ICompiledFunctionConditionField)[];
    id: string;
    index: number;
    name: string;
    negated: boolean;
    silent: boolean;
}

Properties

count: null | string
id: string
index: number
name: string
negated: boolean

Whether output is not desirable

-
silent: boolean

Whether error will be silenced and just exit execution

-

Generated using TypeDoc

\ No newline at end of file +

Properties

count: null | string
id: string
index: number
name: string
negated: boolean

Whether output is not desirable

+
silent: boolean

Whether error will be silenced and just exit execution

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICompiledFunctionConditionField.html b/docs/interfaces/ICompiledFunctionConditionField.html index 96f3cb9d1d..dcf25fad7c 100644 --- a/docs/interfaces/ICompiledFunctionConditionField.html +++ b/docs/interfaces/ICompiledFunctionConditionField.html @@ -1,5 +1,5 @@ -ICompiledFunctionConditionField | @tryforge/forgescript

Interface ICompiledFunctionConditionField

interface ICompiledFunctionConditionField {
    lhs: ICompiledFunctionField;
    op: OperatorType;
    resolve: WrappedConditionCode;
    rhs?: ICompiledFunctionField;
}

Properties

lhs +ICompiledFunctionConditionField | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICompiledFunctionField.html b/docs/interfaces/ICompiledFunctionField.html index 99acc47959..4c3e592db9 100644 --- a/docs/interfaces/ICompiledFunctionField.html +++ b/docs/interfaces/ICompiledFunctionField.html @@ -1,4 +1,4 @@ -ICompiledFunctionField | @tryforge/forgescript

Interface ICompiledFunctionField

interface ICompiledFunctionField {
    functions: ICompiledFunction[];
    resolve: WrappedCode;
    value: string;
}

Properties

functions +ICompiledFunctionField | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

functions: ICompiledFunction[]
resolve: WrappedCode
value: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IComponentOptions.html b/docs/interfaces/IComponentOptions.html index d44a6ab3ea..31101bcfc6 100644 --- a/docs/interfaces/IComponentOptions.html +++ b/docs/interfaces/IComponentOptions.html @@ -1,3 +1,5 @@ -IComponentOptions | @tryforge/forgescript

Interface IComponentOptions

interface IComponentOptions {
    gallery: MediaGalleryBuilder;
    section: SectionBuilder;
}

Properties

gallery +IComponentOptions | @tryforge/forgescript

Interface IComponentOptions

interface IComponentOptions {
    gallery: MediaGalleryBuilder;
    label: LabelBuilder;
    required?: boolean;
    section: SectionBuilder;
}

Properties

gallery: MediaGalleryBuilder
section: SectionBuilder

Generated using TypeDoc

\ No newline at end of file +

Properties

gallery: MediaGalleryBuilder
label: LabelBuilder
required?: boolean
section: SectionBuilder

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IContextCache.html b/docs/interfaces/IContextCache.html index 6dc5a0a215..9eea204972 100644 --- a/docs/interfaces/IContextCache.html +++ b/docs/interfaces/IContextCache.html @@ -1,4 +1,4 @@ -IContextCache | @tryforge/forgescript

Interface IContextCache

interface IContextCache {
    automod: null | AutoModerationActionExecution;
    channel: null | BaseChannel;
    emoji: null | Emoji;
    entitlement: null | Entitlement;
    guild: null | Guild;
    interaction: null | Interaction;
    member: null | GuildMember;
    message: null | Message<boolean>;
    reaction: null | MessageReaction;
    role: null | Role;
    sound: null | SoundboardSound;
    sticker: null | Sticker;
    subscription: null | Subscription;
    user: null | User;
}

Properties

automod +IContextCache | @tryforge/forgescript

Interface IContextCache

interface IContextCache {
    automod: null | AutoModerationActionExecution;
    channel: null | BaseChannel;
    emoji: null | Emoji;
    entitlement: null | Entitlement;
    guild: null | Guild;
    interaction: null | Interaction;
    member: null | GuildMember;
    message: null | Message<boolean>;
    reaction: null | MessageReaction;
    role: null | Role;
    sound: null | SoundboardSound;
    sticker: null | Sticker;
    subscription: null | Subscription;
    user: null | User;
}

Properties

Properties

automod: null | AutoModerationActionExecution
channel: null | BaseChannel
emoji: null | Emoji
entitlement: null | Entitlement
guild: null | Guild
interaction: null | Interaction
member: null | GuildMember
message: null | Message<boolean>
reaction: null | MessageReaction
role: null | Role
sound: null | SoundboardSound
sticker: null | Sticker
subscription: null | Subscription
user: null | User

Generated using TypeDoc

\ No newline at end of file +

Properties

automod: null | AutoModerationActionExecution
channel: null | BaseChannel
emoji: null | Emoji
entitlement: null | Entitlement
guild: null | Guild
interaction: null | Interaction
member: null | GuildMember
message: null | Message<boolean>
reaction: null | MessageReaction
role: null | Role
sound: null | SoundboardSound
sticker: null | Sticker
subscription: null | Subscription
user: null | User

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ICooldown.html b/docs/interfaces/ICooldown.html index 94d77931d0..d68e56056b 100644 --- a/docs/interfaces/ICooldown.html +++ b/docs/interfaces/ICooldown.html @@ -1,3 +1,3 @@ -ICooldown | @tryforge/forgescript
interface ICooldown {
    duration: number;
    startedAt: number;
}

Properties

duration +ICooldown | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

duration: number
startedAt: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IEvent.html b/docs/interfaces/IEvent.html index 49304ba7b4..1b3e4119e1 100644 --- a/docs/interfaces/IEvent.html +++ b/docs/interfaces/IEvent.html @@ -1,7 +1,7 @@ -IEvent | @tryforge/forgescript

Interface IEvent<Events, T>

interface IEvent {
    deprecated?: boolean;
    description: string;
    intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[];
    listener: ((this, ...args) => void | Promise<void>);
    name: T;
    version?: string;
}

Type Parameters

  • Events

  • T extends keyof Events

Properties

deprecated? +IEvent | @tryforge/forgescript

Interface IEvent<Events, T>

interface IEvent {
    deprecated?: boolean;
    description: string;
    intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[];
    listener: ((this, ...args) => void | Promise<void>);
    name: T;
    version?: string;
}

Type Parameters

  • Events

  • T extends keyof Events

Properties

deprecated?: boolean
description: string
intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[]
listener: ((this, ...args) => void | Promise<void>)

Type declaration

    • (this, ...args): void | Promise<void>
    • Parameters

      Returns void | Promise<void>

name: T
version?: string

Generated using TypeDoc

\ No newline at end of file +

Properties

deprecated?: boolean
description: string
intents?: ("Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls")[]
listener: ((this, ...args) => void | Promise<void>)

Type declaration

    • (this, ...args): void | Promise<void>
    • Parameters

      Returns void | Promise<void>

name: T
version?: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IExtendedCompilationResult.html b/docs/interfaces/IExtendedCompilationResult.html index beb6ded6a5..796d0a58d5 100644 --- a/docs/interfaces/IExtendedCompilationResult.html +++ b/docs/interfaces/IExtendedCompilationResult.html @@ -1,4 +1,4 @@ -IExtendedCompilationResult | @tryforge/forgescript

Interface IExtendedCompilationResult

interface IExtendedCompilationResult {
    code: string;
    functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[];
    resolve: WrappedCode;
}

Hierarchy

Properties

code +IExtendedCompilationResult | @tryforge/forgescript

Interface IExtendedCompilationResult

interface IExtendedCompilationResult {
    code: string;
    functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[];
    resolve: WrappedCode;
}

Hierarchy

Properties

Properties

code: string
functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[]
resolve: WrappedCode

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[]
resolve: WrappedCode

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IExtendedCompiledFunction.html b/docs/interfaces/IExtendedCompiledFunction.html index 741eda3830..cb74a05df5 100644 --- a/docs/interfaces/IExtendedCompiledFunction.html +++ b/docs/interfaces/IExtendedCompiledFunction.html @@ -1,10 +1,10 @@ -IExtendedCompiledFunction | @tryforge/forgescript

Interface IExtendedCompiledFunction

interface IExtendedCompiledFunction {
    count: null | string;
    fields: null | (IExtendedCompiledFunctionField | IExtendedCompiledFunctionConditionField)[];
    id: string;
    index: number;
    name: string;
    negated: boolean;
    silent: boolean;
}

Hierarchy

Properties

count +IExtendedCompiledFunction | @tryforge/forgescript

Interface IExtendedCompiledFunction

interface IExtendedCompiledFunction {
    count: null | string;
    fields: null | (IExtendedCompiledFunctionField | IExtendedCompiledFunctionConditionField)[];
    id: string;
    index: number;
    name: string;
    negated: boolean;
    silent: boolean;
}

Hierarchy

Properties

count: null | string
id: string
index: number
name: string
negated: boolean

Whether output is not desirable

-
silent: boolean

Whether error will be silenced and just exit execution

-

Generated using TypeDoc

\ No newline at end of file +

Properties

count: null | string
id: string
index: number
name: string
negated: boolean

Whether output is not desirable

+
silent: boolean

Whether error will be silenced and just exit execution

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IExtendedCompiledFunctionConditionField.html b/docs/interfaces/IExtendedCompiledFunctionConditionField.html index ff78a42f6d..94c3f162a0 100644 --- a/docs/interfaces/IExtendedCompiledFunctionConditionField.html +++ b/docs/interfaces/IExtendedCompiledFunctionConditionField.html @@ -1,5 +1,5 @@ -IExtendedCompiledFunctionConditionField | @tryforge/forgescript

Interface IExtendedCompiledFunctionConditionField

interface IExtendedCompiledFunctionConditionField {
    lhs: IExtendedCompiledFunctionField;
    op: OperatorType;
    resolve: WrappedConditionCode;
    rhs?: IExtendedCompiledFunctionField;
}

Hierarchy

Properties

lhs +IExtendedCompiledFunctionConditionField | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IExtendedCompiledFunctionField.html b/docs/interfaces/IExtendedCompiledFunctionField.html index 7961dc7652..1c28c1895d 100644 --- a/docs/interfaces/IExtendedCompiledFunctionField.html +++ b/docs/interfaces/IExtendedCompiledFunctionField.html @@ -1,5 +1,5 @@ -IExtendedCompiledFunctionField | @tryforge/forgescript

Interface IExtendedCompiledFunctionField

interface IExtendedCompiledFunctionField {
    functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[];
    resolve: WrappedCode;
    resolveArg?: ((ctx, arg, value, ref) => unknown);
    value: string;
}

Hierarchy

Properties

functions +IExtendedCompiledFunctionField | @tryforge/forgescript

Interface IExtendedCompiledFunctionField

interface IExtendedCompiledFunctionField {
    functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[];
    resolve: WrappedCode;
    resolveArg?: ((ctx, arg, value, ref) => unknown);
    value: string;
}

Hierarchy

Properties

functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[]
resolve: WrappedCode
resolveArg?: ((ctx, arg, value, ref) => unknown)

Type declaration

    • (ctx, arg, value, ref): unknown
    • Parameters

      Returns unknown

value: string

Generated using TypeDoc

\ No newline at end of file +

Properties

functions: CompiledFunction<IArg<ArgType, boolean, boolean, EnumLike<any>>[], boolean>[]
resolve: WrappedCode
resolveArg?: ((ctx, arg, value, ref) => unknown)

Type declaration

    • (ctx, arg, value, ref): unknown
    • Parameters

      Returns unknown

value: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IForgeClientOptions.html b/docs/interfaces/IForgeClientOptions.html index 274f69ca21..4bfbd39fd7 100644 --- a/docs/interfaces/IForgeClientOptions.html +++ b/docs/interfaces/IForgeClientOptions.html @@ -1,4 +1,4 @@ -IForgeClientOptions | @tryforge/forgescript

Interface IForgeClientOptions

interface IForgeClientOptions {
    allowBots?: boolean;
    allowedMentions?: MessageMentionOptions;
    closeTimeout?: number;
    commands?: string;
    disableConsoleErrors?: boolean;
    enforceNonce?: boolean;
    events?: (keyof ClientEvents)[];
    extensions?: ForgeExtension[];
    failIfNotExists?: boolean;
    functions?: string;
    intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>;
    jsonTransformer?: ((obj) => unknown);
    logLevel?: LogPriority;
    makeCache?: CacheFactory;
    mobile?: boolean;
    optionalGuildID?: boolean;
    partials?: readonly Partials[];
    prefixCaseInsensitive?: boolean;
    prefixes: IExtendedCompilationResult[];
    presence?: PresenceData;
    respondOnEdit?: number | boolean;
    rest?: Partial<RESTOptions>;
    restrictions?: IRestrictions;
    shardCount?: number;
    shards?: number | readonly number[] | "auto";
    sweepers?: SweeperOptions;
    token?: string;
    trackers?: ITrackers;
    useInviteSystem?: boolean;
    waitGuildTimeout?: number;
    ws?: WebSocketOptions;
}

Hierarchy

Properties

allowBots? +IForgeClientOptions | @tryforge/forgescript

Interface IForgeClientOptions

interface IForgeClientOptions {
    allowBots?: boolean;
    allowedMentions?: MessageMentionOptions;
    closeTimeout?: number;
    commands?: string;
    disableConsoleErrors?: boolean;
    enforceNonce?: boolean;
    events?: (keyof ClientEvents)[];
    extensions?: ForgeExtension[];
    failIfNotExists?: boolean;
    functions?: string;
    intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>;
    jsonTransformer?: ((obj) => unknown);
    logLevel?: LogPriority;
    makeCache?: CacheFactory;
    mobile?: boolean;
    optionalGuildID?: boolean;
    partials?: readonly Partials[];
    prefixCaseInsensitive?: boolean;
    prefixes: IExtendedCompilationResult[];
    presence?: PresenceData;
    respondOnEdit?: number | boolean;
    rest?: Partial<RESTOptions>;
    restrictions?: IRestrictions;
    shardCount?: number;
    shards?: number | readonly number[] | "auto";
    sweepers?: SweeperOptions;
    token?: string;
    trackers?: ITrackers;
    useInviteSystem?: boolean;
    waitGuildTimeout?: number;
    ws?: WebSocketOptions;
}

Hierarchy

Properties

allowBots?: boolean

Allows the bot to execute events triggered by other bots (and itself)

-
allowedMentions?: MessageMentionOptions
closeTimeout?: number
commands?: string

Specifies a folder (path) to load all commands from it

-
disableConsoleErrors?: boolean
enforceNonce?: boolean
events?: (keyof ClientEvents)[]

The discord.js events our bot will use

-
extensions?: ForgeExtension[]
failIfNotExists?: boolean
functions?: string
intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>
jsonTransformer?: ((obj) => unknown)

Type declaration

    • (obj): unknown
    • Parameters

      • obj: unknown

      Returns unknown

logLevel?: LogPriority

Specifies the logs to be received

-
makeCache?: CacheFactory
mobile?: boolean

This will connect the client to Discord with the mobile status

-
optionalGuildID?: boolean

Deprecated

Does not work

-
partials?: readonly Partials[]
prefixCaseInsensitive?: boolean

Whether prefixes should be case-insensitive, this only affects letters

-
presence?: PresenceData
respondOnEdit?: number | boolean

Allows the bot to re-use messages that were edited to find possibly command calls. +

allowedMentions?: MessageMentionOptions
closeTimeout?: number
commands?: string

Specifies a folder (path) to load all commands from it

+
disableConsoleErrors?: boolean
enforceNonce?: boolean
events?: (keyof ClientEvents)[]

The discord.js events our bot will use

+
extensions?: ForgeExtension[]
failIfNotExists?: boolean
functions?: string
intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>
jsonTransformer?: ((obj) => unknown)

Type declaration

    • (obj): unknown
    • Parameters

      • obj: unknown

      Returns unknown

logLevel?: LogPriority

Specifies the logs to be received

+
makeCache?: CacheFactory
mobile?: boolean

This will connect the client to Discord with the mobile status

+
optionalGuildID?: boolean

Deprecated

Does not work

+
partials?: readonly Partials[]
prefixCaseInsensitive?: boolean

Whether prefixes should be case-insensitive, this only affects letters

+
presence?: PresenceData
respondOnEdit?: number | boolean

Allows the bot to re-use messages that were edited to find possibly command calls. If a number is passed, it's treated as the amount of milliseconds that can pass before the message becomes completely unusable.

-
rest?: Partial<RESTOptions>
restrictions?: IRestrictions
shardCount?: number
shards?: number | readonly number[] | "auto"
sweepers?: SweeperOptions
token?: string
trackers?: ITrackers
useInviteSystem?: boolean

Deprecated

use trackers: { invites: true } instead

-
waitGuildTimeout?: number
ws?: WebSocketOptions

Generated using TypeDoc

\ No newline at end of file +
rest?: Partial<RESTOptions>
restrictions?: IRestrictions
shardCount?: number
shards?: number | readonly number[] | "auto"
sweepers?: SweeperOptions
token?: string
trackers?: ITrackers
useInviteSystem?: boolean

Deprecated

use trackers: { invites: true } instead

+
waitGuildTimeout?: number
ws?: WebSocketOptions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IForgeFunction.html b/docs/interfaces/IForgeFunction.html index dc9f06810d..1210523808 100644 --- a/docs/interfaces/IForgeFunction.html +++ b/docs/interfaces/IForgeFunction.html @@ -1,7 +1,7 @@ -IForgeFunction | @tryforge/forgescript

Interface IForgeFunction

interface IForgeFunction {
    brackets?: boolean;
    code: string;
    firstParamCondition?: boolean;
    name: string;
    params?: (string | IForgeFunctionParam)[];
    path?: string;
}

Properties

brackets? +IForgeFunction | @tryforge/forgescript

Interface IForgeFunction

interface IForgeFunction {
    brackets?: boolean;
    code: string;
    firstParamCondition?: boolean;
    name: string;
    params?: (string | IForgeFunctionParam)[];
    path?: string;
}

Properties

brackets?: boolean
code: string
firstParamCondition?: boolean
name: string
params?: (string | IForgeFunctionParam)[]
path?: string

Generated using TypeDoc

\ No newline at end of file +

Properties

brackets?: boolean
code: string
firstParamCondition?: boolean
name: string
params?: (string | IForgeFunctionParam)[]
path?: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IForgeFunctionParam.html b/docs/interfaces/IForgeFunctionParam.html index 0365d897f6..2ddb45c09c 100644 --- a/docs/interfaces/IForgeFunctionParam.html +++ b/docs/interfaces/IForgeFunctionParam.html @@ -1,5 +1,5 @@ -IForgeFunctionParam | @tryforge/forgescript

Interface IForgeFunctionParam

interface IForgeFunctionParam {
    name: string;
    required?: boolean;
    rest?: boolean;
    type?: ArgType | "URL" | "String" | "BigInt" | "Unknown" | "TextChannel" | "OverwritePermission" | "Number" | "User" | "Date" | "Guild" | "RoleOrUser" | "Invite" | "Permission" | "Json" | "Color" | "Enum" | "ForumTag" | "Emoji" | "GuildEmoji" | "Boolean" | "Attachment" | "Reaction" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "Time" | "Member" | "ApplicationEmoji" | "AutomodRule" | "ScheduledEvent" | "StageInstance" | "SoundboardSound" | "Template";
}

Properties

name +IForgeFunctionParam | @tryforge/forgescript

Interface IForgeFunctionParam

interface IForgeFunctionParam {
    name: string;
    required?: boolean;
    rest?: boolean;
    type?: ArgType | "URL" | "String" | "BigInt" | "Unknown" | "TextChannel" | "OverwritePermission" | "Number" | "User" | "Date" | "Guild" | "RoleOrUser" | "Invite" | "Permission" | "Json" | "Color" | "Enum" | "ForumTag" | "Emoji" | "GuildEmoji" | "Boolean" | "Attachment" | "Reaction" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "Time" | "Member" | "ApplicationEmoji" | "AutomodRule" | "ScheduledEvent" | "StageInstance" | "SoundboardSound" | "Template";
}

Properties

name: string
required?: boolean
rest?: boolean
type?: ArgType | "URL" | "String" | "BigInt" | "Unknown" | "TextChannel" | "OverwritePermission" | "Number" | "User" | "Date" | "Guild" | "RoleOrUser" | "Invite" | "Permission" | "Json" | "Color" | "Enum" | "ForumTag" | "Emoji" | "GuildEmoji" | "Boolean" | "Attachment" | "Reaction" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "Time" | "Member" | "ApplicationEmoji" | "AutomodRule" | "ScheduledEvent" | "StageInstance" | "SoundboardSound" | "Template"

Generated using TypeDoc

\ No newline at end of file +

Properties

name: string
required?: boolean
rest?: boolean
type?: ArgType | "URL" | "String" | "BigInt" | "Unknown" | "TextChannel" | "OverwritePermission" | "Number" | "User" | "Date" | "Guild" | "RoleOrUser" | "Invite" | "Permission" | "Json" | "Color" | "Enum" | "ForumTag" | "Emoji" | "GuildEmoji" | "Boolean" | "Attachment" | "Reaction" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "Time" | "Member" | "ApplicationEmoji" | "AutomodRule" | "ScheduledEvent" | "StageInstance" | "SoundboardSound" | "Template"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IGuildInvite.html b/docs/interfaces/IGuildInvite.html index dfa15c9491..c6fbdeeb49 100644 --- a/docs/interfaces/IGuildInvite.html +++ b/docs/interfaces/IGuildInvite.html @@ -1,4 +1,4 @@ -IGuildInvite | @tryforge/forgescript

Interface IGuildInvite

interface IGuildInvite {
    code: string;
    userId: string;
    uses: number;
}

Properties

code +IGuildInvite | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
userId: string
uses: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IGuildInviter.html b/docs/interfaces/IGuildInviter.html index 12bf5a2857..8df3b87e79 100644 --- a/docs/interfaces/IGuildInviter.html +++ b/docs/interfaces/IGuildInviter.html @@ -1,3 +1,3 @@ -IGuildInviter | @tryforge/forgescript

Interface IGuildInviter

interface IGuildInviter {
    code: string;
    inviterId: string;
}

Properties

code +IGuildInviter | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
inviterId: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IHttpOptions.html b/docs/interfaces/IHttpOptions.html index 44dbd5631c..b0c0483a4b 100644 --- a/docs/interfaces/IHttpOptions.html +++ b/docs/interfaces/IHttpOptions.html @@ -1,7 +1,7 @@ -IHttpOptions | @tryforge/forgescript

Interface IHttpOptions

interface IHttpOptions {
    body: string;
    contentType?: HTTPContentType;
    form?: FormData;
    headers: Record<string, string>;
    method: string;
    response?: {
        headers?: Headers;
        ping?: number;
    };
}

Properties

body +IHttpOptions | @tryforge/forgescript

Interface IHttpOptions

interface IHttpOptions {
    body: string;
    contentType?: HTTPContentType;
    form?: FormData;
    headers: Record<string, string>;
    method: string;
    response?: {
        headers?: Headers;
        ping?: number;
    };
}

Properties

body: string
contentType?: HTTPContentType
form?: FormData
headers: Record<string, string>
method: string
response?: {
    headers?: Headers;
    ping?: number;
}

Type declaration

  • Optional headers?: Headers
  • Optional ping?: number

Generated using TypeDoc

\ No newline at end of file +

Properties

body: string
contentType?: HTTPContentType
form?: FormData
headers: Record<string, string>
method: string
response?: {
    headers?: Headers;
    ping?: number;
}

Type declaration

  • Optional headers?: Headers
  • Optional ping?: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ILocalFunctionData.html b/docs/interfaces/ILocalFunctionData.html index 9e0cd382ba..e13f471882 100644 --- a/docs/interfaces/ILocalFunctionData.html +++ b/docs/interfaces/ILocalFunctionData.html @@ -1,3 +1,3 @@ -ILocalFunctionData | @tryforge/forgescript

Interface ILocalFunctionData

interface ILocalFunctionData {
    args: string[];
    code: IExtendedCompiledFunctionField;
}

Properties

args +ILocalFunctionData | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

args: string[]

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ILocation.html b/docs/interfaces/ILocation.html index d77aa15e85..b0b3e58b93 100644 --- a/docs/interfaces/ILocation.html +++ b/docs/interfaces/ILocation.html @@ -1,3 +1,3 @@ -ILocation | @tryforge/forgescript
interface ILocation {
    column: number;
    line: number;
}

Properties

column +ILocation | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

column: number
line: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IMultipleArgResolve.html b/docs/interfaces/IMultipleArgResolve.html index 358fe26611..3c3ca734a9 100644 --- a/docs/interfaces/IMultipleArgResolve.html +++ b/docs/interfaces/IMultipleArgResolve.html @@ -1,3 +1,3 @@ -IMultipleArgResolve | @tryforge/forgescript

Interface IMultipleArgResolve<T, X>

interface IMultipleArgResolve {
    args: {
        [P in string | number | symbol]: UnwrapArgs<T>[X[P]]
    };
    return: Return<ReturnType>;
}

Type Parameters

  • T extends [...IArg[]]

  • X extends [...number[]]

Properties

args +IMultipleArgResolve | @tryforge/forgescript

Interface IMultipleArgResolve<T, X>

interface IMultipleArgResolve {
    args: {
        [P in string | number | symbol]: UnwrapArgs<T>[X[P]]
    };
    return: Return<ReturnType>;
}

Type Parameters

  • T extends [...IArg[]]

  • X extends [...number[]]

Properties

Properties

args: {
    [P in string | number | symbol]: UnwrapArgs<T>[X[P]]
}

Generated using TypeDoc

\ No newline at end of file +

Properties

args: {
    [P in string | number | symbol]: UnwrapArgs<T>[X[P]]
}

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/INativeFunction.html b/docs/interfaces/INativeFunction.html index 16024062bf..0dfc03e3ca 100644 --- a/docs/interfaces/INativeFunction.html +++ b/docs/interfaces/INativeFunction.html @@ -1,19 +1,20 @@ -INativeFunction | @tryforge/forgescript

Interface INativeFunction<T, Unwrap>

interface INativeFunction {
    aliases?: `$${string}`[];
    args?: [...T[]];
    brackets?: boolean;
    deprecated?: boolean;
    description: string;
    examples?: string[];
    execute: NativeFunctionExecutor<T, Unwrap>;
    experimental?: boolean;
    name: `$${string}`;
    output?: ArgType | EnumLike<any> | (ArgType | EnumLike<any>)[];
    unwrap: Unwrap;
    version?: string;
}

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean = boolean

Properties

aliases? +INativeFunction | @tryforge/forgescript

Interface INativeFunction<T, Unwrap>

interface INativeFunction {
    aliases?: `$${string}`[];
    args?: [...T[]];
    brackets?: boolean;
    deprecated?: boolean;
    description: string;
    examples?: string[];
    execute: NativeFunctionExecutor<T, Unwrap>;
    experimental?: boolean;
    name: `$${string}`;
    output?: ArgType | EnumLike<any> | (ArgType | EnumLike<any>)[];
    unwrap: Unwrap;
    version?: string;
}

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean = boolean

Properties

aliases?: `$${string}`[]

Aliases this function has

-
args?: [...T[]]
brackets?: boolean

If undefined, function has no brackets

-

If false, function can have brackets.

-

If true, function must have brackets.

-
deprecated?: boolean
description: string
examples?: string[]
execute: NativeFunctionExecutor<T, Unwrap>
experimental?: boolean
name: `$${string}`
output?: ArgType | EnumLike<any> | (ArgType | EnumLike<any>)[]
unwrap: Unwrap

Resolves all arguments and are passed through execute params.

-
version?: string

Do not provide this.

-

Generated using TypeDoc

\ No newline at end of file +

Properties

aliases?: `$${string}`[]

Aliases this function has.

+
args?: [...T[]]
brackets?: boolean

If undefined, function has no brackets.

+

If false, function can have brackets.

+

If true, function must have brackets.

+
deprecated?: boolean
description: string
examples?: string[]

Deprecated

Not being used.

+
execute: NativeFunctionExecutor<T, Unwrap>
experimental?: boolean
name: `$${string}`
output?: ArgType | EnumLike<any> | (ArgType | EnumLike<any>)[]
unwrap: Unwrap

Resolves all arguments and are passed through execute params.

+
version?: string

Do not provide this.

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRawField.html b/docs/interfaces/IRawField.html index e50d49c450..eb8cafbcdf 100644 --- a/docs/interfaces/IRawField.html +++ b/docs/interfaces/IRawField.html @@ -1,3 +1,3 @@ -IRawField | @tryforge/forgescript
interface IRawField {
    condition?: boolean;
    rest?: boolean;
}

Properties

condition? +IRawField | @tryforge/forgescript
interface IRawField {
    condition?: boolean;
    rest?: boolean;
}

Properties

Properties

condition?: boolean
rest?: boolean

Generated using TypeDoc

\ No newline at end of file +

Properties

condition?: boolean
rest?: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRawForgeClientOptions.html b/docs/interfaces/IRawForgeClientOptions.html index 2055f5e128..1158694453 100644 --- a/docs/interfaces/IRawForgeClientOptions.html +++ b/docs/interfaces/IRawForgeClientOptions.html @@ -1,4 +1,4 @@ -IRawForgeClientOptions | @tryforge/forgescript

Interface IRawForgeClientOptions

interface IRawForgeClientOptions {
    allowBots?: boolean;
    allowedMentions?: MessageMentionOptions;
    closeTimeout?: number;
    commands?: string;
    disableConsoleErrors?: boolean;
    enforceNonce?: boolean;
    events?: (keyof ClientEvents)[];
    extensions?: ForgeExtension[];
    failIfNotExists?: boolean;
    functions?: string;
    intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>;
    jsonTransformer?: ((obj) => unknown);
    logLevel?: LogPriority;
    makeCache?: CacheFactory;
    mobile?: boolean;
    optionalGuildID?: boolean;
    partials?: readonly Partials[];
    prefixCaseInsensitive?: boolean;
    prefixes?: string[];
    presence?: PresenceData;
    respondOnEdit?: number | boolean;
    rest?: Partial<RESTOptions>;
    restrictions?: IRestrictions;
    shardCount?: number;
    shards?: number | readonly number[] | "auto";
    sweepers?: SweeperOptions;
    token?: string;
    trackers?: ITrackers;
    useInviteSystem?: boolean;
    waitGuildTimeout?: number;
    ws?: WebSocketOptions;
}

Hierarchy

  • ClientOptions
    • IRawForgeClientOptions

Properties

allowBots? +IRawForgeClientOptions | @tryforge/forgescript

Interface IRawForgeClientOptions

interface IRawForgeClientOptions {
    allowBots?: boolean;
    allowedMentions?: MessageMentionOptions;
    closeTimeout?: number;
    commands?: string;
    disableConsoleErrors?: boolean;
    enforceNonce?: boolean;
    events?: (keyof ClientEvents)[];
    extensions?: ForgeExtension[];
    failIfNotExists?: boolean;
    functions?: string;
    intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>;
    jsonTransformer?: ((obj) => unknown);
    logLevel?: LogPriority;
    makeCache?: CacheFactory;
    mobile?: boolean;
    optionalGuildID?: boolean;
    partials?: readonly Partials[];
    prefixCaseInsensitive?: boolean;
    prefixes?: string[];
    presence?: PresenceData;
    respondOnEdit?: number | boolean;
    rest?: Partial<RESTOptions>;
    restrictions?: IRestrictions;
    shardCount?: number;
    shards?: number | readonly number[] | "auto";
    sweepers?: SweeperOptions;
    token?: string;
    trackers?: ITrackers;
    useInviteSystem?: boolean;
    waitGuildTimeout?: number;
    ws?: WebSocketOptions;
}

Hierarchy

  • ClientOptions
    • IRawForgeClientOptions

Properties

allowBots?: boolean

Allows the bot to execute events triggered by other bots (and itself)

-
allowedMentions?: MessageMentionOptions
closeTimeout?: number
commands?: string

Specifies a folder (path) to load all commands from it

-
disableConsoleErrors?: boolean
enforceNonce?: boolean
events?: (keyof ClientEvents)[]

The discord.js events our bot will use

-
extensions?: ForgeExtension[]
failIfNotExists?: boolean
functions?: string
intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>
jsonTransformer?: ((obj) => unknown)

Type declaration

    • (obj): unknown
    • Parameters

      • obj: unknown

      Returns unknown

logLevel?: LogPriority

Specifies the logs to be received

-
makeCache?: CacheFactory
mobile?: boolean

This will connect the client to Discord with the mobile status

-
optionalGuildID?: boolean

Deprecated

Does not work

-
partials?: readonly Partials[]
prefixCaseInsensitive?: boolean

Whether prefixes should be case-insensitive, this only affects letters

-
prefixes?: string[]

The prefixes our bot will act upon for command messages

-
presence?: PresenceData
respondOnEdit?: number | boolean

Allows the bot to re-use messages that were edited to find possibly command calls. +

allowedMentions?: MessageMentionOptions
closeTimeout?: number
commands?: string

Specifies a folder (path) to load all commands from it

+
disableConsoleErrors?: boolean
enforceNonce?: boolean
events?: (keyof ClientEvents)[]

The discord.js events our bot will use

+
extensions?: ForgeExtension[]
failIfNotExists?: boolean
functions?: string
intents: BitFieldResolvable<"Guilds" | "GuildMembers" | "GuildModeration" | "GuildBans" | "GuildExpressions" | "GuildEmojisAndStickers" | "GuildIntegrations" | "GuildWebhooks" | "GuildInvites" | "GuildVoiceStates" | "GuildPresences" | "GuildMessages" | "GuildMessageReactions" | "GuildMessageTyping" | "DirectMessages" | "DirectMessageReactions" | "DirectMessageTyping" | "MessageContent" | "GuildScheduledEvents" | "AutoModerationConfiguration" | "AutoModerationExecution" | "GuildMessagePolls" | "DirectMessagePolls", number>
jsonTransformer?: ((obj) => unknown)

Type declaration

    • (obj): unknown
    • Parameters

      • obj: unknown

      Returns unknown

logLevel?: LogPriority

Specifies the logs to be received

+
makeCache?: CacheFactory
mobile?: boolean

This will connect the client to Discord with the mobile status

+
optionalGuildID?: boolean

Deprecated

Does not work

+
partials?: readonly Partials[]
prefixCaseInsensitive?: boolean

Whether prefixes should be case-insensitive, this only affects letters

+
prefixes?: string[]

The prefixes our bot will act upon for command messages

+
presence?: PresenceData
respondOnEdit?: number | boolean

Allows the bot to re-use messages that were edited to find possibly command calls. If a number is passed, it's treated as the amount of milliseconds that can pass before the message becomes completely unusable.

-
rest?: Partial<RESTOptions>
restrictions?: IRestrictions
shardCount?: number
shards?: number | readonly number[] | "auto"
sweepers?: SweeperOptions
token?: string
trackers?: ITrackers
useInviteSystem?: boolean

Deprecated

use trackers: { invites: true } instead

-
waitGuildTimeout?: number
ws?: WebSocketOptions

Generated using TypeDoc

\ No newline at end of file +
rest?: Partial<RESTOptions>
restrictions?: IRestrictions
shardCount?: number
shards?: number | readonly number[] | "auto"
sweepers?: SweeperOptions
token?: string
trackers?: ITrackers
useInviteSystem?: boolean

Deprecated

use trackers: { invites: true } instead

+
waitGuildTimeout?: number
ws?: WebSocketOptions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRawFunction.html b/docs/interfaces/IRawFunction.html index 20cb6242cd..d2b2caa61e 100644 --- a/docs/interfaces/IRawFunction.html +++ b/docs/interfaces/IRawFunction.html @@ -1,7 +1,7 @@ -IRawFunction | @tryforge/forgescript

Interface IRawFunction

interface IRawFunction {
    aliases: null | string[];
    args: null | IRawFunctionFieldDefinition;
    name: string;
}

Properties

aliases +IRawFunction | @tryforge/forgescript

Interface IRawFunction

interface IRawFunction {
    aliases: null | string[];
    args: null | IRawFunctionFieldDefinition;
    name: string;
}

Properties

Properties

aliases: null | string[]

If undefined, function has no fields. +

Properties

aliases: null | string[]

If undefined, function has no fields. If present and required true, fields are required. If false, fields are not required.

-
name: string

Generated using TypeDoc

\ No newline at end of file +
name: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRawFunctionFieldDefinition.html b/docs/interfaces/IRawFunctionFieldDefinition.html index 612da08d8d..908167c519 100644 --- a/docs/interfaces/IRawFunctionFieldDefinition.html +++ b/docs/interfaces/IRawFunctionFieldDefinition.html @@ -1,3 +1,3 @@ -IRawFunctionFieldDefinition | @tryforge/forgescript

Interface IRawFunctionFieldDefinition

interface IRawFunctionFieldDefinition {
    fields: IRawField[];
    required: boolean;
}

Properties

fields +IRawFunctionFieldDefinition | @tryforge/forgescript

Interface IRawFunctionFieldDefinition

interface IRawFunctionFieldDefinition {
    fields: IRawField[];
    required: boolean;
}

Properties

Properties

fields: IRawField[]
required: boolean

Generated using TypeDoc

\ No newline at end of file +

Properties

fields: IRawField[]
required: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRawFunctionMatch.html b/docs/interfaces/IRawFunctionMatch.html index dc90e9236e..812bc78b00 100644 --- a/docs/interfaces/IRawFunctionMatch.html +++ b/docs/interfaces/IRawFunctionMatch.html @@ -1,7 +1,7 @@ -IRawFunctionMatch | @tryforge/forgescript

Interface IRawFunctionMatch

interface IRawFunctionMatch {
    count: null | string;
    fn: IRawFunction;
    index: number;
    length: number;
    negated: boolean;
    silent: boolean;
}

Properties

count +IRawFunctionMatch | @tryforge/forgescript

Interface IRawFunctionMatch

interface IRawFunctionMatch {
    count: null | string;
    fn: IRawFunction;
    index: number;
    length: number;
    negated: boolean;
    silent: boolean;
}

Properties

count: null | string
index: number
length: number
negated: boolean
silent: boolean

Generated using TypeDoc

\ No newline at end of file +

Properties

count: null | string
index: number
length: number
negated: boolean
silent: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRestrictions.html b/docs/interfaces/IRestrictions.html index e3a5cb7ce2..8fae4773de 100644 --- a/docs/interfaces/IRestrictions.html +++ b/docs/interfaces/IRestrictions.html @@ -1,3 +1,3 @@ -IRestrictions | @tryforge/forgescript

Interface IRestrictions

interface IRestrictions {
    guildIDs?: string[];
    userIDs?: string[];
}

Properties

guildIDs? +IRestrictions | @tryforge/forgescript

Interface IRestrictions

interface IRestrictions {
    guildIDs?: string[];
    userIDs?: string[];
}

Properties

Properties

guildIDs?: string[]
userIDs?: string[]

Generated using TypeDoc

\ No newline at end of file +

Properties

guildIDs?: string[]
userIDs?: string[]

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IRunnable.html b/docs/interfaces/IRunnable.html index dacbe309ce..f8c04e8b86 100644 --- a/docs/interfaces/IRunnable.html +++ b/docs/interfaces/IRunnable.html @@ -1,4 +1,4 @@ -IRunnable | @tryforge/forgescript
interface IRunnable {
    allowTopLevelReturn?: boolean;
    args?: string[];
    client: ForgeClient;
    command: null | BaseCommand<unknown>;
    container?: Container;
    data: IExtendedCompilationResult;
    disableConsoleErrors?: boolean;
    doNotSend?: boolean;
    environment?: Record<string, unknown>;
    extras?: unknown;
    keywords?: Record<string, string>;
    obj: Sendable;
    redirectErrorsToConsole?: boolean;
    states?: States;
}

Properties

allowTopLevelReturn? +IRunnable | @tryforge/forgescript
interface IRunnable {
    allowTopLevelReturn?: boolean;
    args?: string[];
    client: ForgeClient;
    command: null | BaseCommand<unknown>;
    container?: Container;
    data: IExtendedCompilationResult;
    disableConsoleErrors?: boolean;
    doNotSend?: boolean;
    environment?: Record<string, unknown>;
    extras?: unknown;
    keywords?: Record<string, unknown>;
    localFunctions?: Record<string, ILocalFunctionData>;
    obj: Sendable;
    redirectErrorsToConsole?: boolean;
    states?: States;
}

Properties

allowTopLevelReturn?: boolean
args?: string[]

The args used in the message command

-
client: ForgeClient

The available discord client

-
command: null | BaseCommand<unknown>

The command used for this execution

-
container?: Container

The container reference to use

-

The compiled data to execute

-
disableConsoleErrors?: boolean

Removes errors output to console

-
doNotSend?: boolean

Whether to suppress sending the response to discord.

-
environment?: Record<string, unknown>

The already existing env variables

-
extras?: unknown

Extras data

-
keywords?: Record<string, string>

The already existing variables defined with $let

-

The context this code will run in

-
redirectErrorsToConsole?: boolean

Whether to suppress errors from being sent to discord, and be sent to console instead

-
states?: States

The old and new states of an event

-

Generated using TypeDoc

\ No newline at end of file +

Properties

allowTopLevelReturn?: boolean
args?: string[]

The args used in the message command

+
client: ForgeClient

The available discord client

+
command: null | BaseCommand<unknown>

The command used for this execution

+
container?: Container

The container reference to use

+

The compiled data to execute

+
disableConsoleErrors?: boolean

Removes errors output to console

+
doNotSend?: boolean

Whether to suppress sending the response to discord.

+
environment?: Record<string, unknown>

The already existing env variables

+
extras?: unknown

Extras data

+
keywords?: Record<string, unknown>

The already existing variables defined with $let

+
localFunctions?: Record<string, ILocalFunctionData>

The already existing local functions

+

The context this code will run in

+
redirectErrorsToConsole?: boolean

Whether to suppress errors from being sent to discord, and be sent to console instead

+
states?: States

The old and new states of an event

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IScheduledEventOptions.html b/docs/interfaces/IScheduledEventOptions.html new file mode 100644 index 0000000000..d532b68c18 --- /dev/null +++ b/docs/interfaces/IScheduledEventOptions.html @@ -0,0 +1,3 @@ +IScheduledEventOptions | @tryforge/forgescript

Interface IScheduledEventOptions

interface IScheduledEventOptions {
    channel?: VoiceBasedChannel;
    entityMetadata?: GuildScheduledEventEntityMetadataOptions;
}

Properties

channel?: VoiceBasedChannel
entityMetadata?: GuildScheduledEventEntityMetadataOptions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IStates.html b/docs/interfaces/IStates.html index 5897abdbd3..7d63f05a0d 100644 --- a/docs/interfaces/IStates.html +++ b/docs/interfaces/IStates.html @@ -1,4 +1,4 @@ -IStates | @tryforge/forgescript
interface IStates {
    audit: GuildAuditLogsEntry<AuditLogEvent, "Update" | "Create" | "Delete" | "All", "Unknown" | "User" | "Guild" | "Invite" | "Emoji" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "StageInstance" | "SoundboardSound" | "Integration" | "GuildScheduledEvent" | "Thread" | "ApplicationCommand" | "AutoModeration" | "GuildOnboardingPrompt" | "GuildOnboarding">;
    automodRule: AutoModerationRule;
    ban: GuildBan;
    bulk: (Message<boolean> | PartialMessage)[];
    channel: Channel;
    emoji: GuildEmoji;
    entitlement: Entitlement;
    guild: Guild;
    invite: Invite;
    member: GuildMember;
    message: Message<boolean>;
    poll: PollAnswer;
    presence: Presence;
    role: Role;
    scheduledEvent: GuildScheduledEvent<GuildScheduledEventStatus>;
    soundboardSound: SoundboardSound | PartialSoundboardSound;
    stage: StageInstance;
    sticker: Sticker;
    subscription: Subscription;
    user: User;
    voiceEffect: VoiceChannelEffect;
    voiceState: VoiceState;
}

Properties

audit +IStates | @tryforge/forgescript
interface IStates {
    audit: GuildAuditLogsEntry<AuditLogEvent, "Update" | "Create" | "Delete" | "All", "Unknown" | "User" | "Guild" | "Invite" | "Emoji" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "StageInstance" | "SoundboardSound" | "Integration" | "GuildScheduledEvent" | "Thread" | "ApplicationCommand" | "AutoModeration" | "GuildOnboardingPrompt" | "GuildOnboarding">;
    automodRule: AutoModerationRule;
    ban: GuildBan;
    bulk: (Message<boolean> | PartialMessage<boolean>)[];
    channel: Channel;
    emoji: GuildEmoji;
    entitlement: Entitlement;
    guild: Guild;
    invite: Invite;
    member: GuildMember;
    message: Message<boolean>;
    poll: PollAnswer | PartialPollAnswer;
    presence: Presence;
    role: Role;
    scheduledEvent: GuildScheduledEvent<GuildScheduledEventStatus>;
    soundboardSound: SoundboardSound | PartialSoundboardSound;
    stage: StageInstance;
    sticker: Sticker;
    subscription: Subscription;
    user: User;
    voiceEffect: VoiceChannelEffect;
    voiceState: VoiceState;
}

Properties

Properties

audit: GuildAuditLogsEntry<AuditLogEvent, "Update" | "Create" | "Delete" | "All", "Unknown" | "User" | "Guild" | "Invite" | "Emoji" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "StageInstance" | "SoundboardSound" | "Integration" | "GuildScheduledEvent" | "Thread" | "ApplicationCommand" | "AutoModeration" | "GuildOnboardingPrompt" | "GuildOnboarding">
automodRule: AutoModerationRule
ban: GuildBan
bulk: (Message<boolean> | PartialMessage)[]
channel: Channel
emoji: GuildEmoji
entitlement: Entitlement
guild: Guild
invite: Invite
member: GuildMember
message: Message<boolean>
poll: PollAnswer
presence: Presence
role: Role
scheduledEvent: GuildScheduledEvent<GuildScheduledEventStatus>
soundboardSound: SoundboardSound | PartialSoundboardSound
stage: StageInstance
sticker: Sticker
subscription: Subscription
user: User
voiceEffect: VoiceChannelEffect
voiceState: VoiceState

Generated using TypeDoc

\ No newline at end of file +

Properties

audit: GuildAuditLogsEntry<AuditLogEvent, "Update" | "Create" | "Delete" | "All", "Unknown" | "User" | "Guild" | "Invite" | "Emoji" | "Message" | "Channel" | "Role" | "Webhook" | "Sticker" | "StageInstance" | "SoundboardSound" | "Integration" | "GuildScheduledEvent" | "Thread" | "ApplicationCommand" | "AutoModeration" | "GuildOnboardingPrompt" | "GuildOnboarding">
automodRule: AutoModerationRule
ban: GuildBan
bulk: (Message<boolean> | PartialMessage<boolean>)[]
channel: Channel
emoji: GuildEmoji
entitlement: Entitlement
guild: Guild
invite: Invite
member: GuildMember
message: Message<boolean>
poll: PollAnswer | PartialPollAnswer
presence: Presence
role: Role
scheduledEvent: GuildScheduledEvent<GuildScheduledEventStatus>
soundboardSound: SoundboardSound | PartialSoundboardSound
stage: StageInstance
sticker: Sticker
subscription: Subscription
user: User
voiceEffect: VoiceChannelEffect
voiceState: VoiceState

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IThreadContext.html b/docs/interfaces/IThreadContext.html index ab9ef95e9f..6472f1190a 100644 --- a/docs/interfaces/IThreadContext.html +++ b/docs/interfaces/IThreadContext.html @@ -1,4 +1,4 @@ -IThreadContext | @tryforge/forgescript

Interface IThreadContext

interface IThreadContext {
    code: string;
    environment?: Record<string, unknown>;
    keywords?: Record<string, string>;
}

Properties

code +IThreadContext | @tryforge/forgescript

Interface IThreadContext

interface IThreadContext {
    code: string;
    environment?: Record<string, unknown>;
    keywords?: Record<string, unknown>;
}

Properties

code: string
environment?: Record<string, unknown>
keywords?: Record<string, string>

Generated using TypeDoc

\ No newline at end of file +

Properties

code: string
environment?: Record<string, unknown>
keywords?: Record<string, unknown>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IThreadResult.html b/docs/interfaces/IThreadResult.html index 8ac43cd5a1..068cc64347 100644 --- a/docs/interfaces/IThreadResult.html +++ b/docs/interfaces/IThreadResult.html @@ -1,3 +1,3 @@ -IThreadResult | @tryforge/forgescript

Interface IThreadResult

interface IThreadResult {
    taskId: number;
    value: null | string;
}

Properties

taskId +IThreadResult | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +

Properties

taskId: number
value: null | string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/IThreadTask.html b/docs/interfaces/IThreadTask.html index ceec9d916e..b7d08be806 100644 --- a/docs/interfaces/IThreadTask.html +++ b/docs/interfaces/IThreadTask.html @@ -1,4 +1,4 @@ -IThreadTask | @tryforge/forgescript
interface IThreadTask {
    context: IThreadContext;
    id: number;
    resolve: ((res) => void);
}

Properties

context +IThreadTask | @tryforge/forgescript
interface IThreadTask {
    context: IThreadContext;
    id: number;
    resolve: ((res) => void);
}

Properties

Properties

id: number
resolve: ((res) => void)

Type declaration

    • (res): void
    • Parameters

      • res: null | string

      Returns void

Generated using TypeDoc

\ No newline at end of file +

Properties

id: number
resolve: ((res) => void)

Type declaration

    • (res): void
    • Parameters

      • res: null | string

      Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/ITrackers.html b/docs/interfaces/ITrackers.html index 6d010f49e4..470699040d 100644 --- a/docs/interfaces/ITrackers.html +++ b/docs/interfaces/ITrackers.html @@ -1,3 +1,3 @@ -ITrackers | @tryforge/forgescript
interface ITrackers {
    invites?: boolean;
    voice?: boolean;
}

Properties

invites? +ITrackers | @tryforge/forgescript
interface ITrackers {
    invites?: boolean;
    voice?: boolean;
}

Properties

Properties

invites?: boolean
voice?: boolean

Generated using TypeDoc

\ No newline at end of file +

Properties

invites?: boolean
voice?: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index 33a8e4821b..7a07b6d7f1 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -70,6 +70,7 @@ IRawFunctionMatch IRestrictions IRunnable +IScheduledEventOptions IStates IThreadContext IThreadResult diff --git a/docs/types/AssertArgs.html b/docs/types/AssertArgs.html index a353ed01bd..79847e1b30 100644 --- a/docs/types/AssertArgs.html +++ b/docs/types/AssertArgs.html @@ -1 +1 @@ -AssertArgs | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +AssertArgs | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/ClassInstance.html b/docs/types/ClassInstance.html index 2eda35717e..99e179dbcf 100644 --- a/docs/types/ClassInstance.html +++ b/docs/types/ClassInstance.html @@ -1 +1 @@ -ClassInstance | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +ClassInstance | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/ClassType.html b/docs/types/ClassType.html index c185e06a7f..54bbd81740 100644 --- a/docs/types/ClassType.html +++ b/docs/types/ClassType.html @@ -1 +1 @@ -ClassType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +ClassType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/CommandInteractionTypes.html b/docs/types/CommandInteractionTypes.html index e142ee46da..a312bcec29 100644 --- a/docs/types/CommandInteractionTypes.html +++ b/docs/types/CommandInteractionTypes.html @@ -1 +1 @@ -CommandInteractionTypes | @tryforge/forgescript

Type alias CommandInteractionTypes

CommandInteractionTypes: "button" | "modal" | "slashCommand" | "autocomplete" | "contextMenu" | "selectMenu" | "activityCommand"

Generated using TypeDoc

\ No newline at end of file +CommandInteractionTypes | @tryforge/forgescript

Type alias CommandInteractionTypes

CommandInteractionTypes: "button" | "modal" | "slashCommand" | "autocomplete" | "contextMenu" | "selectMenu" | "activityCommand"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/CommandType.html b/docs/types/CommandType.html index dc7ffe94b8..14a850f781 100644 --- a/docs/types/CommandType.html +++ b/docs/types/CommandType.html @@ -1 +1 @@ -CommandType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +CommandType | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/EnumLike.html b/docs/types/EnumLike.html index cc9684213c..b90157e48e 100644 --- a/docs/types/EnumLike.html +++ b/docs/types/EnumLike.html @@ -1 +1 @@ -EnumLike | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +EnumLike | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/ExpectCallback.html b/docs/types/ExpectCallback.html index f31e3b1e52..ed9c3e698a 100644 --- a/docs/types/ExpectCallback.html +++ b/docs/types/ExpectCallback.html @@ -1 +1 @@ -ExpectCallback | @tryforge/forgescript

Type alias ExpectCallback<T, Unwrap>

ExpectCallback<T, Unwrap>: ((args) => Promise<Return> | Return)

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean

Type declaration

Generated using TypeDoc

\ No newline at end of file +ExpectCallback | @tryforge/forgescript

Type alias ExpectCallback<T, Unwrap>

ExpectCallback<T, Unwrap>: ((args) => Promise<Return> | Return)

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/FilterProperties.html b/docs/types/FilterProperties.html index eebcb97ee4..b650067e7e 100644 --- a/docs/types/FilterProperties.html +++ b/docs/types/FilterProperties.html @@ -1 +1 @@ -FilterProperties | @tryforge/forgescript

Type alias FilterProperties<T>

FilterProperties<T>: {
    [P in keyof T as T[P] extends ((...args) => any)
        ? never
        : P]: T[P]
}

Type Parameters

  • T

Generated using TypeDoc

\ No newline at end of file +FilterProperties | @tryforge/forgescript

Type alias FilterProperties<T>

FilterProperties<T>: {
    [P in keyof T as T[P] extends ((...args) => any)
        ? never
        : P]: T[P]
}

Type Parameters

  • T

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/GetArgType.html b/docs/types/GetArgType.html index 4622796297..fb5795d4ee 100644 --- a/docs/types/GetArgType.html +++ b/docs/types/GetArgType.html @@ -1 +1 @@ -GetArgType | @tryforge/forgescript

Type alias GetArgType<T, Enum>

GetArgType<T, Enum>: T extends Number
    ? number
    : T extends String
        ? string
        : T extends User
            ? User
            : T extends URL
                ? string
                : T extends Json
                    ? Record<string, unknown>
                    : T extends RoleOrUser
                        ? Role | User
                        : T extends Guild
                            ? Guild
                            : T extends Color
                                ? number
                                : T extends Role
                                    ? Role
                                    : T extends TextChannel
                                        ? TextBasedChannel
                                        : T extends Attachment
                                            ? AttachmentBuilder
                                            : T extends BigInt
                                                ? bigint
                                                : T extends Unknown
                                                    ? unknown
                                                    : T extends Boolean
                                                        ? boolean
                                                        : T extends Date
                                                            ? Date
                                                            : T extends Enum
                                                                ? GetEnum<Enum>
                                                                : T extends Channel
                                                                    ? BaseChannel
                                                                    : T extends Message
                                                                        ? Message<true>
                                                                        : T extends Member
                                                                            ? GuildMember
                                                                            : T extends GuildEmoji
                                                                                ? GuildEmoji
                                                                                : T extends ApplicationEmoji
                                                                                    ? ApplicationEmoji
                                                                                    : T extends OverwritePermission
                                                                                        ? OverwritePermission
                                                                                        : T extends Sticker
                                                                                            ? Sticker
                                                                                            : T extends Reaction
                                                                                                ? MessageReaction
                                                                                                : T extends Webhook
                                                                                                    ? Webhook
                                                                                                    : T extends Invite
                                                                                                        ? Invite
                                                                                                        : T extends ForumTag
                                                                                                            ? GuildForumTag
                                                                                                            : T extends Time
                                                                                                                ? number
                                                                                                                : T extends Permission
                                                                                                                    ? PermissionsString
                                                                                                                    : T extends Emoji
                                                                                                                        ? Emoji
                                                                                                                        : T extends AutomodRule
                                                                                                                            ? AutoModerationRule
                                                                                                                            : T extends ScheduledEvent
                                                                                                                                ? GuildScheduledEvent
                                                                                                                                : T extends StageInstance
                                                                                                                                    ? StageInstance
                                                                                                                                    : T extends SoundboardSound
                                                                                                                                        ? SoundboardSound
                                                                                                                                        : T extends Template
                                                                                                                                            ? GuildTemplate
                                                                                                                                            : null

Type Parameters

Generated using TypeDoc

\ No newline at end of file +GetArgType | @tryforge/forgescript

Type alias GetArgType<T, Enum>

GetArgType<T, Enum>: T extends Number
    ? number
    : T extends String
        ? string
        : T extends User
            ? User
            : T extends URL
                ? string
                : T extends Json
                    ? Record<string, unknown>
                    : T extends RoleOrUser
                        ? Role | User
                        : T extends Guild
                            ? Guild
                            : T extends Color
                                ? number
                                : T extends Role
                                    ? Role
                                    : T extends TextChannel
                                        ? TextBasedChannel
                                        : T extends Attachment
                                            ? AttachmentBuilder
                                            : T extends BigInt
                                                ? bigint
                                                : T extends Unknown
                                                    ? unknown
                                                    : T extends Boolean
                                                        ? boolean
                                                        : T extends Date
                                                            ? Date
                                                            : T extends Enum
                                                                ? GetEnum<Enum>
                                                                : T extends Channel
                                                                    ? BaseChannel
                                                                    : T extends Message
                                                                        ? Message<true>
                                                                        : T extends Member
                                                                            ? GuildMember
                                                                            : T extends GuildEmoji
                                                                                ? GuildEmoji
                                                                                : T extends ApplicationEmoji
                                                                                    ? ApplicationEmoji
                                                                                    : T extends OverwritePermission
                                                                                        ? OverwritePermission
                                                                                        : T extends Sticker
                                                                                            ? Sticker
                                                                                            : T extends Reaction
                                                                                                ? MessageReaction
                                                                                                : T extends Webhook
                                                                                                    ? Webhook
                                                                                                    : T extends Invite
                                                                                                        ? Invite
                                                                                                        : T extends ForumTag
                                                                                                            ? GuildForumTag
                                                                                                            : T extends Time
                                                                                                                ? number
                                                                                                                : T extends Permission
                                                                                                                    ? PermissionsString
                                                                                                                    : T extends Emoji
                                                                                                                        ? Emoji
                                                                                                                        : T extends AutomodRule
                                                                                                                            ? AutoModerationRule
                                                                                                                            : T extends ScheduledEvent
                                                                                                                                ? GuildScheduledEvent
                                                                                                                                : T extends StageInstance
                                                                                                                                    ? StageInstance
                                                                                                                                    : T extends SoundboardSound
                                                                                                                                        ? SoundboardSound
                                                                                                                                        : T extends Template
                                                                                                                                            ? GuildTemplate
                                                                                                                                            : null

Type Parameters

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/GetEnum.html b/docs/types/GetEnum.html index 2e9b516497..f93bb64b6b 100644 --- a/docs/types/GetEnum.html +++ b/docs/types/GetEnum.html @@ -1 +1 @@ -GetEnum | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +GetEnum | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/GetErrorArgs.html b/docs/types/GetErrorArgs.html index d0650f9bb0..9e45618d36 100644 --- a/docs/types/GetErrorArgs.html +++ b/docs/types/GetErrorArgs.html @@ -1 +1 @@ -GetErrorArgs | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +GetErrorArgs | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/MarkNullable.html b/docs/types/MarkNullable.html index 92deaba66c..088fd0966b 100644 --- a/docs/types/MarkNullable.html +++ b/docs/types/MarkNullable.html @@ -1 +1 @@ -MarkNullable | @tryforge/forgescript

Type alias MarkNullable<T, Req, Rest>

MarkNullable<T, Req, Rest>: Rest extends true
    ? T
    : Req extends true
        ? T
        : T | null

Type Parameters

  • T

  • Req extends boolean

  • Rest extends boolean = boolean

Generated using TypeDoc

\ No newline at end of file +MarkNullable | @tryforge/forgescript

Type alias MarkNullable<T, Req, Rest>

MarkNullable<T, Req, Rest>: Rest extends true
    ? T
    : Req extends true
        ? T
        : T | null

Type Parameters

  • T

  • Req extends boolean

  • Rest extends boolean = boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/MarkRest.html b/docs/types/MarkRest.html index 78bdefa58e..b48dcf648b 100644 --- a/docs/types/MarkRest.html +++ b/docs/types/MarkRest.html @@ -1 +1 @@ -MarkRest | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +MarkRest | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/NativeFunctionExecutor.html b/docs/types/NativeFunctionExecutor.html index 2b816db4bb..b7179cb86c 100644 --- a/docs/types/NativeFunctionExecutor.html +++ b/docs/types/NativeFunctionExecutor.html @@ -1 +1 @@ -NativeFunctionExecutor | @tryforge/forgescript

Type alias NativeFunctionExecutor<T, Unwrap>

NativeFunctionExecutor<T, Unwrap>: Unwrap extends true
    ? ((this, ctx, args) => Promise<Return> | Return)
    : ((this, ctx) => Promise<Return> | Return)

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean = boolean

Generated using TypeDoc

\ No newline at end of file +NativeFunctionExecutor | @tryforge/forgescript

Type alias NativeFunctionExecutor<T, Unwrap>

NativeFunctionExecutor<T, Unwrap>: Unwrap extends true
    ? ((this, ctx, args) => Promise<Return> | Return)
    : ((this, ctx) => Promise<Return> | Return)

Type Parameters

  • T extends [...IArg[]]

  • Unwrap extends boolean = boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/OverwritePermission.html b/docs/types/OverwritePermission.html index 7f18fc71e6..c7c10923b7 100644 --- a/docs/types/OverwritePermission.html +++ b/docs/types/OverwritePermission.html @@ -1 +1 @@ -OverwritePermission | @tryforge/forgescript

Type alias OverwritePermission

OverwritePermission: {
    permission: PermissionsString;
    value: null | boolean;
}

Type declaration

  • permission: PermissionsString
  • value: null | boolean

Generated using TypeDoc

\ No newline at end of file +OverwritePermission | @tryforge/forgescript

Type alias OverwritePermission

OverwritePermission: {
    permission: PermissionsString;
    value: null | boolean;
}

Type declaration

  • permission: PermissionsString
  • value: null | boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/RawExecutableCode.html b/docs/types/RawExecutableCode.html index 6b34f91438..6364c471b3 100644 --- a/docs/types/RawExecutableCode.html +++ b/docs/types/RawExecutableCode.html @@ -1 +1 @@ -RawExecutableCode | @tryforge/forgescript

Type alias RawExecutableCode

RawExecutableCode: ((ctx) => Promise<unknown[] | null>)

Type declaration

    • (ctx): Promise<unknown[] | null>
    • Parameters

      Returns Promise<unknown[] | null>

Generated using TypeDoc

\ No newline at end of file +RawExecutableCode | @tryforge/forgescript

Type alias RawExecutableCode

RawExecutableCode: ((ctx) => Promise<unknown[] | null>)

Type declaration

    • (ctx): Promise<unknown[] | null>
    • Parameters

      Returns Promise<unknown[] | null>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/RecursiveArray.html b/docs/types/RecursiveArray.html index 759f643c57..67506b7ae3 100644 --- a/docs/types/RecursiveArray.html +++ b/docs/types/RecursiveArray.html @@ -1 +1 @@ -RecursiveArray | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file +RecursiveArray | @tryforge/forgescript

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/ReturnValue.html b/docs/types/ReturnValue.html index d6416c4f6d..afa8196ff5 100644 --- a/docs/types/ReturnValue.html +++ b/docs/types/ReturnValue.html @@ -1 +1 @@ -ReturnValue | @tryforge/forgescript

Type alias ReturnValue<T>

ReturnValue<T>: T extends Error
    ? ForgeError
    : T extends Return
        ? string
        : T extends Success
            ? unknown
            : T extends Stop | Break | Continue
                ? null
                : never

Type Parameters

Generated using TypeDoc

\ No newline at end of file +ReturnValue | @tryforge/forgescript

Type alias ReturnValue<T>

ReturnValue<T>: T extends Error
    ? ForgeError
    : T extends Return
        ? string
        : T extends Success
            ? unknown
            : T extends Stop | Break | Continue
                ? null
                : never

Type Parameters

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/Sendable.html b/docs/types/Sendable.html index 25d182f0ff..7795c2e323 100644 --- a/docs/types/Sendable.html +++ b/docs/types/Sendable.html @@ -1 +1 @@ -Sendable | @tryforge/forgescript
Sendable: {} | Sticker | GuildScheduledEvent | Role | Presence | Message | User | GuildMember | BaseChannel | Interaction | VoiceState | WebhookClient | GuildEmoji | Guild | MessageReaction | Invite | AutoModerationActionExecution | SoundboardSound | Emoji | ApplicationEmoji

Type declaration

    Generated using TypeDoc

    \ No newline at end of file +Sendable | @tryforge/forgescript
    Sendable: {} | Sticker | GuildScheduledEvent | Role | Presence | Message | User | GuildMember | BaseChannel | Interaction | VoiceState | WebhookClient | GuildEmoji | Guild | MessageReaction | Invite | AutoModerationActionExecution | SoundboardSound | Emoji | ApplicationEmoji

    Type declaration

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/States.html b/docs/types/States.html index 1f7b3166de..9506f0233c 100644 --- a/docs/types/States.html +++ b/docs/types/States.html @@ -1 +1 @@ -States | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +States | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/UnwrapArg.html b/docs/types/UnwrapArg.html index ddb6711593..9a54359718 100644 --- a/docs/types/UnwrapArg.html +++ b/docs/types/UnwrapArg.html @@ -1 +1 @@ -UnwrapArg | @tryforge/forgescript

      Type alias UnwrapArg<T>

      UnwrapArg<T>: T extends IArg<infer Type, infer Required, infer Rest, infer Enum>
          ? MarkRest<MarkNullable<GetArgType<Type, Enum>, Required, Rest>, Rest>
          : never

      Type Parameters

      • T

      Generated using TypeDoc

      \ No newline at end of file +UnwrapArg | @tryforge/forgescript

      Type alias UnwrapArg<T>

      UnwrapArg<T>: T extends IArg<infer Type, infer Required, infer Rest, infer Enum>
          ? MarkRest<MarkNullable<GetArgType<Type, Enum>, Required, Rest>, Rest>
          : never

      Type Parameters

      • T

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/UnwrapArgs.html b/docs/types/UnwrapArgs.html index 2de9d555f7..0e7e041a2e 100644 --- a/docs/types/UnwrapArgs.html +++ b/docs/types/UnwrapArgs.html @@ -1 +1 @@ -UnwrapArgs | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +UnwrapArgs | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/WrappedCode.html b/docs/types/WrappedCode.html index 72addd6051..76511bba64 100644 --- a/docs/types/WrappedCode.html +++ b/docs/types/WrappedCode.html @@ -1 +1 @@ -WrappedCode | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +WrappedCode | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/WrappedConditionCode.html b/docs/types/WrappedConditionCode.html index 2bde75fddf..bfb4796376 100644 --- a/docs/types/WrappedConditionCode.html +++ b/docs/types/WrappedConditionCode.html @@ -1 +1 @@ -WrappedConditionCode | @tryforge/forgescript

      Type alias WrappedConditionCode

      WrappedConditionCode: ((lhs, rhs) => boolean)

      Type declaration

        • (lhs, rhs): boolean
        • Parameters

          • lhs: unknown
          • rhs: unknown

          Returns boolean

      Generated using TypeDoc

      \ No newline at end of file +WrappedConditionCode | @tryforge/forgescript

      Type alias WrappedConditionCode

      WrappedConditionCode: ((lhs, rhs) => boolean)

      Type declaration

        • (lhs, rhs): boolean
        • Parameters

          • lhs: unknown
          • rhs: unknown

          Returns boolean

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/variables/Conditions.html b/docs/variables/Conditions.html index efc62c8045..50cdf7bd81 100644 --- a/docs/variables/Conditions.html +++ b/docs/variables/Conditions.html @@ -1 +1 @@ -Conditions | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +Conditions | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/variables/NativeEventName.html b/docs/variables/NativeEventName.html index 35d2fb9b53..e19b6ab874 100644 --- a/docs/variables/NativeEventName.html +++ b/docs/variables/NativeEventName.html @@ -1 +1 @@ -NativeEventName | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +NativeEventName | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/variables/Operators.html b/docs/variables/Operators.html index a9e63af0f8..355688491b 100644 --- a/docs/variables/Operators.html +++ b/docs/variables/Operators.html @@ -1 +1 @@ -Operators | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file +Operators | @tryforge/forgescript

      Generated using TypeDoc

      \ No newline at end of file diff --git a/metadata/changelogs.json b/metadata/changelogs.json index abf6384f99..13a40fe694 100644 --- a/metadata/changelogs.json +++ b/metadata/changelogs.json @@ -1 +1 @@ -{"1.2.0":[{"message":"Added URL arg type"},{"message":"Fixed updateApplicationCommands partially working"},{"message":"Added updateApplicationCommands"},{"message":"Changed all functions internally to adapt to the new negation operator"},{"message":"Move negation operator to the beginning of function"},{"message":"make executionTime more accurate"},{"message":"added parseInt"},{"message":"Fixed findUser crash"},{"message":"Fixed some grammar errors in docs by Nicky"},{"message":"added ifx function allows blocks of statements"},{"message":"Fixed lastMessageID returning content instead of id"},{"message":"Return no longer requires brackets"},{"message":"Fixed commandInfo"},{"message":"Added allowedInteractionTypes property to commands and the name property now works for interactions"},{"message":"Speeded up interpreter performance"},{"message":"Added negation operator to cancel output of functions"},{"message":"Added deleteCommand"},{"message":"Fixed successJSON and successFormatted"},{"message":"Add line:column to parser errors"},{"message":"Deleted changelogs folder"},{"message":"Moved json files to metadata folder"},{"message":"Added color strings back"},{"message":"Renamed loadJSON = jsonLoad"},{"message":"Added jsonSet"},{"message":"Reordered fields in botOwnerID default to the owner id"},{"message":"Added reason field to createInvite"},{"message":"Fixed botOwnerID and extended its functionality"},{"message":"Added missing reference to ThreadManager.ts"},{"message":"Make httpRequest last field optional and added httpResult [shortcut for env]"},{"message":"Fixed small typo in a log given by FunctionManager#load"},{"message":"Added color functions and new arg type"},{"message":"Added autoModerationActionExecution event and a few functions for it"},{"message":"Added titleURL to embed properties"},{"message":"Added hasExtension"},{"message":"Fixed embed properties and added color and authorURL to it"},{"message":"Added a handful of functions"},{"message":"Renamed runInThread => coroutine"},{"message":"Added lastMessageID"},{"message":"Fix docgen not generating functions"},{"message":"Added interactionFollowUp"},{"message":"Implemented feature for code threading (experimental)"},{"message":"Add error for invalid flags in changelog gen"},{"message":"Make json instead of txt for changelogs"}],"1.3.0":[{"message":"Added mobile option to client"},{"message":"Added $addRoleSelectMenu"},{"message":"added $sliceText and $messageSlice"},{"message":"Added a lot of missing guild and role functions"},{"message":"added $arrayPushJSON and unshift variants"},{"message":"Added $guildChannelIDs and $guildRoleIDs"},{"message":"Added $hyperlink"},{"message":"Added $mentionedXCount"},{"message":"Added command path to compilation errors, fixed some path joins"},{"message":"Added ability to disable unneccesary functions"},{"message":"Improved description of $isValidHex and $isValidLink"},{"message":"Added 2 new properties to extension class (requireExtensions and targetVersions)"},{"message":"Added $isValidHex"},{"message":"Some interpreter optimizations were applied, attempt to fix stickers issue with $editMessage and added $deferUpdate"},{"message":"Added formatting functions"},{"message":"Fixed $stickers indexing and added $sticker (sticker support for responses)"},{"message":"Added $ordinal"},{"message":"Added $enableUserMentions, $enableRoleMentions, $disableEveryoneMention and $disableAllMentions"},{"message":"Added $disableUserMentions, $disableRoleMentions, $nomention and a new field to $reply"},{"message":"Added $disableUserMentions, $disableRoleMentions, $nomention and a new field to $reply"},{"message":"Added bigint functions, and some shorthand functions for $let"},{"message":"Added better logging to ForgeScript core, also implemented api as a function"},{"message":"Fixed negation operator for functions with fields"},{"message":"Functions are now case insensitive, improved commit.ts"},{"message":"Added case insensitive functions, improved commit.ts"},{"message":"Please write the commit message:"},{"message":"Please write the commit message:"},{"message":"Bump ForgeScript version"}],"1.4.0":[{"message":"$arrayLoad now allows loading without values"},{"message":"Fixed $isSlashCommand and slashCommand int type"},{"message":"Fixed guild functions"},{"message":"$option now returns attachment urls"},{"message":"interactionCreate events now forward app commands, might become a breaking change for some (?),"},{"message":"Fixed $guildRulesChannelID"},{"message":"Added more time units"},{"message":"Added $discordTimestamp"},{"message":"Fixed some component functions, added $isJSON"},{"message":"Added $userIDs"},{"message":"Added some more funcs"},{"message":"Added some funcs"},{"message":"Added $voiceMove"},{"message":"Added some new functions"},{"message":"Nothing much"},{"message":"Tried a fix for ephemeral messages not being recognized"},{"message":"Added emoji property to component"},{"message":"Added some aliases and functions"},{"message":"Added $transcript, $guildChannelID, $getComponent and $loadComponent"},{"message":"Removed old compiler."},{"message":"Added $splitTextJoin and $reply now mentions by default"},{"message":"Added registration type to application commands"},{"message":"Added $findMembers"},{"message":"Added $hasAnyPerms"},{"message":"Fixed $guildNSFWLevel"},{"message":"Change $commandInfo's last field."},{"message":"Prefixes no longer sensitive"},{"message":"Fixed no ping behavior"},{"message":"Small typo"},{"message":"Added Arg class for ease of arg creation"},{"message":"Fixed $awaitComponent throwing error regardless of error disabled"},{"message":"Fixed interactionReply 2nd field, fixed $disableConsoleErrors"},{"message":"Added index to parsed functions"},{"message":"Added event emitter to command manager"},{"message":"Added new option to client and command to disable errors"},{"message":"feat: add $userID as alias to $authorID"},{"message":"Added more await functions, added $showModal"},{"message":"Fixed some file funcs"},{"message":"Added more file functions"},{"message":"Added more file functions"},{"message":"Added form data support to http"},{"message":"Added BaseCommandManager#toArray"},{"message":"Added a lot of sticker functions, changed $sticker fields."},{"message":"Removed content argument from $createThread"},{"message":"Setting Context#obj now clears cache, cache was moved to a property, added context loaders."},{"message":"FunctionManager#add is now a shorthand for addMany"},{"message":"$scope now allows syncing vars, adapted paths to work with other operating systems"},{"message":"Prefixes are no longer required"},{"message":"dollar custom functions now allow recursion"},{"message":"Custom functions are now populated as actual functions, made several changes, backwards compatibility to FunctionManager#load, fixed $messageCreatedAt, and some other stuff"},{"message":"Reenabled outer escaping in experimental compiler, functions are properly escaped"},{"message":"Fixed experimental compiler skipping functions"},{"message":"Fixed experimental compiler again"},{"message":"Added docs translations, fixed compiler again, fixed $thumbnail and some other embed functions causing errors with empty field values, array functions can now return output, $eval now shares context container"},{"message":"Fixed condition fields not working in experimental compiler"},{"message":"Added alloc field to resolveCode"},{"message":"fixed some imports"},{"message":"Another fix to experimental compiler, fixed types in the json"},{"message":"Added $interactionDelete and translations"},{"message":"Added translations.json"},{"message":"Added ForgeClient#commandManagers"},{"message":"I promise this is the last row of events"},{"message":"Another row of events."},{"message":"Added a few more events!"},{"message":"Added $usertag and $discriminator"},{"message":"Changed $jsonSet fields"},{"message":"$arrayMap now allows json, fixed $cloneChannel, $jsonDelete and added error when missing data to app commands"},{"message":"Fixed $cloneChannel, $arrayMap now allows json returned, fixed $jsonDelete"},{"message":"whoops forgot to install deps"},{"message":"Fixed command load crash"},{"message":"Exported generateMetadata again"},{"message":"Fixed circular imports (pain)"},{"message":"Fixed docgen"},{"message":"Added eventabsolutepath option to generateMetadata"},{"message":"Added intents enum, added alias to $hasChannelPerms"},{"message":"Added $cloneChannel, $channelHas(Any)Perms, fixed no perms issue with attach files perm"},{"message":"Added more events"},{"message":"Redone dist"},{"message":"Added $messageSticker and $messageStickerCount, renamed $stickers"},{"message":"Added $fetchResponse"},{"message":"Added $editField"},{"message":"Added $guildHas(Any)Features"},{"message":"Added more aliases"},{"message":"Added $fetchEmbeds, added more functionality to $getEmbed, added $loadEmbeds"},{"message":"Added id to all commands"},{"message":"Renamed $markdown to $inlineCode"},{"message":"Fixed $markdown"},{"message":"Redone errors a bit"},{"message":"Added ForgeClient#getExtension and Context#getExtension"},{"message":"Fixed $argCount, fixed $updateApplicationCommands description, fixed $fetchAuditLog/$fetchUserAuditLog fields"},{"message":"Added $jsonDelete"},{"message":"Swapped $jsonSet fields, now made work"},{"message":"Added output type to functions"},{"message":"Removed message validation from $deleteMessage"},{"message":"Added infinite loop possibility to $loop"},{"message":"Fixed $arrayEvery"},{"message":"Fixed $httpResult with no args"},{"message":"Fixed $arraySome"},{"message":"Fixed $httpRequest ignoring $httpSetContentType"},{"message":"Added $httpSetContentType"},{"message":"Added path to app commans"},{"message":"Added $guildEmojis"},{"message":"Added fields to $applicationCommandDisplay"},{"message":"Added $loop"},{"message":"Added $editStringSelectMenu, $editOption and replaced separator field $getEmbed in favor of field index."},{"message":"Added $applicationCommandDisplay"},{"message":"I trimmed twice"},{"message":"Fixed $argCount returning 1 for empty values"},{"message":"Added $locale"},{"message":"Added roleCount to member properties"},{"message":"Added some functions for audit log management"},{"message":"Added $guildBannedMembers and $guildBanReason"},{"message":"Added enums.json to metadata, added enumName to args in metadata"},{"message":"Added aliases to all $bot functions and $server"},{"message":"Added $memberIDs"},{"message":"added $messageContent"},{"message":"Commented all runnable properties"},{"message":"Added function support to prefixes"},{"message":"Added $modifyChannelPerms and modified internal code"},{"message":"Added $channelPermissionsfor"},{"message":"Fix slashes not working with independent mode"},{"message":"Added independent prop to app commands"},{"message":"Fixed $messageAttachment"},{"message":"Added $replaceText as alias to $replace"},{"message":"Added alias to $sendMessage and added $messageAttachment"},{"message":"Fixed compiler breaking on negation op"},{"message":"$isValidHex no longer accepts hexes like ff#ff00"},{"message":"Small touch on compiler"},{"message":"Added aliases to functions (experimental)"},{"message":"Changed extension loadup message"},{"message":"Removed category property from functions"},{"message":"Added respondOnEdit as client option"},{"message":"Rearranged functions in categories"},{"message":"Fixed path again"},{"message":"Fixed empty files being used"},{"message":"Fixed command path"},{"message":"Categorized all functions"},{"message":"Added category to functions.json, deleted generateFunctionDoc"},{"message":"Added $arrayRandomIndex, $arrayRandomValue, fixed $platform user arg, deleted $attachments in favor of $messageAttachments"},{"message":"Fixed $guildChannelCount"},{"message":"(Might fix invite system?) Added deprecation warning to ForgeClient#useInviteSystem, implemented ForgeClient#trackers."},{"message":"Introduced breaking change to extensions, added extra command checks and minor improvements"},{"message":"Reorganized structures folder"},{"message":"Fixed version on newer functions"},{"message":"Fixed package.json version"},{"message":"Added few channel, voice, select menu and option functions"},{"message":"Bump 1.4.0"}],"1.5.0":[{"message":"Fixed $memberCustomStatus"},{"message":"Added prefixCaseInsensitive client option"},{"message":"Fixed $deleteMessage always returns 0 for one single deleted message"},{"message":"Added deprecation warning logger to $interactionRequirePremium"},{"message":"Added filters to $clearMessages and $clearUserMessages"},{"message":"Fixed $emojiID not working with app emojis"},{"message":"Added $botDescription, $setBotDescription and $setBotTags"},{"message":"Added $unparseDigital, renamed $isBool to $isBoolean"},{"message":"Fixed $deleteComponent functions can cause empty action rows"},{"message":"Fixed successJSON can't handle BigInts"},{"message":"Fixed automod rule options not being cleared after execution"},{"message":"Fixed $guildMemberCount offline presence not working properly"},{"message":"Added new params to $bar, fixed negative input"},{"message":"Added $arrayFindLastIndex"},{"message":"Updated $arraySplice to now return deleted elements"},{"message":"Added $guildEmojiLimit, $guildStickerLimit and $arrayLastIndexOf"},{"message":"Added optional arg to $guildMemberCount"},{"message":"Added $parseDigital"},{"message":"Added $firstMessageID and $channelPinnedMessages"},{"message":"Added optional direction arg to $loop and fixed iteration count for infinite times"},{"message":"Added $deleteIn"},{"message":"Added optional arg to $authorizingIntegrationOwners"},{"message":"Fixed reactions of messages not properly cached, fixes reaction functions"},{"message":"Added optional reason param to $timeout"},{"message":"Fixed $randomGuildChannelID"},{"message":"Added support for nullable and optional custom func params"},{"message":"Added $interactionRawData"},{"message":"Added $channelPermissionsOf"},{"message":"Added various raw data functions"},{"message":"Added $cloneChannelPerms, small changes and additions"},{"message":"Added some new functions"},{"message":"Added new functions, aliases and parameters"},{"message":"Added more flag functions and $setGuildPausedInvites"},{"message":"Added $isPinned"},{"message":"Added args to $messageType, fixed $messageWebhookID"},{"message":"Added more voice state properties"},{"message":"Fixed emoji functions, added support for app emojis, small changes"},{"message":"Added some new functions and properties"},{"message":"Added $editEmoji, update djs to v14.16.3"},{"message":"Updated invite functions"},{"message":"Fix for previous commit"},{"message":"Added new application command functions"},{"message":"Fixed application command functions"},{"message":"Allowed strings as input for $isInteger and $isFloat"},{"message":"Added $authorizingIntegrationOwners and $context"},{"message":"Added $targetMessageEmbeds, new msg properties and updated $djsEval"},{"message":"Added $targetMessage and more message properties"},{"message":"Added $httpPing"},{"message":"Deprecated $interactionRequirePremium in favor of new premium buttons"},{"message":"Added $httpGetHeader"},{"message":"Added $isRepliable"},{"message":"Added $memberActivity"},{"message":"Added $threadStarterMessageID and fixed thread functions"},{"message":"Added new automod rule events and state functions"},{"message":"Added $tts"},{"message":"Fixed $editButton not allowing empty labels"},{"message":"Added new functions, fixed $editButton, update djs to v14.16.2"},{"message":"Added support for more application command customization"},{"message":"Added $editGuildTemplate"},{"message":"Moved prev wrongly added aliases from $loadEmbeds to $fetchEmbeds"},{"message":"Added $messageEditedAt"},{"message":"Added optional separator arg to $selectMenuValues"},{"message":"Added bunch of new automod rule functions"},{"message":"Renamed func to $setGuildBoostProgressBar"},{"message":"Updated deprecated Emoji#url getter"},{"message":"Added $getApplicationEmojis and small improvements"},{"message":"Update $createInvite to always create unique invites"},{"message":"Optimized $guildBoosterIDs, final commit"},{"message":"Revert prev change"},{"message":"Small change"},{"message":"Fixed $guildBoosterIDs again"},{"message":"Fixed $guildBoosterIDs"},{"message":"Added $threadTotalMessagesSent and small fixes"},{"message":"Added more guild boost functions"},{"message":"Fixed $title doesn't allow empty values"},{"message":"Fixed $guildID and $channelID not working with user installable apps"},{"message":"Added $guildHighestRoleID and $guildLowestRoleID"},{"message":"Fixed prev $ fix caused no note on docs?"},{"message":"Fixed $ sign not escaped properly for GitHub commits"},{"message":"Added $$userReferenceID"},{"message":"Added randomRoleID and optional reason arg to voiceMove"},{"message":"'Added $memberLowestRoleID'"},{"message":"Added guild template funcs and fixed typo"},{"message":"Added \\$lastPinTimestamp and aliases to \\$loadEmbeds"},{"message":"Added optional type param to emoji count funcs"},{"message":"Fixed guild funcs not working within ban events"},{"message":"Added optional asc param to \\$rolePosition"},{"message":"Fixed $arrayAdvancedSort"},{"message":"Added support for SKUIds in addButton funcs"},{"message":"Fixed typo in $decrypt desc"},{"message":"Added new functions and userinstall app support, update djs to v14.16.1"},{"message":"Added $encrypt, $decrypt and $randomBytes"},{"message":"Fi"},{"message":"Added $week"},{"message":"Added $deleteThread"},{"message":"Fix channel id being optional in some funcs"},{"message":"Added $setChannelArchiveDuration"},{"message":"Added another function"},{"message":"New functions some new fields for other functions"},{"message":"Idk"},{"message":"Added modifyforumtag"},{"message":"Fixed fetching messages giving partial ones"},{"message":"Added $isArchived and fix threads no cached"},{"message":"Added hasPoll"},{"message":"More poll functionality"},{"message":"Fixed $pollAnswers emojis not showing up"},{"message":"Added some poll functionality"},{"message":"Skill issue"},{"message":"Updated $createInvite with more parameters"},{"message":"Fixed $applicationCommandOptions and new param"},{"message":"Added new param to $cropText"},{"message":"Added $applicationCommandOptions"},{"message":"Added 2 new fields to $webhookSend"},{"message":"Added entitlement support, updated djs to v14.5"},{"message":"Added @private to some command props"},{"message":"Fixed $escapeCode"},{"message":"Added many new cooldown function utilities"},{"message":"Added new field to $bar, added $advancedBar for complex bars."},{"message":"Introduced count and silent operators"},{"message":"Added $average"},{"message":"fixed parseJSON for numbers"},{"message":"Remove old attachments when editing"},{"message":"Added $reverseText"},{"message":"Fixed $bar again"},{"message":"Fixed $bar not working with multi char strings"},{"message":"Added $gc"},{"message":"Small changes"},{"message":"Added $bar"},{"message":"Fixed compiler attempting to read fields for functions that dont have args"},{"message":"Added new workflow"},{"message":"workflow test | 3#"},{"message":"workflow test | #2"},{"message":"dev workflow | #1"},{"message":"Fixed $editButton and $editButtonOf attempting to set empty fields"},{"message":"Added websocket support"},{"message":"Added many functions to edit components and rows from different messages"},{"message":"Some functions did not allow negation operator, this has been fixed."},{"message":"Added $channelIsChildrenOf"},{"message":"Added $djs and $js aliases to $djsEval"},{"message":"Added $discordAPI as alias to $api"},{"message":"Quick change to $api"},{"message":"Added $api"},{"message":"Updated readme"},{"message":"Bump version"}],"2.1.0":[{"message":"Added $deleteField, updated some descriptions"},{"message":"Removed deprecated djs stuff"},{"message":"Added bunch of new guild functions"},{"message":"Added some shard functions, updated $userBadges"},{"message":"Added $memberBanner, bump versions"}],"2.2.0":[{"message":"Added $djsVersion"},{"message":"Added $forward and new guild functions, djs v14.18"},{"message":"Added more forum functions"},{"message":"Added $jsonHas, fixed other json functions"},{"message":"Added $subtext"},{"message":"Fixed $loadComponents"},{"message":"Added $fetchMessage"},{"message":"Added optional guild arg to $applicationCommands"},{"message":"Added optional param to $applicationCommandCount"},{"message":"Added $pathJoin and $pathResolve"},{"message":"Added $fetchRoles, $fetchChannels and new arg to $fetchMembers"},{"message":"Added new functions and more support for app emojis, fixed some functions"},{"message":"Added bunch of new edit select menu functions"},{"message":"Added $getMessageReactions and new arg to $getMessageReactionCount"},{"message":"Added $getInvite and $getGuildInvite, updated $deleteInvite, added more invite properties"},{"message":"Added sort type to $arraySort"},{"message":"Added functions to enable all buttons and components"},{"message":"Added $disableComponents and $disableComponentsOf"},{"message":"Added $disableButtons and $disableButtonsOf"},{"message":"Added support for return statement in $loop"},{"message":"Added $sign and $pi"},{"message":"Fixed $XExists funcs throw errors in console"},{"message":"Added client webhook event functions"},{"message":"Allowed time changing functions to affect $parseDate locales"},{"message":"Added $ramTotal and some aliases"}],"2.3.0":[{"message":"Small changes, fixed ArgType.Date"},{"message":"Added more stage instance support"},{"message":"Marked affected guild functions as deprecated"},{"message":"Added embed support to $webhookEditMessage"},{"message":"Fixed custom function loader"},{"message":"Comited updates"},{"message":"Bumped to main depency Sucessfully"},{"message":"added $chalkLog"},{"message":"Added alias $weekday to $dayOfWeek"},{"message":"Fixed $poll and $pollAnswer"},{"message":"breaking change: changed behavior of $day, Added $dayOfWeek"},{"message":"Added $clearTimeout and $clearInterval"},{"message":"Added local functions"},{"message":"Added optional type property to custom function params"},{"message":"Fixed $isBanned throws error"},{"message":"Added more interaction member support and new functions, fixed $nickname"},{"message":"Added $stickerURL and new arg to $messageStickers"},{"message":"Small changes and fixes"},{"message":"Required param now affects rest arguments, fixed $advancedBar"},{"message":"Added voiceChannelEffectSend event and $effect"},{"message":"Fixed $hasPerms and $hasAnyPerms"},{"message":"Added more webhook funcs and $followChannel, bump versions"}],"2.4.0":[{"message":"Fixed various component functions","timestamp":"2025-08-22T16:57:22.559Z","author":"xNickyDev"},{"message":"Fixed $getComponents (cv2 support)","timestamp":"2025-08-18T14:03:27.129Z","author":"xNickyDev"},{"message":"Fixed buffers and generating enums","timestamp":"2025-08-15T02:49:33.018Z","author":"xNickyDev"},{"message":"Fixed generating paths","timestamp":"2025-07-29T14:29:25.750Z","author":"xNickyDev"},{"message":"Fixed some time functions","timestamp":"2025-07-20T15:32:18.766Z","author":"xNickyDev"},{"message":"Removed deprecated reason args of thread member functions","timestamp":"2025-07-11T13:54:55.163Z","author":"xNickyDev"},{"message":"Small fixes","timestamp":"2025-07-11T13:19:13.998Z","author":"xNickyDev"},{"message":"Support editing select menus in cv2","timestamp":"2025-07-04T10:42:32.634Z","author":"xNickyDev"},{"message":"Fixed $httpRequest causes crash on error, small other fixes","timestamp":"2025-06-30T14:16:37.284Z","author":"xNickyDev"},{"message":"Added new functions, bump djs","timestamp":"2025-06-26T12:35:03.061Z","author":"xNickyDev"},{"message":"Added $isActivityCommand and \"activityCommand\" type","timestamp":"2025-06-23T13:58:14.934Z","author":"xNickyDev"},{"message":"Allowed components for webhook messages, added threadID to $webhookEditMessage","timestamp":"2025-06-23T01:43:23.580Z","author":"xNickyDev"},{"message":"Added new functions","timestamp":"2025-06-21T23:46:13.433Z","author":"xNickyDev"},{"message":"Added activity support, small fixes","timestamp":"2025-06-17T23:56:50.402Z","author":"xNickyDev"},{"message":"Small changes, bump djs","timestamp":"2025-06-16T16:46:48.122Z","author":"xNickyDev"},{"message":"Added rest option to custom function params","timestamp":"2025-06-11T15:44:19.305Z","author":"xNickyDev"},{"message":"Fixed stacking action rows in containers","timestamp":"2025-06-08T14:45:00.185Z","author":"xNickyDev"},{"message":"Fixed prev change on component builders","timestamp":"2025-06-08T07:54:39.212Z","author":"xNickyDev"},{"message":"Fixed $arrayCreate not defaulting to empty array","timestamp":"2025-06-08T06:55:40.602Z","author":"xNickyDev"},{"message":"Added $messageEmojis","timestamp":"2025-06-07T13:17:03.415Z","author":"xNickyDev"},{"message":"Fixed $guildVanityCode, optimized $unparseDigital","timestamp":"2025-06-06T22:12:53.498Z","author":"xNickyDev"},{"message":"Added $cloneRole, $guildInviteExists and new metadata","timestamp":"2025-06-03T21:24:10.034Z","author":"xNickyDev"},{"message":"Added $guildTemplateCode","timestamp":"2025-05-28T18:33:45.595Z","author":"xNickyDev"},{"message":"Added $typeof, $syncGuildTemplate and new arg to $createGuild","timestamp":"2025-05-28T00:45:57.765Z","author":"xNickyDev"},{"message":"Added $getSnapshots","timestamp":"2025-05-27T17:53:35.939Z","author":"xNickyDev"},{"message":"Restructured changelogs.json","timestamp":"2025-05-24T20:07:12.496Z","author":"xNickyDev"},{"message":"Fixed count operator for empty strings"},{"message":"Added desc arg to $attachment, deleted $test"},{"message":"Fixed $memberAvatar and $memberBanner"},{"message":"Fixed $loadComponents, $fetchResponse, $fetchComponents"},{"message":"Added team functions, changed $loop last arg"},{"message":"Fixed edit component functions, bump djs"},{"message":"Added components v2 support"},{"message":"Added soundboard support, bump versions"}],"2.4.1":[{"message":"Fixed broken legacy component functions","timestamp":"2025-08-22T18:55:42.916Z","author":"xNickyDev"}],"2.5.0":[{"message":"Renamed $fetchGuildPreview to $getGuildPreview","timestamp":"2025-09-26T12:56:54.443Z","author":"xNickyDev"},{"message":"Added new events, optimized fetching app emojis","timestamp":"2025-09-23T13:21:24.285Z","author":"xNickyDev"},{"message":"Added new functions and made small adjustments","timestamp":"2025-09-19T17:28:13.859Z","author":"xNickyDev"},{"message":"Added $channelThreadIDs and $fetchThreads","timestamp":"2025-09-06T10:45:31.870Z","author":"xNickyDev"},{"message":"Added int param to $rolePerms and $memberPerms","timestamp":"2025-09-05T16:33:00.998Z","author":"xNickyDev"},{"message":"better fix of commit command","timestamp":"2025-09-05T13:48:51.528Z","author":"aggelos-007"},{"message":"fix $ issue on commits and fixed generateMetadata","timestamp":"2025-09-05T13:35:48.449Z","author":"aggelos-007"},{"message":"Remove ready event in favor of clientReady","timestamp":"2025-09-05T13:26:40.023Z","author":"xNickyDev"},{"message":"Added $getTextSplitIndex","timestamp":"2025-09-04T16:33:13.538Z","author":"aggelos-007"},{"message":"fix $async","timestamp":"2025-09-02T15:42:45.022Z","author":"aggelos-007"},{"message":"fix $setTimeout & $setInterval","timestamp":"2025-09-02T15:21:04.589Z","author":"aggelos-007"},{"message":"Forum tags overhall and addition","timestamp":"2025-08-30T00:33:32.463Z","author":"xNickyDev"},{"message":"Added $setAuditLogReason","timestamp":"2025-08-29T14:45:48.188Z","author":"xNickyDev"},{"message":"Fixed disabling mentions","timestamp":"2025-08-28T21:14:32.470Z","author":"xNickyDev"},{"message":"Added $getPoll, fixed $botMutualGuilds","timestamp":"2025-08-27T22:27:38.926Z","author":"xNickyDev"},{"message":"fix $eval not fetching enviroment variables on escaped code.","timestamp":"2025-08-26T21:38:30.272Z","author":"aggelos-007"},{"message":"Added $guildInvites and many missing properties","timestamp":"2025-08-24T14:13:51.216Z","author":"xNickyDev"},{"message":"Added $arrayUnique and $hasComponents","timestamp":"2025-08-23T14:12:11.269Z","author":"xNickyDev"},{"message":"Added new features, bump djs","timestamp":"2025-08-23T12:15:35.045Z","author":"xNickyDev"}]} \ No newline at end of file +{"1.2.0":[{"message":"Added URL arg type"},{"message":"Fixed updateApplicationCommands partially working"},{"message":"Added updateApplicationCommands"},{"message":"Changed all functions internally to adapt to the new negation operator"},{"message":"Move negation operator to the beginning of function"},{"message":"make executionTime more accurate"},{"message":"added parseInt"},{"message":"Fixed findUser crash"},{"message":"Fixed some grammar errors in docs by Nicky"},{"message":"added ifx function allows blocks of statements"},{"message":"Fixed lastMessageID returning content instead of id"},{"message":"Return no longer requires brackets"},{"message":"Fixed commandInfo"},{"message":"Added allowedInteractionTypes property to commands and the name property now works for interactions"},{"message":"Speeded up interpreter performance"},{"message":"Added negation operator to cancel output of functions"},{"message":"Added deleteCommand"},{"message":"Fixed successJSON and successFormatted"},{"message":"Add line:column to parser errors"},{"message":"Deleted changelogs folder"},{"message":"Moved json files to metadata folder"},{"message":"Added color strings back"},{"message":"Renamed loadJSON = jsonLoad"},{"message":"Added jsonSet"},{"message":"Reordered fields in botOwnerID default to the owner id"},{"message":"Added reason field to createInvite"},{"message":"Fixed botOwnerID and extended its functionality"},{"message":"Added missing reference to ThreadManager.ts"},{"message":"Make httpRequest last field optional and added httpResult [shortcut for env]"},{"message":"Fixed small typo in a log given by FunctionManager#load"},{"message":"Added color functions and new arg type"},{"message":"Added autoModerationActionExecution event and a few functions for it"},{"message":"Added titleURL to embed properties"},{"message":"Added hasExtension"},{"message":"Fixed embed properties and added color and authorURL to it"},{"message":"Added a handful of functions"},{"message":"Renamed runInThread => coroutine"},{"message":"Added lastMessageID"},{"message":"Fix docgen not generating functions"},{"message":"Added interactionFollowUp"},{"message":"Implemented feature for code threading (experimental)"},{"message":"Add error for invalid flags in changelog gen"},{"message":"Make json instead of txt for changelogs"}],"1.3.0":[{"message":"Added mobile option to client"},{"message":"Added $addRoleSelectMenu"},{"message":"added $sliceText and $messageSlice"},{"message":"Added a lot of missing guild and role functions"},{"message":"added $arrayPushJSON and unshift variants"},{"message":"Added $guildChannelIDs and $guildRoleIDs"},{"message":"Added $hyperlink"},{"message":"Added $mentionedXCount"},{"message":"Added command path to compilation errors, fixed some path joins"},{"message":"Added ability to disable unneccesary functions"},{"message":"Improved description of $isValidHex and $isValidLink"},{"message":"Added 2 new properties to extension class (requireExtensions and targetVersions)"},{"message":"Added $isValidHex"},{"message":"Some interpreter optimizations were applied, attempt to fix stickers issue with $editMessage and added $deferUpdate"},{"message":"Added formatting functions"},{"message":"Fixed $stickers indexing and added $sticker (sticker support for responses)"},{"message":"Added $ordinal"},{"message":"Added $enableUserMentions, $enableRoleMentions, $disableEveryoneMention and $disableAllMentions"},{"message":"Added $disableUserMentions, $disableRoleMentions, $nomention and a new field to $reply"},{"message":"Added $disableUserMentions, $disableRoleMentions, $nomention and a new field to $reply"},{"message":"Added bigint functions, and some shorthand functions for $let"},{"message":"Added better logging to ForgeScript core, also implemented api as a function"},{"message":"Fixed negation operator for functions with fields"},{"message":"Functions are now case insensitive, improved commit.ts"},{"message":"Added case insensitive functions, improved commit.ts"},{"message":"Please write the commit message:"},{"message":"Please write the commit message:"},{"message":"Bump ForgeScript version"}],"1.4.0":[{"message":"$arrayLoad now allows loading without values"},{"message":"Fixed $isSlashCommand and slashCommand int type"},{"message":"Fixed guild functions"},{"message":"$option now returns attachment urls"},{"message":"interactionCreate events now forward app commands, might become a breaking change for some (?),"},{"message":"Fixed $guildRulesChannelID"},{"message":"Added more time units"},{"message":"Added $discordTimestamp"},{"message":"Fixed some component functions, added $isJSON"},{"message":"Added $userIDs"},{"message":"Added some more funcs"},{"message":"Added some funcs"},{"message":"Added $voiceMove"},{"message":"Added some new functions"},{"message":"Nothing much"},{"message":"Tried a fix for ephemeral messages not being recognized"},{"message":"Added emoji property to component"},{"message":"Added some aliases and functions"},{"message":"Added $transcript, $guildChannelID, $getComponent and $loadComponent"},{"message":"Removed old compiler."},{"message":"Added $splitTextJoin and $reply now mentions by default"},{"message":"Added registration type to application commands"},{"message":"Added $findMembers"},{"message":"Added $hasAnyPerms"},{"message":"Fixed $guildNSFWLevel"},{"message":"Change $commandInfo's last field."},{"message":"Prefixes no longer sensitive"},{"message":"Fixed no ping behavior"},{"message":"Small typo"},{"message":"Added Arg class for ease of arg creation"},{"message":"Fixed $awaitComponent throwing error regardless of error disabled"},{"message":"Fixed interactionReply 2nd field, fixed $disableConsoleErrors"},{"message":"Added index to parsed functions"},{"message":"Added event emitter to command manager"},{"message":"Added new option to client and command to disable errors"},{"message":"feat: add $userID as alias to $authorID"},{"message":"Added more await functions, added $showModal"},{"message":"Fixed some file funcs"},{"message":"Added more file functions"},{"message":"Added more file functions"},{"message":"Added form data support to http"},{"message":"Added BaseCommandManager#toArray"},{"message":"Added a lot of sticker functions, changed $sticker fields."},{"message":"Removed content argument from $createThread"},{"message":"Setting Context#obj now clears cache, cache was moved to a property, added context loaders."},{"message":"FunctionManager#add is now a shorthand for addMany"},{"message":"$scope now allows syncing vars, adapted paths to work with other operating systems"},{"message":"Prefixes are no longer required"},{"message":"dollar custom functions now allow recursion"},{"message":"Custom functions are now populated as actual functions, made several changes, backwards compatibility to FunctionManager#load, fixed $messageCreatedAt, and some other stuff"},{"message":"Reenabled outer escaping in experimental compiler, functions are properly escaped"},{"message":"Fixed experimental compiler skipping functions"},{"message":"Fixed experimental compiler again"},{"message":"Added docs translations, fixed compiler again, fixed $thumbnail and some other embed functions causing errors with empty field values, array functions can now return output, $eval now shares context container"},{"message":"Fixed condition fields not working in experimental compiler"},{"message":"Added alloc field to resolveCode"},{"message":"fixed some imports"},{"message":"Another fix to experimental compiler, fixed types in the json"},{"message":"Added $interactionDelete and translations"},{"message":"Added translations.json"},{"message":"Added ForgeClient#commandManagers"},{"message":"I promise this is the last row of events"},{"message":"Another row of events."},{"message":"Added a few more events!"},{"message":"Added $usertag and $discriminator"},{"message":"Changed $jsonSet fields"},{"message":"$arrayMap now allows json, fixed $cloneChannel, $jsonDelete and added error when missing data to app commands"},{"message":"Fixed $cloneChannel, $arrayMap now allows json returned, fixed $jsonDelete"},{"message":"whoops forgot to install deps"},{"message":"Fixed command load crash"},{"message":"Exported generateMetadata again"},{"message":"Fixed circular imports (pain)"},{"message":"Fixed docgen"},{"message":"Added eventabsolutepath option to generateMetadata"},{"message":"Added intents enum, added alias to $hasChannelPerms"},{"message":"Added $cloneChannel, $channelHas(Any)Perms, fixed no perms issue with attach files perm"},{"message":"Added more events"},{"message":"Redone dist"},{"message":"Added $messageSticker and $messageStickerCount, renamed $stickers"},{"message":"Added $fetchResponse"},{"message":"Added $editField"},{"message":"Added $guildHas(Any)Features"},{"message":"Added more aliases"},{"message":"Added $fetchEmbeds, added more functionality to $getEmbed, added $loadEmbeds"},{"message":"Added id to all commands"},{"message":"Renamed $markdown to $inlineCode"},{"message":"Fixed $markdown"},{"message":"Redone errors a bit"},{"message":"Added ForgeClient#getExtension and Context#getExtension"},{"message":"Fixed $argCount, fixed $updateApplicationCommands description, fixed $fetchAuditLog/$fetchUserAuditLog fields"},{"message":"Added $jsonDelete"},{"message":"Swapped $jsonSet fields, now made work"},{"message":"Added output type to functions"},{"message":"Removed message validation from $deleteMessage"},{"message":"Added infinite loop possibility to $loop"},{"message":"Fixed $arrayEvery"},{"message":"Fixed $httpResult with no args"},{"message":"Fixed $arraySome"},{"message":"Fixed $httpRequest ignoring $httpSetContentType"},{"message":"Added $httpSetContentType"},{"message":"Added path to app commans"},{"message":"Added $guildEmojis"},{"message":"Added fields to $applicationCommandDisplay"},{"message":"Added $loop"},{"message":"Added $editStringSelectMenu, $editOption and replaced separator field $getEmbed in favor of field index."},{"message":"Added $applicationCommandDisplay"},{"message":"I trimmed twice"},{"message":"Fixed $argCount returning 1 for empty values"},{"message":"Added $locale"},{"message":"Added roleCount to member properties"},{"message":"Added some functions for audit log management"},{"message":"Added $guildBannedMembers and $guildBanReason"},{"message":"Added enums.json to metadata, added enumName to args in metadata"},{"message":"Added aliases to all $bot functions and $server"},{"message":"Added $memberIDs"},{"message":"added $messageContent"},{"message":"Commented all runnable properties"},{"message":"Added function support to prefixes"},{"message":"Added $modifyChannelPerms and modified internal code"},{"message":"Added $channelPermissionsfor"},{"message":"Fix slashes not working with independent mode"},{"message":"Added independent prop to app commands"},{"message":"Fixed $messageAttachment"},{"message":"Added $replaceText as alias to $replace"},{"message":"Added alias to $sendMessage and added $messageAttachment"},{"message":"Fixed compiler breaking on negation op"},{"message":"$isValidHex no longer accepts hexes like ff#ff00"},{"message":"Small touch on compiler"},{"message":"Added aliases to functions (experimental)"},{"message":"Changed extension loadup message"},{"message":"Removed category property from functions"},{"message":"Added respondOnEdit as client option"},{"message":"Rearranged functions in categories"},{"message":"Fixed path again"},{"message":"Fixed empty files being used"},{"message":"Fixed command path"},{"message":"Categorized all functions"},{"message":"Added category to functions.json, deleted generateFunctionDoc"},{"message":"Added $arrayRandomIndex, $arrayRandomValue, fixed $platform user arg, deleted $attachments in favor of $messageAttachments"},{"message":"Fixed $guildChannelCount"},{"message":"(Might fix invite system?) Added deprecation warning to ForgeClient#useInviteSystem, implemented ForgeClient#trackers."},{"message":"Introduced breaking change to extensions, added extra command checks and minor improvements"},{"message":"Reorganized structures folder"},{"message":"Fixed version on newer functions"},{"message":"Fixed package.json version"},{"message":"Added few channel, voice, select menu and option functions"},{"message":"Bump 1.4.0"}],"1.5.0":[{"message":"Fixed $memberCustomStatus"},{"message":"Added prefixCaseInsensitive client option"},{"message":"Fixed $deleteMessage always returns 0 for one single deleted message"},{"message":"Added deprecation warning logger to $interactionRequirePremium"},{"message":"Added filters to $clearMessages and $clearUserMessages"},{"message":"Fixed $emojiID not working with app emojis"},{"message":"Added $botDescription, $setBotDescription and $setBotTags"},{"message":"Added $unparseDigital, renamed $isBool to $isBoolean"},{"message":"Fixed $deleteComponent functions can cause empty action rows"},{"message":"Fixed successJSON can't handle BigInts"},{"message":"Fixed automod rule options not being cleared after execution"},{"message":"Fixed $guildMemberCount offline presence not working properly"},{"message":"Added new params to $bar, fixed negative input"},{"message":"Added $arrayFindLastIndex"},{"message":"Updated $arraySplice to now return deleted elements"},{"message":"Added $guildEmojiLimit, $guildStickerLimit and $arrayLastIndexOf"},{"message":"Added optional arg to $guildMemberCount"},{"message":"Added $parseDigital"},{"message":"Added $firstMessageID and $channelPinnedMessages"},{"message":"Added optional direction arg to $loop and fixed iteration count for infinite times"},{"message":"Added $deleteIn"},{"message":"Added optional arg to $authorizingIntegrationOwners"},{"message":"Fixed reactions of messages not properly cached, fixes reaction functions"},{"message":"Added optional reason param to $timeout"},{"message":"Fixed $randomGuildChannelID"},{"message":"Added support for nullable and optional custom func params"},{"message":"Added $interactionRawData"},{"message":"Added $channelPermissionsOf"},{"message":"Added various raw data functions"},{"message":"Added $cloneChannelPerms, small changes and additions"},{"message":"Added some new functions"},{"message":"Added new functions, aliases and parameters"},{"message":"Added more flag functions and $setGuildPausedInvites"},{"message":"Added $isPinned"},{"message":"Added args to $messageType, fixed $messageWebhookID"},{"message":"Added more voice state properties"},{"message":"Fixed emoji functions, added support for app emojis, small changes"},{"message":"Added some new functions and properties"},{"message":"Added $editEmoji, update djs to v14.16.3"},{"message":"Updated invite functions"},{"message":"Fix for previous commit"},{"message":"Added new application command functions"},{"message":"Fixed application command functions"},{"message":"Allowed strings as input for $isInteger and $isFloat"},{"message":"Added $authorizingIntegrationOwners and $context"},{"message":"Added $targetMessageEmbeds, new msg properties and updated $djsEval"},{"message":"Added $targetMessage and more message properties"},{"message":"Added $httpPing"},{"message":"Deprecated $interactionRequirePremium in favor of new premium buttons"},{"message":"Added $httpGetHeader"},{"message":"Added $isRepliable"},{"message":"Added $memberActivity"},{"message":"Added $threadStarterMessageID and fixed thread functions"},{"message":"Added new automod rule events and state functions"},{"message":"Added $tts"},{"message":"Fixed $editButton not allowing empty labels"},{"message":"Added new functions, fixed $editButton, update djs to v14.16.2"},{"message":"Added support for more application command customization"},{"message":"Added $editGuildTemplate"},{"message":"Moved prev wrongly added aliases from $loadEmbeds to $fetchEmbeds"},{"message":"Added $messageEditedAt"},{"message":"Added optional separator arg to $selectMenuValues"},{"message":"Added bunch of new automod rule functions"},{"message":"Renamed func to $setGuildBoostProgressBar"},{"message":"Updated deprecated Emoji#url getter"},{"message":"Added $getApplicationEmojis and small improvements"},{"message":"Update $createInvite to always create unique invites"},{"message":"Optimized $guildBoosterIDs, final commit"},{"message":"Revert prev change"},{"message":"Small change"},{"message":"Fixed $guildBoosterIDs again"},{"message":"Fixed $guildBoosterIDs"},{"message":"Added $threadTotalMessagesSent and small fixes"},{"message":"Added more guild boost functions"},{"message":"Fixed $title doesn't allow empty values"},{"message":"Fixed $guildID and $channelID not working with user installable apps"},{"message":"Added $guildHighestRoleID and $guildLowestRoleID"},{"message":"Fixed prev $ fix caused no note on docs?"},{"message":"Fixed $ sign not escaped properly for GitHub commits"},{"message":"Added $$userReferenceID"},{"message":"Added randomRoleID and optional reason arg to voiceMove"},{"message":"'Added $memberLowestRoleID'"},{"message":"Added guild template funcs and fixed typo"},{"message":"Added \\$lastPinTimestamp and aliases to \\$loadEmbeds"},{"message":"Added optional type param to emoji count funcs"},{"message":"Fixed guild funcs not working within ban events"},{"message":"Added optional asc param to \\$rolePosition"},{"message":"Fixed $arrayAdvancedSort"},{"message":"Added support for SKUIds in addButton funcs"},{"message":"Fixed typo in $decrypt desc"},{"message":"Added new functions and userinstall app support, update djs to v14.16.1"},{"message":"Added $encrypt, $decrypt and $randomBytes"},{"message":"Fi"},{"message":"Added $week"},{"message":"Added $deleteThread"},{"message":"Fix channel id being optional in some funcs"},{"message":"Added $setChannelArchiveDuration"},{"message":"Added another function"},{"message":"New functions some new fields for other functions"},{"message":"Idk"},{"message":"Added modifyforumtag"},{"message":"Fixed fetching messages giving partial ones"},{"message":"Added $isArchived and fix threads no cached"},{"message":"Added hasPoll"},{"message":"More poll functionality"},{"message":"Fixed $pollAnswers emojis not showing up"},{"message":"Added some poll functionality"},{"message":"Skill issue"},{"message":"Updated $createInvite with more parameters"},{"message":"Fixed $applicationCommandOptions and new param"},{"message":"Added new param to $cropText"},{"message":"Added $applicationCommandOptions"},{"message":"Added 2 new fields to $webhookSend"},{"message":"Added entitlement support, updated djs to v14.5"},{"message":"Added @private to some command props"},{"message":"Fixed $escapeCode"},{"message":"Added many new cooldown function utilities"},{"message":"Added new field to $bar, added $advancedBar for complex bars."},{"message":"Introduced count and silent operators"},{"message":"Added $average"},{"message":"fixed parseJSON for numbers"},{"message":"Remove old attachments when editing"},{"message":"Added $reverseText"},{"message":"Fixed $bar again"},{"message":"Fixed $bar not working with multi char strings"},{"message":"Added $gc"},{"message":"Small changes"},{"message":"Added $bar"},{"message":"Fixed compiler attempting to read fields for functions that dont have args"},{"message":"Added new workflow"},{"message":"workflow test | 3#"},{"message":"workflow test | #2"},{"message":"dev workflow | #1"},{"message":"Fixed $editButton and $editButtonOf attempting to set empty fields"},{"message":"Added websocket support"},{"message":"Added many functions to edit components and rows from different messages"},{"message":"Some functions did not allow negation operator, this has been fixed."},{"message":"Added $channelIsChildrenOf"},{"message":"Added $djs and $js aliases to $djsEval"},{"message":"Added $discordAPI as alias to $api"},{"message":"Quick change to $api"},{"message":"Added $api"},{"message":"Updated readme"},{"message":"Bump version"}],"2.1.0":[{"message":"Added $deleteField, updated some descriptions"},{"message":"Removed deprecated djs stuff"},{"message":"Added bunch of new guild functions"},{"message":"Added some shard functions, updated $userBadges"},{"message":"Added $memberBanner, bump versions"}],"2.2.0":[{"message":"Added $djsVersion"},{"message":"Added $forward and new guild functions, djs v14.18"},{"message":"Added more forum functions"},{"message":"Added $jsonHas, fixed other json functions"},{"message":"Added $subtext"},{"message":"Fixed $loadComponents"},{"message":"Added $fetchMessage"},{"message":"Added optional guild arg to $applicationCommands"},{"message":"Added optional param to $applicationCommandCount"},{"message":"Added $pathJoin and $pathResolve"},{"message":"Added $fetchRoles, $fetchChannels and new arg to $fetchMembers"},{"message":"Added new functions and more support for app emojis, fixed some functions"},{"message":"Added bunch of new edit select menu functions"},{"message":"Added $getMessageReactions and new arg to $getMessageReactionCount"},{"message":"Added $getInvite and $getGuildInvite, updated $deleteInvite, added more invite properties"},{"message":"Added sort type to $arraySort"},{"message":"Added functions to enable all buttons and components"},{"message":"Added $disableComponents and $disableComponentsOf"},{"message":"Added $disableButtons and $disableButtonsOf"},{"message":"Added support for return statement in $loop"},{"message":"Added $sign and $pi"},{"message":"Fixed $XExists funcs throw errors in console"},{"message":"Added client webhook event functions"},{"message":"Allowed time changing functions to affect $parseDate locales"},{"message":"Added $ramTotal and some aliases"}],"2.3.0":[{"message":"Small changes, fixed ArgType.Date"},{"message":"Added more stage instance support"},{"message":"Marked affected guild functions as deprecated"},{"message":"Added embed support to $webhookEditMessage"},{"message":"Fixed custom function loader"},{"message":"Comited updates"},{"message":"Bumped to main depency Sucessfully"},{"message":"added $chalkLog"},{"message":"Added alias $weekday to $dayOfWeek"},{"message":"Fixed $poll and $pollAnswer"},{"message":"breaking change: changed behavior of $day, Added $dayOfWeek"},{"message":"Added $clearTimeout and $clearInterval"},{"message":"Added local functions"},{"message":"Added optional type property to custom function params"},{"message":"Fixed $isBanned throws error"},{"message":"Added more interaction member support and new functions, fixed $nickname"},{"message":"Added $stickerURL and new arg to $messageStickers"},{"message":"Small changes and fixes"},{"message":"Required param now affects rest arguments, fixed $advancedBar"},{"message":"Added voiceChannelEffectSend event and $effect"},{"message":"Fixed $hasPerms and $hasAnyPerms"},{"message":"Added more webhook funcs and $followChannel, bump versions"}],"2.4.0":[{"message":"Fixed various component functions","timestamp":"2025-08-22T16:57:22.559Z","author":"xNickyDev"},{"message":"Fixed $getComponents (cv2 support)","timestamp":"2025-08-18T14:03:27.129Z","author":"xNickyDev"},{"message":"Fixed buffers and generating enums","timestamp":"2025-08-15T02:49:33.018Z","author":"xNickyDev"},{"message":"Fixed generating paths","timestamp":"2025-07-29T14:29:25.750Z","author":"xNickyDev"},{"message":"Fixed some time functions","timestamp":"2025-07-20T15:32:18.766Z","author":"xNickyDev"},{"message":"Removed deprecated reason args of thread member functions","timestamp":"2025-07-11T13:54:55.163Z","author":"xNickyDev"},{"message":"Small fixes","timestamp":"2025-07-11T13:19:13.998Z","author":"xNickyDev"},{"message":"Support editing select menus in cv2","timestamp":"2025-07-04T10:42:32.634Z","author":"xNickyDev"},{"message":"Fixed $httpRequest causes crash on error, small other fixes","timestamp":"2025-06-30T14:16:37.284Z","author":"xNickyDev"},{"message":"Added new functions, bump djs","timestamp":"2025-06-26T12:35:03.061Z","author":"xNickyDev"},{"message":"Added $isActivityCommand and \"activityCommand\" type","timestamp":"2025-06-23T13:58:14.934Z","author":"xNickyDev"},{"message":"Allowed components for webhook messages, added threadID to $webhookEditMessage","timestamp":"2025-06-23T01:43:23.580Z","author":"xNickyDev"},{"message":"Added new functions","timestamp":"2025-06-21T23:46:13.433Z","author":"xNickyDev"},{"message":"Added activity support, small fixes","timestamp":"2025-06-17T23:56:50.402Z","author":"xNickyDev"},{"message":"Small changes, bump djs","timestamp":"2025-06-16T16:46:48.122Z","author":"xNickyDev"},{"message":"Added rest option to custom function params","timestamp":"2025-06-11T15:44:19.305Z","author":"xNickyDev"},{"message":"Fixed stacking action rows in containers","timestamp":"2025-06-08T14:45:00.185Z","author":"xNickyDev"},{"message":"Fixed prev change on component builders","timestamp":"2025-06-08T07:54:39.212Z","author":"xNickyDev"},{"message":"Fixed $arrayCreate not defaulting to empty array","timestamp":"2025-06-08T06:55:40.602Z","author":"xNickyDev"},{"message":"Added $messageEmojis","timestamp":"2025-06-07T13:17:03.415Z","author":"xNickyDev"},{"message":"Fixed $guildVanityCode, optimized $unparseDigital","timestamp":"2025-06-06T22:12:53.498Z","author":"xNickyDev"},{"message":"Added $cloneRole, $guildInviteExists and new metadata","timestamp":"2025-06-03T21:24:10.034Z","author":"xNickyDev"},{"message":"Added $guildTemplateCode","timestamp":"2025-05-28T18:33:45.595Z","author":"xNickyDev"},{"message":"Added $typeof, $syncGuildTemplate and new arg to $createGuild","timestamp":"2025-05-28T00:45:57.765Z","author":"xNickyDev"},{"message":"Added $getSnapshots","timestamp":"2025-05-27T17:53:35.939Z","author":"xNickyDev"},{"message":"Restructured changelogs.json","timestamp":"2025-05-24T20:07:12.496Z","author":"xNickyDev"},{"message":"Fixed count operator for empty strings"},{"message":"Added desc arg to $attachment, deleted $test"},{"message":"Fixed $memberAvatar and $memberBanner"},{"message":"Fixed $loadComponents, $fetchResponse, $fetchComponents"},{"message":"Added team functions, changed $loop last arg"},{"message":"Fixed edit component functions, bump djs"},{"message":"Added components v2 support"},{"message":"Added soundboard support, bump versions"}],"2.4.1":[{"message":"Fixed broken legacy component functions","timestamp":"2025-08-22T18:55:42.916Z","author":"xNickyDev"}],"2.5.0":[{"message":"Renamed $fetchGuildPreview to $getGuildPreview","timestamp":"2025-09-26T12:56:54.443Z","author":"xNickyDev"},{"message":"Added new events, optimized fetching app emojis","timestamp":"2025-09-23T13:21:24.285Z","author":"xNickyDev"},{"message":"Added new functions and made small adjustments","timestamp":"2025-09-19T17:28:13.859Z","author":"xNickyDev"},{"message":"Added $channelThreadIDs and $fetchThreads","timestamp":"2025-09-06T10:45:31.870Z","author":"xNickyDev"},{"message":"Added int param to $rolePerms and $memberPerms","timestamp":"2025-09-05T16:33:00.998Z","author":"xNickyDev"},{"message":"better fix of commit command","timestamp":"2025-09-05T13:48:51.528Z","author":"aggelos-007"},{"message":"fix $ issue on commits and fixed generateMetadata","timestamp":"2025-09-05T13:35:48.449Z","author":"aggelos-007"},{"message":"Remove ready event in favor of clientReady","timestamp":"2025-09-05T13:26:40.023Z","author":"xNickyDev"},{"message":"Added $getTextSplitIndex","timestamp":"2025-09-04T16:33:13.538Z","author":"aggelos-007"},{"message":"fix $async","timestamp":"2025-09-02T15:42:45.022Z","author":"aggelos-007"},{"message":"fix $setTimeout & $setInterval","timestamp":"2025-09-02T15:21:04.589Z","author":"aggelos-007"},{"message":"Forum tags overhall and addition","timestamp":"2025-08-30T00:33:32.463Z","author":"xNickyDev"},{"message":"Added $setAuditLogReason","timestamp":"2025-08-29T14:45:48.188Z","author":"xNickyDev"},{"message":"Fixed disabling mentions","timestamp":"2025-08-28T21:14:32.470Z","author":"xNickyDev"},{"message":"Added $getPoll, fixed $botMutualGuilds","timestamp":"2025-08-27T22:27:38.926Z","author":"xNickyDev"},{"message":"fix $eval not fetching enviroment variables on escaped code.","timestamp":"2025-08-26T21:38:30.272Z","author":"aggelos-007"},{"message":"Added $guildInvites and many missing properties","timestamp":"2025-08-24T14:13:51.216Z","author":"xNickyDev"},{"message":"Added $arrayUnique and $hasComponents","timestamp":"2025-08-23T14:12:11.269Z","author":"xNickyDev"},{"message":"Added new features, bump djs","timestamp":"2025-08-23T12:15:35.045Z","author":"xNickyDev"}],"2.6.0":[{"message":"Marked $setCalendar as experimental for now","timestamp":"2026-01-12T09:02:22.657Z","author":"xNickyDev"},{"message":"Clone and revamp local functions","timestamp":"2026-01-12T00:56:50.310Z","author":"xNickyDev"},{"message":"Removed alias $addItem from $addMediaItem","timestamp":"2026-01-10T00:43:09.608Z","author":"xNickyDev"},{"message":"Added $setGuildInvitesDisabled and $setGuildDmsDisabled","timestamp":"2026-01-10T00:04:55.105Z","author":"xNickyDev"},{"message":"Allowed enabling mentions without ids, added $enableAllMentions","timestamp":"2025-12-13T12:41:35.921Z","author":"xNickyDev"},{"message":"Added $silent","timestamp":"2025-12-09T14:28:43.505Z","author":"xNickyDev"},{"message":"Support setting client guild avatar, banner and bio","timestamp":"2025-12-08T22:49:02.585Z","author":"xNickyDev"},{"message":"Fixed $separateNumber and $separateBigint replace minus with sep","timestamp":"2025-11-21T23:58:23.327Z","author":"xNickyDev"},{"message":"Added $emojiAuthorID","timestamp":"2025-11-21T23:41:43.017Z","author":"xNickyDev"},{"message":"Bump djs","timestamp":"2025-11-18T15:13:25.396Z","author":"xNickyDev"},{"message":"Added $roleHasPerms and $roleHasAnyPerms","timestamp":"2025-11-14T22:29:44.291Z","author":"xNickyDev"},{"message":"Added $jsonAssign","timestamp":"2025-11-07T14:09:22.225Z","author":"xNickyDev"},{"message":"Added $getWebhook, small webhook overhall","timestamp":"2025-10-28T22:31:50.048Z","author":"xNickyDev"},{"message":"Added $addFileUpload","timestamp":"2025-10-28T15:35:10.523Z","author":"xNickyDev"},{"message":"Fixed $arrayUnique not working with objects","timestamp":"2025-10-15T13:20:37.754Z","author":"xNickyDev"},{"message":"Added $getAutomodRuleActions","timestamp":"2025-10-15T13:02:15.431Z","author":"xNickyDev"},{"message":"Fixed prev change caused default spoiler on containers","timestamp":"2025-10-15T12:36:37.192Z","author":"xNickyDev"},{"message":"Added $memberBotRoleID","timestamp":"2025-10-14T21:05:28.183Z","author":"xNickyDev"},{"message":"Added scheduled event support","timestamp":"2025-10-14T15:54:00.747Z","author":"xNickyDev"},{"message":"Fixed partySize activity property","timestamp":"2025-10-14T11:13:16.446Z","author":"xNickyDev"},{"message":"Small fixes and improvements","timestamp":"2025-10-13T11:51:33.025Z","author":"xNickyDev"},{"message":"Added new modal components, bump djs","timestamp":"2025-10-10T17:08:57.912Z","author":"xNickyDev"},{"message":"Made some arguments optional when editing buttons/options","timestamp":"2025-09-29T22:31:27.505Z","author":"xNickyDev"},{"message":"added license comments for the files","timestamp":"2025-09-28T19:41:45.883Z","author":"aggelos-007"},{"message":"Fixed $addActionRowTo","timestamp":"2025-09-26T14:47:17.112Z","author":"xNickyDev"}]} \ No newline at end of file diff --git a/metadata/enums.json b/metadata/enums.json index 335c93287b..6c9047d832 100644 --- a/metadata/enums.json +++ b/metadata/enums.json @@ -1 +1 @@ -{"SortType":["asc","desc"],"AuditLogEvent":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"AuditProperty":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"AutoModerationActionType":["BlockMessage","SendAlertMessage","Timeout","BlockMemberInteraction"],"AutoModerationRuleTriggerType":["Keyword","Spam","KeywordPreset","MentionSpam","MemberProfile"],"AutoModerationRuleEventType":["MessageSend","MemberUpdate"],"AutomodRuleProperty":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"AutoModerationRuleKeywordPresetType":["Profanity","SexualContent","Slurs"],"TeamMemberProperty":["id","role","membership"],"ApplicationWebhookEventType":["ApplicationAuthorized","ApplicationDeauthorized","EntitlementCreate","QuestUserEnrollment"],"ApplicationWebhookEventStatus":["Disabled","Enabled","DisabledByDiscord"],"ActivityType":["Playing","Streaming","Listening","Watching","Custom","Competing"],"Status":["Ready","Connecting","Reconnecting","Idle","Nearly","Disconnected","WaitingForGuilds","Identifying","Resuming"],"PermissionFlagsBits":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"ChannelType":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"ChannelFlags":["GuildFeedRemoved","Pinned","ActiveChannelsRemoved","RequireTag","IsSpam","IsGuildResourceChannel","ClydeAI","IsScheduledForDeletion","HideMediaDownloadOptions"],"PermissionOverwritesProperty":["id","type","allow","deny"],"PermissionsStateType":["allow","deny"],"VoiceRegionType":["brazil","hongkong","india","japan","rotterdam","russia","singapore","south-korea","southafrica","sydney","us-central","us-east","us-south","us-west"],"WebhookProperty":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"StageInstancePrivacyLevel":["Public","GuildOnly"],"ForumLayoutType":["NotSet","ListView","GalleryView"],"SortOrderType":["LatestActivity","CreationDate"],"ThreadAutoArchiveDuration":["OneHour","OneDay","ThreeDays","OneWeek"],"ForumTagProperty":["emoji","id","moderated","name"],"StageProperty":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"VideoQualityMode":["Auto","Full"],"ButtonStyle":["Primary","Secondary","Success","Danger","Link","Premium"],"SeparatorSpacingSize":["Small","Large"],"TextInputStyle":["Short","Paragraph"],"Colors":["Default","White","Aqua","Green","Blue","Yellow","Purple","LuminousVividPink","Fuchsia","Gold","Orange","Red","Grey","Navy","DarkAqua","DarkGreen","DarkBlue","DarkPurple","DarkVividPink","DarkGold","DarkOrange","DarkRed","DarkGrey","DarkerGrey","LightGrey","DarkNavy","Blurple","Greyple","DarkButNotBlack","NotQuiteBlack"],"EmojiType":["normal","animated"],"ApplicationEmojiProperty":["authorID","name","id","identifier","requiresColons","managed","timestamp","animated","url","format"],"EntitlementType":["Purchase","PremiumSubscription","DeveloperGift","TestModePurchase","FreePurchase","UserGift","PremiumPurchase","ApplicationSubscription"],"InviteProperty":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"GuildPreviewProperty":["id","name","description","features","timestamp","icon","splash","emojis","stickers","discoverySplash","approximateMemberCount","approximatePresenceCount"],"TemplateProperty":["code","name","description","guildID","authorID","timestamp","updatedTimestamp","url","usageCount","unSynced"],"GuildDefaultMessageNotifications":["AllMessages","OnlyMentions"],"GuildExplicitContentFilter":["Disabled","MembersWithoutRoles","AllMembers"],"GuildFeature":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled"],"GuildMFALevel":["None","Elevated"],"PresenceStatus":["online","idle","dnd","offline"],"GuildNSFWLevel":["Default","Explicit","Safe","AgeRestricted"],"Locale":["Indonesian","EnglishUS","EnglishGB","Bulgarian","ChineseCN","ChineseTW","Croatian","Czech","Danish","Dutch","Finnish","French","German","Greek","Hindi","Hungarian","Italian","Japanese","Korean","Lithuanian","Norwegian","Polish","PortugueseBR","Romanian","Russian","SpanishES","SpanishLATAM","Swedish","Thai","Turkish","Ukrainian","Vietnamese"],"SoundboardSoundProperty":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"GuildVerificationLevel":["None","Low","Medium","High","VeryHigh"],"HTTPContentType":["Json","Text"],"AuthorizingIntegrationOwnersType":["Guild","User"],"InteractionContextType":["Guild","BotDM","PrivateChannel"],"MemberProperty":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"MessageProperty":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"EmbedProperty":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"LogType":["Warn","Deprecated","Debug","Info","Error"],"ChannelProperty":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"SearchMethodType":["startsWith","endsWith","includes"],"RoleProperty":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"ActivityProperty":["name","type","details","buttons","flags","timestamp","endTimestamp","startTimestamp","partyID","partySize","syncID","url","largeText","largeImage","smallText","smallImage"],"CustomStatusType":["state","emoji"],"GuildMemberFlags":["DidRejoin","CompletedOnboarding","BypassesVerification","StartedOnboarding","IsGuest","StartedHomeActions","CompletedHomeActions","AutomodQuarantinedUsernameOrGuildNickname","AutomodQuarantinedBio","DmSettingsUpsellAcknowledged","AutoModQuarantinedGuildTag"],"ComponentProperty":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"ReactionType":["normal","burst"],"ReactionProperty":["emoji","count","burstCount","normalCount","me","meBurst","burstColors"],"PollProperty":["question","layoutType","answers","answerCount","totalVotes","expiresTimestamp","allowMultiselect","resultsFinalized"],"AttachmentFlags":["IsRemix"],"MessageFlags":["Crossposted","IsCrosspost","SuppressEmbeds","SourceMessageDeleted","Urgent","HasThread","Ephemeral","Loading","FailedToMentionSomeRolesInThread","ShouldShowLinkNotDiscordWarning","SuppressNotifications","IsVoiceMessage","HasSnapshot","IsComponentsV2"],"StickerReturnType":["id","url"],"MessageType":["Default","RecipientAdd","RecipientRemove","Call","ChannelNameChange","ChannelIconChange","ChannelPinnedMessage","UserJoin","GuildBoost","GuildBoostTier1","GuildBoostTier2","GuildBoostTier3","ChannelFollowAdd","GuildDiscoveryDisqualified","GuildDiscoveryRequalified","GuildDiscoveryGracePeriodInitialWarning","GuildDiscoveryGracePeriodFinalWarning","ThreadCreated","Reply","ChatInputCommand","ThreadStarterMessage","GuildInviteReminder","ContextMenuCommand","AutoModerationAction","RoleSubscriptionPurchase","InteractionPremiumUpsell","StageStart","StageEnd","StageSpeaker","StageRaiseHand","StageTopic","GuildApplicationPremiumSubscription","GuildIncidentAlertModeEnabled","GuildIncidentAlertModeDisabled","GuildIncidentReportRaid","GuildIncidentReportFalseAlarm","PurchaseNotification","PollResult"],"PollLayoutType":["Default"],"RoleColor":["Primary","Secondary","Tertiary"],"RoleFlags":["InPrompt"],"BulkProperty":["messages","contents","timestamps","attachments","stickers","users","count"],"VoiceEffectProperty":["emoji","channelID","guildID","userID","soundID","soundVolume","animationID","animationType"],"EmojiProperty":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"EntitlementProperty":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"GuildProperty":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"PresenceProperty":["id","guildID","status","platform"],"ScheduledEventProperty":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType"],"VoiceStateProperty":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"StickerProperty":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"SubscriptionProperty":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"UserProperty":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"StickerFormatType":["PNG","APNG","Lottie","GIF"],"StickerType":["Standard","Guild"],"BasicTimeFormat":["Numeric","TwoDigit"],"TimestampStyles":["ShortTime","LongTime","ShortDate","LongDate","ShortDateTime","LongDateTime","RelativeTime"],"ExtendedTimeFormat":["Numeric","TwoDigit","Long","Short","Narrow"],"DateType":["LocaleDate","LocaleTime","Locale","Date","ISO","UTC","Time"],"CalendarType":["Buddhist","Chinese","Coptic","Dangi","Ethioaa","Ethiopic","Gregory","Hebrew","Indian","Islamic","IslamicUmalqura","IslamicTbla","IslamicCivil","IslamicRgsa","Iso8601","Japanese","Persian","Roc"],"UserFlags":["Staff","Partner","Hypesquad","BugHunterLevel1","MFASMS","PremiumPromoDismissed","HypeSquadOnlineHouse1","HypeSquadOnlineHouse2","HypeSquadOnlineHouse3","PremiumEarlySupporter","TeamPseudoUser","HasUnreadUrgentMessages","BugHunterLevel2","VerifiedBot","VerifiedDeveloper","CertifiedModerator","BotHTTPInteractions","Spammer","DisablePremium","ActiveDeveloper","Quarantined","Collaborator","RestrictedCollaborator"],"WebhookType":["Incoming","ChannelFollower","Application"],"ConnectionState":["Connecting","Closed","Closing","Open"]} \ No newline at end of file +{"SortType":["asc","desc"],"AuditLogEvent":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"AuditProperty":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"AutoModerationActionType":["BlockMessage","SendAlertMessage","Timeout","BlockMemberInteraction"],"AutoModerationRuleTriggerType":["Keyword","Spam","KeywordPreset","MentionSpam","MemberProfile"],"AutoModerationRuleEventType":["MessageSend","MemberUpdate"],"AutomodRuleProperty":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"AutomodRuleActionProperty":["type","channelID","durationSeconds","customMessage"],"AutoModerationRuleKeywordPresetType":["Profanity","SexualContent","Slurs"],"TeamMemberProperty":["id","role","membership"],"ApplicationWebhookEventType":["ApplicationAuthorized","ApplicationDeauthorized","EntitlementCreate","EntitlementUpdate","EntitlementDelete","QuestUserEnrollment"],"ApplicationWebhookEventStatus":["Disabled","Enabled","DisabledByDiscord"],"ActivityType":["Playing","Streaming","Listening","Watching","Custom","Competing"],"Status":["Ready","Connecting","Reconnecting","Idle","Nearly","Disconnected","WaitingForGuilds","Identifying","Resuming"],"PermissionFlagsBits":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"ChannelType":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"ChannelFlags":["GuildFeedRemoved","Pinned","ActiveChannelsRemoved","RequireTag","IsSpam","IsGuildResourceChannel","ClydeAI","IsScheduledForDeletion","HideMediaDownloadOptions"],"PermissionOverwritesProperty":["id","type","allow","deny"],"PermissionsStateType":["allow","deny"],"VoiceRegionType":["brazil","hongkong","india","japan","rotterdam","russia","singapore","south-korea","southafrica","sydney","us-central","us-east","us-south","us-west"],"WebhookProperty":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"StageInstancePrivacyLevel":["Public","GuildOnly"],"ForumLayoutType":["NotSet","ListView","GalleryView"],"SortOrderType":["LatestActivity","CreationDate"],"ThreadAutoArchiveDuration":["OneHour","OneDay","ThreeDays","OneWeek"],"ForumTagProperty":["emoji","id","moderated","name"],"StageProperty":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"VideoQualityMode":["Auto","Full"],"ButtonStyle":["Primary","Secondary","Success","Danger","Link","Premium"],"SeparatorSpacingSize":["Small","Large"],"TextInputStyle":["Short","Paragraph"],"Colors":["Default","White","Aqua","Green","Blue","Yellow","Purple","LuminousVividPink","Fuchsia","Gold","Orange","Red","Grey","Navy","DarkAqua","DarkGreen","DarkBlue","DarkPurple","DarkVividPink","DarkGold","DarkOrange","DarkRed","DarkGrey","DarkerGrey","LightGrey","DarkNavy","Blurple","Greyple","DarkButNotBlack","NotQuiteBlack"],"EmojiType":["normal","animated"],"ApplicationEmojiProperty":["authorID","name","id","identifier","requiresColons","managed","timestamp","animated","url","format"],"EntitlementType":["Purchase","PremiumSubscription","DeveloperGift","TestModePurchase","FreePurchase","UserGift","PremiumPurchase","ApplicationSubscription"],"GuildScheduledEventEntityType":["StageInstance","Voice","External"],"ScheduledEventProperty":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType","privacyLevel","status"],"InviteProperty":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"GuildPreviewProperty":["id","name","description","features","timestamp","icon","splash","emojis","stickers","discoverySplash","approximateMemberCount","approximatePresenceCount"],"TemplateProperty":["code","name","description","guildID","authorID","timestamp","updatedTimestamp","url","usageCount","unSynced"],"GuildDefaultMessageNotifications":["AllMessages","OnlyMentions"],"GuildExplicitContentFilter":["Disabled","MembersWithoutRoles","AllMembers"],"GuildFeature":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled","PinPermissionMigrationComplete"],"GuildMFALevel":["None","Elevated"],"PresenceStatus":["online","idle","dnd","offline"],"GuildNSFWLevel":["Default","Explicit","Safe","AgeRestricted"],"Locale":["Indonesian","EnglishUS","EnglishGB","Bulgarian","ChineseCN","ChineseTW","Croatian","Czech","Danish","Dutch","Finnish","French","German","Greek","Hindi","Hungarian","Italian","Japanese","Korean","Lithuanian","Norwegian","Polish","PortugueseBR","Romanian","Russian","SpanishES","SpanishLATAM","Swedish","Thai","Turkish","Ukrainian","Vietnamese"],"SoundboardSoundProperty":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"GuildVerificationLevel":["None","Low","Medium","High","VeryHigh"],"HTTPContentType":["Json","Text"],"AuthorizingIntegrationOwnersType":["Guild","User"],"InteractionContextType":["Guild","BotDM","PrivateChannel"],"MemberProperty":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"MessageProperty":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"EmbedProperty":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"LogType":["Warn","Deprecated","Debug","Info","Error"],"ChannelProperty":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"SearchMethodType":["startsWith","endsWith","includes"],"RoleProperty":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"ActivityProperty":["name","type","details","buttons","flags","timestamp","endTimestamp","startTimestamp","partyID","partySize","syncID","url","largeText","largeImage","smallText","smallImage"],"CustomStatusType":["state","emoji"],"GuildMemberFlags":["DidRejoin","CompletedOnboarding","BypassesVerification","StartedOnboarding","IsGuest","StartedHomeActions","CompletedHomeActions","AutomodQuarantinedUsernameOrGuildNickname","AutomodQuarantinedBio","DmSettingsUpsellAcknowledged","AutoModQuarantinedGuildTag"],"ComponentProperty":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"ReactionType":["normal","burst"],"ReactionProperty":["emoji","count","burstCount","normalCount","me","meBurst","burstColors"],"PollProperty":["question","layoutType","answers","answerCount","totalVotes","expiresTimestamp","allowMultiselect","resultsFinalized"],"AttachmentFlags":["IsRemix"],"MessageFlags":["Crossposted","IsCrosspost","SuppressEmbeds","SourceMessageDeleted","Urgent","HasThread","Ephemeral","Loading","FailedToMentionSomeRolesInThread","ShouldShowLinkNotDiscordWarning","SuppressNotifications","IsVoiceMessage","HasSnapshot","IsComponentsV2"],"StickerReturnType":["id","url"],"MessageType":["Default","RecipientAdd","RecipientRemove","Call","ChannelNameChange","ChannelIconChange","ChannelPinnedMessage","UserJoin","GuildBoost","GuildBoostTier1","GuildBoostTier2","GuildBoostTier3","ChannelFollowAdd","GuildDiscoveryDisqualified","GuildDiscoveryRequalified","GuildDiscoveryGracePeriodInitialWarning","GuildDiscoveryGracePeriodFinalWarning","ThreadCreated","Reply","ChatInputCommand","ThreadStarterMessage","GuildInviteReminder","ContextMenuCommand","AutoModerationAction","RoleSubscriptionPurchase","InteractionPremiumUpsell","StageStart","StageEnd","StageSpeaker","StageRaiseHand","StageTopic","GuildApplicationPremiumSubscription","GuildIncidentAlertModeEnabled","GuildIncidentAlertModeDisabled","GuildIncidentReportRaid","GuildIncidentReportFalseAlarm","PurchaseNotification","PollResult"],"PollLayoutType":["Default"],"RoleColor":["Primary","Secondary","Tertiary"],"RoleFlags":["InPrompt"],"BulkProperty":["messages","contents","timestamps","attachments","stickers","users","count"],"VoiceEffectProperty":["emoji","channelID","guildID","userID","soundID","soundVolume","animationID","animationType"],"EmojiProperty":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"EntitlementProperty":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"GuildProperty":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"PresenceProperty":["id","guildID","status","platform"],"VoiceStateProperty":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"StickerProperty":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"SubscriptionProperty":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"UserProperty":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"StickerFormatType":["PNG","APNG","Lottie","GIF"],"StickerType":["Standard","Guild"],"BasicTimeFormat":["Numeric","TwoDigit"],"TimestampStyles":["ShortTime","MediumTime","LongTime","ShortDate","LongDate","LongDateShortTime","ShortDateTime","FullDateShortTime","LongDateTime","ShortDateShortTime","ShortDateMediumTime","RelativeTime"],"ExtendedTimeFormat":["Numeric","TwoDigit","Long","Short","Narrow"],"DateType":["LocaleDate","LocaleTime","Locale","Date","ISO","UTC","Time"],"CalendarType":["Buddhist","Chinese","Coptic","Dangi","Ethioaa","Ethiopic","Gregory","Hebrew","Indian","Islamic","IslamicUmalqura","IslamicTbla","IslamicCivil","IslamicRgsa","Iso8601","Japanese","Persian","Roc"],"UserFlags":["Staff","Partner","Hypesquad","BugHunterLevel1","MFASMS","PremiumPromoDismissed","HypeSquadOnlineHouse1","HypeSquadOnlineHouse2","HypeSquadOnlineHouse3","PremiumEarlySupporter","TeamPseudoUser","HasUnreadUrgentMessages","BugHunterLevel2","VerifiedBot","VerifiedDeveloper","CertifiedModerator","BotHTTPInteractions","Spammer","DisablePremium","ActiveDeveloper","Quarantined","Collaborator","RestrictedCollaborator"],"WebhookType":["Incoming","ChannelFollower","Application"],"ConnectionState":["Connecting","Closed","Closing","Open"]} \ No newline at end of file diff --git a/metadata/functions.json b/metadata/functions.json index f75e0b6598..e26ffc9b5a 100644 --- a/metadata/functions.json +++ b/metadata/functions.json @@ -1 +1 @@ -[{"name":"$advancedTextSplit","version":"1.4.0","description":"Split and get all at the same time multiple times","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to use","rest":false,"required":true,"type":"String"},{"name":"split;index","rest":true,"type":"String","required":true,"description":"The split followed by the index to get"}],"output":["String"],"category":"array"},{"name":"$arrayAdvancedSort","version":"1.4.0","description":"Advanced array sort","unwrap":false,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"var1","description":"The $env variable 1 to hold x value","rest":false,"type":"String","required":true},{"name":"var2","description":"The $env variable 2 to hold y value","rest":false,"type":"String","required":true},{"name":"code","description":"Optional code to use for sorting, previous 2 vars must have been given","rest":false,"type":"String","required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"output":["Json"],"category":"array"},{"name":"$arrayAt","version":"1.0.0","description":"Returns the element at given index","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"index","type":"Number","description":"The index to get the element of","rest":false,"required":true}],"output":["Unknown"],"category":"array"},{"name":"$arrayClear","version":"1.0.0","description":"Clears all elements from an array","unwrap":true,"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayConcat","version":"1.0.0","description":"Concat arrays and load them into another variable","unwrap":true,"args":[{"name":"variable","description":"The variable to load the result to, leave empty to return output","rest":false,"required":false,"type":"String"},{"name":"variables","description":"The variable names to concat","rest":true,"type":"String","required":true}],"output":["Json"],"brackets":true,"category":"array"},{"name":"$arrayCreate","version":"1.4.0","aliases":["$arrayNew","$arrayInit"],"brackets":true,"description":"Initializes an array and loads it to a variable","args":[{"name":"variable","description":"The variable to load it to, accessed with $env","type":"String","rest":false,"required":true},{"name":"length","description":"The default length of the array, defaults to 0","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"array"},{"name":"$arrayEvery","version":"1.0.0","description":"Loops through every element of the array with a condition that must pass every element","unwrap":false,"experimental":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"brackets":true,"category":"array"},{"name":"$arrayFill","version":"1.4.0","brackets":true,"description":"Fills an array with given value","args":[{"name":"variable","description":"The variable to load array from","type":"String","rest":false,"required":true},{"name":"value","description":"The value to fill the array with","rest":false,"required":true,"type":"Json"}],"unwrap":true,"category":"array"},{"name":"$arrayFindIndex","version":"1.0.0","description":"Finds the index of a first found element in the array","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayFindLastIndex","version":"1.5.0","description":"Finds the index of a last found element in the array","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayForEach","version":"1.0.0","description":"Loops through every element of the array","unwrap":false,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayIncludes","version":"1.0.0","description":"Checks whether a value exists in an array","unwrap":true,"output":["Boolean"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"value","description":"The value to check for","rest":false,"type":"String","required":true}],"brackets":true,"category":"array"},{"name":"$arrayIndexOf","version":"1.0.0","description":"Gets the index of a first found element in the array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"value","description":"The exact value to get its index","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayJoin","version":"1.0.0","description":"Joins all elements from an array with given separator","unwrap":true,"output":["Unknown[]"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every element","rest":false,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLastIndexOf","version":"1.5.0","description":"Gets the index of a last found element in the array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"value","description":"The exact value to get its last index","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLength","version":"1.0.0","description":"Returns the numbers of elements in an array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLoad","version":"1.0.0","description":"Loads an array to an environment variable","args":[{"name":"variable","description":"The variable name to load this array to","required":true,"rest":false,"type":"String"},{"name":"separator","description":"The separator to use for the array elements","rest":false,"type":"String","required":false},{"name":"values","description":"The elements of the array","rest":true,"type":"String"}],"unwrap":true,"brackets":true,"category":"array"},{"name":"$arrayMap","version":"1.0.0","description":"Maps through every element of the array and loads the results to another array","unwrap":false,"output":["Json"],"experimental":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The other variable to load the result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPop","version":"1.0.0","description":"Deletes the last element of the array and returns it","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPush","version":"1.0.0","description":"Appends an element to an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the end of the array","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPushJSON","version":"1.3.0","description":"Appends an element to an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the end of the array","rest":true,"required":true,"type":"Json"}],"brackets":true,"category":"array"},{"name":"$arrayRandomIndex","version":"1.4.0","description":"Returns a random index","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arrayRandomValue","version":"1.4.0","description":"Returns a random element","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arrayReduce","version":"1.0.0","description":"Reduces an array of elements and returns the result","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The other variable to load the second element to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element, must return a number","rest":false,"required":true,"type":"String"},{"name":"default value","description":"The default value, defaults to 0","rest":false,"type":"Number"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayReverse","version":"1.0.0","description":"Reverses an array and loads it to another variable","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable where the array is held","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The variable to load the result to, leave empty to return output","rest":false,"type":"String","required":false}],"output":["Json"],"category":"array"},{"name":"$arrayShift","version":"1.0.0","description":"Deletes the first element of the array and returns it","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayShuffle","version":"1.4.0","description":"Shuffles given array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arraySlice","version":"1.0.0","description":"Slices an array and loads it to another variable","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable where the array is held","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The variable to load the result to, leave empty to return output","rest":false,"type":"String","required":false},{"name":"start","description":"The start index to slice","rest":false,"required":true,"type":"Number"},{"name":"end","description":"The end index to slice","rest":false,"type":"Number"}],"output":["Json"],"category":"array"},{"name":"$arraySome","version":"1.0.0","description":"Loops through every element of the array to find a match","unwrap":false,"output":["Boolean"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arraySort","version":"1.2.0","description":"Sorts given array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"},{"name":"sort type","description":"The sort type, omit to use default sort order","rest":false,"type":"Enum","enum":["asc","desc"],"enumName":"SortType"}],"output":["Json"],"category":"array"},{"name":"$arraySplice","version":"1.0.0","description":"Removes x elements starting from y index, returns deleted elements","unwrap":true,"output":["Json"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"index","description":"The start index","rest":false,"required":true,"type":"Number"},{"name":"delete count","description":"The number of items to delete","required":true,"rest":false,"type":"Number"},{"name":"elements","description":"The elements to insert in the deleted indexes","rest":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayUnique","version":"2.5.0","description":"Removes duplicate elements from the array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"output":["Json"],"category":"array"},{"name":"$arrayUnload","version":"1.0.0","description":"Unloads an array from an environment variable","args":[{"name":"variable","description":"The variable name to unload this array from","required":true,"rest":false,"type":"String"}],"unwrap":true,"brackets":true,"category":"array"},{"name":"$arrayUnshift","version":"1.0.0","description":"Adds elements to the beginning of an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the start of the array","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayUnshiftJSON","version":"1.3.0","description":"Adds elements to the beginning of an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the start of the array","rest":true,"required":true,"type":"Json"}],"brackets":true,"category":"array"},{"name":"$getSplitTextLength","version":"1.4.0","description":"Gets count of elements from $textSplit","aliases":["$getTextSplitLength"],"output":["Number"],"unwrap":false,"category":"array"},{"name":"$getTextSplitIndex","version":"2.5.0","description":"Gets the index of a textSplit element","aliases":["$getSplitTextIndex"],"brackets":true,"unwrap":true,"args":[{"name":"element","description":"The element to get index of","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$segmentTextSplit","version":"1.5.0","description":"Creates an array on given text using segmenter","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to split","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$splitText","version":"1.2.0","description":"Gets element of textSplit","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"index","description":"The index to get split at","rest":false,"required":true,"type":"Number"}],"category":"array"},{"name":"$splitTextJoin","version":"1.4.0","description":"Joins all elements from array with given separator","unwrap":true,"aliases":["$textSplitJoin"],"output":["Unknown[]"],"args":[{"name":"separator","description":"The separator to use for every element","rest":false,"type":"String","required":true}],"brackets":true,"category":"array"},{"name":"$textSplit","version":"1.2.0","description":"Creates an array on given text with a separator","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to split","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$fetchAuditLog","version":"1.4.0","description":"Fetches an audit log using the type of it","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"property","description":"The property to pull from the audit log","rest":false,"required":true,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"enumName":"AuditProperty"},{"name":"index","description":"The index of the entry to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use in case of array output","type":"String","rest":false}],"category":"audit"},{"name":"$fetchAuditLogCount","version":"1.4.0","description":"Fetches audit log count using the type of it","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"user","rest":false,"description":"The user to filter by","type":"User"}],"category":"audit"},{"name":"$fetchUserAuditLog","version":"1.4.0","description":"Fetches an audit log from a user using the type of it","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"user","rest":false,"description":"The user to filter by","type":"User"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"property","description":"The property to pull from the audit log","rest":false,"required":true,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"enumName":"AuditProperty"},{"name":"index","description":"The index of the entry to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use in case of array output","type":"String","rest":false}],"category":"audit"},{"name":"$setAuditLogReason","version":"2.5.0","description":"Sets the reason for audit log entries","brackets":true,"unwrap":true,"args":[{"name":"reason","description":"The reason to set","rest":false,"required":true,"type":"String"}],"category":"audit"},{"name":"$automodActionType","version":"1.2.0","description":"Returns the action type automod used","unwrap":false,"output":["AutoModerationActionType"],"category":"automod"},{"name":"$automodAlertSystemMessageID","version":"1.2.0","description":"Returns the message sent by automod","unwrap":false,"output":["Message"],"category":"automod"},{"name":"$automodChannelID","version":"1.2.0","description":"Returns the channel id for automod","unwrap":false,"output":["Channel"],"category":"automod"},{"name":"$automodContent","version":"1.2.0","description":"Returns the content automod acted upon","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodCustomMessage","version":"1.2.0","description":"Returns the custom message used by automod on this detection","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodDuration","version":"1.2.0","description":"Returns the duration in ms by this automod action","unwrap":false,"output":["Number"],"category":"automod"},{"name":"$automodMatchedContent","version":"1.2.0","description":"Returns the matched content automod acted upon","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodMatchedKeyword","version":"1.2.0","description":"Returns the matched keyword the automod caught","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodRuleID","version":"1.2.0","description":"Returns the rule id used by automod","unwrap":false,"output":["AutomodRule"],"category":"automod"},{"name":"$automodRuleTriggerType","version":"1.2.0","description":"Returns the rule trigger type used by automod","unwrap":false,"output":["AutoModerationRuleTriggerType"],"category":"automod"},{"name":"$createAutomodRule","version":"1.5.0","description":"Creates a new automod rule for a guild, returns rule id","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to create automod rule on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name of the automod rule","rest":false,"required":true,"type":"String"},{"name":"trigger","description":"The trigger type of the automod rule","rest":false,"required":true,"type":"Enum","enum":["Keyword","Spam","KeywordPreset","MentionSpam","MemberProfile"],"enumName":"AutoModerationRuleTriggerType"},{"name":"event","description":"The event type of the automod rule","rest":false,"required":true,"type":"Enum","enum":["MessageSend","MemberUpdate"],"enumName":"AutoModerationRuleEventType"},{"name":"enabled","description":"Whether the automod rule should be enabled","rest":false,"required":false,"type":"Boolean"},{"name":"reason","description":"The reason for creating the automod rule","rest":false,"required":false,"type":"String"}],"output":["AutomodRule"],"category":"automod"},{"name":"$deleteAutomodRule","version":"1.5.0","description":"Deletes an automod rule from a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to delete automod rule from","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The id of the automod rule to delete","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"reason","description":"The reason for deleting the rule","rest":false,"type":"String"}],"output":["Boolean"],"category":"automod"},{"name":"$editAutomodRule","version":"1.5.0","description":"Edits an automod rule on a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to edit automod rule on","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The id of the automod rule to edit","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"name","description":"The new name for the automod rule","rest":false,"type":"String"},{"name":"event","description":"The new event type for the automod rule","rest":false,"type":"Enum","enum":["MessageSend","MemberUpdate"],"enumName":"AutoModerationRuleEventType"},{"name":"enabled","description":"Whether the automod rule should be enabled","rest":false,"required":false,"type":"Boolean"},{"name":"reason","description":"The reason for editing the automod rule","rest":false,"required":false,"type":"String"}],"output":["Boolean"],"category":"automod"},{"name":"$getAutomodRule","version":"1.5.0","description":"Returns an automod rule of a guild","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to get automod rule from","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The id of the automod rule to get","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"property","description":"The property of the automod rule to return","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown"],"category":"automod"},{"name":"$setAutomodAction","version":"1.5.0","description":"Sets a new action for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"type","description":"The type of the automod rule action","rest":false,"required":true,"type":"Enum","enum":["BlockMessage","SendAlertMessage","Timeout","BlockMemberInteraction"],"enumName":"AutoModerationActionType"},{"name":"channel ID","description":"The channel to which content will be logged","rest":false,"type":"Channel"},{"name":"duration","description":"The timeout duration in seconds","rest":false,"type":"Number"},{"name":"message","description":"The custom message that is shown whenever a message is blocked","rest":false,"type":"String"}],"category":"automod"},{"name":"$setAutomodAllowList","version":"1.5.0","description":"Sets allowed words for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"words","description":"The words to allow and whitelist","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodExemptChannels","version":"1.5.0","description":"Sets exempt channels for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"channels","description":"The channels that should not be affected by the automod rule","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodExemptRoles","version":"1.5.0","description":"Sets exempt roles for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"roles","description":"The roles that should not be affected by the automod rule","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodKeywordFilter","version":"1.5.0","description":"Sets disallowed words for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"words","description":"The words to disallow and blacklist","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodMentionRaidProtection","version":"1.5.0","description":"Sets mention raid protection for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"enabled","description":"Whether to enable mention raid protection","rest":false,"required":true,"type":"Boolean"}],"category":"automod"},{"name":"$setAutomodMentionTotalLimit","version":"1.5.0","description":"Sets a total mention limit for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"limit","description":"The limit of mentions to set","rest":false,"required":true,"type":"Number"}],"category":"automod"},{"name":"$setAutomodPresets","version":"1.5.0","description":"Sets preset keyword wordsets for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"presets","description":"The preset keyword types to set","rest":true,"required":true,"type":"Enum","enum":["Profanity","SexualContent","Slurs"],"enumName":"AutoModerationRuleKeywordPresetType"}],"category":"automod"},{"name":"$setAutomodRegexFilter","version":"1.5.0","description":"Sets regex filter for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"regexes","description":"The regexes to use for filtering","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$applicationCommandCount","version":"1.4.0","aliases":["$slashCommandCount"],"description":"Returns the amount of application commands registered by this bot","output":["Number"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get application command count from","rest":false,"type":"Guild"},{"name":"count sub","description":"Whether to count sub commands","rest":false,"type":"Boolean"}],"category":"bot"},{"name":"$applicationCommands","version":"1.5.0","description":"Returns all application commands","output":["Json"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get application commands from","rest":false,"required":true,"type":"Guild"}],"category":"bot"},{"name":"$botCount","version":"1.0.0","description":"Returns the bot count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botCustomInvite","version":"1.5.0","description":"Returns the client's custom invite link","unwrap":false,"aliases":["$clientCustomInvite"],"output":["URL"],"category":"bot"},{"name":"$botDescription","version":"1.5.0","aliases":["$clientDescription"],"description":"Returns the description of the bot","unwrap":false,"output":["String"],"category":"bot"},{"name":"$botDestroy","version":"1.0.0","aliases":["$clientDestroy"],"description":"Destroys the discord.js client","unwrap":false,"category":"bot"},{"name":"$botID","version":"1.0.0","description":"Returns the client's id","unwrap":false,"aliases":["$clientID"],"output":["User"],"category":"bot"},{"name":"$botInvite","version":"1.0.0","description":"Returns a bot's invite link","brackets":false,"unwrap":true,"aliases":["$clientInvite","$getBotInvite"],"args":[{"name":"perms","description":"The perms for the invite link","rest":true,"type":"String","required":true}],"output":["URL"],"category":"bot"},{"name":"$botMutualGuilds","version":"1.5.0","aliases":["$clientMutualGuilds"],"description":"Returns the client's mutual guilds with a user","unwrap":true,"args":[{"name":"user ID","description":"The user to get mutual guilds from","rest":false,"required":true,"type":"User"},{"name":"separator","description":"The separator to use for every guild","rest":false,"type":"String"}],"brackets":false,"output":["Guild[]"],"category":"bot"},{"name":"$botOwnerID","version":"1.0.0","description":"Returns the bot's owner id or team members","brackets":false,"aliases":["$clientOwnerID"],"args":[{"name":"return members","description":"Whether to return all members","rest":false,"required":false,"type":"Boolean"},{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"unwrap":true,"category":"bot"},{"name":"$botTags","version":"1.5.0","description":"Returns the client tags","unwrap":true,"aliases":["$clientTags"],"args":[{"name":"separator","description":"The separator to use for every tag","rest":false,"type":"String"}],"brackets":false,"output":["String[]"],"category":"bot"},{"name":"$botTeamCreatedAt","version":"2.4.0","description":"Returns the client's team creation timestamp","aliases":["$clientTeamCreatedAt"],"unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botTeamID","version":"2.4.0","description":"Returns the client's team id","aliases":["$clientTeamID"],"unwrap":false,"output":["String"],"category":"bot"},{"name":"$botTeamIcon","version":"2.4.0","description":"Returns the client's team icon","aliases":["$clientTeamIcon"],"unwrap":true,"brackets":false,"args":[{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"category":"bot"},{"name":"$botTeamMembers","version":"2.4.0","description":"Returns the client's team members","aliases":["$clientTeamMembers"],"unwrap":true,"brackets":false,"args":[{"name":"property","description":"The property of each team member to return","rest":false,"required":true,"type":"Enum","enum":["id","role","membership"],"enumName":"TeamMemberProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"bot"},{"name":"$botTeamName","version":"2.4.0","description":"Returns the client's team name","aliases":["$clientTeamName"],"unwrap":false,"output":["String"],"category":"bot"},{"name":"$botToken","version":"1.0.0","description":"Returns the client token","unwrap":false,"aliases":["$clientToken"],"output":["String"],"category":"bot"},{"name":"$botUserAuthorizationCount","version":"2.4.0","aliases":["$clientUserAuthorizationCount"],"description":"Returns the user authorization count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botUserInstallCount","version":"1.5.0","aliases":["$clientUserInstallCount"],"description":"Returns the user install count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botWebhookEvents","version":"2.2.0","description":"Returns the client webhook event types","aliases":["$clientWebhookEvents"],"unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every type","rest":false,"type":"String"}],"output":["ApplicationWebhookEventType[]"],"category":"bot"},{"name":"$botWebhookStatus","version":"2.2.0","description":"Returns the client webhook event status","unwrap":false,"aliases":["$clientWebhookStatus"],"output":["ApplicationWebhookEventStatus"],"category":"bot"},{"name":"$botWebhookURL","version":"2.2.0","description":"Returns the client webhook event url","unwrap":false,"aliases":["$clientWebhookURL"],"output":["URL"],"category":"bot"},{"name":"$deleteGlobalApplicationCommands","version":"2.3.0","description":"Deletes all global commands of your bot","unwrap":false,"output":["Boolean"],"category":"bot"},{"name":"$extensionVersion","version":"1.4.0","brackets":true,"unwrap":true,"description":"Returns the version an extension is running on","output":["String"],"args":[{"name":"name","description":"The extension name to retrieve its version","rest":false,"required":true,"type":"String"}],"category":"bot"},{"name":"$hasExtension","version":"1.2.0","description":"Checks whether client has an extension","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The extension name to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$ping","version":"1.0.0","description":"The current bot ping","unwrap":false,"aliases":["$clientPing","$botPing"],"output":["Number"],"category":"bot"},{"name":"$setBotAvatar","version":"1.0.0","description":"Sets the bot profile icon","brackets":true,"unwrap":true,"aliases":["$setClientAvatar"],"args":[{"name":"url","description":"The icon url","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotBanner","version":"1.5.0","description":"Sets the bot banner","brackets":true,"unwrap":true,"aliases":["$setClientBanner"],"args":[{"name":"url","description":"The banner url","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotDescription","version":"1.5.0","description":"Sets the bot description","aliases":["$setClientDescription"],"brackets":true,"unwrap":true,"args":[{"name":"description","description":"The new description","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotName","version":"1.0.0","description":"Sets the bot name","brackets":true,"unwrap":true,"aliases":["$setClientName"],"args":[{"name":"name","description":"The new name","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotTags","version":"1.5.0","description":"Sets the bot tags","aliases":["$setClientTags"],"brackets":true,"unwrap":true,"args":[{"name":"tags","description":"The new tags","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setStatus","version":"1.0.0","description":"Sets the client's status","unwrap":true,"aliases":["$setBotStatus","$setClientStatus"],"args":[{"name":"presence","description":"The presence status","type":"String","rest":false,"required":true},{"name":"type","description":"The activity type","rest":false,"type":"Enum","enum":["Playing","Streaming","Listening","Watching","Custom","Competing"],"required":true,"enumName":"ActivityType"},{"name":"name","description":"The status name","rest":false,"type":"String","required":true},{"name":"state","description":"The status state","rest":false,"type":"String"},{"name":"url","description":"The url to use for the stream","rest":false,"type":"String"}],"brackets":true,"category":"bot"},{"name":"$shardCount","version":"2.1.0","aliases":["$botShardCount","$clientShardCount"],"description":"Returns the shard count of the client","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$shardID","version":"1.0.0","aliases":["$botShardIDs","$clientShardIDs"],"description":"Returns the shard id of the client","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["Number"],"category":"bot"},{"name":"$shardStatus","version":"2.1.0","aliases":["$botShardStatus","$clientShardStatus"],"description":"Returns the shard status of the client","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every status","rest":false,"type":"String"}],"output":["Status[]"],"category":"bot"},{"name":"$updateApplicationCommands","version":"1.2.0","description":"Updates application commands, also registers new ones","unwrap":false,"category":"bot"},{"name":"$updateCommands","version":"1.0.2","description":"Updates bot commands, also registers new ones","unwrap":false,"category":"bot"},{"name":"$uptime","version":"1.0.0","aliases":["$botUptime","$clientUptime"],"output":["Number"],"description":"Returns the bots uptime","unwrap":false,"category":"bot"},{"name":"$version","version":"1.0.0","description":"Returns the package version the client is using","unwrap":false,"output":["String"],"aliases":["$packageVersion"],"category":"bot"},{"name":"$bufferAlloc","version":"1.1.0","description":"Allocates given number of bytes in a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable to load it to, accessed with $env[]","rest":false,"required":true,"type":"String"},{"name":"bytes","description":"The number of bytes to alloc","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferAllocUnsafe","version":"1.1.0","description":"Unsafely allocates given number of bytes in a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable to load it to, accessed with $env[]","rest":false,"required":true,"type":"String"},{"name":"bytes","description":"The number of bytes to alloc","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferLength","version":"1.1.0","description":"Returns the length of a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false}],"output":["Number"],"category":"buffer"},{"name":"$bufferReadInt32","version":"1.2.0","description":"Reads int from a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start reading at","required":true,"type":"Number","rest":false}],"output":["Number"],"category":"buffer"},{"name":"$bufferReadUtf8","version":"1.1.0","description":"Reads utf8 string from a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start reading at","required":true,"type":"Number","rest":false},{"name":"end index","description":"The index to end reading at","required":false,"type":"Number","rest":false}],"output":["String"],"category":"buffer"},{"name":"$bufferResize","version":"1.1.0","description":"Resizes a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"length","description":"The new length for this buffer","required":true,"type":"Number","rest":false}],"category":"buffer"},{"name":"$bufferToString","version":"1.1.0","description":"Stringifies a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"encoding","description":"The encoding to stringify with","type":"String","rest":false}],"output":["String"],"category":"buffer"},{"name":"$bufferWriteInt32","version":"1.2.0","description":"Writes int32 to a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start writing on","required":true,"type":"Number","rest":false},{"name":"int","description":"The int to write","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferWriteUtf8","version":"1.1.0","description":"Writes utf8 string to a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start writing on","required":true,"type":"Number","rest":false},{"name":"text","description":"The text to write","type":"String","rest":false,"required":true}],"category":"buffer"},{"name":"$addChannelPerms","version":"1.0.3","description":"Adds permission overwrites to a channel, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to add perms to","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to add these perms to","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to add to the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"output":["Boolean"],"category":"channel"},{"name":"$addPostTags","version":"1.5.0","description":"Adds tags to a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to edit tags on"},{"name":"reason","description":"The reason for adding post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$addThreadMember","version":"1.0.0","description":"Adds a member to a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The thread to add member to","rest":false,"required":true,"type":"Channel"},{"name":"user ID","pointer":0,"description":"The member to add","rest":false,"required":true,"type":"Member"}],"category":"channel"},{"name":"$archiveThread","version":"1.0.0","aliases":["$archivePost"],"description":"Archives a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to archive","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to archive this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelBitrate","version":"1.4.0","description":"Returns the bitrate of the voice channel","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelCategoryID","version":"1.0.0","description":"Returns the channel category id","aliases":["$channelParentID"],"unwrap":true,"brackets":false,"output":["Channel"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelChildrenCount","version":"1.0.3","description":"Returns the amount of children this category has","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"channel ID","description":"The category to get its child count","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelChildrenIDs","version":"1.0.3","description":"Returns the children ids this category has","brackets":false,"output":["Channel[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The category to get its children","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelCount","version":"1.0.0","description":"Returns the channel count of all servers","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"categories","description":"The categories to filter by","rest":true,"required":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"type":"Enum","enumName":"ChannelType"}],"category":"channel"},{"name":"$channelCreatedAt","version":"1.0.0","description":"Returns the channel timestamp","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelDeletable","version":"2.4.0","description":"Returns whether the channel is deletable","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["Boolean"],"category":"channel"},{"name":"$channelExists","version":"1.0.0","description":"Returns whether a channel id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to check","rest":false,"required":true,"type":"String"}],"category":"channel"},{"name":"$channelFlags","version":"1.5.0","description":"Returns the flags of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["ChannelFlags[]"],"category":"channel"},{"name":"$channelFull","version":"1.4.0","description":"Returns whether the voice channel is full","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelGuildID","version":"1.0.0","description":"Returns the channel guild id","unwrap":true,"output":["Guild"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelHasAnyPerms","version":"1.4.0","aliases":["$channelHasAnyPerm"],"description":"Returns whether role or member has any of the perms in a channel","output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"permissions","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"brackets":true,"category":"channel"},{"name":"$channelHasPerms","version":"1.4.0","description":"Returns whether role or member has perms in a channel","output":["Boolean"],"aliases":["$hasChannelPerm","$hasChannelPerms"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"permissions","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"brackets":true,"category":"channel"},{"name":"$channelID","version":"1.0.0","description":"Gets the channel id of a channel name","unwrap":true,"output":["Channel"],"brackets":false,"args":[{"name":"name","description":"The channel name to get its id","required":true,"rest":true,"type":"String"}],"category":"channel"},{"name":"$channelIDs","version":"1.3.0","unwrap":true,"brackets":false,"output":["Channel[]"],"description":"Returns every channel id","args":[{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelIsChildrenOf","version":"1.5.0","aliases":["$isChildrenOf"],"description":"Checks whether given channel is a children of a category","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to know if is children of category","rest":false,"type":"Channel","required":true},{"name":"category ID","description":"The category to check against","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelJoinable","version":"1.4.0","description":"Returns whether the voice channel is joinable by the bot","unwrap":true,"output":["Boolean"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelManageable","version":"2.4.0","description":"Returns whether the channel is manageable","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["Boolean"],"category":"channel"},{"name":"$channelMembers","version":"1.5.0","description":"Returns the members of a channel","unwrap":true,"output":["Member[]"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel to get its members","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelNSFW","version":"1.0.0","description":"Returns whether the channel is nsfw","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelName","version":"1.0.0","description":"Returns the channel name","unwrap":true,"output":["String"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelNames","version":"1.0.0","description":"Returns the channel names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the channels of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each channel","rest":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$channelPermissions","version":"1.5.0","description":"Returns all permission overwrites of a channel","aliases":["$channelPerms","$channelOverwrites"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"property","description":"The property of the overwrites to return","rest":false,"required":true,"type":"Enum","enum":["id","type","allow","deny"],"enumName":"PermissionOverwritesProperty"},{"name":"separator","description":"The separator to use for every overwrite","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"channel"},{"name":"$channelPermissionsFor","version":"1.4.0","description":"Returns permissions for a role or member in a channel","aliases":["$channelPermsFor","$memberChannelPerms","$roleChannelPerms"],"output":["PermissionFlagsBits[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms for","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every perm","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$channelPermissionsOf","version":"1.5.0","description":"Returns specific permissions of a role or member in a channel","aliases":["$channelPermsOf"],"output":["PermissionFlagsBits[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"state","description":"The state of the perms to return","rest":false,"required":true,"type":"Enum","enum":["allow","deny"],"enumName":"PermissionsStateType"},{"name":"separator","description":"The separator to use for every perm","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$channelPinnedMessages","version":"1.5.0","description":"Returns the pinned messages of a channel","brackets":false,"aliases":["$pinnedMessages"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull pinned messages from","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for each message id","rest":false,"type":"String"}],"output":["Message[]"],"category":"channel"},{"name":"$channelPosition","version":"1.0.3","description":"Returns the channel position","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel to get its position","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelRawData","version":"1.5.0","description":"Returns the raw data of a channel","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get raw data from","type":"Channel"}],"output":["Json"],"category":"channel"},{"name":"$channelSlowmode","version":"1.5.0","description":"Returns the channel slowmode in seconds","unwrap":true,"output":["Number"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel to get its slowmode","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$channelTags","version":"1.0.3","description":"Retrieves tags from a forum thread","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to get tags of","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for every tag","rest":false,"type":"String"}],"output":["ForumTag[]"],"category":"channel"},{"name":"$channelThreadIDs","version":"2.5.0","description":"Returns the thread ids of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get its threads","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every thread","rest":false,"type":"String"}],"output":["Channel[]"],"category":"channel"},{"name":"$channelTopic","version":"1.0.0","description":"Returns the channel topic","unwrap":true,"output":["String"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelType","version":"1.0.0","description":"Returns the channel type","unwrap":true,"output":["ChannelType"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelURL","version":"2.4.0","description":"Returns the url of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["URL"],"category":"channel"},{"name":"$channelUserLimit","version":"1.4.0","description":"Returns the user limit of the voice channel","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelVoiceMemberCount","version":"1.4.0","description":"Returns the member count that are connected to this voice channel","unwrap":true,"aliases":["$channelMemberCount"],"output":["Number"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelVoiceMemberIDs","version":"1.4.0","description":"Returns the members that are connected to this voice channel","unwrap":true,"aliases":["$channelMemberIDs"],"output":["Member[]"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true},{"name":"separator","rest":false,"description":"Separator to use for every id","required":false,"type":"String"}],"category":"channel"},{"name":"$channelVoiceRegion","version":"1.5.0","description":"Returns the region of a voice channel","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to get its region","rest":false,"required":true,"type":"Channel"}],"output":["VoiceRegionType"],"category":"channel"},{"name":"$channelWebhooks","version":"2.3.0","description":"Returns all webhooks of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get its webhooks","rest":false,"type":"Channel","required":true},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"enumName":"WebhookProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"channel"},{"name":"$clearChannelPerms","version":"1.0.3","description":"Deletes all permission overwrites from the channel or given id, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to delete perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to delete all perms for","rest":false,"required":false,"type":"String"}],"category":"channel"},{"name":"$clearMessages","version":"1.0.0","description":"Clears x amount of messages from a channel, returns the number of messages deleted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to clear messages on","required":true,"rest":false,"type":"Channel"},{"name":"amount","description":"The amount of messages to delete","rest":false,"required":true,"type":"Number"},{"name":"delete pinned","description":"Whether to delete pinned messages","rest":false,"type":"Boolean"},{"name":"delete bots","description":"Whether to delete messages of bots","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$clearUserMessages","version":"1.0.0","description":"Clears x amount of messages from a channel of given user, returns the number of messages deleted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to clear messages on","required":true,"rest":false,"type":"Channel"},{"name":"user ID","description":"The user to delete their messages","required":true,"rest":false,"type":"User"},{"name":"amount","description":"The amount of messages to delete","rest":false,"required":true,"type":"Number"},{"name":"delete pinned","description":"Whether to delete pinned messages","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$cloneChannel","version":"1.4.0","description":"Clones the given channel","brackets":true,"output":["Channel"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clone","type":"Channel","rest":false,"required":true},{"name":"name","description":"The name for the cloned channel","type":"String","rest":false}],"category":"channel"},{"name":"$cloneChannelPerms","version":"1.5.0","description":"Clones the given channel's perms to another channel, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clone its perms","type":"Channel","rest":false,"required":true},{"name":"channel ID","description":"The other channel to set new perms for","type":"Channel","rest":false,"required":true}],"output":["Boolean"],"category":"channel"},{"name":"$createChannel","version":"1.0.0","description":"Creates a channel in a guild, returns the channel id","unwrap":true,"brackets":true,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to create this channel on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the channel","rest":false,"required":true,"type":"String"},{"name":"type","description":"The type of the channel, some are not supported","rest":false,"type":"Enum","enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"enumName":"ChannelType"},{"name":"topic","description":"The topic for the channel","rest":false,"type":"String"},{"name":"parent ID","description":"The parent id for the channel","rest":false,"type":"Channel","pointer":0}],"category":"channel"},{"name":"$createForumPost","version":"1.0.0","description":"Creates a forum post, returns the post channel id","unwrap":true,"output":["Channel"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The channel to create a post on"},{"name":"title","description":"The post title","rest":false,"required":true,"type":"String"},{"name":"description","description":"The post description","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$createForumTag","version":"2.5.0","description":"Creates a forum tag, returns tag id","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to create tag on","rest":false,"required":true,"type":"Channel"},{"name":"name","description":"The name for the tag","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji for the tag","rest":false,"type":"String"},{"name":"moderated","description":"Whether the tag can only be applied by mods","rest":false,"type":"Boolean"}],"output":["ForumTag"],"category":"channel"},{"name":"$createInvite","version":"1.1.0","brackets":true,"description":"Creates an invite, returns the invite code","unwrap":true,"output":["Invite"],"args":[{"name":"channel ID","description":"The channel to make the invite for","rest":false,"required":true,"type":"Channel"},{"name":"max uses","description":"The max amount of uses for this invite","rest":false,"type":"Number"},{"name":"max age","description":"The max age for this invite","rest":false,"type":"Number"},{"name":"reason","description":"The reason for creating this invite","rest":false,"type":"String"}],"category":"channel"},{"name":"$createStageInstance","version":"2.3.0","description":"Creates a new stage instance, returns instance id","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to create stage instance on","rest":false,"required":true,"type":"Channel"},{"name":"topic","description":"The topic of the stage instance","rest":false,"required":true,"type":"String"},{"name":"privacy level","description":"The privacy level of the stage instance","rest":false,"type":"Enum","enum":["Public","GuildOnly"],"enumName":"StageInstancePrivacyLevel"},{"name":"notify","description":"Whether to notify @everyone that the stage instance has started","rest":false,"type":"Boolean"},{"name":"event ID","description":"The scheduled event associated with the stage instance","rest":false,"type":"ScheduledEvent","pointer":0,"pointerProperty":"guild"}],"output":["StageInstance"],"category":"channel"},{"name":"$createThread","version":"1.0.3","description":"Creates a thread, returns thread channel id on success","unwrap":true,"output":["Channel"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to create the thread at","rest":false,"type":"Channel"},{"name":"name","description":"The name for the thread","rest":false,"type":"String","required":true},{"name":"message ID","description":"The message to start thread for","rest":false,"pointer":0,"type":"Message"},{"name":"private","description":"Whether this thread is private","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for creating thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$deleteChannelPerms","version":"1.0.3","description":"Deletes some permission overwrites from a channel, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clear perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to clear these perms for","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to clear from the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$deleteChannels","version":"1.0.5","description":"Deletes given channels, returns the count of channels deleted","aliases":["$deleteChannel"],"brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"channels","description":"The channels to delete","rest":true,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$deleteForumTags","version":"2.5.0","description":"Deletes tags from a forum, returns bool","aliases":["$deleteForumTag"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to delete tags from","rest":false,"required":true,"type":"Channel"},{"name":"tags","description":"The tags to delete","rest":true,"required":true,"type":"ForumTag","pointer":0}],"output":["Boolean"],"category":"channel"},{"name":"$deleteStageInstance","version":"2.3.0","description":"Deletes a stage instance, returns bool","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to delete","rest":false,"required":true,"type":"StageInstance"}],"output":["Boolean"],"category":"channel"},{"name":"$deleteThread","version":"1.5.0","description":"Deletes a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to delete","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to delete this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$dmChannelID","version":"1.0.0","description":"Returns the dm channel id of a user","brackets":false,"output":["Channel"],"unwrap":true,"args":[{"name":"user ID","description":"User to get the dm channel","rest":false,"required":true,"type":"User"}],"category":"channel"},{"name":"$editForumTag","version":"2.5.0","description":"Edits an existing forum tag, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to edit tag on","rest":false,"required":true,"type":"Channel"},{"name":"tag ID","description":"The tag to edit","rest":false,"required":true,"type":"ForumTag","pointer":0},{"name":"name","description":"The new name for the tag","rest":false,"type":"String"},{"name":"emoji","description":"The new emoji for the tag","rest":false,"type":"String"},{"name":"moderated","description":"Whether the tag can only be applied by mods","rest":false,"type":"Boolean"}],"output":["Boolean"],"category":"channel"},{"name":"$editStageInstance","version":"2.3.0","description":"Edits a stage instance, returns bool","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to edit","rest":false,"required":true,"type":"StageInstance"},{"name":"topic","description":"The new topic of the stage instance","rest":false,"type":"String"},{"name":"privacy level","description":"The new privacy level of the stage instance","rest":false,"type":"Enum","enum":["Public","GuildOnly"],"enumName":"StageInstancePrivacyLevel"}],"output":["Boolean"],"category":"channel"},{"name":"$fetchChannels","version":"2.2.0","description":"Caches all channels of a guild","aliases":["$fetchChannel"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache channels of","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The channel to fetch","rest":false,"type":"Channel","pointer":0}],"category":"channel"},{"name":"$fetchThreads","version":"2.5.0","description":"Caches all threads of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to cache its threads","rest":false,"type":"Channel","required":true},{"name":"archived","description":"Whether to cache archived threads, otherwise active","rest":false,"type":"Boolean"},{"name":"private","description":"Whether to cache archived private threads, otherwise public","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$firstMessageID","version":"1.5.0","description":"Returns the first message sent in a channel","brackets":false,"aliases":["$channelFirstMessageID"],"unwrap":true,"output":["Message"],"args":[{"name":"channel ID","description":"The channel to pull first message from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$followChannel","version":"2.3.0","description":"Follows given announcement channel, returns webhook id","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to follow","type":"Channel","rest":false,"required":true},{"name":"channel ID","description":"The channel to crosspost messages in","type":"Channel","rest":false,"required":true},{"name":"reason","description":"The reason for following the channel","type":"String","rest":false}],"output":["Webhook"],"category":"channel"},{"name":"$forumDefaultLayout","version":"2.2.0","description":"Returns the default layout of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default layout from","rest":false,"type":"Channel","required":true}],"output":["ForumLayoutType"],"category":"channel"},{"name":"$forumDefaultReactionEmoji","version":"2.2.0","description":"Returns the default reaction emoji of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default reaction emoji from","rest":false,"type":"Channel","required":true}],"output":["String"],"category":"channel"},{"name":"$forumDefaultSortOrder","version":"2.2.0","description":"Returns the default sort order of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default sort order from","rest":false,"type":"Channel","required":true}],"output":["SortOrderType"],"category":"channel"},{"name":"$forumDefaultThreadArchiveDuration","version":"2.2.0","description":"Returns the default auto archive duration for threads of a forum","aliases":["$forumDefaultThreadAutoArchiveDuration"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default sort order from","rest":false,"type":"Channel","required":true}],"output":["ThreadAutoArchiveDuration"],"category":"channel"},{"name":"$forumDefaultThreadSlowmode","version":"2.2.0","description":"Returns the default slowmode for threads of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default slowmode from","rest":false,"type":"Channel","required":true}],"output":["Number"],"category":"channel"},{"name":"$forumTags","version":"1.5.0","description":"Returns all available tags of a forum","unwrap":true,"output":["Json","Unknown[]"],"args":[{"name":"channel ID","description":"The channel to get tags of","rest":false,"type":"Channel","required":true},{"name":"property","description":"The property to return for every tag","rest":false,"type":"Enum","enum":["emoji","id","moderated","name"],"enumName":"ForumTagProperty"},{"name":"separator","description":"The separator to use for every tag property","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$getStageInstance","version":"2.3.0","description":"Returns a stage instance of a guild","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to get","rest":false,"required":true,"type":"StageInstance"},{"name":"property","description":"The property of the stage instance to return","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"enumName":"StageProperty"}],"output":["Json","Unknown"],"category":"channel"},{"name":"$getThreadMembers","version":"1.0.0","description":"Gets thread members","brackets":true,"output":["Member[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The thread to pull members from","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator for every id","rest":false,"type":"String"}],"category":"channel"},{"name":"$guildChannelID","version":"1.4.0","description":"Gets the guild channel id of a channel name","unwrap":true,"output":["Channel"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to use","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The channel name to get its id","required":true,"rest":false,"type":"String"}],"category":"channel"},{"name":"$lastMessageID","version":"1.2.0","brackets":false,"aliases":["$channelLastMessageID"],"unwrap":true,"output":["Message"],"description":"Returns the latest message sent in a channel","args":[{"name":"channel ID","description":"The channel to pull last message from","rest":false,"required":true,"type":"Channel"},{"name":"user ID","description":"The user id to get its last message sent","rest":false,"required":false,"type":"User"}],"category":"channel"},{"name":"$lastPinTimestamp","version":"1.5.0","aliases":["$channelLastPinTimestamp"],"unwrap":true,"brackets":false,"output":["Number"],"description":"Returns the latest pin timestamp of a channel","args":[{"name":"channel ID","description":"The channel to pull last pin from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$lockThread","version":"1.5.0","aliases":["$lockPost"],"description":"Locks a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to lock","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to lock this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$modifyChannelPerms","version":"1.4.0","description":"Modifies given channel perms for a role or user","aliases":["$editChannelPerms"],"unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The channel to modify perms for"},{"name":"roleOrUser","description":"The role or user to modify perms for","rest":false,"required":true,"pointer":0,"pointerProperty":"guild","type":"RoleOrUser"},{"name":"perms","rest":true,"required":true,"type":"OverwritePermission","description":"The permissions to allow, nullify or disallow, (+,/,-)Perm","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$modifyPostTags","version":"1.5.0","aliases":["$editPostTags"],"description":"Modifies tags of a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to edit tags on"},{"name":"reason","description":"The reason for modifying post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$randomChannelID","version":"1.0.3","description":"Returns a random channel ID","unwrap":true,"brackets":false,"args":[{"name":"types","description":"The channel types to get an id from","type":"Enum","rest":true,"required":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"enumName":"ChannelType"}],"output":["Channel"],"category":"channel"},{"name":"$randomGuildChannelID","version":"1.0.3","description":"Returns a random channel ID of a guild","unwrap":true,"brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to get channel from","rest":false,"required":true,"type":"Guild"},{"name":"types","description":"The channel types to get an id from","type":"Enum","rest":true,"required":false,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"enumName":"ChannelType"}],"category":"channel"},{"name":"$removeChannelPerms","version":"1.0.3","description":"Removes permission overwrites from a channel, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to remove perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to remove these perms from","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to remove from the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$removeThreadMember","version":"1.0.0","description":"Removes a member from a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The thread to remove member from","rest":false,"required":true,"type":"Channel"},{"name":"user ID","pointer":0,"description":"The member to remove","rest":false,"required":true,"type":"Member"}],"category":"channel"},{"name":"$sendMessage","aliases":["$channelSendMessage"],"version":"1.0.0","description":"Sends a message to a channel","unwrap":true,"output":["Message"],"args":[{"name":"channel ID","description":"The channel to send this message to","required":true,"type":"Channel","rest":false},{"name":"content","description":"The content for the message","type":"String","rest":false},{"name":"return message ID","description":"Whether to return the message id of the newly sent message","rest":false,"type":"Boolean"}],"brackets":true,"category":"channel"},{"name":"$setChannelArchiveDuration","version":"1.5.0","description":"Modifies a channel's archive duration","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","type":"Channel","description":"The channel to modify","rest":false,"required":true},{"name":"duration","description":"The new duration of archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setChannelCategory","version":"1.5.0","aliases":["$setChannelParent"],"description":"Sets a channel's category, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its category","rest":false,"type":"Channel","required":true},{"name":"category ID","description":"The category to set","rest":false,"type":"Channel"}],"category":"channel"},{"name":"$setChannelNSFW","version":"1.0.0","description":"Sets a channel nsfw state, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its nsfw state","rest":false,"type":"Channel","required":true},{"name":"state","description":"The state to set","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$setChannelName","version":"1.0.0","description":"Sets a channel name, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its name","rest":false,"type":"Channel","required":true},{"name":"name","description":"The name to set","rest":false,"required":true,"type":"String"}],"category":"channel"},{"name":"$setChannelSlowmode","version":"1.0.0","description":"Sets a channel slowmode, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its nsfw state","rest":false,"type":"Channel","required":true},{"name":"seconds","description":"The number of seconds per message","rest":false,"type":"Number"}],"category":"channel"},{"name":"$setChannelTopic","version":"1.0.0","description":"Sets a channel topic, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its topic","rest":false,"type":"Channel","required":true},{"name":"topic","description":"The topic to set","rest":false,"type":"String"}],"category":"channel"},{"name":"$setDefaultForumLayout","version":"2.2.0","description":"Sets a forum's default layout of posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"layout","description":"The new default layout","rest":false,"required":true,"type":"Enum","enum":["NotSet","ListView","GalleryView"],"enumName":"ForumLayoutType"},{"name":"reason","description":"The reason for modifying default layout","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultReactionEmoji","version":"2.2.0","description":"Sets a forum's default reaction emoji for posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"emoji","description":"The new default reaction emoji","rest":false,"type":"String"},{"name":"reason","description":"The reason for modifying default emoji","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultSortOrder","version":"2.2.0","description":"Sets a forum's default sort order of posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"layout","description":"The new default sort order, leave empty to reset","rest":false,"type":"Enum","enum":["LatestActivity","CreationDate"],"enumName":"SortOrderType"},{"name":"reason","description":"The reason for modifying default sort order","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultThreadArchiveDuration","version":"1.5.0","description":"Sets a forum's default auto archive duration of posts","unwrap":true,"output":["Boolean"],"aliases":["$setDefaultThreadAutoArchiveDuration"],"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","type":"Channel","rest":false,"required":true},{"name":"duration","description":"The new duration of auto archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setDefaultThreadSlowmode","version":"2.2.0","description":"Sets a forum's default slowmode for posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"seconds","description":"The new default slowmode","rest":false,"required":true,"type":"Number"},{"name":"reason","description":"The reason for modifying default slowmode","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setPostTags","version":"2.5.0","description":"Sets tags to a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to set tags on"},{"name":"reason","description":"The reason for setting post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$setThreadArchiveDuration","version":"1.5.0","description":"Sets a thread's auto archive duration","unwrap":true,"output":["Boolean"],"aliases":["$setThreadAutoArchiveDuration"],"brackets":true,"args":[{"name":"channel ID","description":"The thread to modify","type":"Channel","rest":false,"required":true},{"name":"duration","description":"The new duration of auto archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setVoiceBitrate","version":"1.4.0","description":"Sets the bitrate quality of a voice channel, returns bool","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit bitrate","rest":false,"required":true,"type":"Channel"},{"name":"bitrate","rest":false,"type":"Number","required":true,"description":"The new bitrate"},{"name":"reason","description":"The reason to change the bitrate","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceDeaf","version":"1.4.0","description":"Deafens a member from voice channel","brackets":true,"aliases":["$voiceDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to deafen"},{"name":"reason","description":"The reason to deafen this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceMute","version":"1.4.0","description":"Mutes a member from voice channel","brackets":true,"aliases":["$voiceMute"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to mute"},{"name":"reason","description":"The reason to mute this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceRegion","version":"1.5.0","description":"Sets the region of a voice channel, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to set region","rest":false,"required":true,"type":"Channel"},{"name":"region","description":"The region to set, leave empty to remove a fixed region","rest":false,"required":false,"type":"Enum","enum":["brazil","hongkong","india","japan","rotterdam","russia","singapore","south-korea","southafrica","sydney","us-central","us-east","us-south","us-west"],"enumName":"VoiceRegionType"},{"name":"reason","description":"The reason to set the voice region","rest":false,"required":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setVoiceUndeaf","version":"1.4.0","description":"Undeafens a member from voice channel","brackets":true,"aliases":["$voiceUndeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to undeafen"},{"name":"reason","description":"The reason to undeafen this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceUnmute","version":"1.4.0","description":"Unmutes a member from voice channel","brackets":true,"aliases":["$voiceUnmute"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to unmute"},{"name":"reason","description":"The reason to unmute this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceUserLimit","version":"1.4.0","description":"Sets the limit of users that can connect to this voice channel","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit user limit","rest":false,"required":true,"type":"Channel"},{"name":"limit","rest":false,"type":"Number","required":true,"description":"The new user limit"},{"name":"reason","description":"The reason to change the user limit","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceVideoQuality","version":"1.5.0","description":"Sets the video quality of a voice channel, returns bool","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit video quality","rest":false,"required":true,"type":"Channel"},{"name":"quality","rest":false,"required":true,"type":"Enum","enum":["Auto","Full"],"description":"The new video quality","enumName":"VideoQualityMode"},{"name":"reason","description":"The reason to change the video quality","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$startTyping","version":"1.0.0","description":"Starts typing in a channel","unwrap":true,"aliases":["$channelStartTyping"],"brackets":false,"args":[{"name":"channel ID","description":"The channel to start typing at","required":true,"rest":false,"type":"Channel"}],"category":"channel"},{"name":"$threadIsArchived","version":"1.5.0","aliases":["$isArchived","$threadArchived"],"description":"Returns whether a thread is archived","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to check if its archived","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$threadOwnerID","version":"2.2.0","description":"Returns the owner of the thread","brackets":false,"unwrap":true,"output":["Member"],"args":[{"name":"channel ID","description":"The thread to retrieve owner of","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$threadStarterMessageID","version":"1.5.0","description":"Returns the id of the message that started this thread","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The thread to get its starter message id","rest":false,"required":true,"type":"Channel"}],"output":["Message"],"category":"channel"},{"name":"$threadTotalMessagesSent","version":"1.5.0","description":"Returns the total count of sent messages in a thread","aliases":["$threadTotalMessagesCount"],"brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"channel ID","description":"The thread to pull data from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$transcript","version":"1.4.0","aliases":["$channelTranscript","$createTranscript"],"description":"Creates a channel transcript","brackets":true,"output":["String[]"],"unwrap":false,"args":[{"name":"channel ID","description":"The channel to create transcript of","rest":false,"required":true,"type":"TextChannel"},{"name":"variable","description":"The $env variable name to load the message id to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to use for every message, make sure to use $return","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"full","description":"Whether to load entire message object to the variable","rest":false,"required":false,"type":"Boolean"}],"category":"channel"},{"name":"$unarchiveThread","version":"1.0.0","aliases":["$unarchivePost"],"description":"Unarchives a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to unarchive","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to unarchive this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$unlockThread","version":"1.5.0","aliases":["$unlockPost"],"description":"Unlocks a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to unlock","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to unlock this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$commandCount","version":"1.0.0","description":"Returns the command count","brackets":false,"output":["Number"],"args":[{"name":"categories","rest":true,"required":true,"description":"The event types to filter by","type":"String"}],"unwrap":true,"category":"command"},{"name":"$commandInfo","version":"1.0.3","description":"Retrieves command info","unwrap":true,"brackets":true,"output":["Unknown"],"args":[{"name":"type","description":"The command type","rest":false,"type":"String","required":true},{"name":"name","description":"The command name","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property to retrieve","rest":true,"type":"String"}],"category":"command"},{"name":"$commandName","version":"1.0.3","description":"Returns the current command name","unwrap":false,"output":["String"],"category":"command"},{"name":"$commandNames","version":"1.0.6","description":"Return commands with given type","brackets":true,"output":["String[]"],"args":[{"name":"type","description":"The command type to pull names from","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every name","rest":false,"type":"String"}],"unwrap":true,"category":"command"},{"name":"$deleteCommand","version":"1.2.0","description":"Deletes the author's message","unwrap":false,"category":"command"},{"name":"$addActionRow","version":"1.0.0","description":"Adds an action row","unwrap":false,"category":"component"},{"name":"$addActionRowTo","version":"1.5.0","brackets":true,"description":"Adds an action row (or rows) to a message","unwrap":false,"aliases":["$addActionRowsTo"],"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add row to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"components","description":"Components for this row","rest":false,"required":true,"type":"String"},{"name":"keep existing rows","description":"Whether to keep or remove existing rows of given message","rest":false,"required":false,"type":"Boolean"}],"output":["Boolean"],"category":"component"},{"name":"$addButton","version":"1.0.0","description":"Adds a button component to the newest row","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"category":"component"},{"name":"$addButtonTo","version":"1.5.0","description":"Adds a button component to the newest row in a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add button to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"output":["Boolean"],"category":"component"},{"name":"$addChannelSelectMenu","version":"1.4.0","description":"Creates a channel select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"type":"Boolean"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels to use"}],"category":"component"},{"name":"$addChannelSelectMenuTo","version":"2.4.0","description":"Creates a channel select menu on a message","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels to use"}],"category":"component"},{"name":"$addChannelType","version":"1.4.0","aliases":["$addChannelTypes"],"description":"Adds channel types to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"types","description":"The channel types to add","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"type":"Enum","enumName":"ChannelType"}],"category":"component"},{"name":"$addChoice","version":"1.0.6","description":"Adds an autocomplete choice","unwrap":true,"brackets":true,"args":[{"name":"choice name","description":"The name for this choice","rest":false,"required":true,"type":"String"},{"name":"choice value","description":"The value for this choice","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addContainer","version":"2.4.0","description":"Adds a new container component","unwrap":false,"brackets":true,"args":[{"name":"components","description":"The components to add","rest":false,"required":true,"type":"String"},{"name":"color","description":"The color to set","rest":false,"type":"Color"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addDefaultChannelOption","version":"1.4.0","aliases":["$addDefaultChannels","$addDefaultChannelOptions"],"description":"Adds default channel options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"channel IDs","description":"The channel ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addDefaultRoleOption","version":"1.4.0","aliases":["$addDefaultRoles","$addDefaultRoleOptions"],"description":"Adds default role options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"role IDs","description":"The role ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addDefaultUserOption","version":"1.4.0","aliases":["$addDefaultUsers","$addDefaultUserOptions"],"description":"Adds default user options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"user IDs","description":"The user ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addFile","version":"2.4.0","description":"Adds a new file component","unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url of the file (must use attachment://)","rest":false,"required":true,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addMediaGallery","version":"2.4.0","description":"Adds a new media gallery component","unwrap":false,"brackets":true,"args":[{"name":"items","description":"The media items to add","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addMediaItem","version":"2.4.0","description":"Adds a new media gallery item","aliases":["$addItem"],"unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url for the media item","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description of the media item","rest":false,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addMentionableSelectMenu","version":"1.4.0","description":"Creates a mentionable select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use"}],"category":"component"},{"name":"$addMentionableSelectMenuTo","version":"1.5.0","description":"Creates a mentionable select menu on a message","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add row to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use","pointer":0,"pointerProperty":"guild"}],"category":"component"},{"name":"$addOption","version":"1.0.0","description":"Adds a select menu option","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The option name","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for this option","rest":false,"type":"String","required":false},{"name":"value","description":"The value to use for this option","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji to use for this option","type":"String","rest":false},{"name":"default","description":"Whether to set this option as default","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addRoleSelectMenu","version":"1.3.0","description":"Creates a role select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles to use"}],"category":"component"},{"name":"$addRoleSelectMenuTo","version":"1.5.0","description":"Creates a role select menu on a message","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles to use"}],"category":"component"},{"name":"$addSection","version":"2.4.0","description":"Adds a new section component","unwrap":false,"brackets":true,"args":[{"name":"components","description":"The components and accessory to add","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addSeparator","version":"2.4.0","description":"Adds a new separator component","unwrap":true,"brackets":false,"args":[{"name":"spacing","description":"The spacing of this separator","rest":false,"required":true,"type":"Enum","enum":["Small","Large"],"enumName":"SeparatorSpacingSize"},{"name":"divider","description":"Whether to show a divider line","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addStringSelectMenu","version":"1.0.0","description":"Creates a string select menu","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"category":"component"},{"name":"$addStringSelectMenuTo","version":"1.5.0","description":"Creates a string select menu on a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"output":["Boolean"],"category":"component"},{"name":"$addTextDisplay","version":"2.4.0","description":"Adds a new text display component","unwrap":true,"brackets":true,"args":[{"name":"content","description":"The content of this text display","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addTextInput","version":"1.0.0","description":"Adds a text input field to the modal","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this field","rest":false,"type":"String","required":true},{"name":"name","description":"The field name","rest":false,"required":true,"type":"String"},{"name":"type","description":"Paragraph or short","rest":false,"type":"Enum","enum":["Short","Paragraph"],"enumName":"TextInputStyle"},{"name":"required","description":"Whether this field is required","rest":false,"type":"Boolean"},{"name":"placeholder","description":"The placeholder to use for the field","rest":false,"type":"String"},{"name":"default value","description":"The default value for the field","rest":false,"type":"String"},{"name":"minimum length","description":"The minimum length needed","rest":false,"type":"Number"},{"name":"maximum length","description":"The max length needed","rest":false,"type":"Number"}],"category":"component"},{"name":"$addThumbnail","version":"2.4.0","description":"Adds a new thumbnail accessory","unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url for the thumbnail","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description of the thumbnail","rest":false,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addUserSelectMenu","version":"1.4.0","description":"Creates a user select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default users","rest":true,"type":"String","description":"The default selected users to use"}],"category":"component"},{"name":"$addUserSelectMenuTo","version":"1.5.0","output":["Boolean"],"description":"Creates a user select menu on a message","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default users","rest":true,"type":"String","description":"The default selected users to use"}],"category":"component"},{"name":"$deleteActionRow","version":"1.0.0","description":"Deletes an action row or top level component at given index","brackets":true,"args":[{"name":"index","description":"The row index to delete","rest":false,"required":true,"type":"Number"}],"unwrap":true,"category":"component"},{"name":"$deleteActionRowFrom","version":"1.5.0","description":"Deletes an action row or top level component at given index","brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to remove row from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The row index to delete","rest":false,"required":true,"type":"Number"}],"output":["Boolean"],"unwrap":true,"category":"component"},{"name":"$deleteComponent","version":"1.0.0","description":"Deletes a message component with given custom id","brackets":true,"args":[{"name":"custom ID","description":"The component's custom id to delete","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"component"},{"name":"$deleteComponentFrom","version":"1.5.0","description":"Deletes a message component with given custom id from a message","brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to remove component from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The component's custom id to delete","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"unwrap":true,"category":"component"},{"name":"$disableButtons","version":"2.2.0","description":"Disables all buttons on the current message","aliases":["$disableAllButtons"],"unwrap":true,"args":[{"name":"index","description":"The index of the row to disable","rest":false,"required":true,"type":"Number"}],"brackets":false,"category":"component"},{"name":"$disableButtonsOf","version":"2.2.0","description":"Disables all buttons of a message, returns bool","aliases":["$disableAllButtonsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to disable buttons on","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the row to disable","rest":false,"type":"Number"}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$disableComponents","version":"2.2.0","description":"Disables all components on the current message","aliases":["$disableAllComponents"],"unwrap":false,"category":"component"},{"name":"$disableComponentsOf","version":"2.2.0","description":"Disables all components of a message, returns bool","aliases":["$disableAllComponentsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to disable components on","rest":false,"required":true,"type":"Message","pointer":0}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$editButton","version":"1.0.7","description":"Edits a button component","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id to find the component","rest":false,"type":"String","required":true},{"name":"new custom ID","description":"The new custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"category":"component"},{"name":"$editButtonOf","version":"1.5.0","description":"Edits a button component of a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit button for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id to find the component","rest":false,"type":"String","required":true},{"name":"new custom ID","description":"The new custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"output":["Boolean"],"category":"component"},{"name":"$editChannelSelectMenu","version":"2.2.0","description":"Edits a channel select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels of the menu"}],"category":"component"},{"name":"$editChannelSelectMenuOf","version":"2.2.0","description":"Edits a channel select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$editMentionableSelectMenu","version":"2.2.0","description":"Edits a mentionable select menu","brackets":true,"unwrap":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use"}],"category":"component"},{"name":"$editMentionableSelectMenuOf","version":"2.2.0","description":"Edits a mentionable select menu of a message, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use","pointer":0,"pointerProperty":"guild"}],"output":["Boolean"],"category":"component"},{"name":"$editOption","version":"1.4.0","description":"Edits a select menu option","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The option name","rest":false,"required":true,"type":"String"},{"name":"new name","description":"The new option name","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for this option","rest":false,"type":"String","required":false},{"name":"value","description":"The value to use for this option","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji to use for this option","type":"String","rest":false},{"name":"default","description":"Whether to set this option as default","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$editRoleSelectMenu","version":"2.2.0","description":"Edits a role select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles of the menu"}],"category":"component"},{"name":"$editRoleSelectMenuOf","version":"2.2.0","description":"Edits a role select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$editStringSelectMenu","version":"1.4.0","description":"Edits a string select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"category":"component"},{"name":"$editStringSelectMenuOf","version":"1.5.0","description":"Edits a string select menu of a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"output":["Boolean"],"category":"component"},{"name":"$editUserSelectMenu","version":"2.2.0","description":"Edits a user select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default users","rest":true,"type":"String","description":"The default selected users of the menu"}],"category":"component"},{"name":"$editUserSelectMenuOf","version":"2.2.0","description":"Edits a user select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default users","rest":true,"type":"String","description":"The default selected users of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$enableButtons","version":"2.2.0","description":"Enables all buttons on the current message","aliases":["$enableAllButtons"],"unwrap":true,"args":[{"name":"index","description":"The index of the row to enable","rest":false,"required":true,"type":"Number"}],"brackets":false,"category":"component"},{"name":"$enableButtonsOf","version":"2.2.0","description":"Enables all buttons of a message, returns bool","aliases":["$enableAllButtonsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to enable buttons on","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the row to enable","rest":false,"type":"Number"}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$enableComponents","version":"2.2.0","description":"Enables all components on the current message","aliases":["$enableAllComponents"],"unwrap":false,"category":"component"},{"name":"$enableComponentsOf","version":"2.2.0","description":"Enables all components of a message, returns bool","aliases":["$enableAllComponentsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to enable components on","rest":false,"required":true,"type":"Message","pointer":0}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$setChannelType","version":"1.5.0","aliases":["$setChannelTypes"],"description":"Sets channel types for the last select menu","unwrap":true,"brackets":true,"args":[{"name":"types","description":"The channel types to set","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"type":"Enum","enumName":"ChannelType"}],"category":"component"},{"name":"$and","version":"1.0.0","description":"Validates multiple conditions","unwrap":false,"brackets":true,"output":["Boolean"],"args":[{"name":"conditions","rest":true,"required":true,"type":"String","condition":true,"description":"The conditions that must match"}],"category":"condition"},{"name":"$checkCondition","version":"1.0.0","description":"Checks whether a condition is valid","brackets":true,"unwrap":false,"output":["Boolean"],"args":[{"name":"condition","description":"The condition to use","rest":false,"condition":true,"type":"String","required":true}],"category":"condition"},{"name":"$isBoolean","version":"1.0.6","description":"Checks whether given value is bool like","aliases":["$isBool"],"brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"value","description":"Value to check if its a valid bool","rest":false,"required":true,"type":"String"}],"category":"condition"},{"name":"$isValidHex","version":"1.3.0","description":"Checks whether given hex is a valid integer number between 0x00000 and 0xffffff","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"hex","rest":false,"required":true,"type":"String","description":"The hex to check for"}],"category":"condition"},{"name":"$isValidLink","version":"1.0.0","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"link","description":"The link to check","rest":false,"required":true,"type":"String"}],"description":"Checks whether a link is valid, this will not make sure that a site actually exists or returns success HTTP responses","category":"condition"},{"name":"$or","version":"1.0.0","description":"Validates one condition","unwrap":false,"brackets":true,"output":["Boolean"],"args":[{"name":"conditions","rest":true,"required":true,"type":"String","condition":true,"description":"The conditions that must match one"}],"category":"condition"},{"name":"$channelCooldown","version":"1.5.0","description":"Adds a cooldown binded to a channel and command","brackets":true,"unwrap":false,"args":[{"name":"channel ID","rest":false,"description":"The channel id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$cooldown","version":"1.0.3","description":"Adds a command cooldown","brackets":true,"unwrap":false,"args":[{"name":"id","rest":false,"description":"The id to assign the cooldown to, can be anything","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"examples":["$c[This is a guild based user cooldown]\n$cooldown[$commandName_$guildID_$authorID;1h;You're on cooldown.]\nHello!\n","$c[This is a user based cooldown]\n$cooldown[$commandName_$authorID;1h;You're on cooldown.]\nHello!\n"],"experimental":true,"category":"cooldown"},{"name":"$deleteChannelCooldown","version":"1.5.0","description":"Deletes cooldown for given channel id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteCooldown","version":"1.0.3","description":"Deletes cooldown of given id","brackets":true,"unwrap":true,"args":[{"name":"id","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteGuildCooldown","version":"1.5.0","description":"Deletes cooldown for given guild id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteMemberCooldown","version":"1.5.0","description":"Deletes cooldown for given guild and user id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true},{"name":"user ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteUserCooldown","version":"1.5.0","description":"Deletes cooldown for given user id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"user ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getCooldownTime","version":"1.0.3","description":"Retrieves current cooldown time in ms for given id","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"id","description":"The id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getGuildCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given guild id, binded to current command","brackets":true,"aliases":["$getServerCooldownTime"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getMemberCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given guild and user id, binded to current command","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild id to get its cooldown","rest":false,"type":"String","required":true},{"name":"user ID","description":"The user id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getUserCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given user id, binded to current command","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"user ID","description":"The user id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$guildCooldown","version":"1.5.0","description":"Adds a cooldown binded to a guild and command","brackets":true,"unwrap":false,"aliases":["$serverCooldown"],"args":[{"name":"guild ID","rest":false,"description":"The guild id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$memberCooldown","version":"1.5.0","description":"Adds a cooldown binded to a guild member and command","brackets":true,"unwrap":false,"args":[{"name":"guild ID","rest":false,"description":"The guild id to assign the cooldown to","type":"String","required":true},{"name":"user ID","rest":false,"description":"The user id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$userCooldown","version":"1.5.0","description":"Adds a cooldown binded to a user and command","brackets":true,"unwrap":false,"args":[{"name":"user ID","rest":false,"description":"The user id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$createQueryParams","version":"1.0.7","description":"Creates query params with given fields","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"param name;param value","description":"The param name followed by the value, (param1;value1)","rest":true,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decodeURI","version":"1.0.0","description":"Decodes text from a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to decode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decodeURIComponent","version":"1.0.0","description":"Decodes text from a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to decode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decrypt","version":"1.5.0","description":"Decrypts given text with a key","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to decrypt","rest":false,"required":true,"type":"String"},{"name":"key","description":"The key to use to decrypt the text","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"crypto"},{"name":"$deflate","version":"1.2.0","description":"Compresses given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"The text to compress","type":"String","rest":false,"required":true},{"name":"encoding","rest":false,"required":false,"description":"The output encoding to use","type":"String"}],"category":"crypto"},{"name":"$encodeURI","version":"1.0.0","description":"Encodes text for a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to encode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$encodeURIComponent","version":"1.0.0","description":"Encodes text for a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to encode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$encrypt","version":"1.5.0","description":"Encrypts given text with a key","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to encrypt","rest":false,"required":true,"type":"String"},{"name":"key","description":"The key to use to encrypt text","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"crypto"},{"name":"$inflate","version":"1.2.0","description":"Decompresses given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"The text to decompress","type":"String","rest":false,"required":true},{"name":"encoding","rest":false,"required":false,"description":"The input encoding to use","type":"String"}],"category":"crypto"},{"name":"$md5","version":"1.2.0","description":"Creates a md5 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$randomBytes","version":"1.5.0","description":"Generates a string of random bytes, in hex","brackets":true,"output":["String"],"args":[{"name":"length","description":"The length of the hex string","rest":false,"required":true,"type":"Number"}],"unwrap":true,"category":"crypto"},{"name":"$sha256","version":"1.2.0","description":"Creates a sha256 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$sha512","version":"1.2.0","description":"Creates a sha512 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$addField","version":"1.0.0","description":"Adds an embed field","unwrap":true,"args":[{"name":"name","description":"The name for the field","required":true,"type":"String","rest":false},{"name":"value","description":"The value for the field","required":true,"type":"String","rest":false},{"name":"inline","description":"Whether this field will be inline","type":"Boolean","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$author","version":"1.0.0","description":"Adds an embed author","unwrap":true,"args":[{"name":"name","description":"Adds a name to the embed author","required":true,"type":"String","rest":false},{"name":"icon","description":"The icon url","rest":false,"type":"String"},{"name":"hyperlink","description":"The hyperlink url","rest":false,"type":"String"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$color","version":"1.0.0","description":"Adds an embed color","unwrap":true,"args":[{"name":"color","description":"The color for the embed","required":true,"enum":["Default","White","Aqua","Green","Blue","Yellow","Purple","LuminousVividPink","Fuchsia","Gold","Orange","Red","Grey","Navy","DarkAqua","DarkGreen","DarkBlue","DarkPurple","DarkVividPink","DarkGold","DarkOrange","DarkRed","DarkGrey","DarkerGrey","LightGrey","DarkNavy","Blurple","Greyple","DarkButNotBlack","NotQuiteBlack"],"type":"Color","rest":false,"enumName":"Colors"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$deleteField","version":"2.1.0","description":"Deletes an embed field","unwrap":true,"args":[{"name":"field index","description":"The index field to delete","rest":false,"required":true,"type":"Number"},{"name":"index","description":"The index to delete this field on","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$description","version":"1.0.0","description":"Adds an embed description","unwrap":true,"args":[{"name":"description","description":"The description for the embed","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$editField","version":"1.4.0","description":"Edits an embed field","unwrap":true,"args":[{"name":"field index","description":"The index field to edit","rest":false,"required":true,"type":"Number"},{"name":"name","description":"The name for the field","type":"String","rest":false},{"name":"value","description":"The value for the field","type":"String","rest":false},{"name":"inline","description":"Whether this field will be inline","type":"Boolean","rest":false},{"name":"index","description":"The index to edit this data on","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$footer","version":"1.0.0","description":"Adds an embed footer","unwrap":true,"args":[{"name":"text","description":"The text for the embed footer","required":true,"type":"String","rest":false},{"name":"icon","description":"The icon url for the embed footer","type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$image","version":"1.0.0","description":"Adds an embed image","unwrap":true,"args":[{"name":"url","description":"The url for the embed image","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$thumbnail","version":"1.0.0","description":"Adds an embed thumbnail","unwrap":true,"args":[{"name":"url","description":"The url for the embed thumbnail","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$timestamp","version":"1.0.0","description":"Adds an embed timestamp","unwrap":true,"args":[{"name":"ms","description":"The timestamp time to add","type":"Number","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":false,"category":"embed"},{"name":"$title","version":"1.0.0","description":"Adds an embed title","unwrap":true,"args":[{"name":"title","description":"Adds a title to the embed","required":true,"type":"String","rest":false},{"name":"hyperlink","description":"The hyperlink url","rest":false,"type":"String"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$addApplicationEmoji","version":"1.5.0","description":"Adds an application emoji, returns the emoji id","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name for the emoji","rest":false,"required":true,"type":"String"},{"name":"url","description":"The emoji icon to use","rest":false,"required":true,"type":"String"},{"name":"return emoji ID","description":"Whether to return the emoji id","rest":false,"type":"Boolean"}],"output":["ApplicationEmoji"],"category":"emoji"},{"name":"$addEmoji","version":"1.0.7","description":"Adds an emoji to a guild, returns the emoji id","brackets":true,"unwrap":true,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to add this emote to","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the emoji","rest":false,"required":true,"type":"String"},{"name":"url","description":"The emoji icon to use","rest":false,"required":true,"type":"String"},{"name":"return emoji ID","description":"Whether to return the emoji id","rest":false,"type":"Boolean"},{"name":"roles","description":"The roles to limit usage of this emote","rest":true,"type":"Role","pointer":0}],"category":"emoji"},{"name":"$deleteApplicationEmojis","version":"1.5.0","description":"Deletes application emojis, returns the count of emojis deleted","brackets":true,"unwrap":true,"args":[{"name":"emojis","description":"The emojis to delete","rest":true,"required":true,"type":"ApplicationEmoji"}],"output":["Number"],"category":"emoji"},{"name":"$deleteEmojiMessageReactions","version":"1.0.0","description":"Deletes all emoji reactions from a message, returns amount of reaction emojis successfully deleted","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove emoji reactions from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emojis","description":"The emojis to delete from this message","required":true,"pointer":1,"rest":true,"type":"Reaction"}],"category":"emoji"},{"name":"$deleteEmojis","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given emojis from a guild, returns the count of emotes deleted","args":[{"name":"guild ID","description":"The guild to delete emotes from","rest":false,"required":true,"type":"Guild"},{"name":"emojis","description":"The emojis to delete","rest":true,"pointer":0,"required":true,"type":"GuildEmoji"}],"category":"emoji"},{"name":"$editApplicationEmoji","version":"1.5.0","description":"Edits an application emoji, returns bool","brackets":true,"unwrap":true,"args":[{"name":"emoji ID","description":"The emoji to edit","rest":false,"required":true,"type":"ApplicationEmoji"},{"name":"name","description":"The new name for the emoji","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"emoji"},{"name":"$editEmoji","version":"1.5.0","description":"Edits an emoji of a guild, returns bool","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to edit this emoji on","rest":false,"required":true,"type":"Guild"},{"name":"emoji ID","description":"The emoji to edit","rest":false,"required":true,"type":"GuildEmoji","pointer":0},{"name":"name","description":"The new name for the emoji","rest":false,"type":"String"},{"name":"reason","description":"The reason for editing the emoji","rest":false,"type":"String"},{"name":"roles","description":"The new roles to limit usage of this emoji to","rest":true,"type":"Role","pointer":0}],"output":["Boolean"],"category":"emoji"},{"name":"$emoji","version":"1.0.0","description":"Formats given emoji","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji id to format","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiAnimated","version":"1.0.0","description":"Returns whether the emoji is animated","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji id to return its animation state","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiCount","version":"1.0.0","description":"Returns the emoji count of all servers","unwrap":true,"brackets":false,"args":[{"name":"type","description":"The type of the emotes to count","rest":false,"required":true,"type":"Enum","enum":["normal","animated"],"enumName":"EmojiType"}],"output":["Number"],"category":"emoji"},{"name":"$emojiCreatedAt","version":"1.0.0","description":"Returns the emoji creation timestamp","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"emoji ID","description":"The emoji id to return its creation timestamp","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiExists","version":"1.0.0","description":"Returns whether an emoji id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji to check","rest":false,"required":true,"type":"String"}],"category":"emoji"},{"name":"$emojiGuildID","version":"1.0.0","description":"Returns the emoji guild id","brackets":false,"unwrap":true,"output":["Guild"],"args":[{"name":"emoji ID","description":"The emoji id to return its guild id","rest":false,"type":"GuildEmoji","required":true}],"category":"emoji"},{"name":"$emojiID","version":"1.2.0","description":"Returns the emoji id","brackets":false,"unwrap":true,"output":["Emoji"],"args":[{"name":"emoji name","description":"The emoji name to return its id","rest":false,"type":"String","required":true}],"category":"emoji"},{"name":"$emojiIDs","description":"Returns every guild emoji id","version":"1.3.0","unwrap":true,"brackets":false,"output":["GuildEmoji[]"],"args":[{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"emoji"},{"name":"$emojiIdentifier","version":"1.0.0","description":"Returns the emoji identifier","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji id to return its identifier","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiName","version":"1.2.0","description":"Returns the emoji name","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji id to return its name","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiNames","version":"1.0.0","description":"Returns the emote names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the emotes of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each emoji","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"emoji"},{"name":"$emojiRawData","version":"1.5.0","description":"Returns the raw data of an emoji","unwrap":true,"brackets":true,"args":[{"name":"emoji ID","rest":false,"required":true,"description":"The emoji to get raw data from","type":"Emoji"}],"output":["Json"],"category":"emoji"},{"name":"$emojiRequiresColons","version":"1.0.0","description":"Returns whether the emoji requires colons","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji id to return its colons state","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiRoles","version":"1.0.0","description":"Returns the role ids that can use this emote","brackets":false,"unwrap":true,"output":["Role[]"],"args":[{"name":"emoji ID","description":"The emoji id to return its roles","rest":false,"type":"GuildEmoji","required":true},{"name":"separator","description":"The separator to use for every role","rest":false,"type":"String"}],"category":"emoji"},{"name":"$emojiURL","version":"1.0.0","description":"Returns the emoji url","brackets":false,"unwrap":true,"output":["URL"],"args":[{"name":"emoji ID","description":"The emoji id to return its url","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$fetchApplicationEmojis","version":"2.5.0","description":"Caches all application emojis of the client","unwrap":false,"category":"emoji"},{"name":"$getApplicationEmojis","version":"1.5.0","description":"Gets all application emojis","brackets":false,"unwrap":true,"args":[{"name":"property","description":"The property to return for every emoji","rest":false,"type":"Enum","enum":["authorID","name","id","identifier","requiresColons","managed","timestamp","animated","url","format"],"enumName":"ApplicationEmojiProperty"},{"name":"separator","description":"The separator to use for every emoji property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"emoji"},{"name":"$randomApplicationEmojiID","version":"1.5.0","description":"Returns a random emoji ID of the application","unwrap":false,"output":["ApplicationEmoji"],"category":"emoji"},{"name":"$randomEmojiID","version":"1.0.3","description":"Returns a random emoji ID","unwrap":false,"output":["GuildEmoji"],"category":"emoji"},{"name":"$randomGuildEmojiID","version":"1.0.3","description":"Returns a random emoji ID of a guild","unwrap":true,"brackets":false,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to get emoji from","rest":false,"required":true,"type":"Guild"}],"category":"emoji"},{"name":"$entitlementConsume","version":"1.5.0","description":"Consumes an entitlement from an interaction","unwrap":true,"args":[{"name":"entitlement name","description":"The name of the entitlement to consume","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$entitlementEndTimestamp","version":"1.5.0","description":"Returns the time at which this entitlement ends","output":["Number"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementGuildID","version":"1.5.0","description":"Returns this entitlement's guild id","output":["Guild"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementID","version":"1.5.0","description":"Returns this entitlement's id","output":["String"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsActive","version":"1.5.0","description":"Returns whether this entitlement is active","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsConsumed","version":"1.5.0","description":"Returns whether this entitlement is consumed","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsDeleted","version":"1.5.0","description":"Returns whether this entitlement is deleted","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsGuildSubscription","version":"1.5.0","description":"Returns whether this entitlement is for a guild","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsUserSubscription","version":"1.5.0","description":"Returns whether this entitlement is for a user","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementSkuID","version":"1.5.0","description":"Returns this entitlement's sku id","output":["String"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementStartTimestamp","version":"1.5.0","description":"Returns the time at which this entitlement starts","output":["Number"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementType","version":"1.5.0","description":"Returns this entitlement's type","output":["EntitlementType"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementUserID","version":"1.5.0","description":"Returns this entitlement's user id","output":["User"],"unwrap":false,"category":"entitlement"},{"name":"$hasAllEntitlements","version":"1.5.0","aliases":["$interactionHasAllEntitlements"],"description":"Checks whether this interaction user has all of the given entitlements","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlements to validate","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$hasAnyEntitlement","version":"1.5.0","aliases":["$interactionHasAnyEntitlement"],"description":"Checks whether this interaction user has any of the given entitlements","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlements to validate","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$hasEntitlement","version":"1.5.0","aliases":["$interactionHasEntitlement"],"description":"Checks whether this interaction user has given entitlement","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlement to validate","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$appendFile","version":"1.0.0","description":"Appends text to a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"text","description":"The text to append","rest":false,"type":"String","required":true},{"name":"encoding","description":"The encoding to use for text","rest":false,"type":"String"}],"category":"file"},{"name":"$copyFile","version":"1.2.0","description":"Copies given path to another path","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make a copy of","rest":false,"required":true,"type":"String"},{"name":"destination","description":"The output path to copy to","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$deleteFile","version":"1.0.0","description":"Deletes a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$fileAccessedAt","version":"1.4.0","description":"Gets last time a file was accessed","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileBlockCount","version":"1.4.0","description":"Gets block count of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileBlockSize","version":"1.4.0","description":"Gets block size of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileChangedAt","version":"1.4.0","description":"Gets last time a file was changed","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileCreatedAt","version":"1.4.0","description":"Gets timestamp of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileExists","version":"1.0.0","description":"Checks whether a path exists","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileModifiedAt","version":"1.4.0","description":"Gets timestamp of a file or directory when it was last modified","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileSize","version":"1.2.0","description":"Gets size of a file or directory in bytes","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isDirectory","version":"1.4.0","description":"Checks whether a path is a directory","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isFile","version":"1.4.0","description":"Checks whether a path is a file","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isSymbolicLink","version":"1.4.0","description":"Checks whether a path is a symbolic link","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$mkdir","version":"1.0.0","description":"Creates a directory","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path for the dir","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$mktdir","version":"1.4.0","description":"Creates a temporary directory","unwrap":true,"brackets":true,"aliases":["$makeTempDir","$createTempDir"],"output":["String"],"args":[{"name":"prefix","description":"The prefix for the temp dir","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$moveFile","version":"1.4.0","description":"Moves a path to another","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make to move","rest":false,"required":true,"type":"String"},{"name":"destination","description":"The output path","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$pathJoin","version":"2.2.0","description":"Joins paths together","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"paths","description":"The paths to join with","rest":true,"required":true,"type":"String"}],"category":"file"},{"name":"$pathResolve","version":"2.2.0","description":"Resolves paths into an absolute path","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"paths","description":"The paths to resolve","rest":true,"required":true,"type":"String"}],"category":"file"},{"name":"$readDir","version":"1.5.0","description":"Reads the contents of a directory","unwrap":true,"brackets":true,"output":["Json","String[]"],"args":[{"name":"path","description":"The path to the directory","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for each result","rest":false,"type":"String"},{"name":"encoding","description":"The encoding to use for the result","rest":false,"type":"String"}],"category":"file"},{"name":"$readFile","version":"1.0.0","description":"Reads text from a file","unwrap":true,"brackets":true,"output":["Unknown"],"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"encoding","description":"The encoding to use for the text","rest":false,"type":"String"}],"category":"file"},{"name":"$renameFile","version":"1.5.0","description":"Renames a file","unwrap":true,"brackets":true,"args":[{"name":"old path","description":"The old path to the file","rest":false,"required":true,"type":"String"},{"name":"new path","description":"The new path to the file","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$symlink","version":"1.4.0","description":"Creates a symbolic link to another path","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make to use as reference","rest":false,"required":true,"type":"String"},{"name":"other path","description":"The other path to link","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$truncateFile","version":"1.0.0","description":"Truncates text in a file to given length","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"length","description":"The new length for the file","rest":false,"type":"Number","required":true}],"category":"file"},{"name":"$writeFile","version":"1.0.0","description":"Writes text to a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"text","description":"The text to write","rest":false,"type":"String","required":true},{"name":"encoding","description":"The encoding to use for text","rest":false,"type":"String"}],"category":"file"},{"name":"$bold","version":"1.3.0","brackets":true,"description":"Makes given text bold","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make bold, this will attempt to escape all *","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$codeBlock","version":"1.3.0","brackets":true,"description":"Creates a code block with given text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to create block with, this will attempt to escape all `","rest":false,"required":true,"type":"String"},{"name":"lang","description":"The language to give to this code block","rest":false,"type":"String"}],"category":"formatting"},{"name":"$hyperlink","version":"1.3.0","brackets":true,"description":"Creates a hyperlink text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make hyperlink","rest":false,"required":true,"type":"String"},{"name":"url","description":"The url to use for hyperlink","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$inlineCode","aliases":["$inline","$markdown"],"version":"1.3.0","brackets":true,"description":"Adds backticks to text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to mark down, this will attempt to escape all `","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$italic","version":"1.5.0","brackets":true,"description":"Makes given text italic","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make italic, this will attempt to escape all _ and *","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$spoiler","version":"1.3.0","brackets":true,"description":"Makes given text a spoiler","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make spoiler, this will attempt to escape all |","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$strikethrough","version":"1.3.0","brackets":true,"description":"Makes given text strikethrough","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make strikethrough, this will attempt to escape all ~","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$subtext","version":"2.2.0","description":"Makes given text a subtext","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to make subtext","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$underline","version":"1.3.0","brackets":true,"description":"Adds an underline to text","aliases":["$underscore"],"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to add underline to, this will attempt to escape all _","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$createGuild","version":"1.5.0","description":"Creates a new guild, returns guild id","aliases":["$createServer"],"unwrap":true,"brackets":true,"deprecated":true,"args":[{"name":"name","description":"The name for the guild","rest":false,"required":true,"type":"String"},{"name":"icon","description":"The icon for the guild","rest":false,"type":"URL"},{"name":"template","description":"The template to use for the guild","rest":false,"type":"Template"}],"output":["Guild"],"category":"guild"},{"name":"$createGuildTemplate","version":"1.5.0","description":"Creates template for a guild, returns template code","aliases":["$createServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to create template on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the template","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for the template","rest":false,"type":"String"}],"output":["Template"],"category":"guild"},{"name":"$deleteGuild","version":"1.5.0","description":"Deletes a guild, returns bool","aliases":["$deleteServer"],"unwrap":true,"brackets":true,"deprecated":true,"args":[{"name":"guild ID","description":"The guild to delete","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$deleteGuildApplicationCommands","version":"1.4.0","description":"Deletes all guild commands of your bot from a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to delete commands from","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$deleteGuildTemplate","version":"1.5.0","description":"Deletes template from a guild, returns bool","aliases":["$deleteServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to delete","rest":false,"required":true,"type":"Template"}],"output":["Boolean"],"category":"guild"},{"name":"$editGuildTemplate","version":"1.5.0","description":"Edits template on a guild, returns bool","aliases":["$editServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to edit","rest":false,"required":true,"type":"Template"},{"name":"name","description":"The new name for the template","rest":false,"type":"String"},{"name":"description","description":"The new description for the template","rest":false,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$getGuildInvite","version":"2.2.0","description":"Returns information about a guild invite","brackets":true,"unwrap":true,"output":["Json","Unknown"],"args":[{"name":"guild ID","description":"The guild to fetch invite from","rest":false,"required":true,"type":"Guild"},{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property of the invite to return","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"}],"category":"guild"},{"name":"$getGuildPreview","version":"2.5.0","description":"Returns the preview of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to fetch preview from","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","description","features","timestamp","icon","splash","emojis","stickers","discoverySplash","approximateMemberCount","approximatePresenceCount"],"enumName":"GuildPreviewProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown"],"category":"guild"},{"name":"$getGuildTemplate","version":"1.5.0","description":"Gets the data of a guild template","aliases":["$getServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to get","rest":false,"required":true,"type":"Template"},{"name":"property","description":"The property of the template to return","rest":false,"type":"Enum","enum":["code","name","description","guildID","authorID","timestamp","updatedTimestamp","url","usageCount","unSynced"],"enumName":"TemplateProperty"}],"output":["Json","Unknown"],"category":"guild"},{"name":"$guildAfkChannelID","version":"1.3.0","aliases":["$serverGuildAfkChannelID"],"description":"Returns the server's afk channel ID","brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildAfkTimeout","version":"1.3.0","description":"Returns the server's afk timeout","brackets":false,"aliases":["$serverAfkTimeout"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildApproximateMemberCount","version":"1.3.0","description":"Returns the approximated member count","brackets":false,"aliases":["$serverApproximateMemberCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildApproximatePresenceCount","version":"1.3.0","description":"Returns the approximated presence count","brackets":false,"aliases":["$serverApproximatePresenceCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildAutomodRules","version":"1.5.0","description":"Returns all automod rules of a guild","aliases":["$getAutomodRules"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get automod rules from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each automod rule to return","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildAvailable","version":"1.3.0","description":"Returns whether the server is available","brackets":false,"aliases":["$serverAvailable"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"unwrap":true,"category":"guild"},{"name":"$guildBanReason","version":"1.4.0","unwrap":true,"brackets":false,"aliases":["$banReason","$serverBanReason","$getBanReason","$getGuildBanReason","$getServerBanReason"],"output":["String"],"description":"Fetches a ban reason of a user","args":[{"name":"guild ID","description":"The guild to pull ban from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to pull ban reason","rest":false,"required":true,"type":"User"}],"category":"guild"},{"name":"$guildBannedMembers","version":"1.4.0","description":"Returns banned member ids of a guild","aliases":["$serverBannedMembers"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull banned members from"},{"name":"separator","rest":false,"type":"String","description":"The separator for each id"}],"output":["User[]"],"category":"guild"},{"name":"$guildBanner","version":"1.0.0","description":"Returns the guild banner","brackets":false,"aliases":["$serverBanner"],"args":[{"name":"guild ID","description":"The guild to retrieve the banner","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"unwrap":true,"category":"guild"},{"name":"$guildBoostCount","version":"1.0.0","description":"Returns the server boost count","brackets":false,"aliases":["$serverBoostCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildBoostLevel","version":"1.0.0","description":"Returns the server boost tier","brackets":false,"aliases":["$serverBoostLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildBoostProgressBarEnabled","version":"1.5.0","description":"Returns whether a guild has the boost progress bar enabled","aliases":["$serverBoostProgressBarEnabled"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildBoostRoleID","version":"1.0.0","description":"Returns the server boost role id","brackets":false,"aliases":["$serverBoostRoleID"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Role"],"unwrap":true,"category":"guild"},{"name":"$guildBoosterIDs","version":"1.5.0","description":"Returns all current boosters of a guild","brackets":false,"aliases":["$serverBoosterIDs"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use for every member","rest":false,"type":"String"}],"output":["Member[]"],"unwrap":true,"category":"guild"},{"name":"$guildBotCount","version":"1.0.0","description":"Returns the bot count of a guild","brackets":false,"aliases":["$serverBotCount"],"args":[{"name":"guild ID","description":"The guild to retrieve bot count from","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildChannelCount","version":"1.0.0","description":"Returns the server channel count","brackets":false,"aliases":["$serverChannelCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get channels from","rest":false,"type":"Guild","required":true},{"name":"categories","description":"The categories to filter by","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"type":"Enum","enumName":"ChannelType"}],"category":"guild"},{"name":"$guildChannelExists","version":"1.0.0","description":"Returns whether a guild channel id exists","unwrap":true,"aliases":["$serverChannelExists"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to check for the guild channel","type":"Guild","rest":false,"required":true},{"name":"channel ID","description":"The role to guild channel","rest":false,"required":true,"type":"String"}],"category":"guild"},{"name":"$guildChannelIDs","version":"1.3.0","unwrap":true,"brackets":false,"aliases":["$serverChannelIDs"],"output":["Channel[]"],"description":"Returns every channel id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get channel ids from"},{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildCount","version":"1.0.0","description":"Returns the guild count","unwrap":false,"aliases":["$serverCount","$serversCount"],"output":["Number"],"category":"guild"},{"name":"$guildCreatedAt","version":"1.0.0","description":"Returns the server creation timestamp","brackets":false,"aliases":["$serverCreatedAt"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildDefaultMessageNotifications","version":"1.3.0","description":"Returns the default message notifications for this guild","brackets":false,"aliases":["$serverDefaultMessageNotifications"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["GuildDefaultMessageNotifications"],"unwrap":true,"category":"guild"},{"name":"$guildDescription","version":"1.0.0","description":"Returns the server description","brackets":false,"aliases":["$serverDescription"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["String"],"unwrap":true,"category":"guild"},{"name":"$guildDiscoverySplash","version":"1.3.0","description":"Returns the guild discovery splash","brackets":false,"aliases":["$serverDiscoverySplash"],"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the discovery splash","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildDmSpamDetectedAt","version":"2.2.0","description":"Returns when a direct message spam was detected on a guild","aliases":["$serverDmSpamDetectedAt"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildDmsDisabledUntil","version":"2.2.0","description":"Returns the direct messages disabled timestamp of a guild","aliases":["$serverDmsDisabledUntil"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildEmojiCount","version":"1.0.0","description":"Returns the emoji count of a guild","brackets":false,"aliases":["$serverEmojiCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get emotes from","rest":false,"type":"Guild","required":true},{"name":"type","description":"The type of the emotes to count","rest":false,"type":"Enum","enum":["normal","animated"],"enumName":"EmojiType"}],"category":"guild"},{"name":"$guildEmojiExists","version":"2.5.0","description":"Returns whether an emoji id exists on a guild","unwrap":true,"aliases":["$serverEmojiExists"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull emoji from","rest":false,"required":true,"type":"Guild"},{"name":"emoji ID","description":"The emoji to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildEmojiIDs","version":"1.3.0","unwrap":true,"aliases":["$serverEmojiIDs"],"output":["GuildEmoji[]"],"brackets":false,"description":"Returns every emoji id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get emoji ids from"},{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildEmojiLimit","version":"1.5.0","description":"Returns the emoji limit of a guild","brackets":false,"aliases":["$serverEmojiLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildEmojis","version":"1.3.0","unwrap":true,"aliases":["$serverEmojis"],"output":["String[]"],"brackets":false,"description":"Returns every emoji of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get emoji from"},{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildExists","version":"1.0.0","description":"Returns whether a guild id exists","unwrap":true,"aliases":["$serverExists"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to check","rest":false,"required":true,"type":"String"}],"category":"guild"},{"name":"$guildExplicitContentFilter","version":"1.3.0","description":"Returns the explicit content filter level for this guild","brackets":false,"aliases":["$serverExplicitContentFilter"],"output":["GuildExplicitContentFilter"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildFeatures","version":"1.0.0","description":"Returns the guild features","brackets":false,"aliases":["$serverFeatures"],"output":["GuildFeature[]"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildHasAnyFeatures","version":"1.4.0","description":"Returns whether this guild has any of the given features","unwrap":true,"brackets":true,"aliases":["$guildHasAnyFeature","$hasAnyGuildFeatures","$hasAnyGuildFeature"],"args":[{"name":"guild ID","description":"The guild to check for features","rest":false,"required":true,"type":"Guild"},{"name":"features","rest":true,"required":true,"type":"Enum","enum":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled"],"description":"The features to check for","enumName":"GuildFeature"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHasFeatures","version":"1.4.0","description":"Returns whether this guild has all the given features","unwrap":true,"brackets":true,"aliases":["$hasGuildFeatures"],"args":[{"name":"guild ID","description":"The guild to check for features","rest":false,"required":true,"type":"Guild"},{"name":"features","rest":true,"required":true,"type":"Enum","enum":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled"],"description":"The features to check for","enumName":"GuildFeature"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHasTemplate","version":"1.5.0","description":"Returns whether this guild has a template","unwrap":true,"brackets":false,"aliases":["$hasGuildTemplate"],"args":[{"name":"guild ID","description":"The guild to check for template","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHighestRoleID","version":"1.5.0","description":"Returns the highest role id of a guild","aliases":["$serverHighestRoleID"],"brackets":false,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to retrieve its highest role","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildID","version":"1.0.0","description":"Returns the guild id with given name","unwrap":true,"aliases":["$serverID"],"output":["Guild"],"brackets":false,"args":[{"name":"name","description":"The guild name to return the id","rest":true,"type":"String","required":true}],"category":"guild"},{"name":"$guildIDs","version":"1.0.0","description":"Returns all the guilds this bot is in","unwrap":true,"aliases":["$serverIDs"],"output":["Guild[]"],"brackets":false,"args":[{"name":"separator","description":"The separator for each guild","type":"String","required":true,"rest":false}],"category":"guild"},{"name":"$guildIcon","version":"1.0.0","description":"Returns the server icon","brackets":false,"aliases":["$serverIcon"],"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the guild icon","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildInviteExists","version":"2.4.0","description":"Returns whether a guild invite code exists","aliases":["$serverInviteExists"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull invites from","rest":false,"required":true,"type":"Guild"},{"name":"code","description":"The invite to check","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildInvites","version":"2.5.0","description":"Returns all invites of a guild","aliases":["$serverInvites"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull invites from"},{"name":"property","rest":false,"type":"Enum","description":"The property of the invites to return","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"},{"name":"separator","rest":false,"type":"String","description":"The separator to use for each property"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildInvitesDisabledUntil","version":"2.2.0","description":"Returns the invites disabled timestamp of a guild","aliases":["$serverInvitesDisabledUntil"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildLarge","version":"2.4.0","description":"Returns whether a guild is considered as large","unwrap":true,"brackets":false,"aliases":["$serverLarge"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildLeave","version":"1.0.0","description":"Leaves a guild","brackets":false,"aliases":["$serverLeave"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to leave","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildLowestRoleID","version":"1.5.0","description":"Returns the lowest role id of a guild","aliases":["$serverLowestRoleID"],"brackets":false,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to retrieve its lowest role","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMFALevel","version":"1.3.0","description":"Returns the mfa level for this guild","brackets":false,"aliases":["$serverMFALevel"],"output":["GuildMFALevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaxStageVideoChannelUsers","version":"1.3.0","description":"Returns the maximum video channel users for stage channels of this guild","brackets":false,"aliases":["$serverMaxStageVideoChannelUsers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaxVideoChannelUsers","version":"1.3.0","description":"Returns the maximum video channel users for this guild","brackets":false,"aliases":["$serverMaxVideoChannelUsers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumBitrate","version":"1.3.0","aliases":["$serverMaximumBitrate"],"output":["Number"],"description":"Returns the maximum bitrate for voice channels of this guild","brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumMembers","version":"1.3.0","description":"Returns the maximum members for this guild","brackets":false,"aliases":["$serverMaximumMembers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumPresences","version":"1.3.0","description":"Returns the maximum presences for this guild","brackets":false,"aliases":["$serverMaximumPresences"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMemberCount","version":"1.0.0","description":"Returns the user count of a guild","brackets":false,"aliases":["$serverMemberCount","$serverMembersCount"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve member count from","rest":false,"required":true,"type":"Guild"},{"name":"presence","description":"The presence of the users to count","rest":false,"type":"Enum","enum":["online","idle","dnd","offline"],"enumName":"PresenceStatus"},{"name":"count bots","description":"Whether to count bots","rest":false,"type":"Boolean"}],"unwrap":true,"category":"guild"},{"name":"$guildMemberIDs","version":"1.4.0","aliases":["$memberIDs","$serverMemberIDs"],"output":["Member[]"],"description":"Returns all cached member ids of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull members from"},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildNSFWLevel","version":"1.3.0","description":"Returns the nsfw level for this guild","brackets":false,"aliases":["$serverNSFWLevel"],"output":["GuildNSFWLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildName","version":"1.0.0","description":"Returns the server name","brackets":false,"aliases":["$serverName"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildNameAcronym","version":"1.3.0","description":"Returns the server name acronym","brackets":false,"aliases":["$serverNameAcronym"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildNames","version":"1.0.0","description":"Returns the server names of the bot","brackets":false,"aliases":["$serverNames"],"output":["String[]"],"args":[{"name":"separator","description":"The separator to use for each guild","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildOwnerID","version":"1.0.0","description":"Returns the server owner id","brackets":false,"aliases":["$serverOwnerID"],"output":["User"],"args":[{"name":"guild ID","description":"The guild to retrieve the owner from","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPartnered","version":"1.3.0","description":"Returns whether the server is partnered","brackets":false,"aliases":["$serverPartnered"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPreferredLocale","version":"1.3.0","description":"Returns the server's preferred locale","brackets":false,"aliases":["$serverPreferredLocale"],"output":["Locale"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPublicUpdatesChannelID","version":"1.3.0","description":"Returns the server's public updates channel ID","brackets":false,"aliases":["$serverPublicUpdatesChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildRaidDetectedAt","version":"2.2.0","description":"Returns when a raid was detected on a guild","aliases":["$serverRaidDetectedAt"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildRawData","version":"1.5.0","description":"Returns the raw data of a guild","aliases":["$serverRawData"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get raw data from","rest":false,"type":"Guild","required":true}],"output":["Json"],"category":"guild"},{"name":"$guildRoleCount","version":"1.0.0","description":"Returns the role count of a guild","brackets":false,"aliases":["$serverRoleCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get roles from","rest":false,"type":"Guild","required":true}],"category":"guild"},{"name":"$guildRoleIDs","version":"1.3.0","unwrap":true,"aliases":["$serverRoleIDs"],"output":["Role[]"],"brackets":false,"description":"Returns every role id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get role ids from"},{"name":"separator","description":"The separator to use for every role","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildRulesChannelID","version":"1.3.0","description":"Returns the server's rules channel ID","brackets":false,"aliases":["$serverRulesChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildSafetyAlertsChannelID","version":"1.3.0","description":"Returns the server's safety alerts channel ID","brackets":false,"aliases":["$serverSafetyAlertsChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildShardID","version":"1.0.0","description":"Returns the server shard ID","brackets":false,"aliases":["$serverShardID"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildSoundboardLimit","version":"2.5.0","description":"Returns the soundboard sound limit of a guild","brackets":false,"unwrap":true,"aliases":["$serverSoundboardLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildSoundboardSounds","version":"2.4.0","description":"Returns all soundboard sounds of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get soundboard sounds from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each sound to return","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildSplashURL","version":"1.0.0","aliases":["$serverSplashURL"],"output":["URL"],"description":"Returns the guild splash url","brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the splash","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildStageInstances","version":"2.3.0","description":"Returns all active stage instances of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get stage instances from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each stage instance to return","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"enumName":"StageProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildStickerExists","version":"2.5.0","description":"Returns whether a sticker id exists on a guild","unwrap":true,"aliases":["$serverStickerExists"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull sticker from","rest":false,"required":true,"type":"Guild"},{"name":"sticker ID","description":"The sticker to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildStickerIDs","version":"1.3.0","unwrap":true,"aliases":["$serverStickerIDs"],"output":["Sticker[]"],"brackets":false,"description":"Returns every sticker id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get sticker ids from"},{"name":"separator","description":"The separator to use for every sticker","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildStickerLimit","version":"1.5.0","description":"Returns the sticker limit of a guild","brackets":false,"aliases":["$serverStickerLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildSystemChannelID","version":"1.0.0","description":"Returns the server's system channel ID","brackets":false,"aliases":["$serverSystemChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildTemplateCode","version":"2.4.0","description":"Returns the template code of a guild","unwrap":true,"brackets":false,"aliases":["$serverTemplateCode"],"args":[{"name":"guild ID","description":"The guild to get template from","rest":false,"required":true,"type":"Guild"}],"output":["Template"],"category":"guild"},{"name":"$guildTimedOutMembers","version":"1.5.0","description":"Returns all current timed out members of a guild","unwrap":true,"brackets":false,"aliases":["$serverTimedOutMembers"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use for every member","rest":false,"type":"String"}],"output":["Member[]"],"category":"guild"},{"name":"$guildVanityCode","version":"1.0.0","description":"Returns the guilds vanity code","unwrap":true,"aliases":["$serverVanityCode"],"output":["Invite"],"args":[{"name":"guild ID","description":"The guild to return its vanity code","rest":false,"type":"Guild","required":true}],"brackets":false,"category":"guild"},{"name":"$guildVanityUses","version":"1.0.0","description":"Returns the guilds vanity uses","unwrap":true,"aliases":["$serverVanityUses"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to return its vanity uses","rest":false,"type":"Guild","required":true}],"brackets":false,"category":"guild"},{"name":"$guildVerificationLevel","version":"1.3.0","description":"Returns the server verification level","brackets":false,"aliases":["$serverVerificationLevel"],"output":["GuildVerificationLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildVerified","version":"1.3.0","description":"Returns whether the server is verified","brackets":false,"aliases":["$serverVerified"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildWebhooks","version":"2.3.0","description":"Returns all webhooks of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"type":"Guild","required":true},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"enumName":"WebhookProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildWidgetChannelEnabled","version":"1.3.0","description":"Returns whether widget channel is enabled for this guild","brackets":false,"aliases":["$serverWidgetChannelEnabled"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildWidgetChannelID","version":"1.3.0","description":"Returns the widget channel for this guild","brackets":false,"aliases":["$serverWidgetChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$randomGuildID","version":"1.0.3","description":"Returns a random guild ID","unwrap":false,"aliases":["$randomServerID"],"output":["Guild"],"category":"guild"},{"name":"$registerGuildApplicationCommands","version":"1.4.0","description":"Registers all application commands with type: 1 to a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to register commands to","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildAFKChannel","version":"2.1.0","description":"Sets the AFK channel for a guild, returns bool","unwrap":true,"aliases":["$setServerAFKChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set AFK channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new AFK channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildAFKTimeout","version":"2.1.0","description":"Sets the AFK timeout for a guild, returns bool","unwrap":true,"aliases":["$setServerAFKTimeout"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set AFK timeout for","rest":false,"type":"Guild","required":true},{"name":"seconds","description":"The new AFK timeout in seconds (60, 300, 900, 1800, 3600)","rest":false,"required":true,"type":"Number"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildBanner","version":"1.0.0","description":"Sets a guild banner, returns boolean","unwrap":true,"aliases":["$setServerBanner"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set banner on"},{"name":"url","description":"The new banner","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildBoostProgressBar","version":"1.5.0","description":"Sets a guild boost progress bar, returns bool","aliases":["$setServerBoostProgressBar"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to set boost progress bar for","rest":false,"required":true,"type":"Guild"},{"name":"enabled","description":"Whether to enable the boost progress bar","rest":false,"required":true,"type":"Boolean"},{"name":"reason","description":"The reason for enabling/disabling boost progress bar","rest":false,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildDefaultMessageNotifications","version":"2.1.0","description":"Sets the default message notifications setting for a guild, returns bool","unwrap":true,"aliases":["$setServerDefaultMessageNotifications"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set default message notifications for","rest":false,"type":"Guild","required":true},{"name":"setting","description":"The new default message notifications setting","rest":false,"type":"Enum","enum":["AllMessages","OnlyMentions"],"enumName":"GuildDefaultMessageNotifications"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildDiscoverySplash","version":"2.1.0","description":"Sets the discovery splash for a guild, returns bool","unwrap":true,"aliases":["$setServerDiscoverySplash"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set discovery splash for","rest":false,"type":"Guild","required":true},{"name":"url","description":"The new discovery splash","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildExplicitContentFilter","version":"2.1.0","description":"Sets the explicit content filter for a guild, returns bool","unwrap":true,"aliases":["$setServerExplicitContentFilter"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set explicit content filter for","rest":false,"type":"Guild","required":true},{"name":"filter","description":"The new explicit content filter","rest":false,"type":"Enum","enum":["Disabled","MembersWithoutRoles","AllMembers"],"enumName":"GuildExplicitContentFilter"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildIcon","version":"1.0.0","description":"Sets a guild icon, returns boolean","unwrap":true,"aliases":["$setServerIcon"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set icon on"},{"name":"url","description":"The new icon","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildMFALevel","version":"2.1.0","description":"Sets the MFA level for a guild, returns bool","unwrap":true,"deprecated":true,"aliases":["$setServerMFALevel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set MFA level for","rest":false,"type":"Guild","required":true},{"name":"level","description":"The new MFA level","rest":false,"required":true,"type":"Enum","enum":["None","Elevated"],"enumName":"GuildMFALevel"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildName","version":"1.0.0","description":"Sets a guild name, returns boolean","unwrap":true,"aliases":["$setServerName"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set name"},{"name":"name","description":"The new name","rest":false,"required":true,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildOwner","version":"2.1.0","description":"Sets the owner of a guild, returns bool","unwrap":true,"deprecated":true,"aliases":["$setServerOwner"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set owner on","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The new owner","rest":false,"required":true,"type":"Member","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildPausedInvites","version":"1.5.0","description":"Sets a guild paused invite status, returns bool","aliases":["$setServerPausedInvites"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to set paused invites for","rest":false,"required":true,"type":"Guild"},{"name":"disabled","description":"Whether to disable the invites","rest":false,"required":true,"type":"Boolean"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildPreferredLocale","version":"2.1.0","description":"Sets the preferred locale of a guild, returns bool","unwrap":true,"aliases":["$setServerPreferredLocale"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set preferred locale on","rest":false,"type":"Guild","required":true},{"name":"locale","description":"The new preferred locale","rest":false,"type":"Enum","enum":["Indonesian","EnglishUS","EnglishGB","Bulgarian","ChineseCN","ChineseTW","Croatian","Czech","Danish","Dutch","Finnish","French","German","Greek","Hindi","Hungarian","Italian","Japanese","Korean","Lithuanian","Norwegian","Polish","PortugueseBR","Romanian","Russian","SpanishES","SpanishLATAM","Swedish","Thai","Turkish","Ukrainian","Vietnamese"],"enumName":"Locale"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildPublicUpdatesChannel","version":"2.1.0","description":"Sets the public updates channel for a guild, returns bool","unwrap":true,"aliases":["$setServerPublicUpdatesChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set public updates channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new public updates channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildRulesChannel","version":"2.1.0","description":"Sets the rules channel for a guild, returns bool","unwrap":true,"aliases":["$setServerRulesChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set rules channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new rules channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSafetyAlertsChannel","version":"2.1.0","description":"Sets the safety alerts channel for a guild, returns bool","unwrap":true,"aliases":["$setServerSafetyAlertsChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set safety alerts channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new safety alerts channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSplash","version":"1.0.0","description":"Sets a guild splash, returns boolean","unwrap":true,"aliases":["$setServerSplash"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set splash on"},{"name":"url","description":"The new splash","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSystemChannel","version":"2.1.0","description":"Sets the system channel for a guild, returns bool","unwrap":true,"aliases":["$setServerSystemChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set system channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new system channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildVerificationLevel","version":"2.1.0","description":"Sets the verification level of a guild, returns bool","unwrap":true,"aliases":["$setServerVerificationLevel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set verification level on","rest":false,"type":"Guild","required":true},{"name":"level","description":"The new verification level","rest":false,"type":"Enum","enum":["None","Low","Medium","High","VeryHigh"],"enumName":"GuildVerificationLevel"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildWidgetSettings","version":"2.1.0","description":"Sets the widget settings of a guild, returns bool","unwrap":true,"aliases":["$setServerWidgetSettings"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set widget settings on","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The invite channel for the widget","rest":false,"type":"Channel"},{"name":"enabled","description":"Whether to enable the widget","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$syncGuildTemplate","version":"2.4.0","description":"Syncs this template to the current state of the guild, returns bool","aliases":["$syncServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to sync","rest":false,"required":true,"type":"Template"}],"output":["Boolean"],"category":"guild"},{"name":"$httpAddForm","version":"1.4.0","description":"Adds form data to request","unwrap":false,"category":"http"},{"name":"$httpAddHeader","version":"1.0.0","description":"Adds an HTTP header","unwrap":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true},{"name":"value","description":"The header value","rest":true,"type":"String","required":true}],"brackets":true,"category":"http"},{"name":"$httpAppendFile","version":"1.4.0","description":"Appends a file to form data","brackets":true,"unwrap":true,"args":[{"name":"key","description":"The key name to add this value to","rest":false,"required":true,"type":"String"},{"name":"url / path","type":"Attachment","rest":false,"required":true,"description":"The path or url to use"}],"category":"http"},{"name":"$httpAppendValue","version":"1.4.0","description":"Appends a key-value to form data","brackets":true,"unwrap":true,"args":[{"name":"key","description":"The key name to add this value to","rest":false,"required":true,"type":"String"},{"name":"value","type":"String","rest":false,"required":true,"description":"The value to set"}],"category":"http"},{"name":"$httpGetHeader","version":"1.5.0","description":"Gets an HTTP header","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true}],"output":["String"],"category":"http"},{"name":"$httpPing","version":"1.5.0","description":"Returns the response time of the HTTP request","aliases":["$httpResponseTime"],"unwrap":false,"experimental":true,"output":["Number"],"category":"http"},{"name":"$httpRemoveHeader","version":"1.0.0","description":"Removes an HTTP header","unwrap":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true}],"brackets":true,"category":"http"},{"name":"$httpRequest","version":"1.0.0","description":"Performs an http request, returns the status code","output":["Number"],"args":[{"name":"url","description":"The url to perform this request to","type":"String","rest":false,"required":true},{"name":"method","description":"The method to use","rest":false,"required":true,"type":"String"},{"name":"variable","description":"Environment variable name to load the response to","rest":false,"required":false,"type":"String"}],"brackets":true,"unwrap":true,"category":"http"},{"name":"$httpResult","version":"1.2.0","description":"Retrieve an http result value","brackets":false,"unwrap":true,"args":[{"name":"key","description":"The key to return its value","required":true,"type":"String","rest":true}],"output":["Json","Unknown"],"category":"http"},{"name":"$httpSetBody","version":"1.0.0","description":"Sets a JSON body for the request","args":[{"name":"body","description":"The JSON body","rest":false,"required":true,"type":"String"}],"unwrap":true,"brackets":true,"category":"http"},{"name":"$httpSetContentType","version":"1.4.0","description":"Forces the http request to be decoded using given content type","args":[{"name":"type","description":"The content type of the result","required":true,"type":"Enum","enum":["Json","Text"],"rest":false,"enumName":"HTTPContentType"}],"brackets":true,"unwrap":true,"category":"http"},{"name":"$applicationCommandDescription","version":"1.0.7","description":"Returns an application command description","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its description","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandDisplay","version":"1.4.0","description":"Gets the full command interaction with all options","unwrap":true,"brackets":false,"args":[{"name":"hide option name","description":"Whether to suppress option names from being displayed","rest":false,"required":true,"type":"Boolean"}],"output":["String"],"category":"interaction"},{"name":"$applicationCommandID","version":"1.0.7","description":"Returns the application command id","brackets":false,"args":[{"name":"name","description":"The name of the command to pull its id","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandName","version":"1.0.7","description":"Returns an application command name","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its name","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandOptions","version":"1.5.0","description":"Returns an application command options in JSON format","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its options","rest":false,"required":true,"type":"String"}],"output":["Json"],"unwrap":true,"category":"interaction"},{"name":"$applicationSubCommandGroupName","version":"1.5.0","description":"Returns the application sub command group name of this interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$applicationSubCommandName","version":"1.5.0","description":"Returns the application sub command name of this interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$authorizingIntegrationOwners","version":"1.5.0","description":"Returns the authorizing integration owners of this interaction","unwrap":true,"brackets":false,"args":[{"name":"type","description":"The type of authorizing integration owners to return","rest":false,"required":true,"type":"Enum","enum":["Guild","User"],"enumName":"AuthorizingIntegrationOwnersType"}],"output":["Json","User","Guild"],"category":"interaction"},{"name":"$autocomplete","version":"1.0.6","description":"Forces autocomplete response","unwrap":false,"category":"interaction"},{"name":"$context","version":"1.5.0","description":"Returns the context of this interaction","aliases":["$interactionContext"],"unwrap":false,"output":["InteractionContextType"],"category":"interaction"},{"name":"$customID","version":"1.0.0","description":"Retrieves the custom id of the interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$defer","version":"1.0.0","description":"Defers this interaction","unwrap":false,"category":"interaction"},{"name":"$deferUpdate","version":"1.3.0","description":"Defers this interaction as an update","unwrap":false,"category":"interaction"},{"name":"$ephemeral","version":"1.0.0","description":"Marks this reply as ephemeral","unwrap":false,"category":"interaction"},{"name":"$focusedOptionName","version":"1.0.6","description":"Returns the focused option of the command","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$focusedOptionValue","version":"1.0.6","description":"Returns the focused option value of the command","unwrap":false,"output":["Unknown"],"category":"interaction"},{"name":"$input","version":"1.0.0","description":"Returns a value from a text field","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"custom ID","description":"The custom id to get the input field value","rest":false,"type":"String","required":true}],"category":"interaction"},{"name":"$interactionDelete","version":"1.4.0","description":"Deletes this interaction's reply","unwrap":false,"category":"interaction"},{"name":"$interactionFollowUp","version":"1.2.0","description":"Forces an interaction follow up","unwrap":true,"brackets":false,"output":["Message"],"args":[{"name":"content","description":"The content to use for this follow up","required":true,"type":"String","rest":false},{"name":"return message ID","description":"Whether to fetch and return the message id of the follow up","rest":false,"type":"Boolean","required":false}],"category":"interaction"},{"name":"$interactionRawData","version":"1.5.0","description":"Returns the raw data of this interaction","unwrap":false,"output":["Json"],"category":"interaction"},{"name":"$interactionReply","version":"1.0.0","description":"Forces an interaction reply","unwrap":true,"brackets":false,"output":["Message"],"args":[{"name":"content","description":"The content to use for this response","required":true,"type":"String","rest":false},{"name":"return message ID","description":"Whether to fetch and return the message id of the reply","rest":false,"type":"Boolean","required":false}],"category":"interaction"},{"name":"$interactionRequirePremium","version":"1.5.0","description":"Requires premium to use this interaction","unwrap":false,"deprecated":true,"category":"interaction"},{"name":"$interactionUpdate","version":"1.0.3","description":"Forces an interaction update","unwrap":true,"brackets":false,"args":[{"name":"content","description":"The content to use for this response","required":true,"type":"String","rest":false}],"category":"interaction"},{"name":"$isActivityCommand","version":"2.4.0","description":"Returns whether the interaction is an activity command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isAnySelectMenu","version":"1.0.0","output":["Boolean"],"description":"Returns whether the context is a select menu","unwrap":false,"category":"interaction"},{"name":"$isAutocomplete","version":"1.0.6","description":"Returns whether the interaction is autocomplete","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isButton","version":"1.0.0","description":"Returns whether the interaction is a button","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isChannelSelectMenu","version":"1.0.0","description":"Returns whether the context is a channel select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isCommand","version":"1.0.6","description":"Returns whether the interaction is a command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isContextMenu","version":"1.0.6","description":"Returns whether the interaction is a context menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isMentionableSelectMenu","version":"1.0.0","description":"Returns whether the context is a mentionable select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isModal","version":"1.0.0","description":"Returns whether the context is a modal","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isRepliable","version":"1.5.0","description":"Returns whether this interaction can be replied to","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isRoleSelectMenu","version":"1.0.0","description":"Returns whether the context is a role select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isSlashCommand","version":"1.4.0","description":"Returns whether the interaction is a slash command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isStringSelectMenu","version":"1.0.0","description":"Returns whether the context is a string select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isUserSelectMenu","version":"1.0.0","description":"Returns whether the context is a user select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$launchActivity","version":"2.4.0","description":"Launches the activity of the client, if enabled","unwrap":false,"category":"interaction"},{"name":"$locale","aliases":["$interactionLocale"],"version":"1.4.0","description":"Retrieves the user locale of the interaction","unwrap":false,"output":["Locale"],"category":"interaction"},{"name":"$modal","version":"1.0.0","description":"Creates a modal","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id for this modal","rest":false,"type":"String","required":true},{"name":"title","description":"The title for the modal","rest":false,"required":true,"type":"String"}],"category":"interaction"},{"name":"$option","version":"1.0.6","description":"Returns an option value with given name (interaction command)","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"option name","description":"The option name to retrieve its value","rest":false,"required":true,"type":"String"}],"category":"interaction"},{"name":"$selectMenuValues","version":"1.0.0","description":"Returns select menu values","brackets":false,"args":[{"name":"index","description":"The index of the value","type":"Number","rest":false},{"name":"separator","description":"The separator to use for each value","type":"String","rest":false}],"output":["String[]"],"unwrap":true,"category":"interaction"},{"name":"$showModal","version":"1.4.0","description":"Submits the modal","unwrap":false,"category":"interaction"},{"name":"$targetMember","version":"2.3.0","description":"Retrieves data of the target member","unwrap":true,"brackets":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"interaction"},{"name":"$targetMessage","version":"1.5.0","description":"Retrieves data of the target message","unwrap":true,"brackets":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"Separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"interaction"},{"name":"$targetMessageEmbeds","version":"1.5.0","description":"Retrieves data of embeds from the target message","aliases":["$targetMessageEmbed"],"unwrap":true,"brackets":false,"args":[{"name":"embed index","description":"The embed index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"required":false,"enumName":"EmbedProperty"},{"name":"field index","description":"The index of the field to get","rest":false,"type":"Number"}],"output":["Json","Unknown"],"category":"interaction"},{"name":"$deleteInvite","version":"1.0.0","brackets":true,"description":"Deletes an invite, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"reason","description":"The reason for deleting the invite","rest":false,"type":"String"}],"category":"invite"},{"name":"$getInvite","version":"2.2.0","description":"Returns information about an invite","brackets":true,"unwrap":true,"output":["Json","Unknown"],"args":[{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property of the invite to return","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"}],"category":"invite"},{"name":"$inviteExists","version":"1.0.0","description":"Returns whether an invite code exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"code","description":"The invite to check","rest":false,"required":true,"type":"String"}],"category":"invite"},{"name":"$inviterCode","version":"1.0.3","description":"Returns the invite code that was used by this person","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get its invite code","rest":false,"required":true,"type":"Member","pointer":0}],"output":["Invite"],"category":"invite"},{"name":"$inviterID","version":"1.0.3","description":"Returns the user who invited this person","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get its inviter","rest":false,"required":true,"type":"Member","pointer":0}],"output":["User"],"category":"invite"},{"name":"$isJSON","version":"1.4.0","aliases":["$isValidJSON"],"description":"Checks whether given json is valid","unwrap":true,"brackets":true,"args":[{"name":"json","description":"The json to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"json"},{"name":"$jsonDelete","version":"1.4.0","description":"Delete a key from a traversed json","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"keys","description":"The keys to use to traverse the object","rest":true,"required":true,"type":"String"}],"category":"json"},{"name":"$jsonEntries","version":"1.4.0","description":"Gets entries from a json var","brackets":true,"args":[{"name":"variable","description":"The variable to get entries from","rest":false,"type":"String","required":true}],"output":["Json"],"unwrap":true,"category":"json"},{"name":"$jsonHas","version":"2.2.0","description":"Returns whether a key exists in a JSON object","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable that holds json","required":true,"type":"String","rest":false},{"name":"key","description":"The key to check for","type":"String","required":true,"rest":false}],"output":["Boolean"],"category":"json"},{"name":"$jsonKeys","version":"1.4.0","description":"Gets keys from a json var","brackets":true,"args":[{"name":"variable","description":"The variable to get keys from","rest":false,"type":"String","required":true}],"output":["Json"],"unwrap":true,"category":"json"},{"name":"$jsonLoad","version":"1.0.0","description":"Loads JSON to an env variable","brackets":true,"args":[{"name":"variable","description":"The variable to load it to","rest":false,"type":"String","required":true},{"name":"json","description":"The json data","type":"Json","required":true,"rest":false}],"unwrap":true,"category":"json"},{"name":"$jsonSet","version":"1.2.0","description":"Adds a json key with a value","unwrap":true,"brackets":true,"args":[{"name":"keys;value","description":"The keys to traverse, with the value to use at the end","type":"String","rest":true,"required":true}],"output":["Boolean"],"category":"json"},{"name":"$jsonStringify","version":"1.5.0","output":["Json"],"description":"Returns the JSON in stringified format","args":[{"name":"variable","description":"The variable to stringify","required":true,"type":"String","rest":false},{"name":"space","description":"The space to use","type":"Number","rest":false}],"brackets":true,"unwrap":true,"category":"json"},{"name":"$jsonValues","version":"1.4.0","description":"Gets values from a json var","brackets":true,"args":[{"name":"variable","description":"The variable to get values from","rest":false,"type":"String","required":true},{"name":"separator","description":"The separator to use for each value","type":"String","rest":false}],"output":["Json","Unknown[]"],"unwrap":true,"category":"json"},{"name":"$onlyForCategories","version":"1.5.0","description":"Only executes code if given ids match the current category","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if category is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"channels","pointer":0,"description":"The categories to check for","rest":true,"required":true,"type":"Channel"}],"category":"limiter"},{"name":"$onlyForChannels","version":"1.5.0","description":"Only executes code if given ids match the current channel","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if channel is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"channels","pointer":0,"description":"The channels to check for","rest":true,"required":true,"type":"Channel"}],"category":"limiter"},{"name":"$onlyForGuilds","version":"1.1.0","description":"Only executes code if given ids match the guild","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if guild is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"guilds","description":"The guilds to check for","rest":true,"required":true,"type":"Guild"}],"category":"limiter"},{"name":"$onlyForRoles","version":"1.1.0","description":"Only executes code if user has given roles","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if user does not meet the roles","rest":false,"required":true,"type":"String"},{"name":"roles","pointer":0,"description":"The roles to check for","rest":true,"required":true,"type":"Role"}],"category":"limiter"},{"name":"$onlyForUsers","version":"1.1.0","description":"Only executes code if given ids match the author","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if user is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"users","description":"The users to check for","rest":true,"required":true,"type":"User"}],"category":"limiter"},{"name":"$onlyIf","version":"1.0.0","description":"Stop execution if condition is not matched","unwrap":false,"brackets":true,"args":[{"name":"condition","condition":true,"description":"The condition to use","rest":false,"type":"String","required":true},{"name":"code","description":"The code to execute if error","rest":false,"type":"String"}],"category":"limiter"},{"name":"$stop","version":"1.0.0","description":"Stops code execution","unwrap":false,"category":"limiter"},{"name":"$chalkLog","version":"2.3.0","description":"Logs styled text to the console using Chalk","unwrap":true,"brackets":true,"args":[{"name":"text","description":"The text to log","type":"String","required":true,"rest":false},{"name":"styles","description":"The styles to apply to the text","type":"String","required":true,"rest":true}],"category":"logging"},{"name":"$log","version":"1.0.0","description":"Log something to console","unwrap":true,"args":[{"name":"message","description":"The message to log to console","rest":true,"type":"String","required":true}],"brackets":true,"category":"logging"},{"name":"$logger","version":"1.3.0","description":"Implements Logger API of ForgeScript","unwrap":true,"brackets":true,"args":[{"name":"log type","description":"The log type","enum":["Warn","Deprecated","Debug","Info","Error"],"type":"Enum","required":true,"rest":false,"enumName":"LogType"},{"name":"text","description":"The text to log","rest":false,"required":true,"type":"String"}],"category":"logging"},{"name":"$findApplicationEmoji","version":"2.2.0","description":"Finds an application emoji of the client","brackets":true,"output":["ApplicationEmoji"],"args":[{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findChannel","version":"1.0.0","description":"Finds a channel","brackets":true,"output":["Channel"],"args":[{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"return channel","description":"Returns the current channel id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findChannels","version":"1.5.0","description":"Finds channels of a guild using a query","brackets":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to find the channels on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"method","description":"The method to use for searching","rest":false,"type":"Enum","enum":["startsWith","endsWith","includes"],"enumName":"SearchMethodType"}],"unwrap":true,"category":"lookup"},{"name":"$findEmoji","version":"1.0.0","description":"Finds an emoji","brackets":true,"output":["Emoji"],"args":[{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findGuild","version":"2.2.0","description":"Finds a guild","brackets":true,"output":["Guild"],"args":[{"name":"query","description":"The id or guild name to find","rest":false,"type":"String","required":true},{"name":"return guild","description":"Returns the current guild id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findGuildChannel","version":"1.0.0","description":"Finds a channel of a guild","brackets":true,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to find the channel on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"return channel","description":"Returns the current channel id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findGuildEmoji","version":"1.0.0","description":"Finds an emoji of a guild","brackets":true,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to find the emoji on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findMember","version":"1.0.0","description":"Finds a member of a guild","brackets":true,"output":["Member"],"args":[{"name":"guild ID","description":"The guild to find the member on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or name to find","rest":false,"type":"String","required":true},{"name":"return author","description":"Returns the current author id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findMembers","version":"1.4.0","description":"Finds member of a guild using a query","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to use","rest":false,"required":true,"type":"Guild"},{"name":"query","description":"The query to use","rest":false,"required":true,"type":"String"},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"enum value","description":"The enum value to use","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"lookup"},{"name":"$findRole","version":"1.0.0","description":"Finds a role of a guild","brackets":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to find the role on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or role name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findRoles","version":"1.5.0","description":"Finds roles of a guild using a query","brackets":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to find the roles on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or role name to find","rest":false,"type":"String","required":true},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"method","description":"The method to use for searching","rest":false,"type":"Enum","enum":["startsWith","endsWith","includes"],"enumName":"SearchMethodType"}],"unwrap":true,"category":"lookup"},{"name":"$findUser","version":"1.0.0","description":"Finds a user","brackets":true,"output":["User"],"args":[{"name":"query","description":"The id, mention or user name to find","rest":false,"type":"String","required":true},{"name":"return author","description":"Returns the current author id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$abs","version":"1.0.1","description":"Returns the absolute value of a number (the value without regard to whether it is positive or negative)","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$base","version":"1.1.0","description":"Convert number from one base to another","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The target number for conversion","type":"String","rest":false,"required":true},{"name":"to","description":"The target base","type":"Number","rest":false,"required":true},{"name":"from","description":"The source base","type":"Number","rest":false}],"category":"math"},{"name":"$bigintDivide","version":"1.3.0","description":"Divides multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to divide","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintMulti","version":"1.3.0","description":"Multiplies multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to multiply","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintSub","version":"1.3.0","description":"Subtracts multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to sub","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintSum","version":"1.3.0","description":"Adds multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to add","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$ceil","version":"1.5.0","description":"Returns the smallest integer greater than or equal to its numeric argument","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$divide","version":"1.0.0","description":"Divides multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to divide","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$floor","version":"1.0.0","description":"Returns the greatest integer less than or equal to its numeric argument","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$logn","version":"1.0.0","description":"Returns the natural logarithm (base e) of a number","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"Number to get its logarithm","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$math","version":"1.0.0","description":"Runs math expression, returns nothing if incorrect expression","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"expr","description":"The math expression to run","rest":false,"type":"String","required":true}],"category":"math"},{"name":"$max","version":"1.0.7","description":"Returns the largest number of the ones given","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers among which to find the largest","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$min","version":"1.0.7","description":"Returns the smallest number of the ones given","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"numbers","description":"Numbers among which to find the smallest","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$modulo","version":"1.0.0","description":"Returns the remainder of multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to get their remainders","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$multi","version":"1.0.0","description":"Multiplies multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to multiply","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$pi","version":"2.2.0","description":"Returns the constant pi","unwrap":false,"output":["Number"],"category":"math"},{"name":"$pow","version":"1.0.0","aliases":["$power"],"description":"Exponentially multiply multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to power by","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$round","version":"1.0.0","description":"Rounds provided number to a certain number of decimal places","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true},{"name":"decimal places","description":"The number of decimal places to round to","rest":false,"type":"Number"}],"category":"math"},{"name":"$sign","version":"2.2.0","description":"Returns the sign of the x, indicating whether x is positive, negative or zero","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$sqrt","version":"1.0.0","description":"Returns the square root of a number","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$sub","version":"1.0.0","description":"Subtracts multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to sub","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$sum","version":"1.0.0","description":"Adds multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to add","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$trunc","version":"1.0.0","description":"Returns the integer part of the a numeric expression, x, removing any fractional digits. If x is already an integer, the result is x","aliases":["$truncate"],"brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$ban","version":"1.0.0","aliases":["$memberBan","$banMember"],"description":"Bans a member from the guild, returns true or false depending on whether the action was successfully performed","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to ban a member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to ban","rest":false,"type":"User","required":true},{"name":"reason","description":"The reason to ban for","rest":false,"type":"String"},{"name":"delete message seconds","description":"Delete messages from this member that were sent in this seconds time span","rest":false,"type":"Number"}],"category":"member"},{"name":"$fetchMembers","version":"1.0.0","description":"Caches all members of a guild","aliases":["$fetchMember"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache members of","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to fetch","rest":false,"type":"Member","pointer":0}],"category":"member"},{"name":"$hasAnyPerms","version":"1.4.0","description":"Returns whether given member has any of the provided perms","unwrap":true,"aliases":["$memberHasAnyPerms"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for perms","rest":false,"type":"Member","required":true,"pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"required":true,"enumName":"PermissionFlagsBits"}],"category":"member"},{"name":"$hasAnyRole","version":"1.1.0","description":"Returns whether given member has any role","unwrap":true,"aliases":["$memberHasAnyRole"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for roles","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to check for","rest":true,"type":"Role","required":true,"pointer":0}],"category":"member"},{"name":"$hasPerms","version":"1.0.0","description":"Returns whether given member has X perms","unwrap":true,"aliases":["$memberHasPerms"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for perms","rest":false,"type":"Member","required":true,"pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"required":true,"enumName":"PermissionFlagsBits"}],"category":"member"},{"name":"$hasRoles","version":"1.1.0","description":"Returns whether given member has all roles","unwrap":true,"aliases":["$memberHasRoles"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for roles","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to check for","rest":true,"type":"Role","required":true,"pointer":0}],"category":"member"},{"name":"$isBanned","version":"1.0.0","brackets":true,"unwrap":true,"aliases":["$memberIsBanned"],"output":["Boolean"],"description":"Returns whether this user is banned","args":[{"name":"guild ID","description":"The guild to check bans on","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check ban","rest":false,"type":"User","required":true}],"category":"member"},{"name":"$isBoosting","description":"Returns whether this member is boosting","version":"1.5.0","aliases":["$isBooster","$memberIsBooster","$memberIsBoosting"],"brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check boost status for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isDeaf","version":"1.0.0","description":"Whether a member is deafened","brackets":false,"unwrap":true,"aliases":["$memberIsDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isGuildDeaf","version":"1.0.0","description":"Whether a member is server deafened","brackets":false,"aliases":["$memberIsGuildDeaf"],"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isGuildMuted","version":"1.0.0","description":"Whether a member is server muted","brackets":false,"aliases":["$memberIsGuildMuted"],"output":["Boolean"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isMuted","version":"1.0.0","description":"Whether a member is muted","brackets":false,"unwrap":true,"aliases":["$memberIsMuted"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isSelfDeaf","version":"1.0.0","description":"Whether a member is self deafened","brackets":false,"unwrap":true,"aliases":["$memberIsSelfDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isSelfMuted","version":"1.0.0","description":"Whether a member is self muted","brackets":false,"unwrap":true,"aliases":["$memberIsSelfMuted"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isTimedOut","version":"1.0.0","description":"Whether an member is timed out","unwrap":true,"brackets":false,"aliases":["$memberIsTimedOut"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to check for timeout","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isVerified","version":"1.0.0","aliases":["$memberIsVerified"],"description":"Whether a member is verified","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$kickMember","version":"1.0.0","description":"Kicks a member from the guild, returns true or false depending on whether the action was successfully performed","unwrap":true,"brackets":true,"aliases":["$memberKick"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to kick a member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to kick","rest":false,"type":"Member","pointer":0,"required":true},{"name":"reason","description":"The reason to kick for","rest":false,"type":"String"}],"category":"member"},{"name":"$memberActivity","version":"1.5.0","description":"Returns the activity of a member","aliases":["$activity","$userActivity","$memberActivities"],"unwrap":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to pull the member from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The member to return its activity","required":true,"rest":false,"type":"Member","pointer":0},{"name":"property","description":"The property of the activity to return","rest":false,"type":"Enum","enum":["name","type","details","buttons","flags","timestamp","endTimestamp","startTimestamp","partyID","partySize","syncID","url","largeText","largeImage","smallText","smallImage"],"enumName":"ActivityProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"brackets":false,"category":"member"},{"name":"$memberAddRoles","version":"1.0.0","description":"Adds roles to a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to add roles to","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to add","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberAvatar","version":"1.0.0","description":"Returns the member avatar","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to retrieve the avatar","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$memberAvatarDecoration","version":"2.4.0","description":"Returns the member's avatar decoration","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its avatar decoration","pointer":0,"rest":false,"type":"Member","required":true}],"output":["URL"],"category":"member"},{"name":"$memberBanner","version":"2.1.0","description":"Returns the member banner","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to retrieve the banner","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$memberBoostingSince","version":"1.5.0","aliases":["$boostingSince","$boosterSince","$memberBoosterSince"],"brackets":false,"unwrap":true,"output":["Number"],"description":"Returns when the member started boosting the guild","args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check boost status for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$memberCustomStatus","version":"1.5.0","aliases":["$customStatus","$userCustomStatus"],"description":"Returns the custom status of a member","unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull the user from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The user to return its custom status","required":true,"rest":false,"type":"Member"},{"name":"type","description":"The type of the custom status to fetch","rest":false,"type":"Enum","enum":["state","emoji"],"enumName":"CustomStatusType"}],"brackets":false,"category":"member"},{"name":"$memberDisplayColor","version":"1.0.0","description":"Returns the display color of a member","unwrap":true,"brackets":false,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its color","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberDisplayName","version":"2.3.0","description":"Returns the display name of a member","unwrap":true,"brackets":false,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its display name","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberExists","version":"1.0.0","description":"Returns whether an member id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to check for the member","type":"Guild","rest":false,"required":true},{"name":"member ID","description":"The member to check for","rest":false,"required":true,"type":"String"}],"category":"member"},{"name":"$memberFlags","version":"1.5.0","description":"Returns the flags of a member","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its flags","rest":false,"type":"Member","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["GuildMemberFlags[]"],"category":"member"},{"name":"$memberHighestRoleID","version":"1.0.0","description":"Returns the highest role id of a member","unwrap":true,"output":["Role"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its highest role id","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberJoinPosition","version":"1.5.0","description":"Returns the position at which the member joined the guild","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its join position","rest":false,"pointer":0,"type":"Member","required":true}],"category":"member"},{"name":"$memberJoinedAt","version":"1.0.0","description":"Returns the timestamp the member joined at","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its join date","rest":false,"pointer":0,"type":"Member","required":true}],"category":"member"},{"name":"$memberLowestRoleID","version":"1.5.0","description":"Returns the lowest role id of a member","unwrap":true,"output":["Role"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its lowest role id","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberPerms","version":"1.0.0","description":"Returns the member perms","brackets":false,"unwrap":true,"output":["PermissionFlagsBits[]"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its perms","rest":false,"type":"Member","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false},{"name":"return int","description":"Whether to return the perms as bitfield int","type":"Boolean","rest":false}],"category":"member"},{"name":"$memberRawData","version":"1.5.0","description":"Returns the raw data of a member","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get raw data from","rest":false,"type":"Member","pointer":0,"required":true}],"output":["Json"],"category":"member"},{"name":"$memberRemoveRoles","version":"1.0.0","description":"Removes roles from a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to remove roles from","rest":false,"type":"Member","required":true},{"name":"roles","description":"The roles to remove","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberRoles","version":"1.0.0","description":"Returns the role ids of a member","unwrap":true,"brackets":false,"output":["Role[]"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get roles from","rest":false,"pointer":0,"type":"Member","required":true},{"name":"separator","description":"The separator to use for each role","rest":false,"type":"String"}],"category":"member"},{"name":"$memberSetNickname","version":"1.0.7","description":"Edits a member's nickname, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to edit its nickname","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"nickname","description":"The new nickname, leave empty to reset","rest":false,"type":"String"}],"category":"member"},{"name":"$memberSetRoles","version":"1.0.0","description":"Sets roles to a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to set roles to","rest":false,"type":"Member","pointer":0,"required":true},{"name":"roles","description":"The roles to set","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberTimeoutDuration","version":"1.5.0","aliases":["$timeoutDuration","$getTimeoutDuration","$timedOutUntil","$memberTimedOutUntil"],"description":"Returns the timeout duration of a member","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get duration for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$nickname","version":"1.0.0","description":"Returns the member nickname","brackets":false,"aliases":["$memberNickname"],"unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its nickname","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$platform","version":"1.0.0","description":"Returns the member platforms","brackets":false,"aliases":["$memberPlatforms","$platforms","$memberPlatform"],"unwrap":true,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild id to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member id return its platform","rest":false,"type":"Member","pointer":0,"required":true},{"name":"separator","description":"The separator for each platform","rest":false,"type":"String"}],"category":"member"},{"name":"$pruneMembers","version":"1.5.0","aliases":["$prune","$membersPrune"],"description":"Prunes inactive members from the guild, returns number of kicked members","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to prune members from","rest":false,"required":true,"type":"Guild"},{"name":"days","description":"The days of inactivity required to kick","rest":false,"type":"Number"},{"name":"dry","description":"Whether to perform a dry prune","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for pruning members","rest":false,"type":"String"},{"name":"roles","description":"The roles to include when pruning","rest":true,"type":"Role"}],"category":"member"},{"name":"$randomMemberID","version":"1.0.3","description":"Returns a random member ID of a guild","unwrap":true,"output":["Member"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to get member from","rest":false,"required":true,"type":"Guild"}],"category":"member"},{"name":"$status","version":"1.0.0","description":"Returns the member status","brackets":false,"unwrap":true,"aliases":["$memberStatus","$statuses","$memberStatuses"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its status","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$timeout","version":"1.0.0","description":"Times a member out for X milliseconds, returns bool","unwrap":true,"aliases":["$memberTimeout","$timeoutMember"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to timeout","rest":false,"required":true,"type":"Member","pointer":0},{"name":"duration","description":"The duration to timeout for","rest":false,"type":"Time"},{"name":"reason","description":"The reason to timeout the member","rest":false,"type":"String"}],"category":"member"},{"name":"$unban","version":"1.0.0","brackets":true,"unwrap":true,"aliases":["$memberUnban","$unbanMember"],"output":["Boolean"],"description":"Unbans a user from a guild, returns bool","args":[{"name":"guild ID","description":"The guild to unban user from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to unban","rest":false,"type":"User","required":true},{"name":"reason","description":"The unban reason","rest":false,"type":"String"}],"category":"member"},{"name":"$voiceID","version":"1.0.3","description":"Returns the voice channel id a member is connected to","unwrap":true,"aliases":["$memberVoiceID"],"brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to pull member from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The member to get its voice channel","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$voiceKick","version":"1.4.0","description":"Kicks a member from a voice channel, returns bool","brackets":true,"aliases":["$memberVoiceKick"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to kick"},{"name":"reason","description":"The reason to kick this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$voiceMove","version":"1.4.0","description":"Moves a member from a voice channel, returns bool","brackets":true,"aliases":["$memberVoiceMove"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to move"},{"name":"channel ID","description":"The voice channel to move this user to","rest":false,"required":false,"type":"Channel"},{"name":"reason","description":"The reason for moving the user","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$disableAllMentions","version":"1.3.0","description":"Disables every possible mention","unwrap":false,"category":"mention"},{"name":"$disableEveryoneMention","version":"1.3.0","description":"Disables everyone mention","unwrap":false,"category":"mention"},{"name":"$disableRoleMentions","version":"1.3.0","description":"Disables all role mentions","unwrap":false,"category":"mention"},{"name":"$disableUserMentions","version":"1.3.0","description":"Disables all user mentions","unwrap":false,"category":"mention"},{"name":"$enableRoleMentions","version":"1.3.0","description":"Only parses these roles for mentions","unwrap":true,"brackets":true,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to retrieve roles from"},{"name":"roles","rest":true,"required":true,"pointer":0,"type":"Role","description":"The roles to parse mentions for"}],"category":"mention"},{"name":"$enableUserMentions","version":"1.3.0","description":"Only parses these users for mentions","unwrap":true,"brackets":true,"args":[{"name":"users","rest":true,"required":true,"type":"User","description":"The users to parse mentions for"}],"category":"mention"},{"name":"$isChannelMentioned","version":"1.3.0","description":"Returns whether a channel was mentioned in this message","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$isRoleMentioned","version":"1.3.0","description":"Returns whether a role was mentioned in this message","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"role ID","rest":false,"required":true,"type":"String","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$isUserMentioned","version":"1.3.0","description":"Returns whether a user was mentioned in this message","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"user ID","rest":false,"required":true,"type":"User","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$mentioned","version":"1.0.0","brackets":false,"description":"Returns the mentioned users","unwrap":true,"output":["User[]"],"args":[{"name":"index","description":"The index of the user","rest":false,"type":"Number","required":true},{"name":"return author","description":"Return author ID if not found","rest":false,"type":"Boolean"}],"category":"mention"},{"name":"$mentionedChannelCount","aliases":["$mentionedChannelsCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned channel count","unwrap":false,"category":"mention"},{"name":"$mentionedChannels","aliases":["$mentionedChannel"],"output":["Channel[]"],"version":"1.0.0","brackets":false,"description":"Returns the mentioned channels","unwrap":true,"args":[{"name":"index","description":"The index of the channel","rest":false,"type":"Number","required":true},{"name":"return channel","description":"Whether to return current channel if not found","rest":false,"type":"Boolean"}],"category":"mention"},{"name":"$mentionedRoleCount","aliases":["$mentionedRolesCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned role count","unwrap":false,"category":"mention"},{"name":"$mentionedRoles","aliases":["$mentionedRole"],"output":["Role[]"],"version":"1.0.0","brackets":false,"description":"Returns the mentioned roles","unwrap":true,"args":[{"name":"index","description":"The index of the role","rest":false,"type":"Number","required":true}],"category":"mention"},{"name":"$mentionedUserCount","aliases":["$mentionedUsersCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned user count","unwrap":false,"category":"mention"},{"name":"$nomention","version":"1.3.0","description":"Disables reply ping","unwrap":false,"category":"mention"},{"name":"$addMessageReactions","version":"1.0.0","description":"Adds reactions to a message, returns amount of emojis successfully reacted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to add reactions to","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emojis","description":"The emojis to react with","rest":true,"type":"String","required":true}],"category":"message"},{"name":"$attachment","version":"1.0.0","brackets":true,"description":"Adds an attachment to the response","unwrap":true,"aliases":["$addAttachment"],"args":[{"name":"path","description":"The attachment url or path to file","rest":false,"required":true,"type":"String"},{"name":"name","description":"The name for this attachment, with the extension","rest":false,"type":"String","required":true},{"name":"as text","description":"Whether to use url param as text","rest":false,"type":"Boolean"},{"name":"encoding","description":"Encoding to use for text, utf-8 default","rest":false,"type":"String"},{"name":"description","description":"The description for this attachment","rest":false,"type":"String"}],"category":"message"},{"name":"$deleteAllMessageReactions","version":"1.0.0","description":"Deletes all reactions from a message, returns bool","unwrap":true,"output":["Boolean"],"brackets":false,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove reactions from","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$deleteIn","version":"1.5.0","description":"Deletes the response after the given time","unwrap":true,"brackets":true,"args":[{"name":"duration","description":"The duration to wait for until deletion","rest":false,"required":true,"type":"Time"}],"category":"message"},{"name":"$deleteMessage","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"aliases":["$deleteMessages"],"description":"Deletes given messages, returns the count of messages deleted","args":[{"name":"channel ID","description":"The channel to delete this message from","rest":false,"required":true,"type":"Channel"},{"name":"messages","description":"The message ids to delete","rest":true,"required":true,"pointer":0,"type":"String"}],"category":"message"},{"name":"$deleteUserMessageReaction","version":"1.0.6","description":"Deletes user emoji reaction from a message, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove user emoji reaction","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The message reaction to remove user from","rest":false,"required":true,"pointer":1,"type":"Reaction"},{"name":"user ID","description":"The user to delete its reaction","required":true,"rest":false,"type":"User"}],"category":"message"},{"name":"$editMessage","version":"1.0.0","description":"Edits a message in a channel, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit this message","required":true,"type":"Channel","rest":false},{"name":"message ID","description":"The message to edit","rest":false,"type":"Message","pointer":0,"required":true},{"name":"content","description":"The content for the message","type":"String","rest":false}],"brackets":true,"category":"message"},{"name":"$fetchComponents","version":"1.0.0","description":"Fetches a message's components, this will override any other component added to the response","aliases":["$fetchRows"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get the components from","pointer":0,"rest":false,"type":"Message","required":true}],"category":"message"},{"name":"$fetchEmbeds","version":"1.4.0","aliases":["$fetchEmbed","$cloneEmbed","$cloneEmbeds"],"description":"Fetches an embed or all embeds from a message to the next response","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get embeds from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The embed index to load","rest":false,"type":"Number"}],"category":"message"},{"name":"$fetchMessage","version":"2.2.0","description":"Fetches all data of a message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to fetch its data","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$fetchResponse","version":"1.4.0","brackets":false,"unwrap":true,"description":"Fetches all data from the message and loads it to response, this includes: embeds, components, attachments, stickers","args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to fetch its data","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$forwardMessage","version":"2.2.0","description":"Forwards a message to another channel, returns bool","aliases":["$forward"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to forward","rest":false,"required":true,"type":"Message","pointer":0},{"name":"channel ID","description":"The channel to forward message to","rest":false,"type":"Channel"}],"output":["Boolean"],"category":"message"},{"name":"$getComponents","version":"1.4.0","description":"Retrieves data of a component, not providing any property returns component json","unwrap":true,"brackets":false,"aliases":["$getComponent"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"row index","description":"The row index to get data from","rest":false,"required":false,"type":"Number"},{"name":"component index","description":"The first component index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The first property to pull","rest":false,"type":"Enum","enum":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"required":false,"enumName":"ComponentProperty"},{"name":"separator","description":"The separator to use for each value in case of array","rest":false,"type":"String"},{"name":"component index","description":"The second component index to get data from","rest":false,"type":"Number"},{"name":"property","description":"The second property to pull","rest":false,"type":"Enum","enum":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"enumName":"ComponentProperty"}],"output":["Json","Unknown"],"category":"message"},{"name":"$getEmbeds","version":"1.0.3","description":"Retrieves data of an embed, not providing any property returns embed json","unwrap":true,"output":["Unknown"],"brackets":false,"aliases":["$getEmbed"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"embed index","description":"The embed index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"required":false,"enumName":"EmbedProperty"},{"name":"field index","description":"Index of field to get","rest":false,"type":"Number"}],"category":"message"},{"name":"$getMessage","version":"1.0.3","description":"Retrieves data of a message","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"Separator to use in case of array","rest":false,"type":"String"}],"category":"message"},{"name":"$getMessageReactionCount","version":"1.0.0","description":"Gets the amount of users that have reacted to a specific emoji","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to get emoji count from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The emoji to get its user count","required":true,"pointer":1,"rest":false,"type":"Reaction"},{"name":"type","description":"The type of the reaction to count users for","rest":false,"type":"Enum","enum":["normal","burst"],"enumName":"ReactionType"}],"category":"message"},{"name":"$getMessageReactionUsers","version":"1.0.0","description":"Gets the user ids that have reacted to a specific emoji","unwrap":true,"output":["User[]"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to get emoji users from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The emoji to get its users","required":true,"pointer":1,"rest":false,"type":"Reaction"},{"name":"separator","description":"The separator to use for every user","rest":false,"type":"String"}],"category":"message"},{"name":"$getMessageReactions","version":"2.2.0","description":"Retrieves all reactions of a message","aliases":["$getReactions"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to retrieve reactions from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property of the reactions to return","rest":false,"type":"Enum","enum":["emoji","count","burstCount","normalCount","me","meBurst","burstColors"],"enumName":"ReactionProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"message"},{"name":"$getPoll","version":"2.5.0","description":"Retrieves data of a poll from a message","aliases":["$getMessagePoll"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["question","layoutType","answers","answerCount","totalVotes","expiresTimestamp","allowMultiselect","resultsFinalized"],"required":true,"enumName":"PollProperty"}],"output":["Unknown"],"category":"message"},{"name":"$getSnapshots","version":"2.4.0","description":"Retrieves data of snapshots from a message","aliases":["$getSnapshot"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the snapshot to get","rest":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"message"},{"name":"$hasComponents","version":"2.5.0","description":"Checks whether given message has components","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get message from","type":"Channel","rest":false,"required":true},{"name":"message ID","pointer":0,"rest":false,"required":true,"type":"Message","description":"The message to check for components"}],"output":["Boolean"],"category":"message"},{"name":"$hasEmbeds","version":"1.2.0","brackets":false,"output":["Boolean"],"description":"Checks whether given message has embeds","unwrap":true,"args":[{"name":"channel ID","description":"The channel to get message from","type":"Channel","rest":false,"required":true},{"name":"message ID","pointer":0,"rest":false,"required":true,"type":"Message","description":"The message to check for embeds"}],"category":"message"},{"name":"$isPinned","version":"1.5.0","description":"Returns whether the message is pinned","aliases":["$isMessagePinned","$messagePinned"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to check if its pinned","rest":false,"required":true,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$loadComponents","version":"1.4.0","aliases":["$loadComponent"],"description":"Loads components JSON (or array) to the response","unwrap":true,"brackets":true,"args":[{"name":"component data","type":"Json","rest":false,"required":true,"description":"The components object or array of objects to load"}],"category":"message"},{"name":"$loadEmbeds","version":"1.4.0","aliases":["$loadEmbed"],"description":"Loads embed json (or array) to the response","unwrap":true,"brackets":true,"args":[{"name":"embed data","type":"Json","rest":false,"required":true,"description":"The embed object or array of objects to load"}],"category":"message"},{"name":"$message","version":"1.0.0","output":["String"],"description":"Retrieves arguments from a message command","args":[{"name":"index","description":"Index to get arg","type":"Number","required":true,"rest":false},{"name":"end index","description":"The end index","rest":false,"type":"Number"}],"brackets":false,"unwrap":true,"category":"message"},{"name":"$messageAttachment","version":"1.4.0","output":["URL"],"description":"Retrieves an attachment from this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachments","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"description":"The index of the attachment","type":"Number","required":true}],"category":"message"},{"name":"$messageAttachmentCount","version":"1.4.0","output":["Number"],"description":"Retrieve the amount of attachments in this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachment count","rest":false,"required":true,"type":"Message"}],"category":"message"},{"name":"$messageAttachmentFlags","version":"1.5.0","description":"Returns the flags of an attachment from this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachment flags","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"description":"The index of the attachment","type":"Number","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["AttachmentFlags[]"],"category":"message"},{"name":"$messageAttachments","version":"1.4.0","output":["Attachment[]"],"description":"Retrieves all attachments of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachments","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every attachment","type":"String"}],"category":"message"},{"name":"$messageContent","version":"1.4.0","output":["String"],"description":"Retrieves the content of the message","unwrap":false,"category":"message"},{"name":"$messageCreatedAt","version":"1.0.2","output":["Number"],"description":"Returns the timestamp of the message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its timestamp","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageEditedAt","version":"1.5.0","output":["Number"],"description":"Returns the edited timestamp of the message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its edited timestamp","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageEmojis","version":"2.4.0","description":"Retrieves all emojis of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its emojis","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every emoji","type":"String"},{"name":"return ids","rest":false,"description":"Whether to return the emoji ids, excludes unicode emojis","type":"Boolean"}],"output":["Emoji[]"],"category":"message"},{"name":"$messageExists","version":"1.0.5","description":"Returns whether given message id exists","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to check for","rest":false,"type":"String","required":true}],"category":"message"},{"name":"$messageFlags","version":"1.5.0","description":"Returns the flags of a message","brackets":false,"unwrap":true,"output":["MessageFlags[]"],"args":[{"name":"channel ID","description":"The channel to get the message from","rest":false,"type":"Channel","required":true},{"name":"message ID","description":"The message to return its flags","rest":false,"type":"Message","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"category":"message"},{"name":"$messageID","version":"1.0.0","description":"Returns the message id","unwrap":false,"output":["Message"],"category":"message"},{"name":"$messageLink","version":"1.0.0","description":"Retrieves a message url","unwrap":true,"brackets":false,"output":["URL"],"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its url","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageRawData","version":"1.5.0","description":"Returns the raw data of a message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get message from","type":"Channel"},{"name":"message ID","description":"The message to get raw data from","rest":false,"type":"Message","pointer":0,"required":true}],"output":["Json"],"category":"message"},{"name":"$messageReferenceID","version":"1.0.0","description":"Returns the message id that this message replies to","unwrap":true,"output":["Message"],"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its reference","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageSlice","version":"1.3.0","description":"Slices this message's args","brackets":true,"output":["String"],"args":[{"name":"start","description":"The start index","rest":false,"required":false,"type":"Number"},{"name":"end","description":"The end index","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"message"},{"name":"$messageSticker","version":"1.4.0","output":["Sticker"],"description":"Retrieves a sticker url of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its stickers","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"required":true,"description":"The index to get sticker","type":"Number"}],"category":"message"},{"name":"$messageStickerCount","version":"1.4.0","output":["Number"],"description":"Retrieves sticker count of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its sticker count","rest":false,"required":true,"type":"Message"}],"category":"message"},{"name":"$messageStickers","version":"1.4.0","aliases":["$stickers"],"output":["Sticker[]"],"description":"Retrieves all stickers of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its stickers","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every sticker","type":"String"},{"name":"type","rest":false,"description":"The type to return, default is url","type":"Enum","enum":["id","url"],"enumName":"StickerReturnType"}],"category":"message"},{"name":"$messageType","version":"1.0.0","description":"Returns the message type","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its type","rest":false,"required":true,"type":"Message"}],"output":["MessageType"],"category":"message"},{"name":"$messageWebhookID","version":"1.1.0","description":"Returns the message's webhook id","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its webhook id","rest":false,"required":true,"type":"Message"}],"output":["Webhook"],"category":"message"},{"name":"$noMentionMessage","version":"1.0.0","output":["String"],"description":"Retrieves arguments from a message without mentions","args":[{"name":"index","description":"Index to get arg","type":"Number","required":true,"rest":false},{"name":"end index","description":"The end index","rest":false,"type":"Number"}],"brackets":false,"unwrap":true,"category":"message"},{"name":"$pinMessage","version":"1.1.0","description":"Pins a message in a channel, returns bool","brackets":false,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to pin","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$publishMessage","version":"1.1.0","description":"Crossposts a message in an announcement channel, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to announce","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$reply","version":"1.0.0","description":"Marks the response as a reply","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel the message is at","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to reply to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"disable ping","description":"Whether to disable ping of reply","rest":false,"type":"Boolean"}],"category":"message"},{"name":"$sticker","version":"1.3.0","description":"Attach a sticker to the response","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","rest":false,"required":true,"type":"Sticker","description":"The sticker to use"}],"category":"message"},{"name":"$suppressEmbeds","version":"1.5.0","description":"Suppresses embeds on a message, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to suppress embeds on","rest":false,"required":true,"pointer":0,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$tts","version":"1.5.0","description":"Marks the response as Text-To-Speech","unwrap":false,"category":"message"},{"name":"$unpinMessage","version":"1.1.0","output":["Boolean"],"description":"Unpins a message from a channel, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to unpin","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$unsuppressEmbeds","version":"1.5.0","description":"Unsuppresses embeds on a message, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to unsuppress embeds on","rest":false,"required":true,"pointer":0,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$abbreviateNumber","version":"1.0.0","output":["String"],"description":"Abbreviates given number","unwrap":true,"args":[{"name":"number","description":"The number to abbreviate","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"number"},{"name":"$average","version":"1.5.0","brackets":true,"unwrap":true,"description":"Calculates the average of given numbers","args":[{"name":"separator","description":"The delimiter of each value","rest":false,"required":true,"type":"String"},{"name":"values","description":"Values separated by `separator`","rest":false,"required":true,"type":"String"}],"category":"number"},{"name":"$hexToInt","version":"1.2.0","brackets":true,"output":["Color"],"description":"Turns hex string to number","unwrap":true,"args":[{"name":"hex","description":"The hex to convert","rest":false,"required":true,"type":"String"}],"category":"number"},{"name":"$inRange","version":"1.0.0","description":"Returns whether a number is in range","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"number","description":"The number to validate","rest":false,"type":"Number","required":true},{"name":"min","description":"The min value","rest":false,"type":"Number"},{"name":"max","description":"The max value","rest":false,"type":"Number"}],"category":"number"},{"name":"$intToHex","version":"1.2.0","brackets":true,"description":"Turns integer to hex","unwrap":true,"output":["Color"],"args":[{"name":"int","description":"The integer to convert","rest":false,"required":true,"type":"Number"}],"category":"number"},{"name":"$isFloat","version":"1.0.0","description":"Returns whether the number is a float","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$isInteger","version":"1.0.0","description":"Returns whether the number is an integer","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$isNumber","version":"1.0.0","description":"Returns whether the number is valid","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$maxSafeInteger","version":"1.0.6","description":"Returns the highest safe integer","unwrap":false,"output":["Number"],"category":"number"},{"name":"$minSafeInteger","version":"1.0.6","description":"Returns the lowest safe integer","unwrap":false,"output":["Number"],"category":"number"},{"name":"$ordinal","version":"1.3.0","description":"Appends a suffix to the number","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"number","description":"The number to append suffix to","rest":false,"required":true,"type":"Number"}],"category":"number"},{"name":"$parseInt","version":"1.2.0","description":"Implements native parseInt's function into ForgeScript","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"value","description":"The number to parse","rest":false,"required":true,"type":"String"},{"name":"radix","rest":false,"required":false,"description":"Radix to use for the parser","type":"Number"}],"category":"number"},{"name":"$randomNumber","version":"1.0.0","description":"Returns a random number (no cache)","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"min","description":"The minimum possible number","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max possible number","rest":false,"type":"Number"},{"name":"decimals","description":"Whether to use decimals","rest":false,"type":"Boolean"}],"category":"number"},{"name":"$separateBigint","version":"1.3.0","description":"Separates thousands in the number","unwrap":true,"output":["String"],"args":[{"name":"number","description":"The number to separate","rest":false,"type":"BigInt","required":true},{"name":"separator","description":"The separator to use","type":"String","rest":false}],"brackets":true,"category":"number"},{"name":"$separateNumber","version":"1.0.0","description":"Separates thousands in the number","unwrap":true,"output":["String"],"args":[{"name":"number","description":"The number to separate","rest":false,"type":"Number","required":true},{"name":"separator","description":"The separator to use","type":"String","rest":false}],"brackets":true,"category":"number"},{"name":"$advancedBar","version":"1.5.0","aliases":["$generateAdvancedBar"],"description":"Generates an advanced progress bar","brackets":true,"unwrap":true,"args":[{"name":"current","description":"The current value","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max value of current","rest":false,"required":true,"type":"Number"},{"name":"length","description":"The length of the bar","rest":false,"type":"Number"},{"name":"values","description":"The values to make the bar with, for example `=;~;#` means `0%;33%;66%`","rest":true,"required":true,"type":"String"}],"output":["String"],"category":"other"},{"name":"$awaitComponent","version":"1.4.0","description":"Awaits a component, executing the code as the interaction context, returns bool depending on whether the interaction was received","unwrap":false,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to await component on"},{"name":"filter","description":"The filter to run for every interaction received after this, this is called with interaction context","rest":false,"required":true,"condition":true,"type":"String"},{"name":"success code","description":"The code to execute on success, this is called with interaction context","rest":false,"required":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a component"}],"category":"other"},{"name":"$awaitMessage","version":"1.0.7","description":"Awaits a message, returns message ID or nothing if no valid response","unwrap":false,"output":["Message"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to await message on","rest":false,"required":true,"type":"Channel"},{"name":"variable name","description":"The variable to load the message id that was sent as response by a user, get it with $env[]","rest":false,"required":true,"type":"String"},{"name":"filter","description":"The filter to run for every message sent after this","rest":false,"required":true,"condition":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a message"}],"category":"other"},{"name":"$awaitModalSubmit","version":"1.4.0","description":"Awaits a modal submit, executing the code as the interaction context, returns bool depending on whether the interaction was received","unwrap":false,"output":["Boolean"],"brackets":true,"args":[{"name":"custom ID","description":"The modal's custom id to wait for","rest":false,"required":true,"type":"String"},{"name":"success code","description":"The code to execute on success, this is called with interaction context","rest":false,"required":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a component"}],"category":"other"},{"name":"$bar","version":"1.5.0","description":"Generates a progress bar","aliases":["$generateBar"],"brackets":true,"unwrap":true,"args":[{"name":"current","description":"The current value","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max value of current","rest":false,"required":true,"type":"Number"},{"name":"length","description":"The length of the bar","rest":false,"type":"Number"},{"name":"fill","description":"The string to use as filled points of the bar","rest":false,"type":"String"},{"name":"empty","description":"The string to use as empty points of the bar","rest":false,"type":"String"},{"name":"trunc","description":"Whether to truncate instead of round","rest":false,"type":"Boolean"},{"name":"fillStart","description":"The string to use as filled start of the bar","rest":false,"type":"String"},{"name":"fillEnd","description":"The string to use as filled end of the bar","rest":false,"type":"String"},{"name":"emptyStart","description":"The string to use as empty start of the bar","rest":false,"type":"String"},{"name":"emptyEnd","description":"The string to use as empty end of the bar","rest":false,"type":"String"}],"output":["String"],"category":"other"},{"name":"$c","version":"1.0.0","description":"Marks any code inside as a comment","unwrap":false,"args":[{"name":"comment","rest":true,"required":true,"description":"The comments","type":"String"}],"brackets":true,"category":"other"},{"name":"$callFunction","version":"1.0.0","description":"Calls a forge function made by the user","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The function name","rest":false,"required":true,"type":"String"},{"name":"args","description":"The args to call this function with","rest":true,"type":"String"}],"brackets":true,"category":"other"},{"name":"$callLocalFunction","version":"2.3.0","description":"Calls a local function","aliases":["$callFn"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The local function name","rest":false,"required":true,"type":"String"},{"name":"args","description":"The args to call this local function with","rest":true,"type":"String"}],"output":["Unknown"],"category":"other"},{"name":"$debug","version":"1.0.0","output":["String"],"description":"Returns the debug message","unwrap":false,"category":"other"},{"name":"$disableConsoleErrors","version":"1.4.0","description":"Disables possible outcoming errors that are output to console","unwrap":false,"category":"other"},{"name":"$djsVersion","version":"2.2.0","description":"Returns the discord.js version used","unwrap":false,"output":["String"],"category":"other"},{"name":"$enableConsoleErrors","version":"1.4.0","description":"Enables possible outcoming errors that are output to console","unwrap":false,"category":"other"},{"name":"$error","version":"1.0.0","description":"Returns the error message","unwrap":false,"output":["Unknown"],"category":"other"},{"name":"$escapeCode","version":"1.4.0","description":"Code inside this function will not be executed","unwrap":false,"brackets":true,"aliases":["$esc"],"args":[{"name":"code","type":"String","description":"The code to ignore","required":true,"rest":false}],"output":["String"],"category":"other"},{"name":"$localFunction","version":"2.3.0","description":"Defines a new local function","aliases":["$fn"],"unwrap":false,"brackets":true,"args":[{"name":"name","description":"The local function name","rest":false,"required":true,"type":"String"},{"name":"code","description":"The local function code","rest":false,"required":true,"type":"String"},{"name":"params","description":"The local function params","rest":true,"type":"String"}],"category":"other"},{"name":"$typeof","version":"2.4.0","description":"Returns the type of the provided argument","unwrap":true,"brackets":true,"args":[{"name":"argument","rest":false,"description":"The argument to get its type","type":"String","required":true}],"output":["String"],"category":"other"},{"name":"$poll","version":"1.5.0","description":"Creates a poll","brackets":true,"args":[{"name":"question","description":"The poll question","rest":false,"required":true,"type":"String"},{"name":"duration","description":"The poll's duration","rest":false,"required":true,"type":"Time"},{"name":"multiselect","description":"Whether to allow multi select","rest":false,"type":"Boolean"},{"name":"layout","description":"The layout for this poll","rest":false,"enum":["Default"],"type":"Enum","enumName":"PollLayoutType"}],"unwrap":true,"category":"poll"},{"name":"$pollAnswer","version":"1.5.0","brackets":true,"unwrap":true,"description":"Add a poll answer","args":[{"name":"text","description":"The answer's text","rest":false,"required":true,"type":"String"},{"name":"emoji","rest":false,"description":"The emoji to use","type":"String"}],"category":"poll"},{"name":"$pollAnswerEmoji","version":"1.5.0","description":"Can only be used in poll events, returns the emoji of the poll answer","unwrap":false,"output":["String"],"category":"poll"},{"name":"$pollAnswerID","version":"1.5.0","description":"Can only be used in poll events, returns the answer id used","unwrap":false,"output":["Number"],"category":"poll"},{"name":"$pollAnswerMessageID","version":"1.5.0","description":"Can only be used in poll events, returns the message id of the poll answer","unwrap":false,"output":["Message"],"category":"poll"},{"name":"$pollAnswerText","version":"1.5.0","description":"Can only be used in poll events, returns the text of the poll answer","unwrap":false,"output":["String"],"category":"poll"},{"name":"$pollAnswerVoteCount","version":"1.5.0","description":"Can only be used in poll events, returns the vote count of this poll answer","unwrap":false,"output":["Number"],"category":"poll"},{"name":"$pollAnswerVoterIDs","version":"1.5.0","description":"Can only be used in poll events, returns the vote user ids of this poll answer","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"category":"poll"},{"name":"$pollAnswers","version":"1.5.0","brackets":true,"unwrap":true,"description":"Adds multiple poll answers","args":[{"name":"text;emoji","description":"The answer's text followed by emoji","rest":true,"required":true,"type":"String"}],"category":"poll"},{"name":"$pollEnd","version":"1.5.0","description":"Ends a poll","aliases":["$endPoll"],"brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get the message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get the poll","rest":false,"required":true,"type":"Message","pointer":0}],"category":"poll"},{"name":"$reactionAuthorID","version":"1.0.0","description":"Returns the reaction author id that reacted","unwrap":false,"output":["User"],"category":"reaction"},{"name":"$reactionCount","version":"1.5.0","description":"Returns the count of reacted users","unwrap":false,"output":["Number"],"category":"reaction"},{"name":"$reactionEmoji","version":"1.0.0","description":"Returns the emoji that was used","unwrap":false,"output":["String"],"category":"reaction"},{"name":"$reactionEmojiID","version":"1.0.0","description":"Returns the reaction id that was used","unwrap":false,"output":["Emoji"],"category":"reaction"},{"name":"$reactionMessageID","version":"1.0.0","description":"Returns the message id of the reacted message","unwrap":false,"output":["Message"],"category":"reaction"},{"name":"$addRole","version":"1.0.0","description":"Adds a role to a guild, returns role id if success","unwrap":true,"brackets":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to add the role to","rest":false,"type":"Guild","required":true},{"name":"name","description":"The role name","rest":false,"required":true,"type":"String"},{"name":"color","description":"The role color","rest":false,"type":"String"},{"name":"icon","description":"The role icon","rest":false,"type":"String"},{"name":"hoisted","description":"Whether the role is hoisted","type":"Boolean","rest":false},{"name":"mentionable","description":"Whether the role is mentionable","type":"Boolean","rest":false},{"name":"position","description":"The position for this role","rest":false,"type":"Number"},{"name":"perms","description":"The role perms","rest":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages"],"type":"String","enumName":"PermissionFlagsBits"}],"category":"role"},{"name":"$cloneRole","version":"2.4.0","description":"Clones an existing role of a guild, returns role id if success","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to fetch role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to clone","rest":false,"required":true,"type":"Role","pointer":0},{"name":"name","description":"The role name for the cloned role","rest":false,"type":"String"}],"output":["Role"],"category":"role"},{"name":"$deleteRoles","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given roles, returns the count of roles deleted","args":[{"name":"guild ID","description":"The guild to delete roles from","rest":false,"required":true,"type":"Guild"},{"name":"roles","description":"The roles to delete","rest":true,"required":true,"pointer":0,"type":"Role"}],"category":"role"},{"name":"$editRole","version":"1.0.7","description":"Edits a role on a guild, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit data","rest":false,"required":true},{"name":"name","description":"The new role name, leave empty to not modify","rest":false,"type":"String"},{"name":"color","description":"The new role color, leave empty to not modify","rest":false,"type":"String"},{"name":"icon","description":"The new role icon, leave empty to not modify","rest":false,"type":"String"},{"name":"hoisted","description":"Whether the role is hoisted, leave empty to not modify","rest":false,"type":"Boolean"},{"name":"mentionable","description":"Whether the role can be mentioned, leave empty to not modify","rest":false,"type":"Boolean"},{"name":"perms","description":"The new perms for the role","rest":true,"type":"Permission"}],"brackets":true,"category":"role"},{"name":"$editRoleColors","version":"2.5.0","description":"Edits a role's colors, returns boolean","aliases":["$editRoleColor"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","type":"Role","description":"The role to edit colors for","rest":false,"required":true,"pointer":0},{"name":"primary","description":"The new primary color","rest":false,"type":"Color","required":true},{"name":"secondary","description":"The new secondary color","rest":false,"type":"Color"},{"name":"tertiary","description":"The new tertiary color","rest":false,"type":"Color"}],"output":["Boolean"],"category":"role"},{"name":"$editRoleIcon","version":"1.0.7","description":"Edits a role's icon, returns boolean","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit icon for","rest":false,"required":true},{"name":"icon","description":"The new icon for the role, omit to clear","rest":false,"type":"String"}],"category":"role"},{"name":"$editRoleName","version":"1.0.7","description":"Edits a role's name, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit name for","rest":false,"required":true},{"name":"name","description":"The new name for the role","rest":false,"type":"String","required":true}],"brackets":true,"category":"role"},{"name":"$editRolePerms","version":"1.0.7","description":"Edits a role's permissions, returns boolean","aliases":["$modifyRolePerms"],"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit perms for","rest":false,"required":true},{"name":"perms","description":"The new perms for the role, omit to clear perms","rest":true,"type":"Permission"}],"brackets":true,"category":"role"},{"name":"$editRolePosition","version":"1.0.7","description":"Edits a role's position, returns boolean","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit position for","rest":false,"required":true},{"name":"position","description":"The new position for the role","rest":false,"type":"Number","required":true}],"category":"role"},{"name":"$editRoleUnicodeEmoji","version":"1.5.0","description":"Edits a role's unicode emoji, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit unicode emoji for","rest":false,"required":true},{"name":"emoji","description":"The new unicode emoji for the role, omit to clear","rest":false,"type":"String"}],"brackets":true,"category":"role"},{"name":"$fetchRoles","version":"2.2.0","description":"Caches all roles of a guild","aliases":["$fetchRole"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache roles of","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to fetch","rest":false,"type":"Role","pointer":0}],"category":"role"},{"name":"$randomRoleID","version":"1.5.0","description":"Returns a random role ID of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true}],"output":["Role"],"category":"role"},{"name":"$roleColor","version":"1.0.0","description":"Returns the color of a role","brackets":false,"unwrap":true,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its color","rest":false,"type":"Role","pointer":0,"required":true},{"name":"color","description":"The role color to return","rest":false,"type":"Enum","enum":["Primary","Secondary","Tertiary"],"enumName":"RoleColor"}],"category":"role"},{"name":"$roleCount","version":"1.0.0","description":"Returns the role count of all servers","unwrap":false,"output":["Number"],"category":"role"},{"name":"$roleCreatedAt","version":"1.0.0","description":"Returns the role creation date","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its creation date","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleEditable","version":"1.3.0","description":"Returns whether the role is editable by the bot","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its editable state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleExists","version":"1.0.0","description":"Returns whether an role id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","type":"Guild","rest":false,"required":true},{"name":"role ID","description":"The role to check for","rest":false,"required":true,"type":"String"}],"category":"role"},{"name":"$roleFlags","version":"1.3.0","description":"Returns the role flags","brackets":false,"unwrap":true,"output":["RoleFlags[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its flags","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"category":"role"},{"name":"$roleHoisted","version":"1.0.0","description":"Returns whether the role is hoisted","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its hoisted state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleID","version":"1.0.0","description":"Returns a role id with given name","brackets":false,"unwrap":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"name","description":"The role name to return its id","rest":true,"type":"String","pointer":0,"required":true}],"category":"role"},{"name":"$roleIDs","version":"1.0.0","description":"Returns the role ids of a guild","brackets":false,"output":["Role[]"],"args":[{"name":"guild ID","description":"The guild to return the roles of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each role","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"role"},{"name":"$roleIcon","version":"1.0.0","description":"Returns the role icon","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to use to get its icon","rest":false,"required":true,"pointer":0,"type":"Role"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"role"},{"name":"$roleIntColor","version":"1.3.0","description":"Returns the role color as int","brackets":false,"unwrap":true,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its color","rest":false,"type":"Role","pointer":0,"required":true},{"name":"color","description":"The role color to return","rest":false,"type":"Enum","enum":["Primary","Secondary","Tertiary"],"enumName":"RoleColor"}],"category":"role"},{"name":"$roleManageable","version":"1.3.0","description":"Returns whether the role is managed by discord","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its managed state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleMembers","version":"1.0.0","description":"Returns the role member ids","brackets":false,"unwrap":true,"output":["Member[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its members","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"role"},{"name":"$roleMentionable","version":"1.0.0","description":"Returns whether the role is mentionable","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its mentionable state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleName","version":"1.0.0","description":"Returns a role name with given id","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its name","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleNames","version":"1.0.0","description":"Returns the role names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the roles of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each role","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"role"},{"name":"$rolePerms","version":"1.0.0","description":"Returns the role perms","brackets":false,"unwrap":true,"output":["PermissionFlagsBits[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its perms","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false},{"name":"return int","description":"Whether to return the perms as bitfield int","type":"Boolean","rest":false}],"category":"role"},{"name":"$rolePosition","version":"1.0.0","description":"Returns the role position","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its position","rest":false,"type":"Role","pointer":0,"required":true},{"name":"asc order","description":"Whether to count roles in ascending order (top to bottom)","rest":false,"type":"Boolean"}],"category":"role"},{"name":"$roleRawData","version":"1.5.0","description":"Returns the raw data of a role","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull role from","rest":false,"type":"Guild","required":true},{"name":"role ID","rest":false,"required":true,"description":"The role to get raw data from","type":"Role","pointer":0}],"output":["Json"],"category":"role"},{"name":"$roleRawPosition","version":"1.0.0","description":"Returns the role raw position","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its raw position","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleTags","version":"1.3.0","description":"Returns all role tags","brackets":false,"output":["String[]"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its perms","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false}],"category":"role"},{"name":"$roleUnicodeEmoji","version":"1.3.0","output":["String"],"description":"Returns the unicode emoji used by the role","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its unicode emote","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$createSoundboardSound","version":"2.4.0","description":"Creates a new soundboard sound, returns sound id","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to create soundboard sound on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the sound","rest":false,"required":true,"type":"String"},{"name":"file","description":"The file for the sound","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji for the sound","rest":false,"type":"String"},{"name":"volume","description":"The volume for the sound (from 0 to 1)","rest":false,"type":"Number"},{"name":"reason","description":"The reason for creating the sound","rest":false,"type":"String"}],"output":["SoundboardSound"],"category":"soundboard"},{"name":"$deleteSoundboardSounds","version":"2.4.0","description":"Deletes given soundboard sounds, returns the count of sounds deleted","aliases":["$deleteSoundboardSound"],"brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to delete soundboard sounds from","rest":false,"required":true,"type":"Guild"},{"name":"sounds","description":"The soundboard sounds to delete","rest":true,"required":true,"pointer":0,"type":"SoundboardSound"}],"output":["Number"],"category":"soundboard"},{"name":"$editSoundboardSound","version":"2.4.0","description":"Edits given soundboard sound, returns bool","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to edit soundboard sound on","rest":false,"required":true,"type":"Guild"},{"name":"sound ID","description":"The soundboard sound to edit","rest":false,"required":true,"pointer":0,"type":"SoundboardSound"},{"name":"name","description":"The new name for the sound","rest":false,"type":"String"},{"name":"emoji","description":"The new emoji for the sound","rest":false,"type":"String"},{"name":"volume","description":"The new volume for the sound (from 0 to 1)","rest":false,"type":"Number"},{"name":"reason","description":"The reason for editing the sound","rest":false,"type":"String"}],"output":["Boolean"],"category":"soundboard"},{"name":"$getSoundboardSound","version":"2.4.0","description":"Returns a soundboard sound of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get soundboard sound from","rest":false,"required":true,"type":"Guild"},{"name":"sound ID","description":"The soundboard sound to get","rest":false,"required":true,"type":"SoundboardSound","pointer":0},{"name":"property","description":"The property of the sound to return","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"enumName":"SoundboardSoundProperty"}],"output":["Json","Unknown"],"category":"soundboard"},{"name":"$soundAvailable","version":"2.4.0","description":"Returns whether a sound is available","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its available status","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Boolean"],"category":"soundboard"},{"name":"$soundCreatedAt","version":"2.4.0","description":"Returns the creation timestamp of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its creation timestamp","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Number"],"category":"soundboard"},{"name":"$soundEmoji","version":"2.4.0","description":"Returns the emoji of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its emoji","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["String"],"category":"soundboard"},{"name":"$soundGuildID","version":"2.4.0","description":"Returns the guild id of a sound","unwrap":false,"output":["Guild"],"category":"soundboard"},{"name":"$soundID","version":"2.4.0","description":"Returns a sound id with given name","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"name","description":"The sound name to return its id","rest":true,"required":true,"type":"String"}],"output":["SoundboardSound"],"category":"soundboard"},{"name":"$soundName","version":"2.4.0","description":"Returns the name of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its name","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["String"],"category":"soundboard"},{"name":"$soundURL","version":"2.4.0","description":"Returns the url of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its url","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["URL"],"category":"soundboard"},{"name":"$soundUserID","version":"2.4.0","description":"Returns the user who created the sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its creator","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["User"],"category":"soundboard"},{"name":"$soundVolume","version":"2.4.0","description":"Returns the volume of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its volume","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Number"],"category":"soundboard"},{"name":"$auditLog","version":"1.0.3","description":"Retrieves new data from an event whose context was an audit log instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"required":true,"enumName":"AuditProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$bulk","version":"1.4.0","description":"Retrieves data from an event whose context was a bulk delete event","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["messages","contents","timestamps","attachments","stickers","users","count"],"required":true,"enumName":"BulkProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$effect","version":"2.3.0","description":"Retrieves data from an event whose context was a voice channel effect event","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["emoji","channelID","guildID","userID","soundID","soundVolume","animationID","animationType"],"required":true,"enumName":"VoiceEffectProperty"}],"category":"state"},{"name":"$newAutomodRule","version":"1.5.0","description":"Retrieves new data from an event whose context was an automod rule instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"required":true,"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newChannel","version":"1.0.0","description":"Retrieves new data from an event whose context was a channel instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"required":true,"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newEmoji","version":"1.0.0","description":"Retrieves new data from an event whose context was an emoji instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"required":true,"enumName":"EmojiProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newEntitlement","version":"1.5.0","description":"Retrieves new data from an event whose context was an entitlement instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"required":true,"enumName":"EntitlementProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newGuild","version":"1.0.0","description":"Retrieves new data from an event whose context was a guild instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"required":true,"enumName":"GuildProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newInvite","version":"1.0.3","description":"Retrieves new data from an event whose context was an invite instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"required":true,"enumName":"InviteProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newMember","version":"1.0.0","description":"Retrieves new data from an event whose context was a guild member instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newMessage","version":"1.0.0","description":"Retrieves new data from an event whose context was a message instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newPresence","version":"1.1.0","description":"Retrieves new data from an event whose context was a presence instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","guildID","status","platform"],"required":true,"enumName":"PresenceProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newRole","version":"1.0.0","description":"Retrieves new data from an event whose context was a role instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"required":true,"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newScheduledEvent","version":"1.4.0","description":"Retrieves new data from an event whose context was a scheduled event instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType"],"required":true,"enumName":"ScheduledEventProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSound","version":"2.4.0","description":"Retrieves new data from an event whose context was a soundboard sound instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"required":true,"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newStage","version":"1.4.0","description":"Retrieves new data from an event whose context was a stage instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"required":true,"enumName":"StageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newState","version":"1.0.0","description":"Retrieves new data from an event whose context was a voice state instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"required":true,"enumName":"VoiceStateProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSticker","version":"1.4.0","description":"Retrieves new data from an event whose context was a sticker instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"required":true,"enumName":"StickerProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSubscription","version":"2.5.0","description":"Retrieves new data from an event whose context was a subscription instance","brackets":true,"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"required":true,"enumName":"SubscriptionProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"state"},{"name":"$newUser","version":"1.0.0","description":"Retrieves new data from an event whose context was a user instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"required":true,"enumName":"UserProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldAutomodRule","version":"1.5.0","description":"Retrieves old data from an event whose context was an automod rule instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"required":true,"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldChannel","version":"1.0.0","description":"Retrieves old data from an event whose context was a channel instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"required":true,"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldEmoji","version":"1.0.0","description":"Retrieves old data from an event whose context was an emoji instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"required":true,"enumName":"EmojiProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldEntitlement","version":"1.5.0","description":"Retrieves old data from an event whose context was an entitlement instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"required":true,"enumName":"EntitlementProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldGuild","version":"1.0.0","description":"Retrieves old data from an event whose context was a guild instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"required":true,"enumName":"GuildProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldInvite","version":"1.0.3","description":"Retrieves old data from an event whose context was an invite instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"required":true,"enumName":"InviteProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldMember","version":"1.0.0","description":"Retrieves old data from an event whose context was a guild member instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldMessage","version":"1.0.0","description":"Retrieves old data from an event whose context was a message instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldPresence","version":"1.1.0","description":"Retrieves old data from an event whose context was a presence instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","guildID","status","platform"],"required":true,"enumName":"PresenceProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldRole","version":"1.0.0","description":"Retrieves old data from an event whose context was a role instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"required":true,"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldScheduledEvent","version":"1.4.0","description":"Retrieves old data from an event whose context was a scheduled event instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType"],"required":true,"enumName":"ScheduledEventProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSound","version":"2.4.0","description":"Retrieves old data from an event whose context was a soundboard sound instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"required":true,"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldStage","version":"1.4.0","description":"Retrieves old data from an event whose context was a stage instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"required":true,"enumName":"StageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldState","version":"1.0.0","description":"Retrieves old data from an event whose context was a voice state instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"required":true,"enumName":"VoiceStateProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSticker","version":"1.4.0","description":"Retrieves old data from an event whose context was a sticker instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"required":true,"enumName":"StickerProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSubscription","version":"2.5.0","description":"Retrieves old data from an event whose context was a subscription instance","brackets":true,"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"required":true,"enumName":"SubscriptionProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"state"},{"name":"$oldUser","version":"1.0.0","description":"Retrieves old data from an event whose context was a user instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"required":true,"enumName":"UserProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$async","version":"1.0.0","description":"Runs code asynchronously, will not return any value","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"type":"String","required":true}],"experimental":true,"category":"statement"},{"name":"$break","version":"1.0.3","description":"Breaks the loop","unwrap":false,"category":"statement"},{"name":"$case","version":"1.0.3","description":"Adds a switch case","brackets":true,"experimental":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"value","description":"The match case","rest":false,"required":true,"type":"String"},{"name":"code","description":"Code to execute if it matches this case","rest":false,"required":true,"type":"String"}],"category":"statement"},{"name":"$continue","version":"1.0.3","description":"Skips executing bottom code of the loop","unwrap":false,"category":"statement"},{"name":"$default","version":"1.0.6","brackets":true,"unwrap":true,"description":"Returns right hand value if the left hand value is falsy","args":[{"name":"left hand","description":"Left hand value","rest":false,"required":true,"type":"String"},{"name":"right hand","description":"Right hand value","rest":false,"required":true,"type":"String"}],"output":["String"],"category":"statement"},{"name":"$else","version":"1.2.0","description":"Creates an else statement","unwrap":true,"output":["Unknown"],"args":[{"name":"else","description":"The code to run","required":true,"type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$elseIf","version":"1.2.0","description":"Creates an else if statement","unwrap":false,"output":["Unknown"],"args":[{"name":"condition","description":"The condition to check against","rest":false,"type":"String","condition":true},{"name":"if true","description":"The code to run if true","required":true,"type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$if","version":"1.0.0","description":"Creates an if statement","unwrap":false,"output":["Unknown"],"args":[{"name":"condition","description":"The condition to check against","rest":false,"type":"String","condition":true},{"name":"if true","description":"The code to run if true","required":true,"type":"String","rest":false},{"name":"if false","description":"The code to run if false","type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$ifx","version":"1.2.0","description":"WIP if statements","brackets":true,"unwrap":false,"args":[{"name":"block","description":"The if, elseif, else blocks","rest":false,"required":true,"type":"String"}],"experimental":true,"category":"statement"},{"name":"$loop","version":"1.4.0","description":"Executes given code for N times","unwrap":false,"brackets":true,"experimental":true,"args":[{"name":"times","description":"How many times to run the code","rest":false,"required":true,"type":"Number"},{"name":"code","rest":false,"required":true,"type":"String","description":"The code to execute"},{"name":"variable","description":"The variable to load the current iteration count for $env","rest":false,"type":"String"},{"name":"desc","description":"Whether to use desc order for iteration count","rest":false,"type":"Boolean"}],"category":"statement"},{"name":"$return","version":"1.0.0","description":"Returns a value","unwrap":true,"output":["Unknown"],"args":[{"name":"value","description":"The value to return","rest":false,"required":true,"type":"String"}],"brackets":false,"category":"statement"},{"name":"$scope","version":"1.4.0","description":"Runs functions in a cloned context","brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"sync vars","description":"Whether to pass vars as reference","type":"Boolean","rest":false}],"unwrap":false,"output":["Unknown"],"category":"statement"},{"name":"$switch","version":"1.0.3","description":"Switch-case statement for javascript","unwrap":false,"experimental":true,"output":["Unknown"],"args":[{"name":"value","description":"The value to match with","rest":false,"required":true,"type":"String"},{"name":"cases","rest":false,"description":"The cases to use ($case), use $case[default;...] to add a default case","type":"String","required":true}],"brackets":true,"category":"statement"},{"name":"$try","version":"1.0.0","experimental":true,"description":"Handles a possible error from given code","unwrap":false,"args":[{"name":"code","rest":false,"type":"String","required":true,"description":"The code to safely execute"},{"name":"catch code","description":"The code to run in case of an error","rest":false,"type":"String"},{"name":"variable","description":"Variable to load the error message to","rest":false,"type":"String"}],"brackets":true,"category":"statement"},{"name":"$while","version":"1.0.3","description":"Executes code while a condition is true","unwrap":false,"brackets":true,"experimental":true,"args":[{"name":"condition","condition":true,"description":"The condition to validate","rest":false,"required":true,"type":"String"},{"name":"code","rest":false,"required":true,"type":"String","description":"The code to execute"}],"category":"statement"},{"name":"$addSticker","version":"1.0.0","description":"Adds a sticker to a guild, returns sticker id","unwrap":true,"output":["Sticker"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to add the sticker to","rest":false,"type":"Guild","required":true},{"name":"url","description":"The url or file path for this sticker","rest":false,"required":true,"type":"String"},{"name":"name","description":"The sticker name","rest":false,"type":"String","required":true},{"name":"tags","description":"The tags to use for this sticker","type":"String","required":true,"rest":false},{"name":"description","description":"The description for the sticker","rest":false,"type":"String"}],"category":"sticker"},{"name":"$deleteStickers","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given stickers, returns the count of stickers deleted","args":[{"name":"guild ID","description":"The guild to delete stickers from","rest":false,"required":true,"type":"Guild"},{"name":"stickers","description":"The stickers to delete","rest":true,"required":true,"pointer":0,"type":"String"}],"category":"sticker"},{"name":"$editSticker","version":"1.4.0","description":"Edits a sticker on a guild, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"name","description":"The new name for the sticker","rest":false,"type":"String"},{"name":"description","description":"The new description for the sticker","rest":false,"type":"String"},{"name":"tags","description":"The new tags for the sticker","rest":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerDescription","version":"1.4.0","description":"Sets a sticker's description, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"description","description":"The new description for the sticker","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerName","version":"1.4.0","description":"Sets a sticker's name, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"name","description":"The new name for the sticker","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerTags","version":"1.4.0","description":"Sets a sticker's tags, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"tags","description":"The new tags for the sticker","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$stickerAvailable","version":"1.4.0","description":"Returns whether a sticker is available","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get availability of","rest":false,"required":true,"type":"Sticker"}],"output":["Boolean"],"category":"sticker"},{"name":"$stickerCreatedAt","version":"1.4.0","description":"Returns a sticker's creation timestamp","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull timestamp of","rest":false,"required":true,"type":"Sticker"}],"output":["Number"],"category":"sticker"},{"name":"$stickerDescription","version":"1.4.0","description":"Returns a sticker's description","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull description of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerFormat","version":"1.4.0","description":"Returns a sticker's format","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get format of","rest":false,"required":true,"type":"Sticker"}],"output":["StickerFormatType"],"category":"sticker"},{"name":"$stickerGuildID","version":"1.4.0","description":"Returns a sticker's guild id","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull guild of","rest":false,"required":true,"type":"Sticker"}],"output":["Guild"],"category":"sticker"},{"name":"$stickerID","version":"1.4.0","description":"Returns the sticker id","unwrap":false,"output":["Sticker"],"category":"sticker"},{"name":"$stickerName","version":"1.4.0","description":"Returns a sticker name","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull name of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerOwnerID","version":"1.4.0","description":"Returns the user who added the sticker","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull owner of","rest":false,"required":true,"type":"Sticker"}],"output":["User"],"category":"sticker"},{"name":"$stickerPackID","version":"1.4.0","description":"Returns a sticker's pack id","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull pack of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerRawData","version":"1.5.0","description":"Returns the raw data of a sticker","unwrap":true,"brackets":false,"args":[{"name":"sticker ID","rest":false,"required":true,"description":"The sticker to get raw data from","type":"Sticker"}],"output":["Json"],"category":"sticker"},{"name":"$stickerSortValue","version":"1.4.0","description":"Returns a sticker's sort value","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get sort value of","rest":false,"required":true,"type":"Sticker"}],"output":["Number"],"category":"sticker"},{"name":"$stickerTags","version":"1.4.0","description":"Returns a sticker's tags","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull tags of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerType","version":"1.4.0","description":"Returns the sticker's type","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get type of","rest":false,"required":true,"type":"Sticker"}],"output":["StickerType"],"category":"sticker"},{"name":"$stickerURL","version":"2.3.0","description":"Returns a sticker url","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull url of","rest":false,"required":true,"type":"Sticker"}],"output":["URL"],"category":"sticker"},{"name":"$advancedReplace","version":"1.5.0","aliases":["$advancedReplaceText"],"output":["String"],"description":"Replaces text in a string multiple times","unwrap":true,"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match;replacement","description":"The text to match and their replacement","required":true,"rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$argCount","version":"1.0.0","description":"Counts the number of args in a message","aliases":["$argsCount"],"unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"text","description":"Text to count arguments","required":true,"rest":false,"type":"String"}],"category":"string"},{"name":"$charCodeAt","version":"1.0.6","description":"Returns the char code at given index","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"message","description":"The string to get char code of","rest":false,"required":true,"type":"String"},{"name":"index","description":"The index to get its char code","type":"Number","rest":false,"required":true}],"category":"string"},{"name":"$charCount","version":"1.0.0","aliases":["$textLength"],"description":"Gets the char count of a text","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"text","description":"The text to get its length","rest":false,"type":"String","required":true},{"name":"char","description":"The character to count in the text","rest":false,"type":"String"}],"category":"string"},{"name":"$checkContains","version":"1.0.0","aliases":["$includes"],"output":["Boolean"],"description":"Checks whether a string contains a set of other trings","unwrap":true,"args":[{"name":"text","description":"The text to check on","required":true,"rest":false,"type":"String"},{"name":"matches","description":"The list of strings to try match","rest":true,"type":"String","required":true}],"brackets":true,"category":"string"},{"name":"$cropArgs","version":"1.4.0","description":"Crops given args","brackets":true,"output":["String"],"args":[{"name":"args","description":"The args to crop","rest":false,"required":true,"type":"String"},{"name":"start index","description":"The start index to start cropping","rest":false,"required":true,"type":"Number"},{"name":"end index","description":"The end index to finish cropping","rest":false,"type":"Number"}],"unwrap":true,"category":"string"},{"name":"$cropText","version":"1.0.3","description":"Crops given text","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to crop","rest":false,"required":true,"type":"String"},{"name":"start index","description":"The start index to start cropping","rest":false,"required":true,"type":"Number"},{"name":"end index","description":"The end index to finish cropping","rest":false,"type":"Number"},{"name":"ending","description":"Add extra text to the end","rest":false,"type":"String"}],"unwrap":true,"category":"string"},{"name":"$endsWith","version":"1.0.0","description":"Checks whether given string ends with X string","unwrap":true,"output":["Boolean"],"args":[{"name":"string","description":"The string to check against","type":"String","rest":false,"required":true},{"name":"values","required":true,"description":"The values to match at the end","rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$fromCharCode","version":"1.0.6","description":"Returns the characters from given codes","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"codes","description":"The codes to get its char codes","type":"Number","rest":true,"required":true}],"category":"string"},{"name":"$padEnd","version":"1.0.6","description":"Pads a string at the end","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to pad at the end","rest":false,"required":true,"type":"String"},{"name":"max length","description":"The max length of the string","rest":false,"required":true,"type":"Number"},{"name":"filler","description":"The filler to use to pad","rest":false,"type":"String"}],"category":"string"},{"name":"$padStart","version":"1.0.6","description":"Pads a string at the start","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to pad at the start","rest":false,"required":true,"type":"String"},{"name":"max length","description":"The max length of the string","rest":false,"required":true,"type":"Number"},{"name":"filler","description":"The filler to use to pad","rest":false,"type":"String"}],"category":"string"},{"name":"$randomString","version":"1.2.0","description":"Creates a random string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"length","description":"The length of the random string","rest":false,"required":true,"type":"Number"},{"name":"characters","description":"The characters to use for this string","rest":false,"required":false,"type":"String"}],"category":"string"},{"name":"$randomText","version":"1.0.0","description":"Returns a random text (no cache)","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"texts","description":"The texts to use","rest":true,"required":true,"type":"String"}],"category":"string"},{"name":"$randomUUID","version":"1.2.0","description":"Returns a random uuid","unwrap":false,"output":["String"],"category":"string"},{"name":"$repeat","version":"1.1.0","aliases":["$repeatText"],"description":"Repeats given text for x times","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to repeat","type":"String","rest":false,"required":true},{"name":"amount","rest":false,"required":true,"type":"Number","description":"How many times to repeat this text"}],"category":"string"},{"name":"$replace","version":"1.0.0","aliases":["$replaceText"],"output":["String"],"description":"Replace text in a string","unwrap":true,"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match","description":"Text to match in base","rest":false,"required":true,"type":"String"},{"name":"new value","description":"The text to replace matches with","type":"String","rest":false,"required":true},{"name":"amount","description":"How many times to perform this replacement","rest":false,"type":"Number"}],"brackets":true,"category":"string"},{"name":"$replaceRegex","version":"1.0.0","description":"Replace text in a string using regex","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match","description":"Regex to match in base","rest":false,"required":true,"type":"String","pointer":2},{"name":"flags","description":"The flags to use for the regex","rest":false,"required":true,"type":"String"},{"name":"new value","description":"The text to replace matches with","type":"String","rest":false,"required":true},{"name":"amount","description":"How many times to perform this replacement","rest":false,"type":"Number"}],"brackets":true,"category":"string"},{"name":"$reverseText","version":"1.5.0","description":"Reverses given text","aliases":["$reverse"],"brackets":true,"unwrap":true,"args":[{"name":"string","description":"The string to use","rest":false,"required":true,"type":"String"}],"output":["String"],"category":"string"},{"name":"$sliceText","version":"1.3.0","description":"Slices given text","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to slice","rest":false,"required":true,"type":"String"},{"name":"start","description":"The start index","rest":false,"required":false,"type":"Number"},{"name":"end","description":"The end index","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"string"},{"name":"$snowflake","version":"1.4.0","description":"Generates a snowflake, this value will never clash","unwrap":false,"output":["String"],"category":"string"},{"name":"$startsWith","version":"1.0.0","description":"Checks whether given string starts with X string","unwrap":true,"output":["Boolean"],"args":[{"name":"string","description":"The string to check against","type":"String","rest":false,"required":true},{"name":"values","required":true,"description":"The values to match at the start","rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$toCamelCase","version":"1.0.6","description":"Converts a string to camel case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn camel case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toKebabCase","version":"1.0.6","description":"Converts a string to kebab case","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"message","description":"The string to turn kebab case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toLowerCase","version":"1.0.0","description":"Makes a string lowercase","unwrap":true,"output":["String"],"args":[{"name":"string","description":"The string to turn lowercase","type":"String","rest":true,"required":true}],"brackets":true,"category":"string"},{"name":"$toSnakeCase","version":"1.0.6","description":"Converts a string to snake case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn snake case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toTitleCase","version":"1.0.6","description":"Converts a string to title case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn title case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toUpperCase","version":"1.0.0","description":"Makes a string uppercase","unwrap":true,"output":["String"],"args":[{"name":"string","description":"The string to turn uppercase","type":"String","rest":true,"required":true}],"brackets":true,"category":"string"},{"name":"$trim","version":"1.0.6","aliases":["$trimSpace"],"description":"Trims a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimEnd","version":"1.0.6","description":"Trims at the end of a string","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"text","description":"The text to trim at the end","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimLines","version":"1.5.0","description":"Trims empty lines from a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim empty lines","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimStart","version":"1.0.6","description":"Trims at the start of a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim at the start","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$cpu","version":"1.0.0","description":"Returns the cpu usage of the host (not accurate)","aliases":["$cpuUsage"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$cpuArch","version":"1.0.7","output":["String"],"description":"Returns the cpu architecture","unwrap":false,"category":"system"},{"name":"$cpuCores","version":"1.0.7","output":["Number"],"description":"Returns the amount of cpu cores","unwrap":false,"category":"system"},{"name":"$cpuModel","version":"1.0.7","description":"Returns the cpu model","unwrap":false,"output":["String"],"category":"system"},{"name":"$cpuSpeed","version":"1.0.7","description":"Returns the cpu speed in MHz","unwrap":false,"output":["Number"],"category":"system"},{"name":"$networkCardIPs","version":"1.2.0","description":"Returns your network's card ips","unwrap":true,"output":["String[]"],"brackets":false,"args":[{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"system"},{"name":"$networkCardNames","version":"1.2.0","description":"Returns your network's card names","unwrap":true,"output":["String[]"],"brackets":false,"args":[{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"system"},{"name":"$nodeVersion","version":"1.0.0","description":"Returns the node version","unwrap":false,"output":["String"],"category":"system"},{"name":"$os","version":"1.0.7","description":"Returns the operating system name","unwrap":false,"output":["String"],"category":"system"},{"name":"$osUptime","version":"1.0.7","description":"Returns the operating system uptime (seconds)","unwrap":false,"output":["Number"],"category":"system"},{"name":"$ram","version":"1.0.0","description":"Returns the current ram usage in MB","aliases":["$memory","$ramUsage"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$ramTotal","version":"2.2.0","description":"Returns the maximum total ram capacity of the system in GB","aliases":["$memoryTotal","$maxRam"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$calendarDay","version":"1.5.0","description":"Returns the calendar day","unwrap":false,"output":["Number"],"category":"time"},{"name":"$calendarWeek","version":"1.5.0","description":"Returns the calendar week","unwrap":false,"output":["Number"],"category":"time"},{"name":"$clearInterval","version":"2.3.0","description":"Clears an active interval, returns bool","aliases":["$stopInterval"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The name of the interval","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"time"},{"name":"$clearTimeout","version":"2.3.0","description":"Clears an active timeout, returns bool","aliases":["$stopTimeout"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The name of the timeout","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"time"},{"name":"$day","version":"1.2.0","description":"Returns current day of month","aliases":["$dayOfMonth"],"unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the day","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["String"],"category":"time"},{"name":"$discordTimestamp","version":"1.4.0","description":"Creates a discord timestamp","unwrap":true,"brackets":true,"args":[{"name":"time","description":"The time to turn into timestamp","rest":false,"required":true,"type":"Time"},{"name":"style","rest":false,"required":true,"enum":["ShortTime","LongTime","ShortDate","LongDate","ShortDateTime","LongDateTime","RelativeTime"],"type":"Enum","description":"The timestamp style","enumName":"TimestampStyles"}],"output":["String"],"category":"time"},{"name":"$executionTime","version":"1.0.3","description":"Returns current execution time","unwrap":false,"output":["Number"],"category":"time"},{"name":"$getTimestamp","version":"1.0.0","description":"Gets the current timestamp","unwrap":false,"output":["Number"],"category":"time"},{"name":"$hour","version":"1.2.0","description":"Returns current hour","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the hour","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$minute","version":"1.2.0","description":"Returns current minute","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the minute","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$month","version":"1.2.0","description":"Returns current month","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the month","rest":false,"type":"Enum","enum":["Numeric","TwoDigit","Long","Short","Narrow"],"enumName":"ExtendedTimeFormat"}],"output":["String"],"category":"time"},{"name":"$parseDate","version":"1.0.2","description":"Parses valid ms to a date","brackets":true,"output":["Date"],"args":[{"name":"ms","description":"The ms to convert to date","rest":false,"type":"Number","required":true},{"name":"type","description":"The date type","enum":["LocaleDate","LocaleTime","Locale","Date","ISO","UTC","Time"],"rest":false,"required":true,"type":"Enum","enumName":"DateType"}],"unwrap":true,"category":"time"},{"name":"$parseDigital","version":"1.5.0","description":"Parses given ms to digital format","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"ms","description":"The ms to convert to digital format","rest":false,"type":"Number","required":true}],"category":"time"},{"name":"$parseMS","version":"1.0.2","description":"Parses valid ms to duration","brackets":true,"output":["String"],"args":[{"name":"ms","description":"The ms to convert to string","rest":false,"type":"Number","required":true},{"name":"limit","description":"Limit of units to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use for every unit","rest":false,"type":"String"},{"name":"and","rest":false,"description":"Whether to use and word for last unit","type":"Boolean"}],"unwrap":true,"category":"time"},{"name":"$parseString","version":"1.0.2","description":"Parses valid duration string to ms","brackets":true,"output":["Number"],"args":[{"name":"duration","description":"The valid string to convert to ms","rest":false,"type":"String","required":true}],"unwrap":true,"category":"time"},{"name":"$second","version":"1.2.0","description":"Returns current second","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the second","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$setCalendar","version":"1.5.0","aliases":["$calendar"],"description":"Sets the calendar for time functions","unwrap":true,"brackets":true,"args":[{"name":"type","description":"The calendar type to use","rest":false,"type":"Enum","enum":["Buddhist","Chinese","Coptic","Dangi","Ethioaa","Ethiopic","Gregory","Hebrew","Indian","Islamic","IslamicUmalqura","IslamicTbla","IslamicCivil","IslamicRgsa","Iso8601","Japanese","Persian","Roc"],"required":true,"enumName":"CalendarType"}],"category":"time"},{"name":"$setInterval","version":"1.0.2","description":"Executes code after given duration until canceled","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"time","description":"How long to wait for before running this code","rest":false,"type":"Time"},{"name":"name","description":"The name for this interval","rest":false,"type":"String"}],"category":"time"},{"name":"$setTimeout","version":"1.0.2","description":"Executes code after given duration","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"time","description":"How long to wait for before running this code","rest":false,"type":"Time"},{"name":"name","description":"The name for this timeout","rest":false,"type":"String"}],"category":"time"},{"name":"$setTimezone","version":"1.5.0","aliases":["$timezone"],"description":"Sets the timezone for time functions","unwrap":true,"brackets":true,"args":[{"name":"timezone","description":"The timezone to set","rest":false,"type":"String","required":true}],"category":"time"},{"name":"$unparseDate","version":"1.2.0","description":"Unparses given date to ms","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"date","description":"The date to get its ms","type":"Date","rest":false,"required":true}],"category":"time"},{"name":"$unparseDigital","version":"1.5.0","description":"Unparses given digital format to ms","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"digital","description":"The digital format to convert to ms","rest":false,"type":"String","required":true}],"category":"time"},{"name":"$wait","version":"1.0.0","description":"Delays the code below for x milliseconds","brackets":true,"unwrap":true,"args":[{"name":"duration","description":"The duration to wait for","rest":false,"type":"Time","required":true}],"category":"time"},{"name":"$week","version":"1.5.0","description":"Returns current week of month","unwrap":false,"output":["Number"],"category":"time"},{"name":"$weekday","version":"2.3.0","description":"Returns current day of week","aliases":["$dayOfWeek"],"unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the day","rest":false,"type":"Enum","enum":["Numeric","TwoDigit","Long","Short","Narrow"],"enumName":"ExtendedTimeFormat"}],"output":["String"],"category":"time"},{"name":"$year","version":"1.2.0","description":"Returns current year","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the year","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$api","version":"1.5.0","description":"Sends a discord api request, using a discord-api-types route","unwrap":true,"aliases":["$discordAPI"],"args":[{"name":"route name","description":"Route name, like so `channel`","type":"String","rest":false},{"name":"route method","description":"Route method, like so `get`","type":"String","rest":false,"required":true},{"name":"route params;body","description":"Parameters for this route, body has to be json","rest":true,"required":true,"type":"String"}],"output":["Unknown"],"brackets":true,"category":"unsafe"},{"name":"$coroutine","version":"1.2.0","description":"Runs given code in a separate thread","experimental":true,"unwrap":false,"args":[{"name":"code","description":"The code to run","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"unsafe"},{"name":"$djsEval","version":"1.0.0","aliases":["$js"],"description":"Evaluates JavaScript code","unwrap":true,"output":["Unknown"],"args":[{"name":"code","description":"The code to eval","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"unsafe"},{"name":"$eval","version":"1.0.0","description":"Evaluates given code","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"code","type":"String","rest":false,"required":true,"description":"The code to eval"},{"name":"send","type":"Boolean","rest":false,"description":"Whether to send as new message"}],"category":"unsafe"},{"name":"$exec","version":"1.0.0","brackets":true,"description":"Runs a command in console","unwrap":true,"output":["Unknown"],"args":[{"name":"command","description":"The command to execute","rest":false,"type":"String","required":true}],"category":"unsafe"},{"name":"$function","version":"1.0.0","description":"Runs a function","unwrap":false,"experimental":true,"output":["Unknown"],"args":[{"name":"code","description":"Code to execute","required":true,"type":"String","rest":true}],"brackets":true,"category":"unsafe"},{"name":"$gc","version":"1.5.0","description":"Triggers JavaScript's garbage collector, only available if passed --expose-gc flag to node","unwrap":false,"output":["Boolean"],"category":"unsafe"},{"name":"$instanceName","version":"1.4.0","aliases":["$instance","$contextInstance"],"description":"Returns the context's instance name","output":["String"],"unwrap":false,"category":"unsafe"},{"name":"$loadChannelContext","version":"1.4.0","aliases":["$useChannelContext","$asChannelContext"],"brackets":true,"description":"Loads a channel instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"channel ID","description":"The channel to adapt context with","rest":false,"required":true,"type":"Channel"}],"category":"unsafe"},{"name":"$loadGuildContext","version":"1.4.0","aliases":["$useGuildContext","$asGuildContext"],"brackets":true,"description":"Loads a guild instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"guild ID","description":"The guild to adapt context with","rest":false,"required":true,"type":"Guild"}],"category":"unsafe"},{"name":"$loadMemberContext","version":"1.4.0","aliases":["$useMemberContext","$asMemberContext"],"description":"Loads a member instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"member ID","description":"The member to adapt context with","rest":false,"required":true,"type":"Member","pointer":0}],"category":"unsafe"},{"name":"$loadMessageContext","version":"1.4.0","aliases":["$useMessageContext","$asMessageContext"],"description":"Loads a message instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to adapt context with","rest":false,"required":true,"type":"Message","pointer":0}],"category":"unsafe"},{"name":"$loadRoleContext","version":"1.4.0","aliases":["$useRoleContext","$asRoleContext"],"description":"Loads a role instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to adapt context with","rest":false,"required":true,"type":"Role","pointer":0}],"category":"unsafe"},{"name":"$loadStickerContext","version":"1.4.0","aliases":["$useStickerContext","$asStickerContext"],"brackets":true,"description":"Loads a sticker instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to adapt context with","rest":false,"required":true,"type":"Sticker"}],"category":"unsafe"},{"name":"$loadUserContext","version":"1.4.0","aliases":["$useUserContext","$asUserContext"],"brackets":true,"description":"Loads a user instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"user ID","description":"The user to adapt context with","rest":false,"required":true,"type":"User"}],"category":"unsafe"},{"name":"$authorID","version":"1.0.0","aliases":["$userID"],"description":"Retrieves a user's id","unwrap":false,"output":["User"],"category":"user"},{"name":"$discriminator","version":"1.4.0","description":"Returns the user discriminator","brackets":false,"unwrap":true,"args":[{"name":"user ID","description":"The user to get its discriminator","rest":false,"required":true,"type":"User"}],"output":["String"],"category":"user"},{"name":"$isBot","version":"1.0.0","description":"Whether the user is a bot","unwrap":true,"output":["Boolean"],"args":[{"name":"user ID","description":"The user to check whether its a bot","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$isBotVerified","version":"1.0.0","description":"Whether the bot is verified","unwrap":true,"output":["Boolean"],"args":[{"name":"user ID","description":"The bot to check whether its verified","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$isUserDMEnabled","version":"1.2.0","description":"Checks whether the given user can be DMed","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"user","description":"The user to test DMs","rest":false,"required":true,"type":"User"}],"category":"user"},{"name":"$randomUserID","version":"1.0.3","description":"Returns a random user ID","unwrap":false,"output":["User"],"category":"user"},{"name":"$sendDM","version":"1.0.0","description":"Sends a dm to the user","unwrap":true,"brackets":true,"output":["Message"],"args":[{"name":"user ID","description":"The user to dm","rest":false,"type":"User","required":true},{"name":"content","description":"The content to send","rest":false,"type":"String"},{"name":"return message ID","description":"Returns the message id of the newly created message","rest":false,"type":"Boolean"}],"category":"user"},{"name":"$userAccentColor","version":"1.0.0","description":"Returns the user accent color","brackets":false,"output":["Color"],"args":[{"name":"user ID","description":"The user to retrieve the accent color","rest":false,"required":true,"type":"User"}],"unwrap":true,"category":"user"},{"name":"$userAvatar","version":"1.0.0","description":"Returns the user avatar","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the avatar","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userAvatarDecoration","version":"1.0.0","description":"Returns the user decoration","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the decoration","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userBadges","version":"1.0.0","description":"Returns the public badges of a user","aliases":["$userFlags"],"unwrap":true,"output":["UserFlags[]"],"args":[{"name":"user ID","description":"The user to return its badges","required":true,"rest":false,"type":"User"},{"name":"separator","description":"The separator to use for every badge","rest":false,"type":"String"}],"brackets":false,"category":"user"},{"name":"$userBanner","version":"1.0.0","description":"Returns the user banner","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the banner","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userCount","version":"1.0.0","description":"Returns the user count of the bot","unwrap":false,"output":["Number"],"category":"user"},{"name":"$userCreatedAt","version":"1.0.2","description":"Returns the timestamp this user created their account","unwrap":true,"output":["Number"],"args":[{"name":"user ID","description":"The user to return its creation date","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userDefaultAvatar","version":"1.5.0","description":"Returns the default user avatar","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the default avatar","rest":false,"required":true,"type":"User"}],"unwrap":true,"category":"user"},{"name":"$userDisplayName","version":"1.0.0","description":"Returns the display name of a user","unwrap":true,"output":["String"],"args":[{"name":"user ID","description":"The user to return its display name","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userExists","version":"1.0.0","description":"Returns whether a user id exists","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"user ID","description":"The user to check","rest":false,"required":true,"type":"String"}],"category":"user"},{"name":"$userGlobalName","version":"1.0.0","description":"Returns the global name of a user","unwrap":true,"output":["String"],"args":[{"name":"user ID","description":"The user to return its global name","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userGuildBadge","version":"2.5.0","description":"Returns the primary guild tag badge of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"category":"user"},{"name":"$userGuildEnabled","version":"2.5.0","description":"Returns whether the primary guild of a user is enabled","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["Boolean"],"category":"user"},{"name":"$userGuildID","version":"2.5.0","description":"Returns the primary guild id of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["Guild"],"category":"user"},{"name":"$userGuildTag","version":"2.5.0","description":"Returns the primary guild tag name of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["String"],"category":"user"},{"name":"$userIDs","version":"1.4.0","description":"Returns all the users that are currently cached","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"category":"user"},{"name":"$userRawData","version":"1.5.0","description":"Returns the raw data of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get raw data from","rest":false,"type":"User","required":true}],"output":["Json"],"category":"user"},{"name":"$userReferenceID","version":"1.5.0","description":"Returns the id of the user this message replies to","unwrap":true,"output":["User"],"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its reference user","rest":false,"type":"Message","pointer":0,"required":true}],"brackets":false,"category":"user"},{"name":"$userTag","version":"1.4.0","description":"Returns the user tag","brackets":false,"unwrap":true,"args":[{"name":"user ID","description":"The user to get its tag","rest":false,"required":true,"type":"User"}],"output":["String"],"category":"user"},{"name":"$username","version":"1.0.0","description":"Retrieves a user's username","brackets":false,"output":["String"],"args":[{"name":"id","description":"The user id to get the username of","type":"User","rest":false}],"unwrap":true,"category":"user"},{"name":"$delete","version":"1.0.0","description":"Deletes a keyword","unwrap":true,"output":["Boolean"],"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true}],"brackets":true,"category":"variable"},{"name":"$env","version":"1.0.0","aliases":["$jsonDump"],"output":["Unknown"],"description":"Retrieves an environment value","args":[{"name":"key","description":"The key to return its value","required":true,"type":"String","rest":true}],"brackets":true,"unwrap":true,"category":"variable"},{"name":"$get","version":"1.0.0","output":["Unknown"],"description":"Get a keyword value","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true}],"brackets":true,"category":"variable"},{"name":"$has","version":"1.0.0","description":"Checks whether a keyword exists","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"name","description":"The name of the keyword","rest":false,"type":"String","required":true}],"category":"variable"},{"name":"$let","version":"1.0.0","description":"Create a keyword","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The key value","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"variable"},{"name":"$letDivide","version":"1.3.0","description":"Short-hand for $let[...;$divide[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to divide with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letMulti","version":"1.3.0","description":"Short-hand for $let[...;$multi[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to multiply with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letSub","version":"1.3.0","description":"Short-hand for $let[...;$sub[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to sub with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letSum","version":"1.3.0","description":"Short-hand for $let[...;$sum[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to sum with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$webhookCreate","version":"1.0.0","description":"Creates a webhook in a channel, returns the webhook id","brackets":true,"unwrap":true,"output":["Webhook"],"args":[{"name":"channel ID","description":"The channel to create the webhook","type":"Channel","rest":false,"required":true},{"name":"name","description":"The webhook name","rest":false,"required":true,"type":"String"},{"name":"url","description":"The avatar url","rest":false,"type":"String"}],"category":"webhook"},{"name":"$webhookDelete","version":"1.0.0","description":"Deletes webhook with given id","brackets":true,"unwrap":true,"args":[{"name":"id","description":"The webhook id","rest":false,"type":"Webhook","required":true}],"category":"webhook"},{"name":"$webhookEdit","version":"1.0.0","description":"Edits webhook with given id, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"id","description":"The webhook id","rest":false,"type":"Webhook","required":true},{"name":"name","description":"The new name for the webhook","rest":false,"type":"String"},{"name":"url","description":"The new avatar for the webhook","rest":false,"type":"String"}],"category":"webhook"},{"name":"$webhookEditMessage","version":"1.5.0","description":"Edits a webhook message, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"url","description":"The webhook url","rest":false,"required":true,"type":"String"},{"name":"message ID","description":"The message to edit","rest":false,"required":true,"type":"String"},{"name":"content","description":"The new content for the message","rest":false,"type":"String"},{"name":"thread ID","description":"The thread this message belongs to","rest":false,"type":"Channel"}],"category":"webhook"},{"name":"$webhookExists","version":"1.0.0","description":"Checks whether given webhook id eixsts","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"id","description":"The webhook id","rest":false,"type":"String","required":true}],"category":"webhook"},{"name":"$webhookIsUserCreated","version":"2.3.0","description":"Checks whether given webhook is user created","brackets":true,"unwrap":true,"args":[{"name":"id","description":"The webhook id","rest":false,"type":"Webhook","required":true}],"output":["Boolean"],"category":"webhook"},{"name":"$webhookSend","version":"1.0.0","description":"Sends a message with a webhook","brackets":true,"unwrap":true,"output":["Message"],"args":[{"name":"url","description":"The webhook url","rest":false,"required":true,"type":"String"},{"name":"content","description":"The content for the message","rest":false,"type":"String"},{"name":"return message ID","description":"Return the message id of the sent message","rest":false,"type":"Boolean"},{"name":"username","description":"The username for the message","rest":false,"type":"String"},{"name":"avatar","description":"The avatar for the message","rest":false,"type":"String"},{"name":"thread ID","description":"The thread to send message to","rest":false,"type":"Channel"},{"name":"post name","description":"The name for the created forum post","rest":false,"type":"String"},{"name":"tags","description":"The tags for the created forum post","rest":true,"type":"String"}],"category":"webhook"},{"name":"$webhookToken","version":"1.0.0","description":"Gets webhook token of given id","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"id","description":"The webhook id","rest":false,"type":"String","required":true}],"category":"webhook"},{"name":"$webhookType","version":"2.3.0","description":"Returns the type of a webhook","brackets":true,"unwrap":true,"args":[{"name":"id","description":"The webhook id","rest":false,"type":"Webhook","required":true}],"output":["WebhookType"],"category":"webhook"},{"name":"$webhookURL","version":"1.0.0","description":"Gets webhook url with given id","brackets":true,"output":["URL"],"unwrap":true,"args":[{"name":"id","description":"The webhook id","rest":false,"type":"String","required":true}],"category":"webhook"},{"name":"$ws","version":"1.5.0","description":"Creates a WebSocket connection to a server","aliases":["$websocket"],"brackets":true,"unwrap":true,"args":[{"name":"host","description":"The WS host, formatted as wss://hostname:port","rest":false,"required":true,"type":"String"}],"output":["Number"],"category":"websocket"},{"name":"$wsClose","version":"1.5.0","description":"Closes a websocket connection and removes all listeners of it","aliases":["$websocketClose"],"brackets":true,"unwrap":true,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"code","description":"The status code to send","rest":false,"type":"Number"}],"category":"websocket"},{"name":"$wsOn","version":"1.5.0","description":"Attach a listener to a websocket","unwrap":false,"aliases":["$websocketOn"],"brackets":true,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"listener name","description":"The name of the event to listen to","rest":false,"required":true,"type":"String"},{"name":"callback","description":"The code to execute every time this event is fired","rest":false,"required":true,"type":"String"},{"name":"params","description":"The arguments that will contain the data of the event that was sent","rest":true,"required":true,"type":"String"}],"category":"websocket"},{"name":"$wsSend","version":"1.5.0","description":"Sends a websocket message","aliases":["$websocketSend"],"brackets":true,"unwrap":false,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"value","description":"The json value to send over","rest":false,"required":true,"type":"Json"},{"name":"callback","description":"Code to execute on completion of request","rest":false,"type":"String"},{"name":"variable name","description":"Variable to store error on if callback was called for an error","rest":false,"required":false,"type":"String"}],"category":"websocket"},{"name":"$wsState","version":"1.5.0","output":["ConnectionState"],"description":"Returns a websocket's connection state","unwrap":true,"brackets":true,"args":[{"name":"websocket ID","description":"The websocket to get its state","rest":false,"required":true,"type":"Number"}],"category":"websocket"}] \ No newline at end of file +[{"name":"$advancedTextSplit","version":"1.4.0","description":"Split and get all at the same time multiple times","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to use","rest":false,"required":true,"type":"String"},{"name":"split;index","rest":true,"type":"String","required":true,"description":"The split followed by the index to get"}],"output":["String"],"category":"array"},{"name":"$arrayAdvancedSort","version":"1.4.0","description":"Advanced array sort","unwrap":false,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"var1","description":"The $env variable 1 to hold x value","rest":false,"type":"String","required":true},{"name":"var2","description":"The $env variable 2 to hold y value","rest":false,"type":"String","required":true},{"name":"code","description":"Optional code to use for sorting, previous 2 vars must have been given","rest":false,"type":"String","required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"output":["Json"],"category":"array"},{"name":"$arrayAt","version":"1.0.0","description":"Returns the element at given index","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"index","type":"Number","description":"The index to get the element of","rest":false,"required":true}],"output":["Unknown"],"category":"array"},{"name":"$arrayClear","version":"1.0.0","description":"Clears all elements from an array","unwrap":true,"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayConcat","version":"1.0.0","description":"Concat arrays and load them into another variable","unwrap":true,"args":[{"name":"variable","description":"The variable to load the result to, leave empty to return output","rest":false,"required":false,"type":"String"},{"name":"variables","description":"The variable names to concat","rest":true,"type":"String","required":true}],"output":["Json"],"brackets":true,"category":"array"},{"name":"$arrayCreate","version":"1.4.0","aliases":["$arrayNew","$arrayInit"],"brackets":true,"description":"Initializes an array and loads it to a variable","args":[{"name":"variable","description":"The variable to load it to, accessed with $env","type":"String","rest":false,"required":true},{"name":"length","description":"The default length of the array, defaults to 0","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"array"},{"name":"$arrayEvery","version":"1.0.0","description":"Loops through every element of the array with a condition that must pass every element","unwrap":false,"experimental":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"brackets":true,"category":"array"},{"name":"$arrayFill","version":"1.4.0","brackets":true,"description":"Fills an array with given value","args":[{"name":"variable","description":"The variable to load array from","type":"String","rest":false,"required":true},{"name":"value","description":"The value to fill the array with","rest":false,"required":true,"type":"Json"}],"unwrap":true,"category":"array"},{"name":"$arrayFindIndex","version":"1.0.0","description":"Finds the index of a first found element in the array","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayFindLastIndex","version":"1.5.0","description":"Finds the index of a last found element in the array","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayForEach","version":"1.0.0","description":"Loops through every element of the array","unwrap":false,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayIncludes","version":"1.0.0","description":"Checks whether a value exists in an array","unwrap":true,"output":["Boolean"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"value","description":"The value to check for","rest":false,"type":"String","required":true}],"brackets":true,"category":"array"},{"name":"$arrayIndexOf","version":"1.0.0","description":"Gets the index of a first found element in the array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"value","description":"The exact value to get its index","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayJoin","version":"1.0.0","description":"Joins all elements from an array with given separator","unwrap":true,"output":["Unknown[]"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every element","rest":false,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLastIndexOf","version":"1.5.0","description":"Gets the index of a last found element in the array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"value","description":"The exact value to get its last index","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLength","version":"1.0.0","description":"Returns the numbers of elements in an array","unwrap":true,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayLoad","version":"1.0.0","description":"Loads an array to an environment variable","args":[{"name":"variable","description":"The variable name to load this array to","required":true,"rest":false,"type":"String"},{"name":"separator","description":"The separator to use for the array elements","rest":false,"type":"String","required":false},{"name":"values","description":"The elements of the array","rest":true,"type":"String"}],"unwrap":true,"brackets":true,"category":"array"},{"name":"$arrayMap","version":"1.0.0","description":"Maps through every element of the array and loads the results to another array","unwrap":false,"output":["Json"],"experimental":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The other variable to load the result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPop","version":"1.0.0","description":"Deletes the last element of the array and returns it","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPush","version":"1.0.0","description":"Appends an element to an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the end of the array","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayPushJSON","version":"1.3.0","description":"Appends an element to an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the end of the array","rest":true,"required":true,"type":"Json"}],"brackets":true,"category":"array"},{"name":"$arrayRandomIndex","version":"1.4.0","description":"Returns a random index","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arrayRandomValue","version":"1.4.0","description":"Returns a random element","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arrayReduce","version":"1.0.0","description":"Reduces an array of elements and returns the result","unwrap":false,"output":["Number"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The other variable to load the second element to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element, must return a number","rest":false,"required":true,"type":"String"},{"name":"default value","description":"The default value, defaults to 0","rest":false,"type":"Number"}],"experimental":true,"brackets":true,"category":"array"},{"name":"$arrayReverse","version":"1.0.0","description":"Reverses an array and loads it to another variable","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable where the array is held","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The variable to load the result to, leave empty to return output","rest":false,"type":"String","required":false}],"output":["Json"],"category":"array"},{"name":"$arrayShift","version":"1.0.0","description":"Deletes the first element of the array and returns it","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayShuffle","version":"1.4.0","description":"Shuffles given array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true}],"category":"array"},{"name":"$arraySlice","version":"1.0.0","description":"Slices an array and loads it to another variable","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable where the array is held","rest":false,"required":true,"type":"String"},{"name":"other variable","description":"The variable to load the result to, leave empty to return output","rest":false,"type":"String","required":false},{"name":"start","description":"The start index to slice","rest":false,"required":true,"type":"Number"},{"name":"end","description":"The end index to slice","rest":false,"type":"Number"}],"output":["Json"],"category":"array"},{"name":"$arraySome","version":"1.0.0","description":"Loops through every element of the array to find a match","unwrap":false,"output":["Boolean"],"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"variable","description":"The variable to load the element value to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to execute for every element","rest":false,"condition":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arraySort","version":"1.2.0","description":"Sorts given array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"},{"name":"sort type","description":"The sort type, omit to use default sort order","rest":false,"type":"Enum","enum":["asc","desc"],"enumName":"SortType"}],"output":["Json"],"category":"array"},{"name":"$arraySplice","version":"1.0.0","description":"Removes x elements starting from y index, returns deleted elements","unwrap":true,"output":["Json"],"args":[{"name":"variable","description":"The variable the array is held on","rest":false,"required":true,"type":"String"},{"name":"index","description":"The start index","rest":false,"required":true,"type":"Number"},{"name":"delete count","description":"The number of items to delete","required":true,"rest":false,"type":"Number"},{"name":"elements","description":"The elements to insert in the deleted indexes","rest":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayUnique","version":"2.5.0","description":"Removes duplicate elements from the array","unwrap":true,"brackets":true,"args":[{"name":"variable","description":"The variable the array is held on","type":"String","rest":false,"required":true},{"name":"other variable","description":"The variable to load result to, leave empty to return output","rest":false,"required":false,"type":"String"}],"output":["Json"],"category":"array"},{"name":"$arrayUnload","version":"1.0.0","description":"Unloads an array from an environment variable","args":[{"name":"variable","description":"The variable name to unload this array from","required":true,"rest":false,"type":"String"}],"unwrap":true,"brackets":true,"category":"array"},{"name":"$arrayUnshift","version":"1.0.0","description":"Adds elements to the beginning of an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the start of the array","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"array"},{"name":"$arrayUnshiftJSON","version":"1.3.0","description":"Adds elements to the beginning of an array","unwrap":true,"args":[{"name":"name","description":"The variable that holds the array","rest":false,"required":true,"type":"String"},{"name":"values","description":"The values to append at the start of the array","rest":true,"required":true,"type":"Json"}],"brackets":true,"category":"array"},{"name":"$getSplitTextLength","version":"1.4.0","description":"Gets count of elements from $textSplit","aliases":["$getTextSplitLength"],"output":["Number"],"unwrap":false,"category":"array"},{"name":"$getTextSplitIndex","version":"2.5.0","description":"Gets the index of a textSplit element","aliases":["$getSplitTextIndex"],"brackets":true,"unwrap":true,"args":[{"name":"element","description":"The element to get index of","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$segmentTextSplit","version":"1.5.0","description":"Creates an array on given text using segmenter","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to split","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$splitText","version":"1.2.0","description":"Gets element of textSplit","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"index","description":"The index to get split at","rest":false,"required":true,"type":"Number"}],"category":"array"},{"name":"$splitTextJoin","version":"1.4.0","description":"Joins all elements from array with given separator","unwrap":true,"aliases":["$textSplitJoin"],"output":["Unknown[]"],"args":[{"name":"separator","description":"The separator to use for every element","rest":false,"type":"String","required":true}],"brackets":true,"category":"array"},{"name":"$textSplit","version":"1.2.0","description":"Creates an array on given text with a separator","brackets":true,"unwrap":true,"args":[{"name":"text","description":"The text to split","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"array"},{"name":"$fetchAuditLog","version":"1.4.0","description":"Fetches an audit log using the type of it","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"property","description":"The property to pull from the audit log","rest":false,"required":true,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"enumName":"AuditProperty"},{"name":"index","description":"The index of the entry to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use in case of array output","type":"String","rest":false}],"category":"audit"},{"name":"$fetchAuditLogCount","version":"1.4.0","description":"Fetches audit log count using the type of it","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"user","rest":false,"description":"The user to filter by","type":"User"}],"category":"audit"},{"name":"$fetchUserAuditLog","version":"1.4.0","description":"Fetches an audit log from a user using the type of it","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"guild ID","description":"The guild to get audit log from","rest":false,"required":true,"type":"Guild"},{"name":"user","rest":false,"description":"The user to filter by","type":"User"},{"name":"type","description":"The event type of the log","rest":false,"required":true,"type":"Enum","enum":["GuildUpdate","ChannelCreate","ChannelUpdate","ChannelDelete","ChannelOverwriteCreate","ChannelOverwriteUpdate","ChannelOverwriteDelete","MemberKick","MemberPrune","MemberBanAdd","MemberBanRemove","MemberUpdate","MemberRoleUpdate","MemberMove","MemberDisconnect","BotAdd","RoleCreate","RoleUpdate","RoleDelete","InviteCreate","InviteUpdate","InviteDelete","WebhookCreate","WebhookUpdate","WebhookDelete","EmojiCreate","EmojiUpdate","EmojiDelete","MessageDelete","MessageBulkDelete","MessagePin","MessageUnpin","IntegrationCreate","IntegrationUpdate","IntegrationDelete","StageInstanceCreate","StageInstanceUpdate","StageInstanceDelete","StickerCreate","StickerUpdate","StickerDelete","GuildScheduledEventCreate","GuildScheduledEventUpdate","GuildScheduledEventDelete","ThreadCreate","ThreadUpdate","ThreadDelete","ApplicationCommandPermissionUpdate","SoundboardSoundCreate","SoundboardSoundUpdate","SoundboardSoundDelete","AutoModerationRuleCreate","AutoModerationRuleUpdate","AutoModerationRuleDelete","AutoModerationBlockMessage","AutoModerationFlagToChannel","AutoModerationUserCommunicationDisabled","AutoModerationQuarantineUser","CreatorMonetizationRequestCreated","CreatorMonetizationTermsAccepted","OnboardingPromptCreate","OnboardingPromptUpdate","OnboardingPromptDelete","OnboardingCreate","OnboardingUpdate","HomeSettingsCreate","HomeSettingsUpdate"],"enumName":"AuditLogEvent"},{"name":"property","description":"The property to pull from the audit log","rest":false,"required":true,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"enumName":"AuditProperty"},{"name":"index","description":"The index of the entry to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use in case of array output","type":"String","rest":false}],"category":"audit"},{"name":"$setAuditLogReason","version":"2.5.0","description":"Sets the reason for audit log entries","brackets":true,"unwrap":true,"args":[{"name":"reason","description":"The reason to set","rest":false,"required":true,"type":"String"}],"category":"audit"},{"name":"$automodActionType","version":"1.2.0","description":"Returns the action type automod used","unwrap":false,"output":["AutoModerationActionType"],"category":"automod"},{"name":"$automodAlertSystemMessageID","version":"1.2.0","description":"Returns the message sent by automod","unwrap":false,"output":["Message"],"category":"automod"},{"name":"$automodChannelID","version":"1.2.0","description":"Returns the channel id for automod","unwrap":false,"output":["Channel"],"category":"automod"},{"name":"$automodContent","version":"1.2.0","description":"Returns the content automod acted upon","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodCustomMessage","version":"1.2.0","description":"Returns the custom message used by automod on this detection","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodDuration","version":"1.2.0","description":"Returns the duration in ms by this automod action","unwrap":false,"output":["Number"],"category":"automod"},{"name":"$automodMatchedContent","version":"1.2.0","description":"Returns the matched content automod acted upon","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodMatchedKeyword","version":"1.2.0","description":"Returns the matched keyword the automod caught","unwrap":false,"output":["String"],"category":"automod"},{"name":"$automodRuleID","version":"1.2.0","description":"Returns the rule id used by automod","unwrap":false,"output":["AutomodRule"],"category":"automod"},{"name":"$automodRuleTriggerType","version":"1.2.0","description":"Returns the rule trigger type used by automod","unwrap":false,"output":["AutoModerationRuleTriggerType"],"category":"automod"},{"name":"$createAutomodRule","version":"1.5.0","description":"Creates a new automod rule for a guild, returns rule id","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to create automod rule on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name of the automod rule","rest":false,"required":true,"type":"String"},{"name":"trigger","description":"The trigger type of the automod rule","rest":false,"required":true,"type":"Enum","enum":["Keyword","Spam","KeywordPreset","MentionSpam","MemberProfile"],"enumName":"AutoModerationRuleTriggerType"},{"name":"event","description":"The event type of the automod rule","rest":false,"required":true,"type":"Enum","enum":["MessageSend","MemberUpdate"],"enumName":"AutoModerationRuleEventType"},{"name":"enabled","description":"Whether the automod rule should be enabled","rest":false,"required":false,"type":"Boolean"},{"name":"reason","description":"The reason for creating the automod rule","rest":false,"required":false,"type":"String"}],"output":["AutomodRule"],"category":"automod"},{"name":"$deleteAutomodRule","version":"1.5.0","description":"Deletes an automod rule from a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to delete automod rule from","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The automod rule to delete","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"reason","description":"The reason for deleting the rule","rest":false,"type":"String"}],"output":["Boolean"],"category":"automod"},{"name":"$editAutomodRule","version":"1.5.0","description":"Edits an automod rule on a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to edit automod rule on","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The automod rule to edit","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"name","description":"The new name for the automod rule","rest":false,"type":"String"},{"name":"event","description":"The new event type for the automod rule","rest":false,"type":"Enum","enum":["MessageSend","MemberUpdate"],"enumName":"AutoModerationRuleEventType"},{"name":"enabled","description":"Whether the automod rule should be enabled","rest":false,"required":false,"type":"Boolean"},{"name":"reason","description":"The reason for editing the automod rule","rest":false,"required":false,"type":"String"}],"output":["Boolean"],"category":"automod"},{"name":"$getAutomodRule","version":"1.5.0","description":"Returns an automod rule of a guild","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to get automod rule from","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The automod rule to get","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"property","description":"The property of the automod rule to return","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown"],"category":"automod"},{"name":"$getAutomodRuleActions","version":"2.6.0","description":"Returns the actions of an automod rule from a guild","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to get automod rule from","rest":false,"required":true,"type":"Guild"},{"name":"rule ID","description":"The automod rule to get its actions","rest":false,"required":true,"type":"AutomodRule","pointer":0},{"name":"property","description":"The property of each action to return","rest":false,"type":"Enum","enum":["type","channelID","durationSeconds","customMessage"],"enumName":"AutomodRuleActionProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"automod"},{"name":"$setAutomodAction","version":"1.5.0","description":"Sets a new action for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"type","description":"The type of the automod rule action","rest":false,"required":true,"type":"Enum","enum":["BlockMessage","SendAlertMessage","Timeout","BlockMemberInteraction"],"enumName":"AutoModerationActionType"},{"name":"channel ID","description":"The channel to which content will be logged","rest":false,"type":"Channel"},{"name":"duration","description":"The timeout duration in seconds","rest":false,"type":"Number"},{"name":"message","description":"The custom message that is shown whenever a message is blocked","rest":false,"type":"String"}],"category":"automod"},{"name":"$setAutomodAllowList","version":"1.5.0","description":"Sets allowed words for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"words","description":"The words to allow and whitelist","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodExemptChannels","version":"1.5.0","description":"Sets exempt channels for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"channels","description":"The channels that should not be affected by the automod rule","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodExemptRoles","version":"1.5.0","description":"Sets exempt roles for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"roles","description":"The roles that should not be affected by the automod rule","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodKeywordFilter","version":"1.5.0","description":"Sets disallowed words for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"words","description":"The words to disallow and blacklist","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$setAutomodMentionRaidProtection","version":"1.5.0","description":"Sets mention raid protection for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"enabled","description":"Whether to enable mention raid protection","rest":false,"required":true,"type":"Boolean"}],"category":"automod"},{"name":"$setAutomodMentionTotalLimit","version":"1.5.0","description":"Sets a total mention limit for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"limit","description":"The limit of mentions to set","rest":false,"required":true,"type":"Number"}],"category":"automod"},{"name":"$setAutomodPresets","version":"1.5.0","description":"Sets preset keyword wordsets for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"presets","description":"The preset keyword types to set","rest":true,"required":true,"type":"Enum","enum":["Profanity","SexualContent","Slurs"],"enumName":"AutoModerationRuleKeywordPresetType"}],"category":"automod"},{"name":"$setAutomodRegexFilter","version":"1.5.0","description":"Sets regex filter for current automod rule","unwrap":true,"brackets":true,"args":[{"name":"regexes","description":"The regexes to use for filtering","rest":true,"required":true,"type":"String"}],"category":"automod"},{"name":"$applicationCommandCount","version":"1.4.0","aliases":["$slashCommandCount"],"description":"Returns the amount of application commands registered by this bot","output":["Number"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get application command count from","rest":false,"type":"Guild"},{"name":"count sub","description":"Whether to count sub commands","rest":false,"type":"Boolean"}],"category":"bot"},{"name":"$applicationCommands","version":"1.5.0","description":"Returns all application commands","output":["Json"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get application commands from","rest":false,"required":true,"type":"Guild"}],"category":"bot"},{"name":"$botCount","version":"1.0.0","description":"Returns the bot count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botCustomInvite","version":"1.5.0","description":"Returns the client's custom invite link","unwrap":false,"aliases":["$clientCustomInvite"],"output":["URL"],"category":"bot"},{"name":"$botDescription","version":"1.5.0","aliases":["$clientDescription"],"description":"Returns the description of the bot","unwrap":false,"output":["String"],"category":"bot"},{"name":"$botDestroy","version":"1.0.0","aliases":["$clientDestroy"],"description":"Destroys the discord.js client","unwrap":false,"category":"bot"},{"name":"$botID","version":"1.0.0","description":"Returns the client's id","unwrap":false,"aliases":["$clientID"],"output":["User"],"category":"bot"},{"name":"$botInvite","version":"1.0.0","description":"Returns a bot's invite link","brackets":false,"unwrap":true,"aliases":["$clientInvite","$getBotInvite"],"args":[{"name":"perms","description":"The perms for the invite link","rest":true,"type":"String","required":true}],"output":["URL"],"category":"bot"},{"name":"$botMutualGuilds","version":"1.5.0","aliases":["$clientMutualGuilds"],"description":"Returns the client's mutual guilds with a user","unwrap":true,"args":[{"name":"user ID","description":"The user to get mutual guilds from","rest":false,"required":true,"type":"User"},{"name":"separator","description":"The separator to use for every guild","rest":false,"type":"String"}],"brackets":false,"output":["Guild[]"],"category":"bot"},{"name":"$botOwnerID","version":"1.0.0","description":"Returns the bot's owner id or team members","brackets":false,"aliases":["$clientOwnerID"],"args":[{"name":"return members","description":"Whether to return all members","rest":false,"required":false,"type":"Boolean"},{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"unwrap":true,"category":"bot"},{"name":"$botTags","version":"1.5.0","description":"Returns the client tags","unwrap":true,"aliases":["$clientTags"],"args":[{"name":"separator","description":"The separator to use for every tag","rest":false,"type":"String"}],"brackets":false,"output":["String[]"],"category":"bot"},{"name":"$botTeamCreatedAt","version":"2.4.0","description":"Returns the client's team creation timestamp","aliases":["$clientTeamCreatedAt"],"unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botTeamID","version":"2.4.0","description":"Returns the client's team id","aliases":["$clientTeamID"],"unwrap":false,"output":["String"],"category":"bot"},{"name":"$botTeamIcon","version":"2.4.0","description":"Returns the client's team icon","aliases":["$clientTeamIcon"],"unwrap":true,"brackets":false,"args":[{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"category":"bot"},{"name":"$botTeamMembers","version":"2.4.0","description":"Returns the client's team members","aliases":["$clientTeamMembers"],"unwrap":true,"brackets":false,"args":[{"name":"property","description":"The property of each team member to return","rest":false,"required":true,"type":"Enum","enum":["id","role","membership"],"enumName":"TeamMemberProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"bot"},{"name":"$botTeamName","version":"2.4.0","description":"Returns the client's team name","aliases":["$clientTeamName"],"unwrap":false,"output":["String"],"category":"bot"},{"name":"$botToken","version":"1.0.0","description":"Returns the client token","unwrap":false,"aliases":["$clientToken"],"output":["String"],"category":"bot"},{"name":"$botUserAuthorizationCount","version":"2.4.0","aliases":["$clientUserAuthorizationCount"],"description":"Returns the user authorization count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botUserInstallCount","version":"1.5.0","aliases":["$clientUserInstallCount"],"description":"Returns the user install count of the bot","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$botWebhookEvents","version":"2.2.0","description":"Returns the client webhook event types","aliases":["$clientWebhookEvents"],"unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every type","rest":false,"type":"String"}],"output":["ApplicationWebhookEventType[]"],"category":"bot"},{"name":"$botWebhookStatus","version":"2.2.0","description":"Returns the client webhook event status","unwrap":false,"aliases":["$clientWebhookStatus"],"output":["ApplicationWebhookEventStatus"],"category":"bot"},{"name":"$botWebhookURL","version":"2.2.0","description":"Returns the client webhook event url","unwrap":false,"aliases":["$clientWebhookURL"],"output":["URL"],"category":"bot"},{"name":"$deleteGlobalApplicationCommands","version":"2.3.0","description":"Deletes all global commands of your bot","unwrap":false,"output":["Boolean"],"category":"bot"},{"name":"$extensionVersion","version":"1.4.0","brackets":true,"unwrap":true,"description":"Returns the version an extension is running on","output":["String"],"args":[{"name":"name","description":"The extension name to retrieve its version","rest":false,"required":true,"type":"String"}],"category":"bot"},{"name":"$hasExtension","version":"1.2.0","description":"Checks whether client has an extension","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The extension name to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$ping","version":"1.0.0","description":"The current bot ping","unwrap":false,"aliases":["$clientPing","$botPing"],"output":["Number"],"category":"bot"},{"name":"$setBotAvatar","version":"1.0.0","description":"Sets the bot profile icon","brackets":true,"unwrap":true,"aliases":["$setClientAvatar"],"args":[{"name":"url","description":"The icon url","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotBanner","version":"1.5.0","description":"Sets the bot banner","brackets":true,"unwrap":true,"aliases":["$setClientBanner"],"args":[{"name":"url","description":"The banner url","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotDescription","version":"1.5.0","description":"Sets the bot description","aliases":["$setClientDescription"],"brackets":true,"unwrap":true,"args":[{"name":"description","description":"The new description","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotGuildAvatar","version":"2.6.0","description":"Sets the bot avatar on a guild","brackets":true,"unwrap":true,"aliases":["$setClientGuildAvatar"],"args":[{"name":"guild ID","description":"The guild to set avatar on","rest":false,"required":true,"type":"Guild"},{"name":"url","description":"The icon url","rest":false,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotGuildBanner","version":"2.6.0","description":"Sets the bot banner on a guild","brackets":true,"unwrap":true,"aliases":["$setClientGuildBanner"],"args":[{"name":"guild ID","description":"The guild to set banner on","rest":false,"required":true,"type":"Guild"},{"name":"url","description":"The banner url","rest":false,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotGuildDescription","version":"2.6.0","description":"Sets the bot description on a guild","aliases":["$setBotGuildBio","$setClientGuildBio","$setClientGuildDescription"],"brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to set description on","rest":false,"required":true,"type":"Guild"},{"name":"description","description":"The new description","rest":false,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotName","version":"1.0.0","description":"Sets the bot name","brackets":true,"unwrap":true,"aliases":["$setClientName"],"args":[{"name":"name","description":"The new name","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setBotTags","version":"1.5.0","description":"Sets the bot tags","aliases":["$setClientTags"],"brackets":true,"unwrap":true,"args":[{"name":"tags","description":"The new tags","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"bot"},{"name":"$setStatus","version":"1.0.0","description":"Sets the client's status","unwrap":true,"aliases":["$setBotStatus","$setClientStatus"],"args":[{"name":"presence","description":"The presence status","type":"String","rest":false,"required":true},{"name":"type","description":"The activity type","rest":false,"type":"Enum","enum":["Playing","Streaming","Listening","Watching","Custom","Competing"],"required":true,"enumName":"ActivityType"},{"name":"name","description":"The status name","rest":false,"type":"String","required":true},{"name":"state","description":"The status state","rest":false,"type":"String"},{"name":"url","description":"The url to use for the stream","rest":false,"type":"String"}],"brackets":true,"category":"bot"},{"name":"$shardCount","version":"2.1.0","aliases":["$botShardCount","$clientShardCount"],"description":"Returns the shard count of the client","unwrap":false,"output":["Number"],"category":"bot"},{"name":"$shardID","version":"1.0.0","aliases":["$botShardIDs","$clientShardIDs"],"description":"Returns the shard id of the client","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["Number"],"category":"bot"},{"name":"$shardStatus","version":"2.1.0","aliases":["$botShardStatus","$clientShardStatus"],"description":"Returns the shard status of the client","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every status","rest":false,"type":"String"}],"output":["Status[]"],"category":"bot"},{"name":"$updateApplicationCommands","version":"1.2.0","description":"Updates application commands, also registers new ones","unwrap":false,"category":"bot"},{"name":"$updateCommands","version":"1.0.2","description":"Updates bot commands, also registers new ones","unwrap":false,"category":"bot"},{"name":"$uptime","version":"1.0.0","aliases":["$botUptime","$clientUptime"],"output":["Number"],"description":"Returns the bots uptime","unwrap":false,"category":"bot"},{"name":"$version","version":"1.0.0","description":"Returns the package version the client is using","unwrap":false,"output":["String"],"aliases":["$packageVersion"],"category":"bot"},{"name":"$bufferAlloc","version":"1.1.0","description":"Allocates given number of bytes in a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable to load it to, accessed with $env[]","rest":false,"required":true,"type":"String"},{"name":"bytes","description":"The number of bytes to alloc","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferAllocUnsafe","version":"1.1.0","description":"Unsafely allocates given number of bytes in a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable to load it to, accessed with $env[]","rest":false,"required":true,"type":"String"},{"name":"bytes","description":"The number of bytes to alloc","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferLength","version":"1.1.0","description":"Returns the length of a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false}],"output":["Number"],"category":"buffer"},{"name":"$bufferReadInt32","version":"1.2.0","description":"Reads int from a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start reading at","required":true,"type":"Number","rest":false}],"output":["Number"],"category":"buffer"},{"name":"$bufferReadUtf8","version":"1.1.0","description":"Reads utf8 string from a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start reading at","required":true,"type":"Number","rest":false},{"name":"end index","description":"The index to end reading at","required":false,"type":"Number","rest":false}],"output":["String"],"category":"buffer"},{"name":"$bufferResize","version":"1.1.0","description":"Resizes a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"length","description":"The new length for this buffer","required":true,"type":"Number","rest":false}],"category":"buffer"},{"name":"$bufferToString","version":"1.1.0","description":"Stringifies a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"encoding","description":"The encoding to stringify with","type":"String","rest":false}],"output":["String"],"category":"buffer"},{"name":"$bufferWriteInt32","version":"1.2.0","description":"Writes int32 to a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start writing on","required":true,"type":"Number","rest":false},{"name":"int","description":"The int to write","type":"Number","rest":false,"required":true}],"category":"buffer"},{"name":"$bufferWriteUtf8","version":"1.1.0","description":"Writes utf8 string to a buffer","unwrap":true,"brackets":true,"args":[{"name":"variable name","description":"The variable the buffer is allocated on","type":"String","required":true,"rest":false},{"name":"index","description":"The index to start writing on","required":true,"type":"Number","rest":false},{"name":"text","description":"The text to write","type":"String","rest":false,"required":true}],"category":"buffer"},{"name":"$addChannelPerms","version":"1.0.3","description":"Adds permission overwrites to a channel, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to add perms to","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to add these perms to","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to add to the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"output":["Boolean"],"category":"channel"},{"name":"$addPostTags","version":"1.5.0","description":"Adds tags to a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to edit tags on"},{"name":"reason","description":"The reason for adding post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$addThreadMember","version":"1.0.0","description":"Adds a member to a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The thread to add member to","rest":false,"required":true,"type":"Channel"},{"name":"user ID","pointer":0,"description":"The member to add","rest":false,"required":true,"type":"Member"}],"category":"channel"},{"name":"$archiveThread","version":"1.0.0","aliases":["$archivePost"],"description":"Archives a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to archive","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to archive this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelBitrate","version":"1.4.0","description":"Returns the bitrate of the voice channel","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelCategoryID","version":"1.0.0","description":"Returns the channel category id","aliases":["$channelParentID"],"unwrap":true,"brackets":false,"output":["Channel"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelChildrenCount","version":"1.0.3","description":"Returns the amount of children this category has","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"channel ID","description":"The category to get its child count","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelChildrenIDs","version":"1.0.3","description":"Returns the children ids this category has","brackets":false,"output":["Channel[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The category to get its children","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelCount","version":"1.0.0","description":"Returns the channel count of all servers","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"categories","description":"The categories to filter by","rest":true,"required":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"type":"Enum","enumName":"ChannelType"}],"category":"channel"},{"name":"$channelCreatedAt","version":"1.0.0","description":"Returns the channel timestamp","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelDeletable","version":"2.4.0","description":"Returns whether the channel is deletable","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["Boolean"],"category":"channel"},{"name":"$channelExists","version":"1.0.0","description":"Returns whether a channel id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to check","rest":false,"required":true,"type":"String"}],"category":"channel"},{"name":"$channelFlags","version":"1.5.0","description":"Returns the flags of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["ChannelFlags[]"],"category":"channel"},{"name":"$channelFull","version":"1.4.0","description":"Returns whether the voice channel is full","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelGuildID","version":"1.0.0","description":"Returns the channel guild id","unwrap":true,"output":["Guild"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelHasAnyPerms","version":"1.4.0","aliases":["$channelHasAnyPerm"],"description":"Returns whether role or member has any of the perms in a channel","output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"permissions","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"brackets":true,"category":"channel"},{"name":"$channelHasPerms","version":"1.4.0","description":"Returns whether role or member has perms in a channel","output":["Boolean"],"aliases":["$hasChannelPerm","$hasChannelPerms"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"permissions","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"brackets":true,"category":"channel"},{"name":"$channelID","version":"1.0.0","description":"Gets the channel id of a channel name","unwrap":true,"output":["Channel"],"brackets":false,"args":[{"name":"name","description":"The channel name to get its id","required":true,"rest":true,"type":"String"}],"category":"channel"},{"name":"$channelIDs","version":"1.3.0","unwrap":true,"brackets":false,"output":["Channel[]"],"description":"Returns every channel id","args":[{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelIsChildrenOf","version":"1.5.0","aliases":["$isChildrenOf"],"description":"Checks whether given channel is a children of a category","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to know if is children of category","rest":false,"type":"Channel","required":true},{"name":"category ID","description":"The category to check against","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelJoinable","version":"1.4.0","description":"Returns whether the voice channel is joinable by the bot","unwrap":true,"output":["Boolean"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelManageable","version":"2.4.0","description":"Returns whether the channel is manageable","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["Boolean"],"category":"channel"},{"name":"$channelMembers","version":"1.5.0","description":"Returns the members of a channel","unwrap":true,"output":["Member[]"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel to get its members","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"channel"},{"name":"$channelNSFW","version":"1.0.0","description":"Returns whether the channel is nsfw","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelName","version":"1.0.0","description":"Returns the channel name","unwrap":true,"output":["String"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelNames","version":"1.0.0","description":"Returns the channel names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the channels of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each channel","rest":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$channelPermissions","version":"1.5.0","description":"Returns all permission overwrites of a channel","aliases":["$channelPerms","$channelOverwrites"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"property","description":"The property of the overwrites to return","rest":false,"required":true,"type":"Enum","enum":["id","type","allow","deny"],"enumName":"PermissionOverwritesProperty"},{"name":"separator","description":"The separator to use for every overwrite","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"channel"},{"name":"$channelPermissionsFor","version":"1.4.0","description":"Returns permissions for a role or member in a channel","aliases":["$channelPermsFor","$memberChannelPerms","$roleChannelPerms"],"output":["PermissionFlagsBits[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms for","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every perm","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$channelPermissionsOf","version":"1.5.0","description":"Returns specific permissions of a role or member in a channel","aliases":["$channelPermsOf"],"output":["PermissionFlagsBits[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or user to get perms of","rest":false,"required":true,"type":"String"},{"name":"state","description":"The state of the perms to return","rest":false,"required":true,"type":"Enum","enum":["allow","deny"],"enumName":"PermissionsStateType"},{"name":"separator","description":"The separator to use for every perm","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$channelPinnedMessages","version":"1.5.0","description":"Returns the pinned messages of a channel","brackets":false,"aliases":["$pinnedMessages"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull pinned messages from","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for each message id","rest":false,"type":"String"}],"output":["Message[]"],"category":"channel"},{"name":"$channelPosition","version":"1.0.3","description":"Returns the channel position","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel to get its position","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelRawData","version":"1.5.0","description":"Returns the raw data of a channel","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get raw data from","type":"Channel"}],"output":["Json"],"category":"channel"},{"name":"$channelSlowmode","version":"1.5.0","description":"Returns the channel slowmode in seconds","unwrap":true,"output":["Number"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel to get its slowmode","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$channelTags","version":"1.0.3","description":"Retrieves tags from a forum thread","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to get tags of","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator to use for every tag","rest":false,"type":"String"}],"output":["ForumTag[]"],"category":"channel"},{"name":"$channelThreadIDs","version":"2.5.0","description":"Returns the thread ids of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get its threads","rest":false,"type":"Channel","required":true},{"name":"separator","description":"The separator to use for every thread","rest":false,"type":"String"}],"output":["Channel[]"],"category":"channel"},{"name":"$channelTopic","version":"1.0.0","description":"Returns the channel topic","unwrap":true,"output":["String"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelType","version":"1.0.0","description":"Returns the channel type","unwrap":true,"output":["ChannelType"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelURL","version":"2.4.0","description":"Returns the url of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"output":["URL"],"category":"channel"},{"name":"$channelUserLimit","version":"1.4.0","description":"Returns the user limit of the voice channel","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelVoiceMemberCount","version":"1.4.0","description":"Returns the member count that are connected to this voice channel","unwrap":true,"aliases":["$channelMemberCount"],"output":["Number"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true}],"category":"channel"},{"name":"$channelVoiceMemberIDs","version":"1.4.0","description":"Returns the members that are connected to this voice channel","unwrap":true,"aliases":["$channelMemberIDs"],"output":["Member[]"],"brackets":false,"args":[{"name":"channel ID","description":"The id of the channel","rest":false,"type":"Channel","required":true},{"name":"separator","rest":false,"description":"Separator to use for every id","required":false,"type":"String"}],"category":"channel"},{"name":"$channelVoiceRegion","version":"1.5.0","description":"Returns the region of a voice channel","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to get its region","rest":false,"required":true,"type":"Channel"}],"output":["VoiceRegionType"],"category":"channel"},{"name":"$channelWebhooks","version":"2.3.0","description":"Returns all webhooks of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get its webhooks","rest":false,"type":"Channel","required":true},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"enumName":"WebhookProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"channel"},{"name":"$clearChannelPerms","version":"1.0.3","description":"Deletes all permission overwrites from the channel or given id, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to delete perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to delete all perms for","rest":false,"required":false,"type":"String"}],"category":"channel"},{"name":"$clearMessages","version":"1.0.0","description":"Clears x amount of messages from a channel, returns the number of messages deleted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to clear messages on","required":true,"rest":false,"type":"Channel"},{"name":"amount","description":"The amount of messages to delete","rest":false,"required":true,"type":"Number"},{"name":"delete pinned","description":"Whether to delete pinned messages","rest":false,"type":"Boolean"},{"name":"delete bots","description":"Whether to delete messages of bots","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$clearUserMessages","version":"1.0.0","description":"Clears x amount of messages from a channel of given user, returns the number of messages deleted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to clear messages on","required":true,"rest":false,"type":"Channel"},{"name":"user ID","description":"The user to delete their messages","required":true,"rest":false,"type":"User"},{"name":"amount","description":"The amount of messages to delete","rest":false,"required":true,"type":"Number"},{"name":"delete pinned","description":"Whether to delete pinned messages","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$cloneChannel","version":"1.4.0","description":"Clones the given channel","brackets":true,"output":["Channel"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clone","type":"Channel","rest":false,"required":true},{"name":"name","description":"The name for the cloned channel","type":"String","rest":false}],"category":"channel"},{"name":"$cloneChannelPerms","version":"1.5.0","description":"Clones the given channel's perms to another channel, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clone its perms","type":"Channel","rest":false,"required":true},{"name":"channel ID","description":"The other channel to set new perms for","type":"Channel","rest":false,"required":true}],"output":["Boolean"],"category":"channel"},{"name":"$createChannel","version":"1.0.0","description":"Creates a channel in a guild, returns the channel id","unwrap":true,"brackets":true,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to create this channel on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the channel","rest":false,"required":true,"type":"String"},{"name":"type","description":"The type of the channel, some are not supported","rest":false,"type":"Enum","enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"enumName":"ChannelType"},{"name":"topic","description":"The topic for the channel","rest":false,"type":"String"},{"name":"parent ID","description":"The parent id for the channel","rest":false,"type":"Channel","pointer":0}],"category":"channel"},{"name":"$createForumPost","version":"1.0.0","description":"Creates a forum post, returns the post channel id","unwrap":true,"output":["Channel"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The channel to create a post on"},{"name":"title","description":"The post title","rest":false,"required":true,"type":"String"},{"name":"description","description":"The post description","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$createForumTag","version":"2.5.0","description":"Creates a forum tag, returns tag id","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to create tag on","rest":false,"required":true,"type":"Channel"},{"name":"name","description":"The name for the tag","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji for the tag","rest":false,"type":"String"},{"name":"moderated","description":"Whether the tag can only be applied by mods","rest":false,"type":"Boolean"}],"output":["ForumTag"],"category":"channel"},{"name":"$createInvite","version":"1.1.0","brackets":true,"description":"Creates an invite, returns the invite code","unwrap":true,"output":["Invite"],"args":[{"name":"channel ID","description":"The channel to make the invite for","rest":false,"required":true,"type":"Channel"},{"name":"max uses","description":"The max amount of uses for this invite","rest":false,"type":"Number"},{"name":"max age","description":"The max age for this invite","rest":false,"type":"Number"},{"name":"reason","description":"The reason for creating this invite","rest":false,"type":"String"}],"category":"channel"},{"name":"$createStageInstance","version":"2.3.0","description":"Creates a new stage instance, returns instance id","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to create stage instance on","rest":false,"required":true,"type":"Channel"},{"name":"topic","description":"The topic of the stage instance","rest":false,"required":true,"type":"String"},{"name":"privacy level","description":"The privacy level of the stage instance","rest":false,"type":"Enum","enum":["Public","GuildOnly"],"enumName":"StageInstancePrivacyLevel"},{"name":"notify","description":"Whether to notify @everyone that the stage instance has started","rest":false,"type":"Boolean"},{"name":"event ID","description":"The scheduled event associated with the stage instance","rest":false,"type":"ScheduledEvent","pointer":0,"pointerProperty":"guild"}],"output":["StageInstance"],"category":"channel"},{"name":"$createThread","version":"1.0.3","description":"Creates a thread, returns thread channel id on success","unwrap":true,"output":["Channel"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to create the thread at","rest":false,"type":"Channel"},{"name":"name","description":"The name for the thread","rest":false,"type":"String","required":true},{"name":"message ID","description":"The message to start thread for","rest":false,"pointer":0,"type":"Message"},{"name":"private","description":"Whether this thread is private","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for creating thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$deleteChannelPerms","version":"1.0.3","description":"Deletes some permission overwrites from a channel, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to clear perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to clear these perms for","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to clear from the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$deleteChannels","version":"1.0.5","description":"Deletes given channels, returns the count of channels deleted","aliases":["$deleteChannel"],"brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"channels","description":"The channels to delete","rest":true,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$deleteForumTags","version":"2.5.0","description":"Deletes tags from a forum, returns bool","aliases":["$deleteForumTag"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to delete tags from","rest":false,"required":true,"type":"Channel"},{"name":"tags","description":"The tags to delete","rest":true,"required":true,"type":"ForumTag","pointer":0}],"output":["Boolean"],"category":"channel"},{"name":"$deleteStageInstance","version":"2.3.0","description":"Deletes a stage instance, returns bool","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to delete","rest":false,"required":true,"type":"StageInstance"}],"output":["Boolean"],"category":"channel"},{"name":"$deleteThread","version":"1.5.0","description":"Deletes a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to delete","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to delete this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$dmChannelID","version":"1.0.0","description":"Returns the dm channel id of a user","brackets":false,"output":["Channel"],"unwrap":true,"args":[{"name":"user ID","description":"User to get the dm channel","rest":false,"required":true,"type":"User"}],"category":"channel"},{"name":"$editForumTag","version":"2.5.0","description":"Edits an existing forum tag, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to edit tag on","rest":false,"required":true,"type":"Channel"},{"name":"tag ID","description":"The tag to edit","rest":false,"required":true,"type":"ForumTag","pointer":0},{"name":"name","description":"The new name for the tag","rest":false,"type":"String"},{"name":"emoji","description":"The new emoji for the tag","rest":false,"type":"String"},{"name":"moderated","description":"Whether the tag can only be applied by mods","rest":false,"type":"Boolean"}],"output":["Boolean"],"category":"channel"},{"name":"$editStageInstance","version":"2.3.0","description":"Edits a stage instance, returns bool","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to edit","rest":false,"required":true,"type":"StageInstance"},{"name":"topic","description":"The new topic of the stage instance","rest":false,"type":"String"},{"name":"privacy level","description":"The new privacy level of the stage instance","rest":false,"type":"Enum","enum":["Public","GuildOnly"],"enumName":"StageInstancePrivacyLevel"}],"output":["Boolean"],"category":"channel"},{"name":"$fetchChannels","version":"2.2.0","description":"Caches all channels of a guild","aliases":["$fetchChannel"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache channels of","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The channel to fetch","rest":false,"type":"Channel","pointer":0}],"category":"channel"},{"name":"$fetchThreads","version":"2.5.0","description":"Caches all threads of a channel","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to cache its threads","rest":false,"type":"Channel","required":true},{"name":"archived","description":"Whether to cache archived threads, otherwise active","rest":false,"type":"Boolean"},{"name":"private","description":"Whether to cache archived private threads, otherwise public","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$firstMessageID","version":"1.5.0","description":"Returns the first message sent in a channel","brackets":false,"aliases":["$channelFirstMessageID"],"unwrap":true,"output":["Message"],"args":[{"name":"channel ID","description":"The channel to pull first message from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$followChannel","version":"2.3.0","description":"Follows given announcement channel, returns webhook id","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to follow","type":"Channel","rest":false,"required":true},{"name":"channel ID","description":"The channel to crosspost messages in","type":"Channel","rest":false,"required":true},{"name":"reason","description":"The reason for following the channel","type":"String","rest":false}],"output":["Webhook"],"category":"channel"},{"name":"$forumDefaultLayout","version":"2.2.0","description":"Returns the default layout of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default layout from","rest":false,"type":"Channel","required":true}],"output":["ForumLayoutType"],"category":"channel"},{"name":"$forumDefaultReactionEmoji","version":"2.2.0","description":"Returns the default reaction emoji of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default reaction emoji from","rest":false,"type":"Channel","required":true}],"output":["String"],"category":"channel"},{"name":"$forumDefaultSortOrder","version":"2.2.0","description":"Returns the default sort order of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default sort order from","rest":false,"type":"Channel","required":true}],"output":["SortOrderType"],"category":"channel"},{"name":"$forumDefaultThreadArchiveDuration","version":"2.2.0","description":"Returns the default auto archive duration for threads of a forum","aliases":["$forumDefaultThreadAutoArchiveDuration"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default sort order from","rest":false,"type":"Channel","required":true}],"output":["ThreadAutoArchiveDuration"],"category":"channel"},{"name":"$forumDefaultThreadSlowmode","version":"2.2.0","description":"Returns the default slowmode for threads of a forum","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to get default slowmode from","rest":false,"type":"Channel","required":true}],"output":["Number"],"category":"channel"},{"name":"$forumTags","version":"1.5.0","description":"Returns all available tags of a forum","unwrap":true,"output":["Json","Unknown[]"],"args":[{"name":"channel ID","description":"The channel to get tags of","rest":false,"type":"Channel","required":true},{"name":"property","description":"The property to return for every tag","rest":false,"type":"Enum","enum":["emoji","id","moderated","name"],"enumName":"ForumTagProperty"},{"name":"separator","description":"The separator to use for every tag property","rest":false,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$getStageInstance","version":"2.3.0","description":"Returns a stage instance of a guild","unwrap":true,"brackets":true,"args":[{"name":"stage ID","description":"The stage instance to get","rest":false,"required":true,"type":"StageInstance"},{"name":"property","description":"The property of the stage instance to return","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"enumName":"StageProperty"}],"output":["Json","Unknown"],"category":"channel"},{"name":"$getThreadMembers","version":"1.0.0","description":"Gets thread members","brackets":true,"output":["Member[]"],"unwrap":true,"args":[{"name":"channel ID","description":"The thread to pull members from","rest":false,"required":true,"type":"Channel"},{"name":"separator","description":"The separator for every id","rest":false,"type":"String"}],"category":"channel"},{"name":"$guildChannelID","version":"1.4.0","description":"Gets the guild channel id of a channel name","unwrap":true,"output":["Channel"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to use","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The channel name to get its id","required":true,"rest":false,"type":"String"}],"category":"channel"},{"name":"$lastMessageID","version":"1.2.0","brackets":false,"aliases":["$channelLastMessageID"],"unwrap":true,"output":["Message"],"description":"Returns the latest message sent in a channel","args":[{"name":"channel ID","description":"The channel to pull last message from","rest":false,"required":true,"type":"Channel"},{"name":"user ID","description":"The user id to get its last message sent","rest":false,"required":false,"type":"User"}],"category":"channel"},{"name":"$lastPinTimestamp","version":"1.5.0","aliases":["$channelLastPinTimestamp"],"unwrap":true,"brackets":false,"output":["Number"],"description":"Returns the latest pin timestamp of a channel","args":[{"name":"channel ID","description":"The channel to pull last pin from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$lockThread","version":"1.5.0","aliases":["$lockPost"],"description":"Locks a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to lock","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to lock this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$modifyChannelPerms","version":"1.4.0","description":"Modifies given channel perms for a role or user","aliases":["$editChannelPerms"],"unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The channel to modify perms for"},{"name":"roleOrUser","description":"The role or user to modify perms for","rest":false,"required":true,"pointer":0,"pointerProperty":"guild","type":"RoleOrUser"},{"name":"perms","rest":true,"required":true,"type":"OverwritePermission","description":"The permissions to allow, nullify or disallow, (+,/,-)Perm","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$modifyPostTags","version":"1.5.0","aliases":["$editPostTags"],"description":"Modifies tags of a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to edit tags on"},{"name":"reason","description":"The reason for modifying post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$randomChannelID","version":"1.0.3","description":"Returns a random channel ID","unwrap":true,"brackets":false,"args":[{"name":"types","description":"The channel types to get an id from","type":"Enum","rest":true,"required":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"enumName":"ChannelType"}],"output":["Channel"],"category":"channel"},{"name":"$randomGuildChannelID","version":"1.0.3","description":"Returns a random channel ID of a guild","unwrap":true,"brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to get channel from","rest":false,"required":true,"type":"Guild"},{"name":"types","description":"The channel types to get an id from","type":"Enum","rest":true,"required":false,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"enumName":"ChannelType"}],"category":"channel"},{"name":"$removeChannelPerms","version":"1.0.3","description":"Removes permission overwrites from a channel, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to remove perms from","rest":false,"required":true,"type":"Channel"},{"name":"id","description":"The role or member id to remove these perms from","rest":false,"required":true,"type":"String"},{"name":"perms","description":"The perms to remove from the id","rest":true,"type":"String","required":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"category":"channel"},{"name":"$removeThreadMember","version":"1.0.0","description":"Removes a member from a thread, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"channel ID","description":"The thread to remove member from","rest":false,"required":true,"type":"Channel"},{"name":"user ID","pointer":0,"description":"The member to remove","rest":false,"required":true,"type":"Member"}],"category":"channel"},{"name":"$sendMessage","aliases":["$channelSendMessage"],"version":"1.0.0","description":"Sends a message to a channel","unwrap":true,"output":["Message"],"args":[{"name":"channel ID","description":"The channel to send this message to","required":true,"type":"Channel","rest":false},{"name":"content","description":"The content for the message","type":"String","rest":false},{"name":"return message ID","description":"Whether to return the message id of the newly sent message","rest":false,"type":"Boolean"}],"brackets":true,"category":"channel"},{"name":"$setChannelArchiveDuration","version":"1.5.0","description":"Modifies a channel's archive duration","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","type":"Channel","description":"The channel to modify","rest":false,"required":true},{"name":"duration","description":"The new duration of archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setChannelCategory","version":"1.5.0","aliases":["$setChannelParent"],"description":"Sets a channel's category, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its category","rest":false,"type":"Channel","required":true},{"name":"category ID","description":"The category to set","rest":false,"type":"Channel"}],"category":"channel"},{"name":"$setChannelNSFW","version":"1.0.0","description":"Sets a channel nsfw state, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its nsfw state","rest":false,"type":"Channel","required":true},{"name":"state","description":"The state to set","rest":false,"type":"Boolean"}],"category":"channel"},{"name":"$setChannelName","version":"1.0.0","description":"Sets a channel name, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its name","rest":false,"type":"Channel","required":true},{"name":"name","description":"The name to set","rest":false,"required":true,"type":"String"}],"category":"channel"},{"name":"$setChannelSlowmode","version":"1.0.0","description":"Sets a channel slowmode, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its nsfw state","rest":false,"type":"Channel","required":true},{"name":"seconds","description":"The number of seconds per message","rest":false,"type":"Number"}],"category":"channel"},{"name":"$setChannelTopic","version":"1.0.0","description":"Sets a channel topic, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to set its topic","rest":false,"type":"Channel","required":true},{"name":"topic","description":"The topic to set","rest":false,"type":"String"}],"category":"channel"},{"name":"$setDefaultForumLayout","version":"2.2.0","description":"Sets a forum's default layout of posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"layout","description":"The new default layout","rest":false,"required":true,"type":"Enum","enum":["NotSet","ListView","GalleryView"],"enumName":"ForumLayoutType"},{"name":"reason","description":"The reason for modifying default layout","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultReactionEmoji","version":"2.2.0","description":"Sets a forum's default reaction emoji for posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"emoji","description":"The new default reaction emoji","rest":false,"type":"String"},{"name":"reason","description":"The reason for modifying default emoji","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultSortOrder","version":"2.2.0","description":"Sets a forum's default sort order of posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"layout","description":"The new default sort order, leave empty to reset","rest":false,"type":"Enum","enum":["LatestActivity","CreationDate"],"enumName":"SortOrderType"},{"name":"reason","description":"The reason for modifying default sort order","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setDefaultThreadArchiveDuration","version":"1.5.0","description":"Sets a forum's default auto archive duration of posts","unwrap":true,"output":["Boolean"],"aliases":["$setDefaultThreadAutoArchiveDuration"],"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","type":"Channel","rest":false,"required":true},{"name":"duration","description":"The new duration of auto archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setDefaultThreadSlowmode","version":"2.2.0","description":"Sets a forum's default slowmode for posts","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The forum to modify","rest":false,"required":true,"type":"Channel"},{"name":"seconds","description":"The new default slowmode","rest":false,"required":true,"type":"Number"},{"name":"reason","description":"The reason for modifying default slowmode","rest":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setPostTags","version":"2.5.0","description":"Sets tags to a forum post, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The post to set tags on"},{"name":"reason","description":"The reason for setting post tags","rest":false,"type":"String"},{"name":"tags","description":"The tags for the post","rest":true,"type":"String"}],"brackets":true,"category":"channel"},{"name":"$setThreadArchiveDuration","version":"1.5.0","description":"Sets a thread's auto archive duration","unwrap":true,"output":["Boolean"],"aliases":["$setThreadAutoArchiveDuration"],"brackets":true,"args":[{"name":"channel ID","description":"The thread to modify","type":"Channel","rest":false,"required":true},{"name":"duration","description":"The new duration of auto archive","type":"Enum","enum":["OneHour","OneDay","ThreeDays","OneWeek"],"rest":false,"required":true,"enumName":"ThreadAutoArchiveDuration"},{"name":"reason","description":"The reason for modifying archive duration","rest":false,"type":"String"}],"category":"channel"},{"name":"$setVoiceBitrate","version":"1.4.0","description":"Sets the bitrate quality of a voice channel, returns bool","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit bitrate","rest":false,"required":true,"type":"Channel"},{"name":"bitrate","rest":false,"type":"Number","required":true,"description":"The new bitrate"},{"name":"reason","description":"The reason to change the bitrate","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceDeaf","version":"1.4.0","description":"Deafens a member from voice channel","brackets":true,"aliases":["$voiceDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to deafen"},{"name":"reason","description":"The reason to deafen this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceMute","version":"1.4.0","description":"Mutes a member from voice channel","brackets":true,"aliases":["$voiceMute"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to mute"},{"name":"reason","description":"The reason to mute this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceRegion","version":"1.5.0","description":"Sets the region of a voice channel, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to set region","rest":false,"required":true,"type":"Channel"},{"name":"region","description":"The region to set, leave empty to remove a fixed region","rest":false,"required":false,"type":"Enum","enum":["brazil","hongkong","india","japan","rotterdam","russia","singapore","south-korea","southafrica","sydney","us-central","us-east","us-south","us-west"],"enumName":"VoiceRegionType"},{"name":"reason","description":"The reason to set the voice region","rest":false,"required":false,"type":"String"}],"output":["Boolean"],"category":"channel"},{"name":"$setVoiceUndeaf","version":"1.4.0","description":"Undeafens a member from voice channel","brackets":true,"aliases":["$voiceUndeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to undeafen"},{"name":"reason","description":"The reason to undeafen this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceUnmute","version":"1.4.0","description":"Unmutes a member from voice channel","brackets":true,"aliases":["$voiceUnmute"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to unmute"},{"name":"reason","description":"The reason to unmute this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceUserLimit","version":"1.4.0","description":"Sets the limit of users that can connect to this voice channel","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit user limit","rest":false,"required":true,"type":"Channel"},{"name":"limit","rest":false,"type":"Number","required":true,"description":"The new user limit"},{"name":"reason","description":"The reason to change the user limit","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$setVoiceVideoQuality","version":"1.5.0","description":"Sets the video quality of a voice channel, returns bool","brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit video quality","rest":false,"required":true,"type":"Channel"},{"name":"quality","rest":false,"required":true,"type":"Enum","enum":["Auto","Full"],"description":"The new video quality","enumName":"VideoQualityMode"},{"name":"reason","description":"The reason to change the video quality","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"channel"},{"name":"$startTyping","version":"1.0.0","description":"Starts typing in a channel","unwrap":true,"aliases":["$channelStartTyping"],"brackets":false,"args":[{"name":"channel ID","description":"The channel to start typing at","required":true,"rest":false,"type":"Channel"}],"category":"channel"},{"name":"$threadIsArchived","version":"1.5.0","aliases":["$isArchived","$threadArchived"],"description":"Returns whether a thread is archived","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to check if its archived","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$threadOwnerID","version":"2.2.0","description":"Returns the owner of the thread","brackets":false,"unwrap":true,"output":["Member"],"args":[{"name":"channel ID","description":"The thread to retrieve owner of","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$threadStarterMessageID","version":"1.5.0","description":"Returns the id of the message that started this thread","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The thread to get its starter message id","rest":false,"required":true,"type":"Channel"}],"output":["Message"],"category":"channel"},{"name":"$threadTotalMessagesSent","version":"1.5.0","description":"Returns the total count of sent messages in a thread","aliases":["$threadTotalMessagesCount"],"brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"channel ID","description":"The thread to pull data from","rest":false,"required":true,"type":"Channel"}],"category":"channel"},{"name":"$transcript","version":"1.4.0","aliases":["$channelTranscript","$createTranscript"],"description":"Creates a channel transcript","brackets":true,"output":["String[]"],"unwrap":false,"args":[{"name":"channel ID","description":"The channel to create transcript of","rest":false,"required":true,"type":"TextChannel"},{"name":"variable","description":"The $env variable name to load the message id to","rest":false,"required":true,"type":"String"},{"name":"code","description":"The code to use for every message, make sure to use $return","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"full","description":"Whether to load entire message object to the variable","rest":false,"required":false,"type":"Boolean"}],"category":"channel"},{"name":"$unarchiveThread","version":"1.0.0","aliases":["$unarchivePost"],"description":"Unarchives a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to unarchive","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to unarchive this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$unlockThread","version":"1.5.0","aliases":["$unlockPost"],"description":"Unlocks a thread, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The thread to unlock","rest":false,"required":true,"type":"Channel"},{"name":"reason","description":"The reason to unlock this thread","rest":false,"type":"String"}],"category":"channel"},{"name":"$commandCount","version":"1.0.0","description":"Returns the command count","brackets":false,"output":["Number"],"args":[{"name":"categories","rest":true,"required":true,"description":"The event types to filter by","type":"String"}],"unwrap":true,"category":"command"},{"name":"$commandInfo","version":"1.0.3","description":"Retrieves command info","unwrap":true,"brackets":true,"output":["Unknown"],"args":[{"name":"type","description":"The command type","rest":false,"type":"String","required":true},{"name":"name","description":"The command name","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property to retrieve","rest":true,"type":"String"}],"category":"command"},{"name":"$commandName","version":"1.0.3","description":"Returns the current command name","unwrap":false,"output":["String"],"category":"command"},{"name":"$commandNames","version":"1.0.6","description":"Return commands with given type","brackets":true,"output":["String[]"],"args":[{"name":"type","description":"The command type to pull names from","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for every name","rest":false,"type":"String"}],"unwrap":true,"category":"command"},{"name":"$deleteCommand","version":"1.2.0","description":"Deletes the author's message","unwrap":false,"category":"command"},{"name":"$addActionRow","version":"1.0.0","description":"Adds an action row","unwrap":false,"category":"component"},{"name":"$addActionRowTo","version":"1.5.0","brackets":true,"description":"Adds an action row (or rows) to a message","unwrap":false,"aliases":["$addActionRowsTo"],"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add row to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"components","description":"Components for this row","rest":false,"required":true,"type":"String"},{"name":"keep existing rows","description":"Whether to keep or remove existing rows of given message","rest":false,"required":false,"type":"Boolean"}],"output":["Boolean"],"category":"component"},{"name":"$addButton","version":"1.0.0","description":"Adds a button component to the newest row","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"category":"component"},{"name":"$addButtonTo","version":"1.5.0","description":"Adds a button component to the newest row in a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add button to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The button label","rest":false,"type":"String","required":true},{"name":"style","description":"The style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","required":true,"rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"output":["Boolean"],"category":"component"},{"name":"$addChannelSelectMenu","version":"1.4.0","description":"Creates a channel select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"type":"Boolean"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels to use"}],"category":"component"},{"name":"$addChannelSelectMenuTo","version":"2.4.0","description":"Creates a channel select menu on a message","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels to use"}],"category":"component"},{"name":"$addChannelType","version":"1.4.0","aliases":["$addChannelTypes"],"description":"Adds channel types to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"types","description":"The channel types to add","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"type":"Enum","enumName":"ChannelType"}],"category":"component"},{"name":"$addChoice","version":"1.0.6","description":"Adds an autocomplete choice","unwrap":true,"brackets":true,"args":[{"name":"choice name","description":"The name for this choice","rest":false,"required":true,"type":"String"},{"name":"choice value","description":"The value for this choice","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addContainer","version":"2.4.0","description":"Adds a new container component","unwrap":false,"brackets":true,"args":[{"name":"components","description":"The components to add","rest":false,"required":true,"type":"String"},{"name":"color","description":"The color to set","rest":false,"type":"Color"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addDefaultChannelOption","version":"1.4.0","aliases":["$addDefaultChannels","$addDefaultChannelOptions"],"description":"Adds default channel options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"channel IDs","description":"The channel ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addDefaultRoleOption","version":"1.4.0","aliases":["$addDefaultRoles","$addDefaultRoleOptions"],"description":"Adds default role options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"role IDs","description":"The role ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addDefaultUserOption","version":"1.4.0","aliases":["$addDefaultUsers","$addDefaultUserOptions"],"description":"Adds default user options to the last select menu","unwrap":true,"brackets":true,"args":[{"name":"user IDs","description":"The user ids","rest":true,"required":true,"type":"String"}],"category":"component"},{"name":"$addFile","version":"2.4.0","description":"Adds a new file component","unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url of the file (must use attachment://)","rest":false,"required":true,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addFileUpload","version":"2.6.0","description":"Adds a new file upload component to the modal label","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id for this field","rest":false,"required":true,"type":"String"},{"name":"min values","description":"The min values of file uploads","rest":false,"type":"Number"},{"name":"max values","description":"The max values of file uploads","rest":false,"type":"Number"}],"category":"component"},{"name":"$addLabel","version":"2.6.0","description":"Adds a new label component to the modal","unwrap":false,"brackets":true,"args":[{"name":"name","description":"The name for the label","rest":false,"required":true,"type":"String"},{"name":"component","description":"The component to attach to the label","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for the label","rest":false,"type":"String"},{"name":"required","description":"Whether this field is required","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addMediaGallery","version":"2.4.0","description":"Adds a new media gallery component","unwrap":false,"brackets":true,"args":[{"name":"items","description":"The media items to add","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addMediaItem","version":"2.4.0","description":"Adds a new media gallery item","unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url for the media item","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description of the media item","rest":false,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addMentionableSelectMenu","version":"1.4.0","description":"Creates a mentionable select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use"}],"category":"component"},{"name":"$addMentionableSelectMenuTo","version":"1.5.0","description":"Creates a mentionable select menu on a message","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add row to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use","pointer":0,"pointerProperty":"guild"}],"category":"component"},{"name":"$addOption","version":"1.0.0","description":"Adds a select menu option","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The option name","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for this option","rest":false,"type":"String","required":false},{"name":"value","description":"The value to use for this option","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji to use for this option","type":"String","rest":false},{"name":"default","description":"Whether to set this option as default","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addRoleSelectMenu","version":"1.3.0","description":"Creates a role select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles to use"}],"category":"component"},{"name":"$addRoleSelectMenuTo","version":"1.5.0","description":"Creates a role select menu on a message","output":["Boolean"],"brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles to use"}],"category":"component"},{"name":"$addSection","version":"2.4.0","description":"Adds a new section component","unwrap":false,"brackets":true,"args":[{"name":"components","description":"The components and accessory to add","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addSeparator","version":"2.4.0","description":"Adds a new separator component","unwrap":true,"brackets":false,"args":[{"name":"spacing","description":"The spacing of this separator","rest":false,"required":true,"type":"Enum","enum":["Small","Large"],"enumName":"SeparatorSpacingSize"},{"name":"divider","description":"Whether to show a divider line","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addStringSelectMenu","version":"1.0.0","description":"Creates a string select menu","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"category":"component"},{"name":"$addStringSelectMenuTo","version":"1.5.0","description":"Creates a string select menu on a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"output":["Boolean"],"category":"component"},{"name":"$addTextDisplay","version":"2.4.0","description":"Adds a new text display component","unwrap":true,"brackets":true,"args":[{"name":"content","description":"The content of this text display","rest":false,"required":true,"type":"String"}],"category":"component"},{"name":"$addTextInput","version":"1.0.0","description":"Adds a text input field to the modal","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this field","rest":false,"type":"String","required":true},{"name":"name","description":"The field name, will be overwritten when used inside a label","rest":false,"required":true,"type":"String"},{"name":"type","description":"Paragraph or short","rest":false,"type":"Enum","enum":["Short","Paragraph"],"enumName":"TextInputStyle"},{"name":"required","description":"Whether this field is required","rest":false,"type":"Boolean"},{"name":"placeholder","description":"The placeholder to use for the field","rest":false,"type":"String"},{"name":"default value","description":"The default value for the field","rest":false,"type":"String"},{"name":"minimum length","description":"The minimum length needed","rest":false,"type":"Number"},{"name":"maximum length","description":"The max length needed","rest":false,"type":"Number"}],"category":"component"},{"name":"$addThumbnail","version":"2.4.0","description":"Adds a new thumbnail accessory","unwrap":true,"brackets":true,"args":[{"name":"url","description":"The url for the thumbnail","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description of the thumbnail","rest":false,"type":"String"},{"name":"spoiler","description":"Whether to set a spoiler","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$addUserSelectMenu","version":"1.4.0","description":"Creates a user select menu","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default users","rest":true,"type":"String","description":"The default selected users to use"}],"category":"component"},{"name":"$addUserSelectMenuTo","version":"1.5.0","output":["Boolean"],"description":"Creates a user select menu on a message","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to add select menu to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"disabled","description":"Whether the menu is disabled by default","rest":false,"required":false,"type":"Boolean"},{"name":"default users","rest":true,"type":"String","description":"The default selected users to use"}],"category":"component"},{"name":"$deleteActionRow","version":"1.0.0","description":"Deletes an action row or top level component at given index","brackets":true,"args":[{"name":"index","description":"The row index to delete","rest":false,"required":true,"type":"Number"}],"unwrap":true,"category":"component"},{"name":"$deleteActionRowFrom","version":"1.5.0","description":"Deletes an action row or top level component at given index","brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to remove row from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The row index to delete","rest":false,"required":true,"type":"Number"}],"output":["Boolean"],"unwrap":true,"category":"component"},{"name":"$deleteComponent","version":"1.0.0","description":"Deletes a message component with given custom id","brackets":true,"args":[{"name":"custom ID","description":"The component's custom id to delete","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"component"},{"name":"$deleteComponentFrom","version":"1.5.0","description":"Deletes a message component with given custom id from a message","brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to remove component from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The component's custom id to delete","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"unwrap":true,"category":"component"},{"name":"$disableButtons","version":"2.2.0","description":"Disables all buttons on the current message","aliases":["$disableAllButtons"],"unwrap":true,"args":[{"name":"index","description":"The index of the row to disable","rest":false,"required":true,"type":"Number"}],"brackets":false,"category":"component"},{"name":"$disableButtonsOf","version":"2.2.0","description":"Disables all buttons of a message, returns bool","aliases":["$disableAllButtonsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to disable buttons on","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the row to disable","rest":false,"type":"Number"}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$disableComponents","version":"2.2.0","description":"Disables all components on the current message","aliases":["$disableAllComponents"],"unwrap":false,"category":"component"},{"name":"$disableComponentsOf","version":"2.2.0","description":"Disables all components of a message, returns bool","aliases":["$disableAllComponentsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to disable components on","rest":false,"required":true,"type":"Message","pointer":0}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$editButton","version":"1.0.7","description":"Edits a button component","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id to find the component","rest":false,"type":"String","required":true},{"name":"new custom ID","description":"The new custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The new button label","rest":false,"type":"String"},{"name":"style","description":"The new style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The new emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"category":"component"},{"name":"$editButtonOf","version":"1.5.0","description":"Edits a button component of a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit button for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"custom ID","description":"The custom id to find the component","rest":false,"type":"String","required":true},{"name":"new custom ID","description":"The new custom id for this component","rest":false,"type":"String","required":true},{"name":"label","description":"The new button label","rest":false,"type":"String"},{"name":"style","description":"The new style for this button","enum":["Primary","Secondary","Success","Danger","Link","Premium"],"type":"Enum","rest":false,"enumName":"ButtonStyle"},{"name":"emoji","rest":false,"type":"String","description":"The new emoji for this button"},{"name":"disabled","rest":false,"type":"Boolean","description":"Whether to disable the button"}],"output":["Boolean"],"category":"component"},{"name":"$editChannelSelectMenu","version":"2.2.0","description":"Edits a channel select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels of the menu"}],"category":"component"},{"name":"$editChannelSelectMenuOf","version":"2.2.0","description":"Edits a channel select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default channels","rest":true,"type":"String","description":"The default selected channels of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$editMentionableSelectMenu","version":"2.2.0","description":"Edits a mentionable select menu","brackets":true,"unwrap":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use"}],"category":"component"},{"name":"$editMentionableSelectMenuOf","version":"2.2.0","description":"Edits a mentionable select menu of a message, returns bool","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles/users","rest":true,"type":"RoleOrUser","description":"The default selected roles or users to use","pointer":0,"pointerProperty":"guild"}],"output":["Boolean"],"category":"component"},{"name":"$editOption","version":"1.4.0","description":"Edits a select menu option","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The option name to find","rest":false,"required":true,"type":"String"},{"name":"new name","description":"The new option name","rest":false,"required":true,"type":"String"},{"name":"description","description":"The new description for this option","rest":false,"type":"String","required":false},{"name":"value","description":"The new value for this option","rest":false,"type":"String"},{"name":"emoji","description":"The new emoji for this option","type":"String","rest":false},{"name":"default","description":"Whether to set this option as default","rest":false,"type":"Boolean"}],"category":"component"},{"name":"$editRoleSelectMenu","version":"2.2.0","description":"Edits a role select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles of the menu"}],"category":"component"},{"name":"$editRoleSelectMenuOf","version":"2.2.0","description":"Edits a role select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default roles","rest":true,"type":"String","description":"The default selected roles of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$editStringSelectMenu","version":"1.4.0","description":"Edits a string select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"category":"component"},{"name":"$editStringSelectMenuOf","version":"1.5.0","description":"Edits a string select menu of a message","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"}],"output":["Boolean"],"category":"component"},{"name":"$editUserSelectMenu","version":"2.2.0","description":"Edits a user select menu","unwrap":true,"brackets":true,"args":[{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default users","rest":true,"type":"String","description":"The default selected users of the menu"}],"category":"component"},{"name":"$editUserSelectMenuOf","version":"2.2.0","description":"Edits a user select menu of a message, returns bool","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to edit select menu for","rest":false,"required":true,"type":"Message","pointer":0},{"name":"old custom ID","description":"The custom id of the menu to edit","rest":false,"required":true,"type":"String"},{"name":"new custom ID","description":"The new custom id to use for this menu","rest":false,"required":true,"type":"String"},{"name":"placeholder","description":"The placeholder to use for the menu","rest":false,"type":"String"},{"name":"disabled","description":"Whether to keep this menu disabled","type":"Boolean","rest":false},{"name":"min values","description":"The min values to choose for the menu","rest":false,"type":"Number"},{"name":"max values","description":"The max values to choose for the menu","rest":false,"type":"Number"},{"name":"default users","rest":true,"type":"String","description":"The default selected users of the menu"}],"output":["Boolean"],"category":"component"},{"name":"$enableButtons","version":"2.2.0","description":"Enables all buttons on the current message","aliases":["$enableAllButtons"],"unwrap":true,"args":[{"name":"index","description":"The index of the row to enable","rest":false,"required":true,"type":"Number"}],"brackets":false,"category":"component"},{"name":"$enableButtonsOf","version":"2.2.0","description":"Enables all buttons of a message, returns bool","aliases":["$enableAllButtonsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to enable buttons on","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the row to enable","rest":false,"type":"Number"}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$enableComponents","version":"2.2.0","description":"Enables all components on the current message","aliases":["$enableAllComponents"],"unwrap":false,"category":"component"},{"name":"$enableComponentsOf","version":"2.2.0","description":"Enables all components of a message, returns bool","aliases":["$enableAllComponentsOf"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel id to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to enable components on","rest":false,"required":true,"type":"Message","pointer":0}],"brackets":true,"output":["Boolean"],"category":"component"},{"name":"$setChannelType","version":"1.5.0","aliases":["$setChannelTypes"],"description":"Sets channel types for the last select menu","unwrap":true,"brackets":true,"args":[{"name":"types","description":"The channel types to set","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"required":true,"type":"Enum","enumName":"ChannelType"}],"category":"component"},{"name":"$and","version":"1.0.0","description":"Validates multiple conditions","unwrap":false,"brackets":true,"output":["Boolean"],"args":[{"name":"conditions","rest":true,"required":true,"type":"String","condition":true,"description":"The conditions that must match"}],"category":"condition"},{"name":"$checkCondition","version":"1.0.0","description":"Checks whether a condition is valid","brackets":true,"unwrap":false,"output":["Boolean"],"args":[{"name":"condition","description":"The condition to use","rest":false,"condition":true,"type":"String","required":true}],"category":"condition"},{"name":"$isBoolean","version":"1.0.6","description":"Checks whether given value is bool like","aliases":["$isBool"],"brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"value","description":"Value to check if its a valid bool","rest":false,"required":true,"type":"String"}],"category":"condition"},{"name":"$isValidHex","version":"1.3.0","description":"Checks whether given hex is a valid integer number between 0x00000 and 0xffffff","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"hex","rest":false,"required":true,"type":"String","description":"The hex to check for"}],"category":"condition"},{"name":"$isValidLink","version":"1.0.0","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"link","description":"The link to check","rest":false,"required":true,"type":"String"}],"description":"Checks whether a link is valid, this will not make sure that a site actually exists or returns success HTTP responses","category":"condition"},{"name":"$or","version":"1.0.0","description":"Validates one condition","unwrap":false,"brackets":true,"output":["Boolean"],"args":[{"name":"conditions","rest":true,"required":true,"type":"String","condition":true,"description":"The conditions that must match one"}],"category":"condition"},{"name":"$channelCooldown","version":"1.5.0","description":"Adds a cooldown binded to a channel and command","brackets":true,"unwrap":false,"args":[{"name":"channel ID","rest":false,"description":"The channel id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$cooldown","version":"1.0.3","description":"Adds a command cooldown","brackets":true,"unwrap":false,"args":[{"name":"id","rest":false,"description":"The id to assign the cooldown to, can be anything","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"examples":["$c[This is a guild based user cooldown]\n$cooldown[$commandName_$guildID_$authorID;1h;You're on cooldown.]\nHello!\n","$c[This is a user based cooldown]\n$cooldown[$commandName_$authorID;1h;You're on cooldown.]\nHello!\n"],"experimental":true,"category":"cooldown"},{"name":"$deleteChannelCooldown","version":"1.5.0","description":"Deletes cooldown for given channel id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"channel ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteCooldown","version":"1.0.3","description":"Deletes cooldown of given id","brackets":true,"unwrap":true,"args":[{"name":"id","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteGuildCooldown","version":"1.5.0","description":"Deletes cooldown for given guild id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteMemberCooldown","version":"1.5.0","description":"Deletes cooldown for given guild and user id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true},{"name":"user ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$deleteUserCooldown","version":"1.5.0","description":"Deletes cooldown for given user id, binded to current command","brackets":true,"unwrap":true,"args":[{"name":"user ID","description":"The id to delete its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getCooldownTime","version":"1.0.3","description":"Retrieves current cooldown time in ms for given id","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"id","description":"The id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getGuildCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given guild id, binded to current command","brackets":true,"aliases":["$getServerCooldownTime"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getMemberCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given guild and user id, binded to current command","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild id to get its cooldown","rest":false,"type":"String","required":true},{"name":"user ID","description":"The user id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$getUserCooldownTime","version":"1.5.0","description":"Retrieves current cooldown time in ms for given user id, binded to current command","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"user ID","description":"The user id to get its cooldown","rest":false,"type":"String","required":true}],"category":"cooldown"},{"name":"$guildCooldown","version":"1.5.0","description":"Adds a cooldown binded to a guild and command","brackets":true,"unwrap":false,"aliases":["$serverCooldown"],"args":[{"name":"guild ID","rest":false,"description":"The guild id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$memberCooldown","version":"1.5.0","description":"Adds a cooldown binded to a guild member and command","brackets":true,"unwrap":false,"args":[{"name":"guild ID","rest":false,"description":"The guild id to assign the cooldown to","type":"String","required":true},{"name":"user ID","rest":false,"description":"The user id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$userCooldown","version":"1.5.0","description":"Adds a cooldown binded to a user and command","brackets":true,"unwrap":false,"args":[{"name":"user ID","rest":false,"description":"The user id to assign the cooldown to","type":"String","required":true},{"name":"duration","description":"The duration of the cooldown","rest":false,"type":"Time","required":true},{"name":"code","description":"The code to execute if the cooldown is active","rest":false,"type":"String"}],"experimental":true,"category":"cooldown"},{"name":"$createQueryParams","version":"1.0.7","description":"Creates query params with given fields","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"param name;param value","description":"The param name followed by the value, (param1;value1)","rest":true,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decodeURI","version":"1.0.0","description":"Decodes text from a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to decode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decodeURIComponent","version":"1.0.0","description":"Decodes text from a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to decode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$decrypt","version":"1.5.0","description":"Decrypts given text with a key","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to decrypt","rest":false,"required":true,"type":"String"},{"name":"key","description":"The key to use to decrypt the text","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"crypto"},{"name":"$deflate","version":"1.2.0","description":"Compresses given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"The text to compress","type":"String","rest":false,"required":true},{"name":"encoding","rest":false,"required":false,"description":"The output encoding to use","type":"String"}],"category":"crypto"},{"name":"$encodeURI","version":"1.0.0","description":"Encodes text for a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to encode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$encodeURIComponent","version":"1.0.0","description":"Encodes text for a url","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to encode","rest":false,"required":true,"type":"String"}],"category":"crypto"},{"name":"$encrypt","version":"1.5.0","description":"Encrypts given text with a key","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to encrypt","rest":false,"required":true,"type":"String"},{"name":"key","description":"The key to use to encrypt text","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"crypto"},{"name":"$inflate","version":"1.2.0","description":"Decompresses given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"The text to decompress","type":"String","rest":false,"required":true},{"name":"encoding","rest":false,"required":false,"description":"The input encoding to use","type":"String"}],"category":"crypto"},{"name":"$md5","version":"1.2.0","description":"Creates a md5 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$randomBytes","version":"1.5.0","description":"Generates a string of random bytes, in hex","brackets":true,"output":["String"],"args":[{"name":"length","description":"The length of the hex string","rest":false,"required":true,"type":"Number"}],"unwrap":true,"category":"crypto"},{"name":"$sha256","version":"1.2.0","description":"Creates a sha256 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$sha512","version":"1.2.0","description":"Creates a sha512 key from given input","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"input","description":"Input to use for feeding","rest":false,"required":true,"type":"String"},{"name":"encoding","type":"String","description":"The output encoding","rest":false,"required":false}],"category":"crypto"},{"name":"$addField","version":"1.0.0","description":"Adds an embed field","unwrap":true,"args":[{"name":"name","description":"The name for the field","required":true,"type":"String","rest":false},{"name":"value","description":"The value for the field","required":true,"type":"String","rest":false},{"name":"inline","description":"Whether this field will be inline","type":"Boolean","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$author","version":"1.0.0","description":"Adds an embed author","unwrap":true,"args":[{"name":"name","description":"Adds a name to the embed author","required":true,"type":"String","rest":false},{"name":"icon","description":"The icon url","rest":false,"type":"String"},{"name":"hyperlink","description":"The hyperlink url","rest":false,"type":"String"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$color","version":"1.0.0","description":"Adds an embed color","unwrap":true,"args":[{"name":"color","description":"The color for the embed","required":true,"enum":["Default","White","Aqua","Green","Blue","Yellow","Purple","LuminousVividPink","Fuchsia","Gold","Orange","Red","Grey","Navy","DarkAqua","DarkGreen","DarkBlue","DarkPurple","DarkVividPink","DarkGold","DarkOrange","DarkRed","DarkGrey","DarkerGrey","LightGrey","DarkNavy","Blurple","Greyple","DarkButNotBlack","NotQuiteBlack"],"type":"Color","rest":false,"enumName":"Colors"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$deleteField","version":"2.1.0","description":"Deletes an embed field","unwrap":true,"args":[{"name":"field index","description":"The index field to delete","rest":false,"required":true,"type":"Number"},{"name":"index","description":"The index to delete this field on","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$description","version":"1.0.0","description":"Adds an embed description","unwrap":true,"args":[{"name":"description","description":"The description for the embed","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$editField","version":"1.4.0","description":"Edits an embed field","unwrap":true,"args":[{"name":"field index","description":"The index field to edit","rest":false,"required":true,"type":"Number"},{"name":"name","description":"The name for the field","type":"String","rest":false},{"name":"value","description":"The value for the field","type":"String","rest":false},{"name":"inline","description":"Whether this field will be inline","type":"Boolean","rest":false},{"name":"index","description":"The index to edit this data on","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$footer","version":"1.0.0","description":"Adds an embed footer","unwrap":true,"args":[{"name":"text","description":"The text for the embed footer","required":true,"type":"String","rest":false},{"name":"icon","description":"The icon url for the embed footer","type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$image","version":"1.0.0","description":"Adds an embed image","unwrap":true,"args":[{"name":"url","description":"The url for the embed image","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$thumbnail","version":"1.0.0","description":"Adds an embed thumbnail","unwrap":true,"args":[{"name":"url","description":"The url for the embed thumbnail","required":true,"type":"String","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$timestamp","version":"1.0.0","description":"Adds an embed timestamp","unwrap":true,"args":[{"name":"ms","description":"The timestamp time to add","type":"Number","rest":false},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":false,"category":"embed"},{"name":"$title","version":"1.0.0","description":"Adds an embed title","unwrap":true,"args":[{"name":"title","description":"Adds a title to the embed","required":true,"type":"String","rest":false},{"name":"hyperlink","description":"The hyperlink url","rest":false,"type":"String"},{"name":"index","description":"The index to add this data to","rest":false,"type":"Number"}],"brackets":true,"category":"embed"},{"name":"$addApplicationEmoji","version":"1.5.0","description":"Adds an application emoji, returns the emoji id","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name for the emoji","rest":false,"required":true,"type":"String"},{"name":"url","description":"The emoji icon to use","rest":false,"required":true,"type":"String"},{"name":"return emoji ID","description":"Whether to return the emoji id","rest":false,"type":"Boolean"}],"output":["ApplicationEmoji"],"category":"emoji"},{"name":"$addEmoji","version":"1.0.7","description":"Adds an emoji to a guild, returns the emoji id","brackets":true,"unwrap":true,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to add this emote to","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the emoji","rest":false,"required":true,"type":"String"},{"name":"url","description":"The emoji icon to use","rest":false,"required":true,"type":"String"},{"name":"return emoji ID","description":"Whether to return the emoji id","rest":false,"type":"Boolean"},{"name":"roles","description":"The roles to limit usage of this emote","rest":true,"type":"Role","pointer":0}],"category":"emoji"},{"name":"$deleteApplicationEmojis","version":"1.5.0","description":"Deletes application emojis, returns the count of emojis deleted","brackets":true,"unwrap":true,"args":[{"name":"emojis","description":"The emojis to delete","rest":true,"required":true,"type":"ApplicationEmoji"}],"output":["Number"],"category":"emoji"},{"name":"$deleteEmojiMessageReactions","version":"1.0.0","description":"Deletes all emoji reactions from a message, returns amount of reaction emojis successfully deleted","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove emoji reactions from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emojis","description":"The emojis to delete from this message","required":true,"pointer":1,"rest":true,"type":"Reaction"}],"category":"emoji"},{"name":"$deleteEmojis","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given emojis from a guild, returns the count of emotes deleted","args":[{"name":"guild ID","description":"The guild to delete emotes from","rest":false,"required":true,"type":"Guild"},{"name":"emojis","description":"The emojis to delete","rest":true,"pointer":0,"required":true,"type":"GuildEmoji"}],"category":"emoji"},{"name":"$editApplicationEmoji","version":"1.5.0","description":"Edits an application emoji, returns bool","brackets":true,"unwrap":true,"args":[{"name":"emoji ID","description":"The emoji to edit","rest":false,"required":true,"type":"ApplicationEmoji"},{"name":"name","description":"The new name for the emoji","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"emoji"},{"name":"$editEmoji","version":"1.5.0","description":"Edits an emoji of a guild, returns bool","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to edit this emoji on","rest":false,"required":true,"type":"Guild"},{"name":"emoji ID","description":"The emoji to edit","rest":false,"required":true,"type":"GuildEmoji","pointer":0},{"name":"name","description":"The new name for the emoji","rest":false,"type":"String"},{"name":"reason","description":"The reason for editing the emoji","rest":false,"type":"String"},{"name":"roles","description":"The new roles to limit usage of this emoji to","rest":true,"type":"Role","pointer":0}],"output":["Boolean"],"category":"emoji"},{"name":"$emoji","version":"1.0.0","description":"Formats given emoji","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji id to format","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiAnimated","version":"1.0.0","description":"Returns whether the emoji is animated","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji to return its animation state","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiAuthorID","version":"2.6.0","description":"Returns the author id of an emoji","brackets":false,"unwrap":true,"args":[{"name":"emoji ID","description":"The emoji to return its author","rest":false,"required":true,"type":"Emoji"}],"output":["User"],"category":"emoji"},{"name":"$emojiCount","version":"1.0.0","description":"Returns the emoji count of all servers","unwrap":true,"brackets":false,"args":[{"name":"type","description":"The type of the emotes to count","rest":false,"required":true,"type":"Enum","enum":["normal","animated"],"enumName":"EmojiType"}],"output":["Number"],"category":"emoji"},{"name":"$emojiCreatedAt","version":"1.0.0","description":"Returns the emoji creation timestamp","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"emoji ID","description":"The emoji to return its creation timestamp","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiExists","version":"1.0.0","description":"Returns whether an emoji id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji id to check","rest":false,"required":true,"type":"String"}],"category":"emoji"},{"name":"$emojiGuildID","version":"1.0.0","description":"Returns the emoji guild id","brackets":false,"unwrap":true,"output":["Guild"],"args":[{"name":"emoji ID","description":"The emoji to return its guild id","rest":false,"type":"GuildEmoji","required":true}],"category":"emoji"},{"name":"$emojiID","version":"1.2.0","description":"Returns the emoji id","brackets":false,"unwrap":true,"output":["Emoji"],"args":[{"name":"emoji name","description":"The emoji name to return its id","rest":false,"type":"String","required":true}],"category":"emoji"},{"name":"$emojiIDs","description":"Returns every guild emoji id","version":"1.3.0","unwrap":true,"brackets":false,"output":["GuildEmoji[]"],"args":[{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"emoji"},{"name":"$emojiIdentifier","version":"1.0.0","description":"Returns the emoji identifier","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji to return its identifier","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiName","version":"1.2.0","description":"Returns the emoji name","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"emoji ID","description":"The emoji to return its name","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiNames","version":"1.0.0","description":"Returns the emote names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the emotes of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each emoji","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"emoji"},{"name":"$emojiRawData","version":"1.5.0","description":"Returns the raw data of an emoji","unwrap":true,"brackets":false,"args":[{"name":"emoji ID","rest":false,"required":true,"description":"The emoji to get raw data from","type":"Emoji"}],"output":["Json"],"category":"emoji"},{"name":"$emojiRequiresColons","version":"1.0.0","description":"Returns whether the emoji requires colons","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"emoji ID","description":"The emoji to return its colons state","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$emojiRoles","version":"1.0.0","description":"Returns the role ids that can use this emote","brackets":false,"unwrap":true,"output":["Role[]"],"args":[{"name":"emoji ID","description":"The emoji to return its roles","rest":false,"type":"GuildEmoji","required":true},{"name":"separator","description":"The separator to use for every role","rest":false,"type":"String"}],"category":"emoji"},{"name":"$emojiURL","version":"1.0.0","description":"Returns the emoji url","brackets":false,"unwrap":true,"output":["URL"],"args":[{"name":"emoji ID","description":"The emoji to return its url","rest":false,"type":"Emoji","required":true}],"category":"emoji"},{"name":"$fetchApplicationEmojis","version":"2.5.0","description":"Caches all application emojis of the client","unwrap":false,"category":"emoji"},{"name":"$getApplicationEmojis","version":"1.5.0","description":"Gets all application emojis","brackets":false,"unwrap":true,"args":[{"name":"property","description":"The property to return for every emoji","rest":false,"type":"Enum","enum":["authorID","name","id","identifier","requiresColons","managed","timestamp","animated","url","format"],"enumName":"ApplicationEmojiProperty"},{"name":"separator","description":"The separator to use for every emoji property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"emoji"},{"name":"$randomApplicationEmojiID","version":"1.5.0","description":"Returns a random emoji ID of the application","unwrap":false,"output":["ApplicationEmoji"],"category":"emoji"},{"name":"$randomEmojiID","version":"1.0.3","description":"Returns a random emoji ID","unwrap":false,"output":["GuildEmoji"],"category":"emoji"},{"name":"$randomGuildEmojiID","version":"1.0.3","description":"Returns a random emoji ID of a guild","unwrap":true,"brackets":false,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to get emoji from","rest":false,"required":true,"type":"Guild"}],"category":"emoji"},{"name":"$entitlementConsume","version":"1.5.0","description":"Consumes an entitlement from an interaction","unwrap":true,"args":[{"name":"entitlement name","description":"The name of the entitlement to consume","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$entitlementEndTimestamp","version":"1.5.0","description":"Returns the time at which this entitlement ends","output":["Number"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementGuildID","version":"1.5.0","description":"Returns this entitlement's guild id","output":["Guild"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementID","version":"1.5.0","description":"Returns this entitlement's id","output":["String"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsActive","version":"1.5.0","description":"Returns whether this entitlement is active","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsConsumed","version":"1.5.0","description":"Returns whether this entitlement is consumed","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsDeleted","version":"1.5.0","description":"Returns whether this entitlement is deleted","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsGuildSubscription","version":"1.5.0","description":"Returns whether this entitlement is for a guild","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementIsUserSubscription","version":"1.5.0","description":"Returns whether this entitlement is for a user","output":["Boolean"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementSkuID","version":"1.5.0","description":"Returns this entitlement's sku id","output":["String"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementStartTimestamp","version":"1.5.0","description":"Returns the time at which this entitlement starts","output":["Number"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementType","version":"1.5.0","description":"Returns this entitlement's type","output":["EntitlementType"],"unwrap":false,"category":"entitlement"},{"name":"$entitlementUserID","version":"1.5.0","description":"Returns this entitlement's user id","output":["User"],"unwrap":false,"category":"entitlement"},{"name":"$hasAllEntitlements","version":"1.5.0","aliases":["$interactionHasAllEntitlements"],"description":"Checks whether this interaction user has all of the given entitlements","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlements to validate","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$hasAnyEntitlement","version":"1.5.0","aliases":["$interactionHasAnyEntitlement"],"description":"Checks whether this interaction user has any of the given entitlements","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlements to validate","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$hasEntitlement","version":"1.5.0","aliases":["$interactionHasEntitlement"],"description":"Checks whether this interaction user has given entitlement","unwrap":true,"brackets":true,"args":[{"name":"entitlement name","description":"The name of the entitlement to validate","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"entitlement"},{"name":"$createScheduledEvent","version":"2.6.0","description":"Creates a new scheduled event on a guild, returns event id","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to create scheduled event on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name of the scheduled event","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description of the scheduled event","rest":false,"type":"String"},{"name":"type","description":"The entity type of the scheduled event","rest":false,"required":true,"type":"Enum","enum":["StageInstance","Voice","External"],"enumName":"GuildScheduledEventEntityType"},{"name":"start","description":"The start time of the scheduled event","rest":false,"required":true,"type":"Date"},{"name":"end","description":"The end time of the scheduled event","rest":false,"type":"Date"},{"name":"cover","description":"The cover image of the scheduled event","rest":false,"type":"URL"}],"output":["ScheduledEvent"],"category":"event"},{"name":"$deleteScheduledEvent","version":"2.6.0","description":"Deletes a scheduled event from a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to delete scheduled event from","rest":false,"required":true,"type":"Guild"},{"name":"event ID","description":"The scheduled event to delete","rest":false,"required":true,"type":"ScheduledEvent","pointer":0}],"output":["Boolean"],"category":"event"},{"name":"$editScheduledEvent","version":"2.6.0","description":"Edits an existing scheduled event on a guild, returns bool","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to edit scheduled event on","rest":false,"required":true,"type":"Guild"},{"name":"event ID","description":"The scheduled event to edit","rest":false,"required":true,"type":"ScheduledEvent","pointer":0},{"name":"name","description":"The new name for the scheduled event","rest":false,"type":"String"},{"name":"description","description":"The new description for the scheduled event","rest":false,"type":"String"},{"name":"type","description":"The new entity type for the scheduled event","rest":false,"type":"Enum","enum":["StageInstance","Voice","External"],"enumName":"GuildScheduledEventEntityType"},{"name":"start","description":"The new start time for the scheduled event","rest":false,"type":"Date"},{"name":"end","description":"The new end time for the scheduled event","rest":false,"type":"Date"},{"name":"cover","description":"The new cover image for the scheduled event","rest":false,"type":"URL"}],"output":["Boolean"],"category":"event"},{"name":"$getScheduledEvent","version":"2.6.0","description":"Returns a scheduled event of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get scheduled event from","rest":false,"required":true,"type":"Guild"},{"name":"event ID","description":"The scheduled event to get","rest":false,"required":true,"type":"ScheduledEvent","pointer":0},{"name":"property","description":"The property of the scheduled event to return","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType","privacyLevel","status"],"enumName":"ScheduledEventProperty"}],"output":["Json","Unknown"],"category":"event"},{"name":"$setScheduledEventChannel","version":"2.6.0","description":"Sets a channel for the current scheduled event","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The voice channel of the scheduled event","rest":false,"required":true,"type":"Channel"}],"category":"event"},{"name":"$setScheduledEventLocation","version":"2.6.0","description":"Sets a location for the current scheduled event","unwrap":true,"brackets":true,"args":[{"name":"location","description":"The location of the scheduled event","rest":false,"required":true,"type":"String"}],"category":"event"},{"name":"$appendFile","version":"1.0.0","description":"Appends text to a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"text","description":"The text to append","rest":false,"type":"String","required":true},{"name":"encoding","description":"The encoding to use for text","rest":false,"type":"String"}],"category":"file"},{"name":"$copyFile","version":"1.2.0","description":"Copies given path to another path","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make a copy of","rest":false,"required":true,"type":"String"},{"name":"destination","description":"The output path to copy to","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$deleteFile","version":"1.0.0","description":"Deletes a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$fileAccessedAt","version":"1.4.0","description":"Gets last time a file was accessed","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileBlockCount","version":"1.4.0","description":"Gets block count of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileBlockSize","version":"1.4.0","description":"Gets block size of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileChangedAt","version":"1.4.0","description":"Gets last time a file was changed","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileCreatedAt","version":"1.4.0","description":"Gets timestamp of a file or directory","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileExists","version":"1.0.0","description":"Checks whether a path exists","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileModifiedAt","version":"1.4.0","description":"Gets timestamp of a file or directory when it was last modified","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$fileSize","version":"1.2.0","description":"Gets size of a file or directory in bytes","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isDirectory","version":"1.4.0","description":"Checks whether a path is a directory","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isFile","version":"1.4.0","description":"Checks whether a path is a file","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$isSymbolicLink","version":"1.4.0","description":"Checks whether a path is a symbolic link","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"path","description":"The path to file or directory","required":true,"rest":false,"type":"String"}],"category":"file"},{"name":"$mkdir","version":"1.0.0","description":"Creates a directory","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path for the dir","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$mktdir","version":"1.4.0","description":"Creates a temporary directory","unwrap":true,"brackets":true,"aliases":["$makeTempDir","$createTempDir"],"output":["String"],"args":[{"name":"prefix","description":"The prefix for the temp dir","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$moveFile","version":"1.4.0","description":"Moves a path to another","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make to move","rest":false,"required":true,"type":"String"},{"name":"destination","description":"The output path","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$pathJoin","version":"2.2.0","description":"Joins paths together","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"paths","description":"The paths to join with","rest":true,"required":true,"type":"String"}],"category":"file"},{"name":"$pathResolve","version":"2.2.0","description":"Resolves paths into an absolute path","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"paths","description":"The paths to resolve","rest":true,"required":true,"type":"String"}],"category":"file"},{"name":"$readDir","version":"1.5.0","description":"Reads the contents of a directory","unwrap":true,"brackets":true,"output":["Json","String[]"],"args":[{"name":"path","description":"The path to the directory","rest":false,"required":true,"type":"String"},{"name":"separator","description":"The separator to use for each result","rest":false,"type":"String"},{"name":"encoding","description":"The encoding to use for the result","rest":false,"type":"String"}],"category":"file"},{"name":"$readFile","version":"1.0.0","description":"Reads text from a file","unwrap":true,"brackets":true,"output":["Unknown"],"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"encoding","description":"The encoding to use for the text","rest":false,"type":"String"}],"category":"file"},{"name":"$renameFile","version":"1.5.0","description":"Renames a file","unwrap":true,"brackets":true,"args":[{"name":"old path","description":"The old path to the file","rest":false,"required":true,"type":"String"},{"name":"new path","description":"The new path to the file","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$symlink","version":"1.4.0","description":"Creates a symbolic link to another path","brackets":true,"unwrap":true,"args":[{"name":"path","description":"The path to make to use as reference","rest":false,"required":true,"type":"String"},{"name":"other path","description":"The other path to link","rest":false,"required":true,"type":"String"}],"category":"file"},{"name":"$truncateFile","version":"1.0.0","description":"Truncates text in a file to given length","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"length","description":"The new length for the file","rest":false,"type":"Number","required":true}],"category":"file"},{"name":"$writeFile","version":"1.0.0","description":"Writes text to a file","unwrap":true,"brackets":true,"args":[{"name":"path","description":"The path to the file","rest":false,"required":true,"type":"String"},{"name":"text","description":"The text to write","rest":false,"type":"String","required":true},{"name":"encoding","description":"The encoding to use for text","rest":false,"type":"String"}],"category":"file"},{"name":"$bold","version":"1.3.0","brackets":true,"description":"Makes given text bold","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make bold, this will attempt to escape all *","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$codeBlock","version":"1.3.0","brackets":true,"description":"Creates a code block with given text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to create block with, this will attempt to escape all `","rest":false,"required":true,"type":"String"},{"name":"lang","description":"The language to give to this code block","rest":false,"type":"String"}],"category":"formatting"},{"name":"$hyperlink","version":"1.3.0","brackets":true,"description":"Creates a hyperlink text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make hyperlink","rest":false,"required":true,"type":"String"},{"name":"url","description":"The url to use for hyperlink","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$inlineCode","aliases":["$inline","$markdown"],"version":"1.3.0","brackets":true,"description":"Adds backticks to text","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to mark down, this will attempt to escape all `","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$italic","version":"1.5.0","brackets":true,"description":"Makes given text italic","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make italic, this will attempt to escape all _ and *","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$spoiler","version":"1.3.0","brackets":true,"description":"Makes given text a spoiler","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make spoiler, this will attempt to escape all |","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$strikethrough","version":"1.3.0","brackets":true,"description":"Makes given text strikethrough","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to make strikethrough, this will attempt to escape all ~","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$subtext","version":"2.2.0","description":"Makes given text a subtext","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to make subtext","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$underline","version":"1.3.0","brackets":true,"description":"Adds an underline to text","aliases":["$underscore"],"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to add underline to, this will attempt to escape all _","rest":false,"required":true,"type":"String"}],"category":"formatting"},{"name":"$createGuild","version":"1.5.0","description":"Creates a new guild, returns guild id","aliases":["$createServer"],"unwrap":true,"brackets":true,"deprecated":true,"args":[{"name":"name","description":"The name for the guild","rest":false,"required":true,"type":"String"},{"name":"icon","description":"The icon for the guild","rest":false,"type":"URL"},{"name":"template","description":"The template to use for the guild","rest":false,"type":"Template"}],"output":["Guild"],"category":"guild"},{"name":"$createGuildTemplate","version":"1.5.0","description":"Creates template for a guild, returns template code","aliases":["$createServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to create template on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the template","rest":false,"required":true,"type":"String"},{"name":"description","description":"The description for the template","rest":false,"type":"String"}],"output":["Template"],"category":"guild"},{"name":"$deleteGuild","version":"1.5.0","description":"Deletes a guild, returns bool","aliases":["$deleteServer"],"unwrap":true,"brackets":true,"deprecated":true,"args":[{"name":"guild ID","description":"The guild to delete","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$deleteGuildApplicationCommands","version":"1.4.0","description":"Deletes all guild commands of your bot from a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to delete commands from","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$deleteGuildTemplate","version":"1.5.0","description":"Deletes template from a guild, returns bool","aliases":["$deleteServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to delete","rest":false,"required":true,"type":"Template"}],"output":["Boolean"],"category":"guild"},{"name":"$editGuildTemplate","version":"1.5.0","description":"Edits template on a guild, returns bool","aliases":["$editServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to edit","rest":false,"required":true,"type":"Template"},{"name":"name","description":"The new name for the template","rest":false,"type":"String"},{"name":"description","description":"The new description for the template","rest":false,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$getGuildInvite","version":"2.2.0","description":"Returns information about a guild invite","brackets":true,"unwrap":true,"output":["Json","Unknown"],"args":[{"name":"guild ID","description":"The guild to fetch invite from","rest":false,"required":true,"type":"Guild"},{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property of the invite to return","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"}],"category":"guild"},{"name":"$getGuildPreview","version":"2.5.0","description":"Returns the preview of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to fetch preview from","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","description","features","timestamp","icon","splash","emojis","stickers","discoverySplash","approximateMemberCount","approximatePresenceCount"],"enumName":"GuildPreviewProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown"],"category":"guild"},{"name":"$getGuildTemplate","version":"1.5.0","description":"Gets the data of a guild template","aliases":["$getServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to get","rest":false,"required":true,"type":"Template"},{"name":"property","description":"The property of the template to return","rest":false,"type":"Enum","enum":["code","name","description","guildID","authorID","timestamp","updatedTimestamp","url","usageCount","unSynced"],"enumName":"TemplateProperty"}],"output":["Json","Unknown"],"category":"guild"},{"name":"$guildAfkChannelID","version":"1.3.0","aliases":["$serverGuildAfkChannelID"],"description":"Returns the server's afk channel ID","brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildAfkTimeout","version":"1.3.0","description":"Returns the server's afk timeout","brackets":false,"aliases":["$serverAfkTimeout"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildApproximateMemberCount","version":"1.3.0","description":"Returns the approximated member count","brackets":false,"aliases":["$serverApproximateMemberCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildApproximatePresenceCount","version":"1.3.0","description":"Returns the approximated presence count","brackets":false,"aliases":["$serverApproximatePresenceCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildAutomodRules","version":"1.5.0","description":"Returns all automod rules of a guild","aliases":["$getAutomodRules"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get automod rules from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each automod rule to return","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildAvailable","version":"1.3.0","description":"Returns whether the server is available","brackets":false,"aliases":["$serverAvailable"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"unwrap":true,"category":"guild"},{"name":"$guildBanReason","version":"1.4.0","unwrap":true,"brackets":false,"aliases":["$banReason","$serverBanReason","$getBanReason","$getGuildBanReason","$getServerBanReason"],"output":["String"],"description":"Fetches a ban reason of a user","args":[{"name":"guild ID","description":"The guild to pull ban from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to pull ban reason","rest":false,"required":true,"type":"User"}],"category":"guild"},{"name":"$guildBannedMembers","version":"1.4.0","description":"Returns banned member ids of a guild","aliases":["$serverBannedMembers"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull banned members from"},{"name":"separator","rest":false,"type":"String","description":"The separator for each id"}],"output":["User[]"],"category":"guild"},{"name":"$guildBanner","version":"1.0.0","description":"Returns the guild banner","brackets":false,"aliases":["$serverBanner"],"args":[{"name":"guild ID","description":"The guild to retrieve the banner","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"unwrap":true,"category":"guild"},{"name":"$guildBoostCount","version":"1.0.0","description":"Returns the server boost count","brackets":false,"aliases":["$serverBoostCount"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildBoostLevel","version":"1.0.0","description":"Returns the server boost tier","brackets":false,"aliases":["$serverBoostLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildBoostProgressBarEnabled","version":"1.5.0","description":"Returns whether a guild has the boost progress bar enabled","aliases":["$serverBoostProgressBarEnabled"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildBoostRoleID","version":"1.0.0","description":"Returns the server boost role id","brackets":false,"aliases":["$serverBoostRoleID"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Role"],"unwrap":true,"category":"guild"},{"name":"$guildBoosterIDs","version":"1.5.0","description":"Returns all current boosters of a guild","brackets":false,"aliases":["$serverBoosterIDs"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use for every member","rest":false,"type":"String"}],"output":["Member[]"],"unwrap":true,"category":"guild"},{"name":"$guildBotCount","version":"1.0.0","description":"Returns the bot count of a guild","brackets":false,"aliases":["$serverBotCount"],"args":[{"name":"guild ID","description":"The guild to retrieve bot count from","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildChannelCount","version":"1.0.0","description":"Returns the server channel count","brackets":false,"aliases":["$serverChannelCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get channels from","rest":false,"type":"Guild","required":true},{"name":"categories","description":"The categories to filter by","rest":true,"enum":["GuildText","DM","GuildVoice","GroupDM","GuildCategory","GuildAnnouncement","AnnouncementThread","PublicThread","PrivateThread","GuildStageVoice","GuildDirectory","GuildForum","GuildMedia","GuildNews","GuildNewsThread","GuildPublicThread","GuildPrivateThread"],"type":"Enum","enumName":"ChannelType"}],"category":"guild"},{"name":"$guildChannelExists","version":"1.0.0","description":"Returns whether a guild channel id exists","unwrap":true,"aliases":["$serverChannelExists"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to check for the guild channel","type":"Guild","rest":false,"required":true},{"name":"channel ID","description":"The role to guild channel","rest":false,"required":true,"type":"String"}],"category":"guild"},{"name":"$guildChannelIDs","version":"1.3.0","unwrap":true,"brackets":false,"aliases":["$serverChannelIDs"],"output":["Channel[]"],"description":"Returns every channel id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get channel ids from"},{"name":"separator","description":"The separator to use for every channel","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildCount","version":"1.0.0","description":"Returns the guild count","unwrap":false,"aliases":["$serverCount","$serversCount"],"output":["Number"],"category":"guild"},{"name":"$guildCreatedAt","version":"1.0.0","description":"Returns the server creation timestamp","brackets":false,"aliases":["$serverCreatedAt"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildDefaultMessageNotifications","version":"1.3.0","description":"Returns the default message notifications for this guild","brackets":false,"aliases":["$serverDefaultMessageNotifications"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["GuildDefaultMessageNotifications"],"unwrap":true,"category":"guild"},{"name":"$guildDescription","version":"1.0.0","description":"Returns the server description","brackets":false,"aliases":["$serverDescription"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["String"],"unwrap":true,"category":"guild"},{"name":"$guildDiscoverySplash","version":"1.3.0","description":"Returns the guild discovery splash","brackets":false,"aliases":["$serverDiscoverySplash"],"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the discovery splash","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildDmSpamDetectedAt","version":"2.2.0","description":"Returns when a direct message spam was detected on a guild","aliases":["$serverDmSpamDetectedAt"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildDmsDisabledUntil","version":"2.2.0","description":"Returns the direct messages disabled timestamp of a guild","aliases":["$serverDmsDisabledUntil"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildEmojiCount","version":"1.0.0","description":"Returns the emoji count of a guild","brackets":false,"aliases":["$serverEmojiCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get emotes from","rest":false,"type":"Guild","required":true},{"name":"type","description":"The type of the emotes to count","rest":false,"type":"Enum","enum":["normal","animated"],"enumName":"EmojiType"}],"category":"guild"},{"name":"$guildEmojiExists","version":"2.5.0","description":"Returns whether an emoji id exists on a guild","unwrap":true,"aliases":["$serverEmojiExists"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull emoji from","rest":false,"required":true,"type":"Guild"},{"name":"emoji ID","description":"The emoji to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildEmojiIDs","version":"1.3.0","unwrap":true,"aliases":["$serverEmojiIDs"],"output":["GuildEmoji[]"],"brackets":false,"description":"Returns every emoji id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get emoji ids from"},{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildEmojiLimit","version":"1.5.0","description":"Returns the emoji limit of a guild","brackets":false,"aliases":["$serverEmojiLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildEmojis","version":"1.3.0","unwrap":true,"aliases":["$serverEmojis"],"output":["String[]"],"brackets":false,"description":"Returns every emoji of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get emoji from"},{"name":"separator","description":"The separator to use for every emoji","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildExists","version":"1.0.0","description":"Returns whether a guild id exists","unwrap":true,"aliases":["$serverExists"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to check","rest":false,"required":true,"type":"String"}],"category":"guild"},{"name":"$guildExplicitContentFilter","version":"1.3.0","description":"Returns the explicit content filter level for this guild","brackets":false,"aliases":["$serverExplicitContentFilter"],"output":["GuildExplicitContentFilter"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildFeatures","version":"1.0.0","description":"Returns the guild features","brackets":false,"aliases":["$serverFeatures"],"output":["GuildFeature[]"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildHasAnyFeatures","version":"1.4.0","description":"Returns whether this guild has any of the given features","unwrap":true,"brackets":true,"aliases":["$guildHasAnyFeature","$hasAnyGuildFeatures","$hasAnyGuildFeature"],"args":[{"name":"guild ID","description":"The guild to check for features","rest":false,"required":true,"type":"Guild"},{"name":"features","rest":true,"required":true,"type":"Enum","enum":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled","PinPermissionMigrationComplete"],"description":"The features to check for","enumName":"GuildFeature"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHasFeatures","version":"1.4.0","description":"Returns whether this guild has all the given features","unwrap":true,"brackets":true,"aliases":["$hasGuildFeatures"],"args":[{"name":"guild ID","description":"The guild to check for features","rest":false,"required":true,"type":"Guild"},{"name":"features","rest":true,"required":true,"type":"Enum","enum":["AnimatedBanner","AnimatedIcon","ApplicationCommandPermissionsV2","AutoModeration","Banner","Community","CreatorMonetizableProvisional","CreatorStorePage","DeveloperSupportServer","Discoverable","Featurable","HasDirectoryEntry","Hub","InvitesDisabled","InviteSplash","LinkedToHub","MemberVerificationGateEnabled","MoreSoundboard","MonetizationEnabled","MoreStickers","News","Partnered","PreviewEnabled","PrivateThreads","RaidAlertsDisabled","RelayEnabled","RoleIcons","RoleSubscriptionsAvailableForPurchase","RoleSubscriptionsEnabled","Soundboard","TicketedEventsEnabled","VanityURL","Verified","VIPRegions","WelcomeScreenEnabled","GuildTags","EnhancedRoleColors","GuestsEnabled","PinPermissionMigrationComplete"],"description":"The features to check for","enumName":"GuildFeature"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHasTemplate","version":"1.5.0","description":"Returns whether this guild has a template","unwrap":true,"brackets":false,"aliases":["$hasGuildTemplate"],"args":[{"name":"guild ID","description":"The guild to check for template","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildHighestRoleID","version":"1.5.0","description":"Returns the highest role id of a guild","aliases":["$serverHighestRoleID"],"brackets":false,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to retrieve its highest role","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildID","version":"1.0.0","description":"Returns the guild id with given name","unwrap":true,"aliases":["$serverID"],"output":["Guild"],"brackets":false,"args":[{"name":"name","description":"The guild name to return the id","rest":true,"type":"String","required":true}],"category":"guild"},{"name":"$guildIDs","version":"1.0.0","description":"Returns all the guilds this bot is in","unwrap":true,"aliases":["$serverIDs"],"output":["Guild[]"],"brackets":false,"args":[{"name":"separator","description":"The separator for each guild","type":"String","required":true,"rest":false}],"category":"guild"},{"name":"$guildIcon","version":"1.0.0","description":"Returns the server icon","brackets":false,"aliases":["$serverIcon"],"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the guild icon","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildInviteExists","version":"2.4.0","description":"Returns whether a guild invite code exists","aliases":["$serverInviteExists"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull invites from","rest":false,"required":true,"type":"Guild"},{"name":"code","description":"The invite to check","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildInvites","version":"2.5.0","description":"Returns all invites of a guild","aliases":["$serverInvites"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull invites from"},{"name":"property","rest":false,"type":"Enum","description":"The property of the invites to return","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"},{"name":"separator","rest":false,"type":"String","description":"The separator to use for each property"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildInvitesDisabledUntil","version":"2.2.0","description":"Returns the invites disabled timestamp of a guild","aliases":["$serverInvitesDisabledUntil"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildLarge","version":"2.4.0","description":"Returns whether a guild is considered as large","unwrap":true,"brackets":false,"aliases":["$serverLarge"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$guildLeave","version":"1.0.0","description":"Leaves a guild","brackets":false,"aliases":["$serverLeave"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to leave","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildLowestRoleID","version":"1.5.0","description":"Returns the lowest role id of a guild","aliases":["$serverLowestRoleID"],"brackets":false,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to retrieve its lowest role","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMFALevel","version":"1.3.0","description":"Returns the mfa level for this guild","brackets":false,"aliases":["$serverMFALevel"],"output":["GuildMFALevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaxStageVideoChannelUsers","version":"1.3.0","description":"Returns the maximum video channel users for stage channels of this guild","brackets":false,"aliases":["$serverMaxStageVideoChannelUsers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaxVideoChannelUsers","version":"1.3.0","description":"Returns the maximum video channel users for this guild","brackets":false,"aliases":["$serverMaxVideoChannelUsers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumBitrate","version":"1.3.0","aliases":["$serverMaximumBitrate"],"output":["Number"],"description":"Returns the maximum bitrate for voice channels of this guild","brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumMembers","version":"1.3.0","description":"Returns the maximum members for this guild","brackets":false,"aliases":["$serverMaximumMembers"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMaximumPresences","version":"1.3.0","description":"Returns the maximum presences for this guild","brackets":false,"aliases":["$serverMaximumPresences"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildMemberCount","version":"1.0.0","description":"Returns the user count of a guild","brackets":false,"aliases":["$serverMemberCount","$serverMembersCount"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve member count from","rest":false,"required":true,"type":"Guild"},{"name":"presence","description":"The presence of the users to count","rest":false,"type":"Enum","enum":["online","idle","dnd","offline"],"enumName":"PresenceStatus"},{"name":"count bots","description":"Whether to count bots","rest":false,"type":"Boolean"}],"unwrap":true,"category":"guild"},{"name":"$guildMemberIDs","version":"1.4.0","aliases":["$memberIDs","$serverMemberIDs"],"output":["Member[]"],"description":"Returns all cached member ids of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to pull members from"},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildNSFWLevel","version":"1.3.0","description":"Returns the nsfw level for this guild","brackets":false,"aliases":["$serverNSFWLevel"],"output":["GuildNSFWLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildName","version":"1.0.0","description":"Returns the server name","brackets":false,"aliases":["$serverName"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildNameAcronym","version":"1.3.0","description":"Returns the server name acronym","brackets":false,"aliases":["$serverNameAcronym"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildNames","version":"1.0.0","description":"Returns the server names of the bot","brackets":false,"aliases":["$serverNames"],"output":["String[]"],"args":[{"name":"separator","description":"The separator to use for each guild","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildOwnerID","version":"1.0.0","description":"Returns the server owner id","brackets":false,"aliases":["$serverOwnerID"],"output":["User"],"args":[{"name":"guild ID","description":"The guild to retrieve the owner from","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPartnered","version":"1.3.0","description":"Returns whether the server is partnered","brackets":false,"aliases":["$serverPartnered"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPreferredLocale","version":"1.3.0","description":"Returns the server's preferred locale","brackets":false,"aliases":["$serverPreferredLocale"],"output":["Locale"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildPublicUpdatesChannelID","version":"1.3.0","description":"Returns the server's public updates channel ID","brackets":false,"aliases":["$serverPublicUpdatesChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildRaidDetectedAt","version":"2.2.0","description":"Returns when a raid was detected on a guild","aliases":["$serverRaidDetectedAt"],"brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildRawData","version":"1.5.0","description":"Returns the raw data of a guild","aliases":["$serverRawData"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get raw data from","rest":false,"type":"Guild","required":true}],"output":["Json"],"category":"guild"},{"name":"$guildRoleCount","version":"1.0.0","description":"Returns the role count of a guild","brackets":false,"aliases":["$serverRoleCount"],"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get roles from","rest":false,"type":"Guild","required":true}],"category":"guild"},{"name":"$guildRoleIDs","version":"1.3.0","description":"Returns every role id of the guild","aliases":["$serverRoleIDs","$roleIDs"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get role ids from","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use for every role","rest":false,"type":"String"},{"name":"everyone","description":"Whether to include the @everyone role, defaults to true","rest":false,"type":"Boolean"}],"output":["Role[]"],"category":"guild"},{"name":"$guildRulesChannelID","version":"1.3.0","description":"Returns the server's rules channel ID","brackets":false,"aliases":["$serverRulesChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildSafetyAlertsChannelID","version":"1.3.0","description":"Returns the server's safety alerts channel ID","brackets":false,"aliases":["$serverSafetyAlertsChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildScheduledEvents","version":"2.6.0","description":"Returns all scheduled events of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get scheduled events from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of the scheduled events to return","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType","privacyLevel","status"],"enumName":"ScheduledEventProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildShardID","version":"1.0.0","description":"Returns the server shard ID","brackets":false,"aliases":["$serverShardID"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildSoundboardLimit","version":"2.5.0","description":"Returns the soundboard sound limit of a guild","brackets":false,"unwrap":true,"aliases":["$serverSoundboardLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"category":"guild"},{"name":"$guildSoundboardSounds","version":"2.4.0","description":"Returns all soundboard sounds of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get soundboard sounds from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each sound to return","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildSplashURL","version":"1.0.0","aliases":["$serverSplashURL"],"output":["URL"],"description":"Returns the guild splash url","brackets":false,"args":[{"name":"guild ID","description":"The guild to retrieve the splash","rest":false,"required":true,"type":"Guild"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"guild"},{"name":"$guildStageInstances","version":"2.3.0","description":"Returns all active stage instances of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get stage instances from","rest":false,"required":true,"type":"Guild"},{"name":"property","description":"The property of each stage instance to return","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"enumName":"StageProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildStickerExists","version":"2.5.0","description":"Returns whether a sticker id exists on a guild","unwrap":true,"aliases":["$serverStickerExists"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull sticker from","rest":false,"required":true,"type":"Guild"},{"name":"sticker ID","description":"The sticker to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$guildStickerIDs","version":"1.3.0","unwrap":true,"aliases":["$serverStickerIDs"],"output":["Sticker[]"],"brackets":false,"description":"Returns every sticker id of the guild","args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to get sticker ids from"},{"name":"separator","description":"The separator to use for every sticker","rest":false,"type":"String"}],"category":"guild"},{"name":"$guildStickerLimit","version":"1.5.0","description":"Returns the sticker limit of a guild","brackets":false,"aliases":["$serverStickerLimit"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"output":["Number"],"unwrap":true,"category":"guild"},{"name":"$guildSystemChannelID","version":"1.0.0","description":"Returns the server's system channel ID","brackets":false,"aliases":["$serverSystemChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildTemplateCode","version":"2.4.0","description":"Returns the template code of a guild","unwrap":true,"brackets":false,"aliases":["$serverTemplateCode"],"args":[{"name":"guild ID","description":"The guild to get template from","rest":false,"required":true,"type":"Guild"}],"output":["Template"],"category":"guild"},{"name":"$guildTimedOutMembers","version":"1.5.0","description":"Returns all current timed out members of a guild","unwrap":true,"brackets":false,"aliases":["$serverTimedOutMembers"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"},{"name":"separator","description":"The separator to use for every member","rest":false,"type":"String"}],"output":["Member[]"],"category":"guild"},{"name":"$guildVanityCode","version":"1.0.0","description":"Returns the guilds vanity code","unwrap":true,"aliases":["$serverVanityCode"],"output":["Invite"],"args":[{"name":"guild ID","description":"The guild to return its vanity code","rest":false,"type":"Guild","required":true}],"brackets":false,"category":"guild"},{"name":"$guildVanityUses","version":"1.0.0","description":"Returns the guilds vanity uses","unwrap":true,"aliases":["$serverVanityUses"],"output":["Number"],"args":[{"name":"guild ID","description":"The guild to return its vanity uses","rest":false,"type":"Guild","required":true}],"brackets":false,"category":"guild"},{"name":"$guildVerificationLevel","version":"1.3.0","description":"Returns the server verification level","brackets":false,"aliases":["$serverVerificationLevel"],"output":["GuildVerificationLevel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildVerified","version":"1.3.0","description":"Returns whether the server is verified","brackets":false,"aliases":["$serverVerified"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildWebhooks","version":"2.3.0","description":"Returns all webhooks of a guild","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"type":"Guild","required":true},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"enumName":"WebhookProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"guild"},{"name":"$guildWidgetChannelEnabled","version":"1.3.0","description":"Returns whether widget channel is enabled for this guild","brackets":false,"aliases":["$serverWidgetChannelEnabled"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$guildWidgetChannelID","version":"1.3.0","description":"Returns the widget channel for this guild","brackets":false,"aliases":["$serverWidgetChannelID"],"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to retrieve the data","rest":false,"required":true,"type":"Guild"}],"unwrap":true,"category":"guild"},{"name":"$randomGuildID","version":"1.0.3","description":"Returns a random guild ID","unwrap":false,"aliases":["$randomServerID"],"output":["Guild"],"category":"guild"},{"name":"$registerGuildApplicationCommands","version":"1.4.0","description":"Registers all application commands with type: 1 to a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to register commands to","rest":false,"required":true,"type":"Guild"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildAFKChannel","version":"2.1.0","description":"Sets the AFK channel for a guild, returns bool","unwrap":true,"aliases":["$setServerAFKChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set AFK channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new AFK channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildAFKTimeout","version":"2.1.0","description":"Sets the AFK timeout for a guild, returns bool","unwrap":true,"aliases":["$setServerAFKTimeout"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set AFK timeout for","rest":false,"type":"Guild","required":true},{"name":"seconds","description":"The new AFK timeout in seconds (60, 300, 900, 1800, 3600)","rest":false,"required":true,"type":"Number"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildBanner","version":"1.0.0","description":"Sets a guild banner, returns boolean","unwrap":true,"aliases":["$setServerBanner"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set banner on"},{"name":"url","description":"The new banner","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildBoostProgressBar","version":"1.5.0","description":"Sets a guild boost progress bar, returns bool","aliases":["$setServerBoostProgressBar"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to set boost progress bar for","rest":false,"required":true,"type":"Guild"},{"name":"enabled","description":"Whether to enable the boost progress bar","rest":false,"required":true,"type":"Boolean"},{"name":"reason","description":"The reason for enabling/disabling boost progress bar","rest":false,"type":"String"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildDefaultMessageNotifications","version":"2.1.0","description":"Sets the default message notifications setting for a guild, returns bool","unwrap":true,"aliases":["$setServerDefaultMessageNotifications"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set default message notifications for","rest":false,"type":"Guild","required":true},{"name":"setting","description":"The new default message notifications setting","rest":false,"type":"Enum","enum":["AllMessages","OnlyMentions"],"enumName":"GuildDefaultMessageNotifications"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildDiscoverySplash","version":"2.1.0","description":"Sets the discovery splash for a guild, returns bool","unwrap":true,"aliases":["$setServerDiscoverySplash"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set discovery splash for","rest":false,"type":"Guild","required":true},{"name":"url","description":"The new discovery splash","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildDmsDisabled","version":"2.6.0","description":"Sets the guild's DMs activity disabled for a specific duration, returns bool","aliases":["$setServerDmsDisabled"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to disable DMs for","rest":false,"required":true,"type":"Guild"},{"name":"duration","description":"The duration for disabling DMs, omit to enable DMs again","rest":false,"type":"Time"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildExplicitContentFilter","version":"2.1.0","description":"Sets the explicit content filter for a guild, returns bool","unwrap":true,"aliases":["$setServerExplicitContentFilter"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set explicit content filter for","rest":false,"type":"Guild","required":true},{"name":"filter","description":"The new explicit content filter","rest":false,"type":"Enum","enum":["Disabled","MembersWithoutRoles","AllMembers"],"enumName":"GuildExplicitContentFilter"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildIcon","version":"1.0.0","description":"Sets a guild icon, returns boolean","unwrap":true,"aliases":["$setServerIcon"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set icon on"},{"name":"url","description":"The new icon","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildInvitesDisabled","version":"2.6.0","description":"Sets the guild's invites disabled for a specific duration, returns bool","aliases":["$setServerInvitesDisabled"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to disable invites for","rest":false,"required":true,"type":"Guild"},{"name":"duration","description":"The duration for disabling invites, omit to enable invites again","rest":false,"type":"Time"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildMFALevel","version":"2.1.0","description":"Sets the MFA level for a guild, returns bool","unwrap":true,"deprecated":true,"aliases":["$setServerMFALevel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set MFA level for","rest":false,"type":"Guild","required":true},{"name":"level","description":"The new MFA level","rest":false,"required":true,"type":"Enum","enum":["None","Elevated"],"enumName":"GuildMFALevel"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildName","version":"1.0.0","description":"Sets a guild name, returns boolean","unwrap":true,"aliases":["$setServerName"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set name"},{"name":"name","description":"The new name","rest":false,"required":true,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildOwner","version":"2.1.0","description":"Sets the owner of a guild, returns bool","unwrap":true,"deprecated":true,"aliases":["$setServerOwner"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set owner on","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The new owner","rest":false,"required":true,"type":"Member","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildPausedInvites","version":"1.5.0","description":"Sets a guild paused invite status, returns bool","aliases":["$setServerPausedInvites"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to set paused invites for","rest":false,"required":true,"type":"Guild"},{"name":"disabled","description":"Whether to disable the invites","rest":false,"required":true,"type":"Boolean"}],"output":["Boolean"],"category":"guild"},{"name":"$setGuildPreferredLocale","version":"2.1.0","description":"Sets the preferred locale of a guild, returns bool","unwrap":true,"aliases":["$setServerPreferredLocale"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set preferred locale on","rest":false,"type":"Guild","required":true},{"name":"locale","description":"The new preferred locale","rest":false,"type":"Enum","enum":["Indonesian","EnglishUS","EnglishGB","Bulgarian","ChineseCN","ChineseTW","Croatian","Czech","Danish","Dutch","Finnish","French","German","Greek","Hindi","Hungarian","Italian","Japanese","Korean","Lithuanian","Norwegian","Polish","PortugueseBR","Romanian","Russian","SpanishES","SpanishLATAM","Swedish","Thai","Turkish","Ukrainian","Vietnamese"],"enumName":"Locale"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildPublicUpdatesChannel","version":"2.1.0","description":"Sets the public updates channel for a guild, returns bool","unwrap":true,"aliases":["$setServerPublicUpdatesChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set public updates channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new public updates channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildRulesChannel","version":"2.1.0","description":"Sets the rules channel for a guild, returns bool","unwrap":true,"aliases":["$setServerRulesChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set rules channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new rules channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSafetyAlertsChannel","version":"2.1.0","description":"Sets the safety alerts channel for a guild, returns bool","unwrap":true,"aliases":["$setServerSafetyAlertsChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set safety alerts channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new safety alerts channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSplash","version":"1.0.0","description":"Sets a guild splash, returns boolean","unwrap":true,"aliases":["$setServerSplash"],"output":["Boolean"],"args":[{"name":"guild ID","rest":false,"type":"Guild","required":true,"description":"The guild to set splash on"},{"name":"url","description":"The new splash","rest":false,"type":"String"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildSystemChannel","version":"2.1.0","description":"Sets the system channel for a guild, returns bool","unwrap":true,"aliases":["$setServerSystemChannel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set system channel for","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The new system channel","rest":false,"type":"Channel","pointer":0},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildVerificationLevel","version":"2.1.0","description":"Sets the verification level of a guild, returns bool","unwrap":true,"aliases":["$setServerVerificationLevel"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set verification level on","rest":false,"type":"Guild","required":true},{"name":"level","description":"The new verification level","rest":false,"type":"Enum","enum":["None","Low","Medium","High","VeryHigh"],"enumName":"GuildVerificationLevel"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$setGuildWidgetSettings","version":"2.1.0","description":"Sets the widget settings of a guild, returns bool","unwrap":true,"aliases":["$setServerWidgetSettings"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to set widget settings on","rest":false,"type":"Guild","required":true},{"name":"channel ID","description":"The invite channel for the widget","rest":false,"type":"Channel"},{"name":"enabled","description":"Whether to enable the widget","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for this action","rest":false,"type":"String"}],"brackets":true,"category":"guild"},{"name":"$syncGuildTemplate","version":"2.4.0","description":"Syncs this template to the current state of the guild, returns bool","aliases":["$syncServerTemplate"],"unwrap":true,"brackets":true,"args":[{"name":"template code","description":"The code of the template to sync","rest":false,"required":true,"type":"Template"}],"output":["Boolean"],"category":"guild"},{"name":"$httpAddForm","version":"1.4.0","description":"Adds form data to request","unwrap":false,"category":"http"},{"name":"$httpAddHeader","version":"1.0.0","description":"Adds an HTTP header","unwrap":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true},{"name":"value","description":"The header value","rest":true,"type":"String","required":true}],"brackets":true,"category":"http"},{"name":"$httpAppendFile","version":"1.4.0","description":"Appends a file to form data","brackets":true,"unwrap":true,"args":[{"name":"key","description":"The key name to add this value to","rest":false,"required":true,"type":"String"},{"name":"url / path","type":"Attachment","rest":false,"required":true,"description":"The path or url to use"}],"category":"http"},{"name":"$httpAppendValue","version":"1.4.0","description":"Appends a key-value to form data","brackets":true,"unwrap":true,"args":[{"name":"key","description":"The key name to add this value to","rest":false,"required":true,"type":"String"},{"name":"value","type":"String","rest":false,"required":true,"description":"The value to set"}],"category":"http"},{"name":"$httpGetHeader","version":"1.5.0","description":"Gets an HTTP header","unwrap":true,"brackets":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true}],"output":["String"],"category":"http"},{"name":"$httpPing","version":"1.5.0","description":"Returns the response time of the HTTP request","aliases":["$httpResponseTime"],"unwrap":false,"experimental":true,"output":["Number"],"category":"http"},{"name":"$httpRemoveHeader","version":"1.0.0","description":"Removes an HTTP header","unwrap":true,"args":[{"name":"name","description":"The header name","rest":false,"type":"String","required":true}],"brackets":true,"category":"http"},{"name":"$httpRequest","version":"1.0.0","description":"Performs an http request, returns the status code","output":["Number"],"args":[{"name":"url","description":"The url to perform this request to","type":"String","rest":false,"required":true},{"name":"method","description":"The method to use","rest":false,"required":true,"type":"String"},{"name":"variable","description":"Environment variable name to load the response to","rest":false,"required":false,"type":"String"}],"brackets":true,"unwrap":true,"category":"http"},{"name":"$httpResult","version":"1.2.0","description":"Retrieve an http result value","brackets":false,"unwrap":true,"args":[{"name":"key","description":"The key to return its value","required":true,"type":"String","rest":true}],"output":["Json","Unknown"],"category":"http"},{"name":"$httpSetBody","version":"1.0.0","description":"Sets a JSON body for the request","args":[{"name":"body","description":"The JSON body","rest":false,"required":true,"type":"String"}],"unwrap":true,"brackets":true,"category":"http"},{"name":"$httpSetContentType","version":"1.4.0","description":"Forces the http request to be decoded using given content type","args":[{"name":"type","description":"The content type of the result","required":true,"type":"Enum","enum":["Json","Text"],"rest":false,"enumName":"HTTPContentType"}],"brackets":true,"unwrap":true,"category":"http"},{"name":"$applicationCommandDescription","version":"1.0.7","description":"Returns an application command description","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its description","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandDisplay","version":"1.4.0","description":"Gets the full command interaction with all options","unwrap":true,"brackets":false,"args":[{"name":"hide option name","description":"Whether to suppress option names from being displayed","rest":false,"required":true,"type":"Boolean"}],"output":["String"],"category":"interaction"},{"name":"$applicationCommandID","version":"1.0.7","description":"Returns the application command id","brackets":false,"args":[{"name":"name","description":"The name of the command to pull its id","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandName","version":"1.0.7","description":"Returns an application command name","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its name","rest":false,"required":true,"type":"String"}],"output":["String"],"unwrap":true,"category":"interaction"},{"name":"$applicationCommandOptions","version":"1.5.0","description":"Returns an application command options in JSON format","brackets":false,"args":[{"name":"id","description":"The id of the command to pull its options","rest":false,"required":true,"type":"String"}],"output":["Json"],"unwrap":true,"category":"interaction"},{"name":"$applicationSubCommandGroupName","version":"1.5.0","description":"Returns the application sub command group name of this interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$applicationSubCommandName","version":"1.5.0","description":"Returns the application sub command name of this interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$authorizingIntegrationOwners","version":"1.5.0","description":"Returns the authorizing integration owners of this interaction","unwrap":true,"brackets":false,"args":[{"name":"type","description":"The type of authorizing integration owners to return","rest":false,"required":true,"type":"Enum","enum":["Guild","User"],"enumName":"AuthorizingIntegrationOwnersType"}],"output":["Json","User","Guild"],"category":"interaction"},{"name":"$autocomplete","version":"1.0.6","description":"Forces autocomplete response","unwrap":false,"category":"interaction"},{"name":"$context","version":"1.5.0","description":"Returns the context of this interaction","aliases":["$interactionContext"],"unwrap":false,"output":["InteractionContextType"],"category":"interaction"},{"name":"$customID","version":"1.0.0","description":"Retrieves the custom id of the interaction","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$defer","version":"1.0.0","description":"Defers this interaction","unwrap":false,"category":"interaction"},{"name":"$deferUpdate","version":"1.3.0","description":"Defers this interaction as an update","unwrap":false,"category":"interaction"},{"name":"$ephemeral","version":"1.0.0","description":"Marks this reply as ephemeral","unwrap":false,"category":"interaction"},{"name":"$focusedOptionName","version":"1.0.6","description":"Returns the focused option of the command","unwrap":false,"output":["String"],"category":"interaction"},{"name":"$focusedOptionValue","version":"1.0.6","description":"Returns the focused option value of the command","unwrap":false,"output":["Unknown"],"category":"interaction"},{"name":"$input","version":"1.0.0","description":"Returns the value from a modal field","brackets":true,"unwrap":true,"args":[{"name":"custom ID","description":"The custom id to get its field value","rest":false,"type":"String","required":true},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["String"],"category":"interaction"},{"name":"$interactionDelete","version":"1.4.0","description":"Deletes this interaction's reply","unwrap":false,"category":"interaction"},{"name":"$interactionFollowUp","version":"1.2.0","description":"Forces an interaction follow up","unwrap":true,"brackets":false,"output":["Message"],"args":[{"name":"content","description":"The content to use for this follow up","required":true,"type":"String","rest":false},{"name":"return message ID","description":"Whether to fetch and return the message id of the follow up","rest":false,"type":"Boolean","required":false}],"category":"interaction"},{"name":"$interactionRawData","version":"1.5.0","description":"Returns the raw data of this interaction","unwrap":false,"output":["Json"],"category":"interaction"},{"name":"$interactionReply","version":"1.0.0","description":"Forces an interaction reply","unwrap":true,"brackets":false,"output":["Message"],"args":[{"name":"content","description":"The content to use for this response","required":true,"type":"String","rest":false},{"name":"return message ID","description":"Whether to fetch and return the message id of the reply","rest":false,"type":"Boolean","required":false}],"category":"interaction"},{"name":"$interactionRequirePremium","version":"1.5.0","description":"Requires premium to use this interaction","unwrap":false,"deprecated":true,"category":"interaction"},{"name":"$interactionUpdate","version":"1.0.3","description":"Forces an interaction update","unwrap":true,"brackets":false,"args":[{"name":"content","description":"The content to use for this response","required":true,"type":"String","rest":false}],"category":"interaction"},{"name":"$isActivityCommand","version":"2.4.0","description":"Returns whether the interaction is an activity command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isAnySelectMenu","version":"1.0.0","output":["Boolean"],"description":"Returns whether the context is a select menu","unwrap":false,"category":"interaction"},{"name":"$isAutocomplete","version":"1.0.6","description":"Returns whether the interaction is autocomplete","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isButton","version":"1.0.0","description":"Returns whether the interaction is a button","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isChannelSelectMenu","version":"1.0.0","description":"Returns whether the context is a channel select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isCommand","version":"1.0.6","description":"Returns whether the interaction is a command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isContextMenu","version":"1.0.6","description":"Returns whether the interaction is a context menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isMentionableSelectMenu","version":"1.0.0","description":"Returns whether the context is a mentionable select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isModal","version":"1.0.0","description":"Returns whether the context is a modal","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isRepliable","version":"1.5.0","description":"Returns whether this interaction can be replied to","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isRoleSelectMenu","version":"1.0.0","description":"Returns whether the context is a role select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isSlashCommand","version":"1.4.0","description":"Returns whether the interaction is a slash command","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isStringSelectMenu","version":"1.0.0","description":"Returns whether the context is a string select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$isUserSelectMenu","version":"1.0.0","description":"Returns whether the context is a user select menu","unwrap":false,"output":["Boolean"],"category":"interaction"},{"name":"$launchActivity","version":"2.4.0","description":"Launches the activity of the client, if enabled","unwrap":false,"category":"interaction"},{"name":"$locale","aliases":["$interactionLocale"],"version":"1.4.0","description":"Retrieves the user locale of the interaction","unwrap":false,"output":["Locale"],"category":"interaction"},{"name":"$modal","version":"1.0.0","description":"Creates a modal","unwrap":true,"brackets":true,"args":[{"name":"custom ID","description":"The custom id for this modal","rest":false,"type":"String","required":true},{"name":"title","description":"The title for the modal","rest":false,"required":true,"type":"String"}],"category":"interaction"},{"name":"$option","version":"1.0.6","description":"Returns an option value with given name (interaction command)","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"option name","description":"The option name to retrieve its value","rest":false,"required":true,"type":"String"}],"category":"interaction"},{"name":"$selectMenuValues","version":"1.0.0","description":"Returns select menu values","brackets":false,"args":[{"name":"index","description":"The index of the value","type":"Number","rest":false},{"name":"separator","description":"The separator to use for each value","type":"String","rest":false}],"output":["String[]"],"unwrap":true,"category":"interaction"},{"name":"$showModal","version":"1.4.0","description":"Shows the modal immediately","unwrap":false,"category":"interaction"},{"name":"$targetMember","version":"2.3.0","description":"Retrieves data of the target member","unwrap":true,"brackets":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"interaction"},{"name":"$targetMessage","version":"1.5.0","description":"Retrieves data of the target message","unwrap":true,"brackets":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"Separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"interaction"},{"name":"$targetMessageEmbeds","version":"1.5.0","description":"Retrieves data of embeds from the target message","aliases":["$targetMessageEmbed"],"unwrap":true,"brackets":false,"args":[{"name":"embed index","description":"The embed index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"required":false,"enumName":"EmbedProperty"},{"name":"field index","description":"The index of the field to get","rest":false,"type":"Number"}],"output":["Json","Unknown"],"category":"interaction"},{"name":"$deleteInvite","version":"1.0.0","brackets":true,"description":"Deletes an invite, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"reason","description":"The reason for deleting the invite","rest":false,"type":"String"}],"category":"invite"},{"name":"$getInvite","version":"2.2.0","description":"Returns information about an invite","brackets":true,"unwrap":true,"output":["Json","Unknown"],"args":[{"name":"code","description":"The invite code","rest":false,"required":true,"type":"String"},{"name":"property","description":"The property of the invite to return","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"enumName":"InviteProperty"}],"category":"invite"},{"name":"$inviteExists","version":"1.0.0","description":"Returns whether an invite code exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"code","description":"The invite to check","rest":false,"required":true,"type":"String"}],"category":"invite"},{"name":"$inviterCode","version":"1.0.3","description":"Returns the invite code that was used by this person","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get its invite code","rest":false,"required":true,"type":"Member","pointer":0}],"output":["Invite"],"category":"invite"},{"name":"$inviterID","version":"1.0.3","description":"Returns the user who invited this person","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get its inviter","rest":false,"required":true,"type":"Member","pointer":0}],"output":["User"],"category":"invite"},{"name":"$isJSON","version":"1.4.0","aliases":["$isValidJSON"],"description":"Checks whether given JSON is valid","unwrap":true,"brackets":true,"args":[{"name":"json","description":"The json to check for","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"json"},{"name":"$jsonAssign","version":"2.6.0","description":"Combines multiple JSON objects into a single JSON object","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable that holds the target object","required":true,"type":"String","rest":false},{"name":"other variable","description":"The variable to load the result to, leave empty to return output","type":"String","rest":false},{"name":"objects","description":"The objects from which to copy properties","type":"Json","required":true,"rest":true}],"output":["Json"],"category":"json"},{"name":"$jsonDelete","version":"1.4.0","description":"Deletes a key from a traversed JSON","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"keys","description":"The keys to use to traverse the object","rest":true,"required":true,"type":"String"}],"category":"json"},{"name":"$jsonEntries","version":"1.4.0","description":"Gets entries from a JSON variable","brackets":true,"args":[{"name":"variable","description":"The variable to get entries from","rest":false,"type":"String","required":true}],"output":["Json"],"unwrap":true,"category":"json"},{"name":"$jsonHas","version":"2.2.0","description":"Returns whether a key exists in a JSON object","brackets":true,"unwrap":true,"args":[{"name":"variable","description":"The variable that holds json","required":true,"type":"String","rest":false},{"name":"key","description":"The key to check for","type":"String","required":true,"rest":false}],"output":["Boolean"],"category":"json"},{"name":"$jsonKeys","version":"1.4.0","description":"Gets keys from a JSON variable","brackets":true,"args":[{"name":"variable","description":"The variable to get keys from","rest":false,"type":"String","required":true}],"output":["Json"],"unwrap":true,"category":"json"},{"name":"$jsonLoad","version":"1.0.0","description":"Loads JSON to an env variable","brackets":true,"args":[{"name":"variable","description":"The variable to load json to","rest":false,"type":"String","required":true},{"name":"json","description":"The json data","type":"Json","required":true,"rest":false}],"unwrap":true,"category":"json"},{"name":"$jsonSet","version":"1.2.0","description":"Adds a JSON key with a value","unwrap":true,"brackets":true,"args":[{"name":"keys;value","description":"The keys to traverse, with the value to use at the end","type":"String","rest":true,"required":true}],"output":["Boolean"],"category":"json"},{"name":"$jsonStringify","version":"1.5.0","output":["Json"],"description":"Returns the JSON in stringified format","args":[{"name":"variable","description":"The variable to stringify","required":true,"type":"String","rest":false},{"name":"space","description":"The space to use","type":"Number","rest":false}],"brackets":true,"unwrap":true,"category":"json"},{"name":"$jsonValues","version":"1.4.0","description":"Gets values from a JSON variable","brackets":true,"args":[{"name":"variable","description":"The variable to get values from","rest":false,"type":"String","required":true},{"name":"separator","description":"The separator to use for each value","type":"String","rest":false}],"output":["Json","Unknown[]"],"unwrap":true,"category":"json"},{"name":"$onlyForCategories","version":"1.5.0","description":"Only executes code if given ids match the current category","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if category is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"channels","pointer":0,"description":"The categories to check for","rest":true,"required":true,"type":"Channel"}],"category":"limiter"},{"name":"$onlyForChannels","version":"1.5.0","description":"Only executes code if given ids match the current channel","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if channel is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"channels","pointer":0,"description":"The channels to check for","rest":true,"required":true,"type":"Channel"}],"category":"limiter"},{"name":"$onlyForGuilds","version":"1.1.0","description":"Only executes code if given ids match the guild","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if guild is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"guilds","description":"The guilds to check for","rest":true,"required":true,"type":"Guild"}],"category":"limiter"},{"name":"$onlyForRoles","version":"1.1.0","description":"Only executes code if user has given roles","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if user does not meet the roles","rest":false,"required":true,"type":"String"},{"name":"roles","pointer":0,"description":"The roles to check for","rest":true,"required":true,"type":"Role"}],"category":"limiter"},{"name":"$onlyForUsers","version":"1.1.0","description":"Only executes code if given ids match the author","brackets":true,"unwrap":false,"args":[{"name":"code","description":"The code to execute if user is not whitelisted","rest":false,"required":true,"type":"String"},{"name":"users","description":"The users to check for","rest":true,"required":true,"type":"User"}],"category":"limiter"},{"name":"$onlyIf","version":"1.0.0","description":"Stop execution if condition is not matched","unwrap":false,"brackets":true,"args":[{"name":"condition","condition":true,"description":"The condition to use","rest":false,"type":"String","required":true},{"name":"code","description":"The code to execute if error","rest":false,"type":"String"}],"category":"limiter"},{"name":"$stop","version":"1.0.0","description":"Stops code execution","unwrap":false,"category":"limiter"},{"name":"$chalkLog","version":"2.3.0","description":"Logs styled text to the console using Chalk","unwrap":true,"brackets":true,"args":[{"name":"text","description":"The text to log","type":"String","required":true,"rest":false},{"name":"styles","description":"The styles to apply to the text","type":"String","required":true,"rest":true}],"category":"logging"},{"name":"$log","version":"1.0.0","description":"Log something to console","unwrap":true,"args":[{"name":"message","description":"The message to log to console","rest":true,"type":"String","required":true}],"brackets":true,"category":"logging"},{"name":"$logger","version":"1.3.0","description":"Implements Logger API of ForgeScript","unwrap":true,"brackets":true,"args":[{"name":"log type","description":"The log type","enum":["Warn","Deprecated","Debug","Info","Error"],"type":"Enum","required":true,"rest":false,"enumName":"LogType"},{"name":"text","description":"The text to log","rest":false,"required":true,"type":"String"}],"category":"logging"},{"name":"$findApplicationEmoji","version":"2.2.0","description":"Finds an application emoji of the client","brackets":true,"output":["ApplicationEmoji"],"args":[{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findChannel","version":"1.0.0","description":"Finds a channel","brackets":true,"output":["Channel"],"args":[{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"return channel","description":"Returns the current channel id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findChannels","version":"1.5.0","description":"Finds channels of a guild using a query","brackets":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to find the channels on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"method","description":"The method to use for searching","rest":false,"type":"Enum","enum":["startsWith","endsWith","includes"],"enumName":"SearchMethodType"}],"unwrap":true,"category":"lookup"},{"name":"$findEmoji","version":"1.0.0","description":"Finds an emoji","brackets":true,"output":["Emoji"],"args":[{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findGuild","version":"2.2.0","description":"Finds a guild","brackets":true,"output":["Guild"],"args":[{"name":"query","description":"The id or guild name to find","rest":false,"type":"String","required":true},{"name":"return guild","description":"Returns the current guild id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findGuildChannel","version":"1.0.0","description":"Finds a channel of a guild","brackets":true,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to find the channel on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or channel name to find","rest":false,"type":"String","required":true},{"name":"return channel","description":"Returns the current channel id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findGuildEmoji","version":"1.0.0","description":"Finds an emoji of a guild","brackets":true,"output":["GuildEmoji"],"args":[{"name":"guild ID","description":"The guild to find the emoji on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, format or emoji name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findMember","version":"1.0.0","description":"Finds a member of a guild","brackets":true,"output":["Member"],"args":[{"name":"guild ID","description":"The guild to find the member on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or name to find","rest":false,"type":"String","required":true},{"name":"return author","description":"Returns the current author id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$findMembers","version":"1.4.0","description":"Finds member of a guild using a query","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to use","rest":false,"required":true,"type":"Guild"},{"name":"query","description":"The query to use","rest":false,"required":true,"type":"String"},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"enum value","description":"The enum value to use","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"lookup"},{"name":"$findRole","version":"1.0.0","description":"Finds a role of a guild","brackets":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to find the role on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or role name to find","rest":false,"type":"String","required":true}],"unwrap":true,"category":"lookup"},{"name":"$findRoles","version":"1.5.0","description":"Finds roles of a guild using a query","brackets":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to find the roles on","type":"Guild","rest":false,"required":true},{"name":"query","description":"The id, mention or role name to find","rest":false,"type":"String","required":true},{"name":"limit","description":"The limit of results","rest":false,"type":"Number"},{"name":"property","description":"The property to return","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use for every result","rest":false,"type":"String"},{"name":"method","description":"The method to use for searching","rest":false,"type":"Enum","enum":["startsWith","endsWith","includes"],"enumName":"SearchMethodType"}],"unwrap":true,"category":"lookup"},{"name":"$findUser","version":"1.0.0","description":"Finds a user","brackets":true,"output":["User"],"args":[{"name":"query","description":"The id, mention or user name to find","rest":false,"type":"String","required":true},{"name":"return author","description":"Returns the current author id if none found","rest":false,"type":"Boolean"}],"unwrap":true,"category":"lookup"},{"name":"$abs","version":"1.0.1","description":"Returns the absolute value of a number (the value without regard to whether it is positive or negative)","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$base","version":"1.1.0","description":"Convert number from one base to another","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The target number for conversion","type":"String","rest":false,"required":true},{"name":"to","description":"The target base","type":"Number","rest":false,"required":true},{"name":"from","description":"The source base","type":"Number","rest":false}],"category":"math"},{"name":"$bigintDivide","version":"1.3.0","description":"Divides multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to divide","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintMulti","version":"1.3.0","description":"Multiplies multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to multiply","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintSub","version":"1.3.0","description":"Subtracts multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to sub","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$bigintSum","version":"1.3.0","description":"Adds multiple numbers","brackets":true,"unwrap":true,"output":["BigInt"],"args":[{"name":"numbers","description":"Numbers to add","rest":true,"type":"BigInt","required":true}],"category":"math"},{"name":"$ceil","version":"1.5.0","description":"Returns the smallest integer greater than or equal to its numeric argument","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$divide","version":"1.0.0","description":"Divides multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to divide","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$floor","version":"1.0.0","description":"Returns the greatest integer less than or equal to its numeric argument","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$logn","version":"1.0.0","description":"Returns the natural logarithm (base e) of a number","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"Number to get its logarithm","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$math","version":"1.0.0","description":"Runs math expression, returns nothing if incorrect expression","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"expr","description":"The math expression to run","rest":false,"type":"String","required":true}],"category":"math"},{"name":"$max","version":"1.0.7","description":"Returns the largest number of the ones given","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers among which to find the largest","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$min","version":"1.0.7","description":"Returns the smallest number of the ones given","brackets":true,"output":["Number"],"unwrap":true,"args":[{"name":"numbers","description":"Numbers among which to find the smallest","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$modulo","version":"1.0.0","description":"Returns the remainder of multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to get their remainders","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$multi","version":"1.0.0","description":"Multiplies multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to multiply","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$pi","version":"2.2.0","description":"Returns the constant pi","unwrap":false,"output":["Number"],"category":"math"},{"name":"$pow","version":"1.0.0","aliases":["$power"],"description":"Exponentially multiply multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to power by","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$round","version":"1.0.0","description":"Rounds provided number to a certain number of decimal places","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true},{"name":"decimal places","description":"The number of decimal places to round to","rest":false,"type":"Number"}],"category":"math"},{"name":"$sign","version":"2.2.0","description":"Returns the sign of the x, indicating whether x is positive, negative or zero","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$sqrt","version":"1.0.0","description":"Returns the square root of a number","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$sub","version":"1.0.0","description":"Subtracts multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to sub","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$sum","version":"1.0.0","description":"Adds multiple numbers","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"numbers","description":"Numbers to add","rest":true,"type":"Number","required":true}],"category":"math"},{"name":"$trunc","version":"1.0.0","description":"Returns the integer part of the a numeric expression, x, removing any fractional digits. If x is already an integer, the result is x","aliases":["$truncate"],"brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"number","description":"The number to use","rest":false,"type":"Number","required":true}],"category":"math"},{"name":"$ban","version":"1.0.0","aliases":["$memberBan","$banMember"],"description":"Bans a member from the guild, returns true or false depending on whether the action was successfully performed","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to ban a member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to ban","rest":false,"type":"User","required":true},{"name":"reason","description":"The reason to ban for","rest":false,"type":"String"},{"name":"delete message seconds","description":"Delete messages from this member that were sent in this seconds time span","rest":false,"type":"Number"}],"category":"member"},{"name":"$fetchMembers","version":"1.0.0","description":"Caches all members of a guild","aliases":["$fetchMember"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache members of","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to fetch","rest":false,"type":"Member","pointer":0}],"category":"member"},{"name":"$hasAnyPerms","version":"1.4.0","description":"Returns whether given member has any of the provided perms","unwrap":true,"aliases":["$memberHasAnyPerms"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for perms","rest":false,"type":"Member","required":true,"pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"required":true,"enumName":"PermissionFlagsBits"}],"category":"member"},{"name":"$hasAnyRole","version":"1.1.0","description":"Returns whether given member has any role","unwrap":true,"aliases":["$memberHasAnyRole"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for roles","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to check for","rest":true,"type":"Role","required":true,"pointer":0}],"category":"member"},{"name":"$hasPerms","version":"1.0.0","description":"Returns whether given member has X perms","unwrap":true,"aliases":["$memberHasPerms"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for perms","rest":false,"type":"Member","required":true,"pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"required":true,"enumName":"PermissionFlagsBits"}],"category":"member"},{"name":"$hasRoles","version":"1.1.0","description":"Returns whether given member has all roles","unwrap":true,"aliases":["$memberHasRoles"],"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check for roles","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to check for","rest":true,"type":"Role","required":true,"pointer":0}],"category":"member"},{"name":"$isBanned","version":"1.0.0","brackets":true,"unwrap":true,"aliases":["$memberIsBanned"],"output":["Boolean"],"description":"Returns whether this user is banned","args":[{"name":"guild ID","description":"The guild to check bans on","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check ban","rest":false,"type":"User","required":true}],"category":"member"},{"name":"$isBoosting","description":"Returns whether this member is boosting","version":"1.5.0","aliases":["$isBooster","$memberIsBooster","$memberIsBoosting"],"brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check boost status for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isDeaf","version":"1.0.0","description":"Whether a member is deafened","brackets":false,"unwrap":true,"aliases":["$memberIsDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isGuildDeaf","version":"1.0.0","description":"Whether a member is server deafened","brackets":false,"aliases":["$memberIsGuildDeaf"],"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isGuildMuted","version":"1.0.0","description":"Whether a member is server muted","brackets":false,"aliases":["$memberIsGuildMuted"],"output":["Boolean"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isMuted","version":"1.0.0","description":"Whether a member is muted","brackets":false,"unwrap":true,"aliases":["$memberIsMuted"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isSelfDeaf","version":"1.0.0","description":"Whether a member is self deafened","brackets":false,"unwrap":true,"aliases":["$memberIsSelfDeaf"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isSelfMuted","version":"1.0.0","description":"Whether a member is self muted","brackets":false,"unwrap":true,"aliases":["$memberIsSelfMuted"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isTimedOut","version":"1.0.0","description":"Whether an member is timed out","unwrap":true,"brackets":false,"aliases":["$memberIsTimedOut"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to check for timeout","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$isVerified","version":"1.0.0","aliases":["$memberIsVerified"],"description":"Whether a member is verified","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get its voice state","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$kickMember","version":"1.0.0","description":"Kicks a member from the guild, returns true or false depending on whether the action was successfully performed","unwrap":true,"brackets":true,"aliases":["$memberKick"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to kick a member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to kick","rest":false,"type":"Member","pointer":0,"required":true},{"name":"reason","description":"The reason to kick for","rest":false,"type":"String"}],"category":"member"},{"name":"$memberActivity","version":"1.5.0","description":"Returns the activity of a member","aliases":["$activity","$userActivity","$memberActivities"],"unwrap":true,"output":["Unknown[]"],"args":[{"name":"guild ID","description":"The guild to pull the member from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The member to return its activity","required":true,"rest":false,"type":"Member","pointer":0},{"name":"property","description":"The property of the activity to return","rest":false,"type":"Enum","enum":["name","type","details","buttons","flags","timestamp","endTimestamp","startTimestamp","partyID","partySize","syncID","url","largeText","largeImage","smallText","smallImage"],"enumName":"ActivityProperty"},{"name":"separator","description":"The separator to use for every property","rest":false,"type":"String"}],"brackets":false,"category":"member"},{"name":"$memberAddRoles","version":"1.0.0","description":"Adds roles to a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to add roles to","rest":false,"type":"Member","required":true,"pointer":0},{"name":"roles","description":"The roles to add","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberAvatar","version":"1.0.0","description":"Returns the member avatar","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to retrieve the avatar","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$memberAvatarDecoration","version":"2.4.0","description":"Returns the member's avatar decoration","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its avatar decoration","pointer":0,"rest":false,"type":"Member","required":true}],"output":["URL"],"category":"member"},{"name":"$memberBanner","version":"2.1.0","description":"Returns the member banner","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to retrieve the banner","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$memberBoostingSince","version":"1.5.0","aliases":["$boostingSince","$boosterSince","$memberBoosterSince"],"brackets":false,"unwrap":true,"output":["Number"],"description":"Returns when the member started boosting the guild","args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to check boost status for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$memberBotRoleID","version":"2.6.0","description":"Returns the managed bot role of a member, only available for bots","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get the managed bot role from","rest":false,"pointer":0,"type":"Member","required":true}],"output":["Role"],"category":"member"},{"name":"$memberCustomStatus","version":"1.5.0","aliases":["$customStatus","$userCustomStatus"],"description":"Returns the custom status of a member","unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull the user from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The user to return its custom status","required":true,"rest":false,"type":"Member"},{"name":"type","description":"The type of the custom status to fetch","rest":false,"type":"Enum","enum":["state","emoji"],"enumName":"CustomStatusType"}],"brackets":false,"category":"member"},{"name":"$memberDisplayColor","version":"1.0.0","description":"Returns the display color of a member","unwrap":true,"brackets":false,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its color","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberDisplayName","version":"2.3.0","description":"Returns the display name of a member","unwrap":true,"brackets":false,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its display name","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberExists","version":"1.0.0","description":"Returns whether an member id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to check for the member","type":"Guild","rest":false,"required":true},{"name":"member ID","description":"The member to check for","rest":false,"required":true,"type":"String"}],"category":"member"},{"name":"$memberFlags","version":"1.5.0","description":"Returns the flags of a member","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its flags","rest":false,"type":"Member","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["GuildMemberFlags[]"],"category":"member"},{"name":"$memberHighestRoleID","version":"1.0.0","description":"Returns the highest role id of a member","unwrap":true,"output":["Role"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its highest role id","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberJoinPosition","version":"1.5.0","description":"Returns the position at which the member joined the guild","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its join position","rest":false,"pointer":0,"type":"Member","required":true}],"category":"member"},{"name":"$memberJoinedAt","version":"1.0.0","description":"Returns the timestamp the member joined at","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get its join date","rest":false,"pointer":0,"type":"Member","required":true}],"category":"member"},{"name":"$memberLowestRoleID","version":"1.5.0","description":"Returns the lowest role id of a member","unwrap":true,"output":["Role"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to get its lowest role id","rest":false,"type":"Member","required":true}],"category":"member"},{"name":"$memberPerms","version":"1.0.0","description":"Returns the member perms","brackets":false,"unwrap":true,"output":["PermissionFlagsBits[]"],"args":[{"name":"guild ID","description":"The guild to pull the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its perms","rest":false,"type":"Member","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false},{"name":"return int","description":"Whether to return the perms as bitfield int","type":"Boolean","rest":false}],"category":"member"},{"name":"$memberRawData","version":"1.5.0","description":"Returns the raw data of a member","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to get raw data from","rest":false,"type":"Member","pointer":0,"required":true}],"output":["Json"],"category":"member"},{"name":"$memberRemoveRoles","version":"1.0.0","description":"Removes roles from a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","pointer":0,"description":"The user to remove roles from","rest":false,"type":"Member","required":true},{"name":"roles","description":"The roles to remove","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberRoles","version":"1.0.0","description":"Returns the role ids of a member","unwrap":true,"brackets":false,"output":["Role[]"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to get roles from","rest":false,"pointer":0,"type":"Member","required":true},{"name":"separator","description":"The separator to use for each role","rest":false,"type":"String"}],"category":"member"},{"name":"$memberSetNickname","version":"1.0.7","description":"Edits a member's nickname, returns bool","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to edit its nickname","rest":false,"required":true,"pointer":0,"type":"Member"},{"name":"nickname","description":"The new nickname, leave empty to reset","rest":false,"type":"String"}],"category":"member"},{"name":"$memberSetRoles","version":"1.0.0","description":"Sets roles to a member, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The user to set roles to","rest":false,"type":"Member","pointer":0,"required":true},{"name":"roles","description":"The roles to set","rest":true,"type":"Role","pointer":0}],"category":"member"},{"name":"$memberTimeoutDuration","version":"1.5.0","aliases":["$timeoutDuration","$getTimeoutDuration","$timedOutUntil","$memberTimedOutUntil"],"description":"Returns the timeout duration of a member","unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to get duration for","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$nickname","version":"1.0.0","description":"Returns the member nickname","brackets":false,"aliases":["$memberNickname"],"unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its nickname","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$platform","version":"1.0.0","description":"Returns the member platforms","brackets":false,"aliases":["$memberPlatforms","$platforms","$memberPlatform"],"unwrap":true,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild id to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member id return its platform","rest":false,"type":"Member","pointer":0,"required":true},{"name":"separator","description":"The separator for each platform","rest":false,"type":"String"}],"category":"member"},{"name":"$pruneMembers","version":"1.5.0","aliases":["$prune","$membersPrune"],"description":"Prunes inactive members from the guild, returns number of kicked members","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to prune members from","rest":false,"required":true,"type":"Guild"},{"name":"days","description":"The days of inactivity required to kick","rest":false,"type":"Number"},{"name":"dry","description":"Whether to perform a dry prune","rest":false,"type":"Boolean"},{"name":"reason","description":"The reason for pruning members","rest":false,"type":"String"},{"name":"roles","description":"The roles to include when pruning","rest":true,"type":"Role"}],"category":"member"},{"name":"$randomMemberID","version":"1.0.3","description":"Returns a random member ID of a guild","unwrap":true,"output":["Member"],"brackets":false,"args":[{"name":"guild ID","description":"The guild to get member from","rest":false,"required":true,"type":"Guild"}],"category":"member"},{"name":"$status","version":"1.0.0","description":"Returns the member status","brackets":false,"unwrap":true,"aliases":["$memberStatus","$statuses","$memberStatuses"],"output":["String"],"args":[{"name":"guild ID","description":"The guild to return the member from","rest":false,"type":"Guild","required":true},{"name":"user ID","description":"The member to return its status","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$timeout","version":"1.0.0","description":"Times a member out for X milliseconds, returns bool","unwrap":true,"aliases":["$memberTimeout","$timeoutMember"],"output":["Boolean"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The member to timeout","rest":false,"required":true,"type":"Member","pointer":0},{"name":"duration","description":"The duration to timeout for","rest":false,"type":"Time"},{"name":"reason","description":"The reason to timeout the member","rest":false,"type":"String"}],"category":"member"},{"name":"$unban","version":"1.0.0","brackets":true,"unwrap":true,"aliases":["$memberUnban","$unbanMember"],"output":["Boolean"],"description":"Unbans a user from a guild, returns bool","args":[{"name":"guild ID","description":"The guild to unban user from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","description":"The user to unban","rest":false,"type":"User","required":true},{"name":"reason","description":"The unban reason","rest":false,"type":"String"}],"category":"member"},{"name":"$voiceID","version":"1.0.3","description":"Returns the voice channel id a member is connected to","unwrap":true,"aliases":["$memberVoiceID"],"brackets":false,"output":["Channel"],"args":[{"name":"guild ID","description":"The guild to pull member from","required":true,"rest":false,"type":"Guild"},{"name":"user ID","description":"The member to get its voice channel","rest":false,"type":"Member","pointer":0,"required":true}],"category":"member"},{"name":"$voiceKick","version":"1.4.0","description":"Kicks a member from a voice channel, returns bool","brackets":true,"aliases":["$memberVoiceKick"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to kick"},{"name":"reason","description":"The reason to kick this user","rest":false,"required":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$voiceMove","version":"1.4.0","description":"Moves a member from a voice channel, returns bool","brackets":true,"aliases":["$memberVoiceMove"],"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"user ID","rest":false,"required":true,"type":"Member","pointer":0,"description":"The user to move"},{"name":"channel ID","description":"The voice channel to move this user to","rest":false,"required":false,"type":"Channel"},{"name":"reason","description":"The reason for moving the user","rest":false,"type":"String"}],"unwrap":true,"category":"member"},{"name":"$disableAllMentions","version":"1.3.0","description":"Disables every possible mention","unwrap":false,"category":"mention"},{"name":"$disableEveryoneMention","version":"1.3.0","description":"Disables everyone mention","unwrap":false,"category":"mention"},{"name":"$disableRoleMentions","version":"1.3.0","description":"Disables all role mentions","unwrap":false,"category":"mention"},{"name":"$disableUserMentions","version":"1.3.0","description":"Disables all user mentions","unwrap":false,"category":"mention"},{"name":"$enableAllMentions","version":"2.6.0","description":"Enables every possible mention","unwrap":false,"category":"mention"},{"name":"$enableRoleMentions","version":"1.3.0","description":"Only parses these roles for mentions","unwrap":true,"brackets":false,"args":[{"name":"guild ID","rest":false,"required":true,"type":"Guild","description":"The guild to retrieve roles from"},{"name":"roles","rest":true,"required":true,"pointer":0,"type":"Role","description":"The roles to parse mentions for"}],"category":"mention"},{"name":"$enableUserMentions","version":"1.3.0","description":"Only parses these users for mentions","unwrap":true,"brackets":false,"args":[{"name":"users","rest":true,"required":true,"type":"User","description":"The users to parse mentions for"}],"category":"mention"},{"name":"$isChannelMentioned","version":"1.3.0","description":"Returns whether a channel was mentioned in this message","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"channel ID","rest":false,"required":true,"type":"Channel","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$isRoleMentioned","version":"1.3.0","description":"Returns whether a role was mentioned in this message","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"role ID","rest":false,"required":true,"type":"String","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$isUserMentioned","version":"1.3.0","description":"Returns whether a user was mentioned in this message","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","rest":false,"description":"Channel to pull the message from","required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to get mentions from"},{"name":"user ID","rest":false,"required":true,"type":"User","description":"The entity to check for mentions"}],"category":"mention"},{"name":"$mentioned","version":"1.0.0","brackets":false,"description":"Returns the mentioned users","unwrap":true,"output":["User[]"],"args":[{"name":"index","description":"The index of the user","rest":false,"type":"Number","required":true},{"name":"return author","description":"Return author ID if not found","rest":false,"type":"Boolean"}],"category":"mention"},{"name":"$mentionedChannelCount","aliases":["$mentionedChannelsCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned channel count","unwrap":false,"category":"mention"},{"name":"$mentionedChannels","aliases":["$mentionedChannel"],"output":["Channel[]"],"version":"1.0.0","brackets":false,"description":"Returns the mentioned channels","unwrap":true,"args":[{"name":"index","description":"The index of the channel","rest":false,"type":"Number","required":true},{"name":"return channel","description":"Whether to return current channel if not found","rest":false,"type":"Boolean"}],"category":"mention"},{"name":"$mentionedRoleCount","aliases":["$mentionedRolesCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned role count","unwrap":false,"category":"mention"},{"name":"$mentionedRoles","aliases":["$mentionedRole"],"output":["Role[]"],"version":"1.0.0","brackets":false,"description":"Returns the mentioned roles","unwrap":true,"args":[{"name":"index","description":"The index of the role","rest":false,"type":"Number","required":true}],"category":"mention"},{"name":"$mentionedUserCount","aliases":["$mentionedUsersCount"],"output":["Number"],"version":"1.3.0","description":"Returns the mentioned user count","unwrap":false,"category":"mention"},{"name":"$nomention","version":"1.3.0","description":"Disables reply ping","unwrap":false,"category":"mention"},{"name":"$addMessageReactions","version":"1.0.0","description":"Adds reactions to a message, returns amount of emojis successfully reacted","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to add reactions to","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emojis","description":"The emojis to react with","rest":true,"type":"String","required":true}],"category":"message"},{"name":"$attachment","version":"1.0.0","brackets":true,"description":"Adds an attachment to the response","unwrap":true,"aliases":["$addAttachment"],"args":[{"name":"path","description":"The attachment url or path to file","rest":false,"required":true,"type":"String"},{"name":"name","description":"The name for this attachment, with the extension","rest":false,"type":"String","required":true},{"name":"as text","description":"Whether to use url param as text","rest":false,"type":"Boolean"},{"name":"encoding","description":"Encoding to use for text, utf-8 default","rest":false,"type":"String"},{"name":"description","description":"The description for this attachment","rest":false,"type":"String"}],"category":"message"},{"name":"$deleteAllMessageReactions","version":"1.0.0","description":"Deletes all reactions from a message, returns bool","unwrap":true,"output":["Boolean"],"brackets":false,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove reactions from","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$deleteIn","version":"1.5.0","description":"Deletes the response after the given time","unwrap":true,"brackets":true,"args":[{"name":"duration","description":"The duration to wait for until deletion","rest":false,"required":true,"type":"Time"}],"category":"message"},{"name":"$deleteMessage","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"aliases":["$deleteMessages"],"description":"Deletes given messages, returns the count of messages deleted","args":[{"name":"channel ID","description":"The channel to delete this message from","rest":false,"required":true,"type":"Channel"},{"name":"messages","description":"The message ids to delete","rest":true,"required":true,"pointer":0,"type":"String"}],"category":"message"},{"name":"$deleteUserMessageReaction","version":"1.0.6","description":"Deletes user emoji reaction from a message, returns bool","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to remove user emoji reaction","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The message reaction to remove user from","rest":false,"required":true,"pointer":1,"type":"Reaction"},{"name":"user ID","description":"The user to delete its reaction","required":true,"rest":false,"type":"User"}],"category":"message"},{"name":"$editMessage","version":"1.0.0","description":"Edits a message in a channel, returns bool","unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to edit this message","required":true,"type":"Channel","rest":false},{"name":"message ID","description":"The message to edit","rest":false,"type":"Message","pointer":0,"required":true},{"name":"content","description":"The content for the message","type":"String","rest":false}],"brackets":true,"category":"message"},{"name":"$fetchComponents","version":"1.0.0","description":"Fetches a message's components, this will override any other component added to the response","aliases":["$fetchRows"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get the components from","pointer":0,"rest":false,"type":"Message","required":true}],"category":"message"},{"name":"$fetchEmbeds","version":"1.4.0","aliases":["$fetchEmbed","$cloneEmbed","$cloneEmbeds"],"description":"Fetches an embed or all embeds from a message to the next response","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get embeds from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The embed index to load","rest":false,"type":"Number"}],"category":"message"},{"name":"$fetchMessage","version":"2.2.0","description":"Fetches all data of a message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to fetch its data","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$fetchResponse","version":"1.4.0","brackets":false,"unwrap":true,"description":"Fetches all data from the message and loads it to response, this includes: embeds, components, attachments, stickers","args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to fetch its data","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$forwardMessage","version":"2.2.0","description":"Forwards a message to another channel, returns bool","aliases":["$forward"],"unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to forward","rest":false,"required":true,"type":"Message","pointer":0},{"name":"channel ID","description":"The channel to forward message to","rest":false,"type":"Channel"}],"output":["Boolean"],"category":"message"},{"name":"$getComponents","version":"1.4.0","description":"Retrieves data of a component, not providing any property returns component json","unwrap":true,"brackets":false,"aliases":["$getComponent"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"row index","description":"The row index to get data from","rest":false,"required":false,"type":"Number"},{"name":"component index","description":"The first component index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The first property to pull","rest":false,"type":"Enum","enum":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"required":false,"enumName":"ComponentProperty"},{"name":"separator","description":"The separator to use for each value in case of array","rest":false,"type":"String"},{"name":"component index","description":"The second component index to get data from","rest":false,"type":"Number"},{"name":"property","description":"The second property to pull","rest":false,"type":"Enum","enum":["id","type","customID","label","style","url","disabled","maxValues","minValues","optionCount","options","optionNames","emoji","optionDescriptions","optionValues","content","accentColor","spoiler","divider","spacing","items","itemUrls","fileUrl","accessory","components","thumbnailUrl"],"enumName":"ComponentProperty"}],"output":["Json","Unknown"],"category":"message"},{"name":"$getEmbeds","version":"1.0.3","description":"Retrieves data of an embed, not providing any property returns embed json","unwrap":true,"output":["Unknown"],"brackets":false,"aliases":["$getEmbed"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"embed index","description":"The embed index to get data from","rest":false,"required":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["title","titleURL","authorName","authorIcon","footerText","image","thumbnail","footerIcon","description","timestamp","authorURL","color","fieldName","fieldInline","fieldValue"],"required":false,"enumName":"EmbedProperty"},{"name":"field index","description":"Index of field to get","rest":false,"type":"Number"}],"category":"message"},{"name":"$getMessage","version":"1.0.3","description":"Retrieves data of a message","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"Separator to use in case of array","rest":false,"type":"String"}],"category":"message"},{"name":"$getMessageReactionCount","version":"1.0.0","description":"Gets the amount of users that have reacted to a specific emoji","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to get emoji count from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The emoji to get its user count","required":true,"pointer":1,"rest":false,"type":"Reaction"},{"name":"type","description":"The type of the reaction to count users for","rest":false,"type":"Enum","enum":["normal","burst"],"enumName":"ReactionType"}],"category":"message"},{"name":"$getMessageReactionUsers","version":"1.0.0","description":"Gets the user ids that have reacted to a specific emoji","unwrap":true,"output":["User[]"],"brackets":true,"args":[{"name":"channel ID","description":"The channel the message is located","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to get emoji users from","rest":false,"type":"Message","pointer":0,"required":true},{"name":"emoji","description":"The emoji to get its users","required":true,"pointer":1,"rest":false,"type":"Reaction"},{"name":"separator","description":"The separator to use for every user","rest":false,"type":"String"}],"category":"message"},{"name":"$getMessageReactions","version":"2.2.0","description":"Retrieves all reactions of a message","aliases":["$getReactions"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to retrieve reactions from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property of the reactions to return","rest":false,"type":"Enum","enum":["emoji","count","burstCount","normalCount","me","meBurst","burstColors"],"enumName":"ReactionProperty"},{"name":"separator","description":"The separator to use for each property","rest":false,"type":"String"}],"output":["Unknown[]"],"category":"message"},{"name":"$getPoll","version":"2.5.0","description":"Retrieves data of a poll from a message","aliases":["$getMessagePoll"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["question","layoutType","answers","answerCount","totalVotes","expiresTimestamp","allowMultiselect","resultsFinalized"],"required":true,"enumName":"PollProperty"}],"output":["Unknown"],"category":"message"},{"name":"$getSnapshots","version":"2.4.0","description":"Retrieves data of snapshots from a message","aliases":["$getSnapshot"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to retrieve data from","rest":false,"required":true,"type":"Message","pointer":0},{"name":"index","description":"The index of the snapshot to get","rest":false,"type":"Number"},{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Json","Unknown[]"],"category":"message"},{"name":"$hasComponents","version":"2.5.0","description":"Checks whether given message has components","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get message from","type":"Channel","rest":false,"required":true},{"name":"message ID","pointer":0,"rest":false,"required":true,"type":"Message","description":"The message to check for components"}],"output":["Boolean"],"category":"message"},{"name":"$hasEmbeds","version":"1.2.0","brackets":false,"output":["Boolean"],"description":"Checks whether given message has embeds","unwrap":true,"args":[{"name":"channel ID","description":"The channel to get message from","type":"Channel","rest":false,"required":true},{"name":"message ID","pointer":0,"rest":false,"required":true,"type":"Message","description":"The message to check for embeds"}],"category":"message"},{"name":"$isPinned","version":"1.5.0","description":"Returns whether the message is pinned","aliases":["$isMessagePinned","$messagePinned"],"unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to check if its pinned","rest":false,"required":true,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$loadComponents","version":"1.4.0","aliases":["$loadComponent"],"description":"Loads components JSON (or array) to the response","unwrap":true,"brackets":true,"args":[{"name":"component data","type":"Json","rest":false,"required":true,"description":"The components object or array of objects to load"}],"category":"message"},{"name":"$loadEmbeds","version":"1.4.0","aliases":["$loadEmbed"],"description":"Loads embed json (or array) to the response","unwrap":true,"brackets":true,"args":[{"name":"embed data","type":"Json","rest":false,"required":true,"description":"The embed object or array of objects to load"}],"category":"message"},{"name":"$message","version":"1.0.0","output":["String"],"description":"Retrieves arguments from a message command","args":[{"name":"index","description":"Index to get arg","type":"Number","required":true,"rest":false},{"name":"end index","description":"The end index","rest":false,"type":"Number"}],"brackets":false,"unwrap":true,"category":"message"},{"name":"$messageAttachment","version":"1.4.0","output":["URL"],"description":"Retrieves an attachment from this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachments","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"description":"The index of the attachment","type":"Number","required":true}],"category":"message"},{"name":"$messageAttachmentCount","version":"1.4.0","output":["Number"],"description":"Retrieve the amount of attachments in this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachment count","rest":false,"required":true,"type":"Message"}],"category":"message"},{"name":"$messageAttachmentFlags","version":"1.5.0","description":"Returns the flags of an attachment from this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachment flags","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"description":"The index of the attachment","type":"Number","required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"output":["AttachmentFlags[]"],"category":"message"},{"name":"$messageAttachments","version":"1.4.0","output":["Attachment[]"],"description":"Retrieves all attachments of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its attachments","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every attachment","type":"String"}],"category":"message"},{"name":"$messageContent","version":"1.4.0","output":["String"],"description":"Retrieves the content of the message","unwrap":false,"category":"message"},{"name":"$messageCreatedAt","version":"1.0.2","output":["Number"],"description":"Returns the timestamp of the message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its timestamp","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageEditedAt","version":"1.5.0","output":["Number"],"description":"Returns the edited timestamp of the message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its edited timestamp","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageEmojis","version":"2.4.0","description":"Retrieves all emojis of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its emojis","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every emoji","type":"String"},{"name":"return ids","rest":false,"description":"Whether to return the emoji ids, excludes unicode emojis","type":"Boolean"}],"output":["Emoji[]"],"category":"message"},{"name":"$messageExists","version":"1.0.5","description":"Returns whether given message id exists","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to check for","rest":false,"type":"String","required":true}],"category":"message"},{"name":"$messageFlags","version":"1.5.0","description":"Returns the flags of a message","brackets":false,"unwrap":true,"output":["MessageFlags[]"],"args":[{"name":"channel ID","description":"The channel to get the message from","rest":false,"type":"Channel","required":true},{"name":"message ID","description":"The message to return its flags","rest":false,"type":"Message","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"category":"message"},{"name":"$messageID","version":"1.0.0","description":"Returns the message id","unwrap":false,"output":["Message"],"category":"message"},{"name":"$messageLink","version":"1.0.0","description":"Retrieves a message url","unwrap":true,"brackets":false,"output":["URL"],"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its url","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageRawData","version":"1.5.0","description":"Returns the raw data of a message","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get message from","type":"Channel"},{"name":"message ID","description":"The message to get raw data from","rest":false,"type":"Message","pointer":0,"required":true}],"output":["Json"],"category":"message"},{"name":"$messageReferenceID","version":"1.0.0","description":"Returns the message id that this message replies to","unwrap":true,"output":["Message"],"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its reference","rest":false,"type":"Message","pointer":0,"required":true}],"category":"message"},{"name":"$messageSlice","version":"1.3.0","description":"Slices this message's args","brackets":true,"output":["String"],"args":[{"name":"start","description":"The start index","rest":false,"required":false,"type":"Number"},{"name":"end","description":"The end index","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"message"},{"name":"$messageSticker","version":"1.4.0","output":["Sticker"],"description":"Retrieves a sticker url of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its stickers","rest":false,"required":true,"type":"Message"},{"name":"index","rest":false,"required":true,"description":"The index to get sticker","type":"Number"}],"category":"message"},{"name":"$messageStickerCount","version":"1.4.0","output":["Number"],"description":"Retrieves sticker count of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its sticker count","rest":false,"required":true,"type":"Message"}],"category":"message"},{"name":"$messageStickers","version":"1.4.0","aliases":["$stickers"],"output":["Sticker[]"],"description":"Retrieves all stickers of this message","brackets":false,"unwrap":true,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its stickers","rest":false,"required":true,"type":"Message"},{"name":"separator","rest":false,"description":"The separator to use for every sticker","type":"String"},{"name":"type","rest":false,"description":"The type to return, default is url","type":"Enum","enum":["id","url"],"enumName":"StickerReturnType"}],"category":"message"},{"name":"$messageType","version":"1.0.0","description":"Returns the message type","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its type","rest":false,"required":true,"type":"Message"}],"output":["MessageType"],"category":"message"},{"name":"$messageWebhookID","version":"1.1.0","description":"Returns the message's webhook id","unwrap":true,"brackets":false,"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to pull message from","type":"Channel"},{"name":"message ID","pointer":0,"description":"The message to get its webhook id","rest":false,"required":true,"type":"Message"}],"output":["Webhook"],"category":"message"},{"name":"$noMentionMessage","version":"1.0.0","output":["String"],"description":"Retrieves arguments from a message without mentions","args":[{"name":"index","description":"Index to get arg","type":"Number","required":true,"rest":false},{"name":"end index","description":"The end index","rest":false,"type":"Number"}],"brackets":false,"unwrap":true,"category":"message"},{"name":"$pinMessage","version":"1.1.0","description":"Pins a message in a channel, returns bool","brackets":false,"output":["Boolean"],"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to pin","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$publishMessage","version":"1.1.0","description":"Crossposts a message in an announcement channel, returns bool","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to announce","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$reply","version":"1.0.0","description":"Marks the response as a reply","unwrap":true,"brackets":false,"args":[{"name":"channel ID","description":"The channel the message is at","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to reply to","rest":false,"required":true,"type":"Message","pointer":0},{"name":"disable ping","description":"Whether to disable ping of reply","rest":false,"type":"Boolean"}],"category":"message"},{"name":"$silent","version":"2.6.0","description":"Marks the response as silent","unwrap":false,"category":"message"},{"name":"$sticker","version":"1.3.0","description":"Attach a sticker to the response","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","rest":false,"required":true,"type":"Sticker","description":"The sticker to use"}],"category":"message"},{"name":"$suppressEmbeds","version":"1.5.0","description":"Suppresses embeds on a message, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to suppress embeds on","rest":false,"required":true,"pointer":0,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$tts","version":"1.5.0","description":"Marks the response as Text-To-Speech","unwrap":false,"category":"message"},{"name":"$unpinMessage","version":"1.1.0","output":["Boolean"],"description":"Unpins a message from a channel, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to unpin","rest":false,"required":true,"pointer":0,"type":"Message"}],"category":"message"},{"name":"$unsuppressEmbeds","version":"1.5.0","description":"Unsuppresses embeds on a message, returns bool","brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","description":"The message to unsuppress embeds on","rest":false,"required":true,"pointer":0,"type":"Message"}],"output":["Boolean"],"category":"message"},{"name":"$abbreviateNumber","version":"1.0.0","output":["String"],"description":"Abbreviates given number","unwrap":true,"args":[{"name":"number","description":"The number to abbreviate","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"number"},{"name":"$average","version":"1.5.0","brackets":true,"unwrap":true,"description":"Calculates the average of given numbers","args":[{"name":"separator","description":"The delimiter of each value","rest":false,"required":true,"type":"String"},{"name":"values","description":"Values separated by `separator`","rest":false,"required":true,"type":"String"}],"category":"number"},{"name":"$hexToInt","version":"1.2.0","brackets":true,"output":["Color"],"description":"Turns hex string to number","unwrap":true,"args":[{"name":"hex","description":"The hex to convert","rest":false,"required":true,"type":"String"}],"category":"number"},{"name":"$inRange","version":"1.0.0","description":"Returns whether a number is in range","brackets":true,"output":["Boolean"],"unwrap":true,"args":[{"name":"number","description":"The number to validate","rest":false,"type":"Number","required":true},{"name":"min","description":"The min value","rest":false,"type":"Number"},{"name":"max","description":"The max value","rest":false,"type":"Number"}],"category":"number"},{"name":"$intToHex","version":"1.2.0","brackets":true,"description":"Turns integer to hex","unwrap":true,"output":["Color"],"args":[{"name":"int","description":"The integer to convert","rest":false,"required":true,"type":"Number"}],"category":"number"},{"name":"$isFloat","version":"1.0.0","description":"Returns whether the number is a float","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$isInteger","version":"1.0.0","description":"Returns whether the number is an integer","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$isNumber","version":"1.0.0","description":"Returns whether the number is valid","unwrap":true,"output":["Boolean"],"args":[{"name":"number","description":"The number to check","required":true,"rest":false,"type":"String"}],"brackets":true,"category":"number"},{"name":"$maxSafeInteger","version":"1.0.6","description":"Returns the highest safe integer","unwrap":false,"output":["Number"],"category":"number"},{"name":"$minSafeInteger","version":"1.0.6","description":"Returns the lowest safe integer","unwrap":false,"output":["Number"],"category":"number"},{"name":"$ordinal","version":"1.3.0","description":"Appends a suffix to the number","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"number","description":"The number to append suffix to","rest":false,"required":true,"type":"Number"}],"category":"number"},{"name":"$parseInt","version":"1.2.0","description":"Implements native parseInt's function into ForgeScript","unwrap":true,"brackets":true,"output":["Number"],"args":[{"name":"value","description":"The number to parse","rest":false,"required":true,"type":"String"},{"name":"radix","rest":false,"required":false,"description":"Radix to use for the parser","type":"Number"}],"category":"number"},{"name":"$randomNumber","version":"1.0.0","description":"Returns a random number (no cache)","unwrap":true,"output":["Number"],"brackets":true,"args":[{"name":"min","description":"The minimum possible number","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max possible number","rest":false,"type":"Number"},{"name":"decimals","description":"Whether to use decimals","rest":false,"type":"Boolean"}],"category":"number"},{"name":"$separateBigint","version":"1.3.0","description":"Separates thousands in the number","unwrap":true,"output":["String"],"args":[{"name":"number","description":"The number to separate","rest":false,"type":"BigInt","required":true},{"name":"separator","description":"The separator to use","type":"String","rest":false}],"brackets":true,"category":"number"},{"name":"$separateNumber","version":"1.0.0","description":"Separates thousands in the number","unwrap":true,"output":["String"],"args":[{"name":"number","description":"The number to separate","rest":false,"type":"Number","required":true},{"name":"separator","description":"The separator to use","type":"String","rest":false}],"brackets":true,"category":"number"},{"name":"$advancedBar","version":"1.5.0","aliases":["$generateAdvancedBar"],"description":"Generates an advanced progress bar","brackets":true,"unwrap":true,"args":[{"name":"current","description":"The current value","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max value of current","rest":false,"required":true,"type":"Number"},{"name":"length","description":"The length of the bar","rest":false,"type":"Number"},{"name":"values","description":"The values to make the bar with, for example `=;~;#` means `0%;33%;66%`","rest":true,"required":true,"type":"String"}],"output":["String"],"category":"other"},{"name":"$awaitComponent","version":"1.4.0","description":"Awaits a component, executing the code as the interaction context, returns bool depending on whether the interaction was received","unwrap":false,"output":["Boolean"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"Channel"},{"name":"message ID","rest":false,"required":true,"type":"Message","pointer":0,"description":"The message to await component on"},{"name":"filter","description":"The filter to run for every interaction received after this, this is called with interaction context","rest":false,"required":true,"condition":true,"type":"String"},{"name":"success code","description":"The code to execute on success, this is called with interaction context","rest":false,"required":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a component"}],"category":"other"},{"name":"$awaitMessage","version":"1.0.7","description":"Awaits a message, returns message ID or nothing if no valid response","unwrap":false,"output":["Message"],"brackets":true,"args":[{"name":"channel ID","description":"The channel to await message on","rest":false,"required":true,"type":"Channel"},{"name":"variable name","description":"The variable to load the message id that was sent as response by a user, get it with $env[]","rest":false,"required":true,"type":"String"},{"name":"filter","description":"The filter to run for every message sent after this","rest":false,"required":true,"condition":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a message"}],"category":"other"},{"name":"$awaitModalSubmit","version":"1.4.0","description":"Awaits a modal submit, executing the code as the interaction context, returns bool depending on whether the interaction was received","unwrap":false,"output":["Boolean"],"brackets":true,"args":[{"name":"custom ID","description":"The modal's custom id to wait for","rest":false,"required":true,"type":"String"},{"name":"success code","description":"The code to execute on success, this is called with interaction context","rest":false,"required":true,"type":"String"},{"name":"time","rest":false,"required":true,"type":"Time","description":"The max time to wait for a component"}],"category":"other"},{"name":"$bar","version":"1.5.0","description":"Generates a progress bar","aliases":["$generateBar"],"brackets":true,"unwrap":true,"args":[{"name":"current","description":"The current value","rest":false,"required":true,"type":"Number"},{"name":"max","description":"The max value of current","rest":false,"required":true,"type":"Number"},{"name":"length","description":"The length of the bar","rest":false,"type":"Number"},{"name":"fill","description":"The string to use as filled points of the bar","rest":false,"type":"String"},{"name":"empty","description":"The string to use as empty points of the bar","rest":false,"type":"String"},{"name":"trunc","description":"Whether to truncate instead of round","rest":false,"type":"Boolean"},{"name":"fillStart","description":"The string to use as filled start of the bar","rest":false,"type":"String"},{"name":"fillEnd","description":"The string to use as filled end of the bar","rest":false,"type":"String"},{"name":"emptyStart","description":"The string to use as empty start of the bar","rest":false,"type":"String"},{"name":"emptyEnd","description":"The string to use as empty end of the bar","rest":false,"type":"String"}],"output":["String"],"category":"other"},{"name":"$c","version":"1.0.0","description":"Marks any code inside as a comment","unwrap":false,"args":[{"name":"comment","rest":true,"required":true,"description":"The comments","type":"String"}],"brackets":true,"category":"other"},{"name":"$callFunction","version":"1.0.0","description":"Calls a forge function made by the user","unwrap":true,"output":["Unknown"],"args":[{"name":"name","description":"The function name","rest":false,"required":true,"type":"String"},{"name":"args","description":"The args to call this function with","rest":true,"type":"String"}],"brackets":true,"category":"other"},{"name":"$callLocalFunction","version":"2.3.0","description":"Calls a local function","aliases":["$callFn"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The local function name","rest":false,"required":true,"type":"String"},{"name":"args","description":"The args to call this local function with","rest":true,"type":"String"}],"output":["Unknown"],"category":"other"},{"name":"$debug","version":"1.0.0","output":["String"],"description":"Returns the debug message","unwrap":false,"category":"other"},{"name":"$disableConsoleErrors","version":"1.4.0","description":"Disables possible outcoming errors that are output to console","unwrap":false,"category":"other"},{"name":"$djsVersion","version":"2.2.0","description":"Returns the discord.js version used","unwrap":false,"output":["String"],"category":"other"},{"name":"$enableConsoleErrors","version":"1.4.0","description":"Enables possible outcoming errors that are output to console","unwrap":false,"category":"other"},{"name":"$error","version":"1.0.0","description":"Returns the error message","unwrap":false,"output":["Unknown"],"category":"other"},{"name":"$escapeCode","version":"1.4.0","description":"Code inside this function will not be executed","unwrap":false,"brackets":true,"aliases":["$esc"],"args":[{"name":"code","type":"String","description":"The code to ignore","required":true,"rest":false}],"output":["String"],"category":"other"},{"name":"$localFunction","version":"2.3.0","description":"Defines a new local function","aliases":["$fn"],"unwrap":false,"brackets":true,"args":[{"name":"name","description":"The local function name","rest":false,"required":true,"type":"String"},{"name":"code","description":"The local function code","rest":false,"required":true,"type":"String"},{"name":"params","description":"The local function params","rest":true,"type":"String"}],"category":"other"},{"name":"$typeof","version":"2.4.0","description":"Returns the type of the provided argument","unwrap":true,"brackets":true,"args":[{"name":"argument","rest":false,"description":"The argument to get its type","type":"String","required":true}],"output":["String"],"category":"other"},{"name":"$poll","version":"1.5.0","description":"Creates a poll","brackets":true,"args":[{"name":"question","description":"The poll question","rest":false,"required":true,"type":"String"},{"name":"duration","description":"The poll's duration","rest":false,"required":true,"type":"Time"},{"name":"multiselect","description":"Whether to allow multi select","rest":false,"type":"Boolean"},{"name":"layout","description":"The layout for this poll","rest":false,"enum":["Default"],"type":"Enum","enumName":"PollLayoutType"}],"unwrap":true,"category":"poll"},{"name":"$pollAnswer","version":"1.5.0","brackets":true,"unwrap":true,"description":"Add a poll answer","args":[{"name":"text","description":"The answer's text","rest":false,"required":true,"type":"String"},{"name":"emoji","rest":false,"description":"The emoji to use","type":"String"}],"category":"poll"},{"name":"$pollAnswerEmoji","version":"1.5.0","description":"Can only be used in poll events, returns the emoji of the poll answer","unwrap":false,"output":["String"],"category":"poll"},{"name":"$pollAnswerID","version":"1.5.0","description":"Can only be used in poll events, returns the answer id used","unwrap":false,"output":["Number"],"category":"poll"},{"name":"$pollAnswerMessageID","version":"1.5.0","description":"Can only be used in poll events, returns the message id of the poll answer","unwrap":false,"output":["Message"],"category":"poll"},{"name":"$pollAnswerText","version":"1.5.0","description":"Can only be used in poll events, returns the text of the poll answer","unwrap":false,"output":["String"],"category":"poll"},{"name":"$pollAnswerVoteCount","version":"1.5.0","description":"Can only be used in poll events, returns the vote count of this poll answer","unwrap":false,"output":["Number"],"category":"poll"},{"name":"$pollAnswerVoterIDs","version":"1.5.0","description":"Can only be used in poll events, returns the vote user ids of this poll answer","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"category":"poll"},{"name":"$pollAnswers","version":"1.5.0","brackets":true,"unwrap":true,"description":"Adds multiple poll answers","args":[{"name":"text;emoji","description":"The answer's text followed by emoji","rest":true,"required":true,"type":"String"}],"category":"poll"},{"name":"$pollEnd","version":"1.5.0","description":"Ends a poll","aliases":["$endPoll"],"brackets":false,"unwrap":true,"args":[{"name":"channel ID","description":"The channel to get the message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to get the poll","rest":false,"required":true,"type":"Message","pointer":0}],"category":"poll"},{"name":"$reactionAuthorID","version":"1.0.0","description":"Returns the reaction author id that reacted","unwrap":false,"output":["User"],"category":"reaction"},{"name":"$reactionCount","version":"1.5.0","description":"Returns the count of reacted users","unwrap":false,"output":["Number"],"category":"reaction"},{"name":"$reactionEmoji","version":"1.0.0","description":"Returns the emoji that was used","unwrap":false,"output":["String"],"category":"reaction"},{"name":"$reactionEmojiID","version":"1.0.0","description":"Returns the reaction id that was used","unwrap":false,"output":["Emoji"],"category":"reaction"},{"name":"$reactionMessageID","version":"1.0.0","description":"Returns the message id of the reacted message","unwrap":false,"output":["Message"],"category":"reaction"},{"name":"$addRole","version":"1.0.0","description":"Adds a role to a guild, returns role id if success","unwrap":true,"brackets":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to add the role to","rest":false,"type":"Guild","required":true},{"name":"name","description":"The role name","rest":false,"required":true,"type":"String"},{"name":"color","description":"The role color","rest":false,"type":"String"},{"name":"icon","description":"The role icon","rest":false,"type":"String"},{"name":"hoisted","description":"Whether the role is hoisted","type":"Boolean","rest":false},{"name":"mentionable","description":"Whether the role is mentionable","type":"Boolean","rest":false},{"name":"position","description":"The position for this role","rest":false,"type":"Number"},{"name":"perms","description":"The role perms","rest":true,"enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"type":"String","enumName":"PermissionFlagsBits"}],"category":"role"},{"name":"$cloneRole","version":"2.4.0","description":"Clones an existing role of a guild, returns role id if success","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to fetch role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to clone","rest":false,"required":true,"type":"Role","pointer":0},{"name":"name","description":"The role name for the cloned role","rest":false,"type":"String"}],"output":["Role"],"category":"role"},{"name":"$deleteRoles","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given roles, returns the count of roles deleted","args":[{"name":"guild ID","description":"The guild to delete roles from","rest":false,"required":true,"type":"Guild"},{"name":"roles","description":"The roles to delete","rest":true,"required":true,"pointer":0,"type":"Role"}],"category":"role"},{"name":"$editRole","version":"1.0.7","description":"Edits a role on a guild, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit data","rest":false,"required":true},{"name":"name","description":"The new role name, leave empty to not modify","rest":false,"type":"String"},{"name":"color","description":"The new role color, leave empty to not modify","rest":false,"type":"String"},{"name":"icon","description":"The new role icon, leave empty to not modify","rest":false,"type":"String"},{"name":"hoisted","description":"Whether the role is hoisted, leave empty to not modify","rest":false,"type":"Boolean"},{"name":"mentionable","description":"Whether the role can be mentioned, leave empty to not modify","rest":false,"type":"Boolean"},{"name":"perms","description":"The new perms for the role","rest":true,"type":"Permission"}],"brackets":true,"category":"role"},{"name":"$editRoleColors","version":"2.5.0","description":"Edits a role's colors, returns boolean","aliases":["$editRoleColor"],"unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","type":"Role","description":"The role to edit colors for","rest":false,"required":true,"pointer":0},{"name":"primary","description":"The new primary color","rest":false,"type":"Color","required":true},{"name":"secondary","description":"The new secondary color","rest":false,"type":"Color"},{"name":"tertiary","description":"The new tertiary color","rest":false,"type":"Color"}],"output":["Boolean"],"category":"role"},{"name":"$editRoleIcon","version":"1.0.7","description":"Edits a role's icon, returns boolean","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit icon for","rest":false,"required":true},{"name":"icon","description":"The new icon for the role, omit to clear","rest":false,"type":"String"}],"category":"role"},{"name":"$editRoleName","version":"1.0.7","description":"Edits a role's name, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit name for","rest":false,"required":true},{"name":"name","description":"The new name for the role","rest":false,"type":"String","required":true}],"brackets":true,"category":"role"},{"name":"$editRolePerms","version":"1.0.7","description":"Edits a role's permissions, returns boolean","aliases":["$modifyRolePerms"],"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit perms for","rest":false,"required":true},{"name":"perms","description":"The new perms for the role, omit to clear perms","rest":true,"type":"Permission"}],"brackets":true,"category":"role"},{"name":"$editRolePosition","version":"1.0.7","description":"Edits a role's position, returns boolean","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit position for","rest":false,"required":true},{"name":"position","description":"The new position for the role","rest":false,"type":"Number","required":true}],"category":"role"},{"name":"$editRoleUnicodeEmoji","version":"1.5.0","description":"Edits a role's unicode emoji, returns boolean","unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","pointer":0,"type":"Role","description":"The role to edit unicode emoji for","rest":false,"required":true},{"name":"emoji","description":"The new unicode emoji for the role, omit to clear","rest":false,"type":"String"}],"brackets":true,"category":"role"},{"name":"$fetchRoles","version":"2.2.0","description":"Caches all roles of a guild","aliases":["$fetchRole"],"unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to cache roles of","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to fetch","rest":false,"type":"Role","pointer":0}],"category":"role"},{"name":"$randomRoleID","version":"1.5.0","description":"Returns a random role ID of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true}],"output":["Role"],"category":"role"},{"name":"$roleColor","version":"1.0.0","description":"Returns the color of a role","brackets":false,"unwrap":true,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its color","rest":false,"type":"Role","pointer":0,"required":true},{"name":"color","description":"The role color to return","rest":false,"type":"Enum","enum":["Primary","Secondary","Tertiary"],"enumName":"RoleColor"}],"category":"role"},{"name":"$roleCount","version":"1.0.0","description":"Returns the role count of all servers","unwrap":false,"output":["Number"],"category":"role"},{"name":"$roleCreatedAt","version":"1.0.0","description":"Returns the role creation date","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its creation date","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleEditable","version":"1.3.0","description":"Returns whether the role is editable by the bot","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its editable state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleExists","version":"1.0.0","description":"Returns whether a role id exists","unwrap":true,"brackets":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","type":"Guild","rest":false,"required":true},{"name":"role ID","description":"The role to check for","rest":false,"required":true,"type":"String"}],"category":"role"},{"name":"$roleFlags","version":"1.3.0","description":"Returns the role flags","brackets":false,"unwrap":true,"output":["RoleFlags[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its flags","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every flag","type":"String","required":false,"rest":false}],"category":"role"},{"name":"$roleHasAnyPerms","version":"2.6.0","description":"Returns whether the role has any of the specified perms","aliases":["$hasRoleAnyPerms"],"brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to get its perms","rest":false,"required":true,"type":"Role","pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"output":["Boolean"],"category":"role"},{"name":"$roleHasPerms","version":"2.6.0","description":"Returns whether the role has all specified perms","aliases":["$hasRolePerms"],"brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to get its perms","rest":false,"required":true,"type":"Role","pointer":0},{"name":"perms","description":"The perms to check for","rest":true,"required":true,"type":"Enum","enum":["CreateInstantInvite","KickMembers","BanMembers","Administrator","ManageChannels","ManageGuild","AddReactions","ViewAuditLog","PrioritySpeaker","Stream","ViewChannel","SendMessages","SendTTSMessages","ManageMessages","EmbedLinks","AttachFiles","ReadMessageHistory","MentionEveryone","UseExternalEmojis","ViewGuildInsights","Connect","Speak","MuteMembers","DeafenMembers","MoveMembers","UseVAD","ChangeNickname","ManageNicknames","ManageRoles","ManageWebhooks","ManageEmojisAndStickers","ManageGuildExpressions","UseApplicationCommands","RequestToSpeak","ManageEvents","ManageThreads","CreatePublicThreads","CreatePrivateThreads","UseExternalStickers","SendMessagesInThreads","UseEmbeddedActivities","ModerateMembers","ViewCreatorMonetizationAnalytics","UseSoundboard","CreateGuildExpressions","CreateEvents","UseExternalSounds","SendVoiceMessages","SendPolls","UseExternalApps","PinMessages","BypassSlowmode"],"enumName":"PermissionFlagsBits"}],"output":["Boolean"],"category":"role"},{"name":"$roleHoisted","version":"1.0.0","description":"Returns whether the role is hoisted","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its hoisted state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleID","version":"1.0.0","description":"Returns a role id with given name","brackets":false,"unwrap":true,"output":["Role"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"name","description":"The role name to return its id","rest":true,"type":"String","pointer":0,"required":true}],"category":"role"},{"name":"$roleIcon","version":"1.0.0","description":"Returns the role icon","brackets":false,"output":["URL"],"args":[{"name":"guild ID","description":"The guild to retrieve the role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to use to get its icon","rest":false,"required":true,"pointer":0,"type":"Role"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"role"},{"name":"$roleIntColor","version":"1.3.0","description":"Returns the role color as int","brackets":false,"unwrap":true,"output":["Color"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its color","rest":false,"type":"Role","pointer":0,"required":true},{"name":"color","description":"The role color to return","rest":false,"type":"Enum","enum":["Primary","Secondary","Tertiary"],"enumName":"RoleColor"}],"category":"role"},{"name":"$roleManageable","version":"1.3.0","description":"Returns whether the role is managed by discord","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its managed state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleMembers","version":"1.0.0","description":"Returns the role member ids","brackets":false,"unwrap":true,"output":["Member[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its members","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for each member","rest":false,"type":"String"}],"category":"role"},{"name":"$roleMentionable","version":"1.0.0","description":"Returns whether the role is mentionable","brackets":false,"unwrap":true,"output":["Boolean"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its mentionable state","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleName","version":"1.0.0","description":"Returns a role name with given id","brackets":false,"unwrap":true,"output":["String"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its name","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleNames","version":"1.0.0","description":"Returns the role names of a guild","brackets":false,"output":["String[]"],"args":[{"name":"guild ID","description":"The guild to return the roles of","rest":false,"type":"Guild","required":true},{"name":"separator","description":"The separator to use for each role","rest":false,"required":true,"type":"String"}],"unwrap":true,"category":"role"},{"name":"$rolePerms","version":"1.0.0","description":"Returns the role perms","brackets":false,"unwrap":true,"output":["PermissionFlagsBits[]"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its perms","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false},{"name":"return int","description":"Whether to return the perms as bitfield int","type":"Boolean","rest":false}],"category":"role"},{"name":"$rolePosition","version":"1.0.0","description":"Returns the role position","brackets":false,"unwrap":true,"output":["Number"],"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its position","rest":false,"type":"Role","pointer":0,"required":true},{"name":"asc order","description":"Whether to count roles in ascending order (top to bottom)","rest":false,"type":"Boolean"}],"category":"role"},{"name":"$roleRawData","version":"1.5.0","description":"Returns the raw data of a role","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to pull role from","rest":false,"type":"Guild","required":true},{"name":"role ID","rest":false,"required":true,"description":"The role to get raw data from","type":"Role","pointer":0}],"output":["Json"],"category":"role"},{"name":"$roleRawPosition","version":"1.0.0","description":"Returns the role raw position","brackets":false,"output":["Number"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its raw position","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$roleTags","version":"1.3.0","description":"Returns all role tags","brackets":false,"output":["String[]"],"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its perms","rest":false,"type":"Role","pointer":0,"required":true},{"name":"separator","description":"The separator to use for every perm","type":"String","required":false,"rest":false}],"category":"role"},{"name":"$roleUnicodeEmoji","version":"1.3.0","output":["String"],"description":"Returns the unicode emoji used by the role","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to pull the role from","rest":false,"type":"Guild","required":true},{"name":"role ID","description":"The role to return its unicode emote","rest":false,"type":"Role","pointer":0,"required":true}],"category":"role"},{"name":"$createSoundboardSound","version":"2.4.0","description":"Creates a new soundboard sound, returns sound id","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to create soundboard sound on","rest":false,"required":true,"type":"Guild"},{"name":"name","description":"The name for the sound","rest":false,"required":true,"type":"String"},{"name":"file","description":"The file for the sound","rest":false,"required":true,"type":"String"},{"name":"emoji","description":"The emoji for the sound","rest":false,"type":"String"},{"name":"volume","description":"The volume for the sound (from 0 to 1)","rest":false,"type":"Number"},{"name":"reason","description":"The reason for creating the sound","rest":false,"type":"String"}],"output":["SoundboardSound"],"category":"soundboard"},{"name":"$deleteSoundboardSounds","version":"2.4.0","description":"Deletes given soundboard sounds, returns the count of sounds deleted","aliases":["$deleteSoundboardSound"],"brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to delete soundboard sounds from","rest":false,"required":true,"type":"Guild"},{"name":"sounds","description":"The soundboard sounds to delete","rest":true,"required":true,"pointer":0,"type":"SoundboardSound"}],"output":["Number"],"category":"soundboard"},{"name":"$editSoundboardSound","version":"2.4.0","description":"Edits given soundboard sound, returns bool","brackets":true,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to edit soundboard sound on","rest":false,"required":true,"type":"Guild"},{"name":"sound ID","description":"The soundboard sound to edit","rest":false,"required":true,"pointer":0,"type":"SoundboardSound"},{"name":"name","description":"The new name for the sound","rest":false,"type":"String"},{"name":"emoji","description":"The new emoji for the sound","rest":false,"type":"String"},{"name":"volume","description":"The new volume for the sound (from 0 to 1)","rest":false,"type":"Number"},{"name":"reason","description":"The reason for editing the sound","rest":false,"type":"String"}],"output":["Boolean"],"category":"soundboard"},{"name":"$getSoundboardSound","version":"2.4.0","description":"Returns a soundboard sound of a guild","unwrap":true,"brackets":false,"args":[{"name":"guild ID","description":"The guild to get soundboard sound from","rest":false,"required":true,"type":"Guild"},{"name":"sound ID","description":"The soundboard sound to get","rest":false,"required":true,"type":"SoundboardSound","pointer":0},{"name":"property","description":"The property of the sound to return","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"enumName":"SoundboardSoundProperty"}],"output":["Json","Unknown"],"category":"soundboard"},{"name":"$soundAvailable","version":"2.4.0","description":"Returns whether a sound is available","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its available status","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Boolean"],"category":"soundboard"},{"name":"$soundCreatedAt","version":"2.4.0","description":"Returns the creation timestamp of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its creation timestamp","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Number"],"category":"soundboard"},{"name":"$soundEmoji","version":"2.4.0","description":"Returns the emoji of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its emoji","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["String"],"category":"soundboard"},{"name":"$soundGuildID","version":"2.4.0","description":"Returns the guild id of a sound","unwrap":false,"output":["Guild"],"category":"soundboard"},{"name":"$soundID","version":"2.4.0","description":"Returns a sound id with given name","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"name","description":"The sound name to return its id","rest":true,"required":true,"type":"String"}],"output":["SoundboardSound"],"category":"soundboard"},{"name":"$soundName","version":"2.4.0","description":"Returns the name of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its name","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["String"],"category":"soundboard"},{"name":"$soundURL","version":"2.4.0","description":"Returns the url of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its url","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["URL"],"category":"soundboard"},{"name":"$soundUserID","version":"2.4.0","description":"Returns the user who created the sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its creator","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["User"],"category":"soundboard"},{"name":"$soundVolume","version":"2.4.0","description":"Returns the volume of a sound","brackets":false,"unwrap":true,"args":[{"name":"guild ID","description":"The guild to get sound from","rest":false,"type":"Guild","required":true},{"name":"sound ID","description":"The sound to return its volume","rest":false,"required":true,"type":"SoundboardSound","pointer":0}],"output":["Number"],"category":"soundboard"},{"name":"$auditLog","version":"1.0.3","description":"Retrieves new data from an event whose context was an audit log instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","targetID","timestamp","reason","executorID","actionType","targetType","action","changes","extra"],"required":true,"enumName":"AuditProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$bulk","version":"1.4.0","description":"Retrieves data from an event whose context was a bulk delete event","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["messages","contents","timestamps","attachments","stickers","users","count"],"required":true,"enumName":"BulkProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$effect","version":"2.3.0","description":"Retrieves data from an event whose context was a voice channel effect event","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["emoji","channelID","guildID","userID","soundID","soundVolume","animationID","animationType"],"required":true,"enumName":"VoiceEffectProperty"}],"category":"state"},{"name":"$newAutomodRule","version":"1.5.0","description":"Retrieves new data from an event whose context was an automod rule instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"required":true,"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newChannel","version":"1.0.0","description":"Retrieves new data from an event whose context was a channel instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"required":true,"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newEmoji","version":"1.0.0","description":"Retrieves new data from an event whose context was an emoji instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"required":true,"enumName":"EmojiProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newEntitlement","version":"1.5.0","description":"Retrieves new data from an event whose context was an entitlement instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"required":true,"enumName":"EntitlementProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newGuild","version":"1.0.0","description":"Retrieves new data from an event whose context was a guild instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"required":true,"enumName":"GuildProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newInvite","version":"1.0.3","description":"Retrieves new data from an event whose context was an invite instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"required":true,"enumName":"InviteProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newMember","version":"1.0.0","description":"Retrieves new data from an event whose context was a guild member instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newMessage","version":"1.0.0","description":"Retrieves new data from an event whose context was a message instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newPresence","version":"1.1.0","description":"Retrieves new data from an event whose context was a presence instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","guildID","status","platform"],"required":true,"enumName":"PresenceProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newRole","version":"1.0.0","description":"Retrieves new data from an event whose context was a role instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"required":true,"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newScheduledEvent","version":"1.4.0","description":"Retrieves new data from an event whose context was a scheduled event instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType","privacyLevel","status"],"required":true,"enumName":"ScheduledEventProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSound","version":"2.4.0","description":"Retrieves new data from an event whose context was a soundboard sound instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"required":true,"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newStage","version":"1.4.0","description":"Retrieves new data from an event whose context was a stage instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"required":true,"enumName":"StageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newState","version":"1.0.0","description":"Retrieves new data from an event whose context was a voice state instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"required":true,"enumName":"VoiceStateProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSticker","version":"1.4.0","description":"Retrieves new data from an event whose context was a sticker instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"required":true,"enumName":"StickerProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$newSubscription","version":"2.5.0","description":"Retrieves new data from an event whose context was a subscription instance","brackets":true,"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"required":true,"enumName":"SubscriptionProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"state"},{"name":"$newUser","version":"1.0.0","description":"Retrieves new data from an event whose context was a user instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"required":true,"enumName":"UserProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldAutomodRule","version":"1.5.0","description":"Retrieves old data from an event whose context was an automod rule instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","authorID","enabled","eventType","triggerType","triggerMetadata","exemptRoles","exemptChannels","actions","keywordFilter","regexPatterns","presets","allowList","mentionTotalLimit","mentionRaidProtectionEnabled"],"required":true,"enumName":"AutomodRuleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldChannel","version":"1.0.0","description":"Retrieves old data from an event whose context was a channel instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","type","topic","bitrate","members","timestamp","nsfw","flags","parentID","position","rawPosition","slowmode","appliedTags","availableTags","archived","locked"],"required":true,"enumName":"ChannelProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldEmoji","version":"1.0.0","description":"Retrieves old data from an event whose context was an emoji instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["guildID","name","id","authorID","identifier","requiresColons","roles","managed","timestamp","animated","url","format"],"required":true,"enumName":"EmojiProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldEntitlement","version":"1.5.0","description":"Retrieves old data from an event whose context was an entitlement instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["userID","consumed","guildId","id","skuID","type","endTimestamp","startTimestamp","active","test","guildSubscription","userSubscription"],"required":true,"enumName":"EntitlementProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldGuild","version":"1.0.0","description":"Retrieves old data from an event whose context was a guild instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","ownerID","name","description","features","afkChannelID","maximumMembers","systemChannelID","afkTimeout","memberCount","boostCount","timestamp","icon","splash","banner","roles","emojis","stickers","boostLevel","discoverySplash","approximateMemberCount","approximatePresenceCount"],"required":true,"enumName":"GuildProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldInvite","version":"1.0.3","description":"Retrieves old data from an event whose context was an invite instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["authorID","channelID","guildID","uses","maxUses","maxAge","timestamp","code","url","type","expiresTimestamp","temporary","deletable","memberCount","presenceCount","targetType","targetUser"],"required":true,"enumName":"InviteProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldMember","version":"1.0.0","description":"Retrieves old data from an event whose context was a guild member instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["nickname","displayName","displayColor","roles","flags","mention","avatar","banner","bannable","kickable","guildID","id","manageable","timeout","timedOutUntil","status","addedRoles","roleCount","removedRoles","platform","timestamp","boosting","boostingSince","permissions","avatarDecoration"],"required":true,"enumName":"MemberProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldMessage","version":"1.0.0","description":"Retrieves old data from an event whose context was a message instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","content","flags","username","type","channelID","guildID","authorID","timestamp","editTimestamp","hasPoll","system","pinned","url","attachments","stickers"],"required":true,"enumName":"MessageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldPresence","version":"1.1.0","description":"Retrieves old data from an event whose context was a presence instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","guildID","status","platform"],"required":true,"enumName":"PresenceProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldRole","version":"1.0.0","description":"Retrieves old data from an event whose context was a role instance","brackets":true,"output":["Unknown"],"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","icon","color","hoisted","managed","mentionable","rawPosition","position","timestamp","permissions","tags","members","unicodeEmoji","secondaryColor","tertiaryColor"],"required":true,"enumName":"RoleProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldScheduledEvent","version":"1.4.0","description":"Retrieves old data from an event whose context was a scheduled event instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","guildID","channelID","name","userCount","description","startTimestamp","endTimestamp","timestamp","url","cover","entityID","location","entityType","privacyLevel","status"],"required":true,"enumName":"ScheduledEventProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSound","version":"2.4.0","description":"Retrieves old data from an event whose context was a soundboard sound instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["name","id","guildID","userID","emoji","volume","timestamp","available","url"],"required":true,"enumName":"SoundboardSoundProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldStage","version":"1.4.0","description":"Retrieves old data from an event whose context was a stage instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","id","topic","timestamp","guildID","privacyLevel","eventId"],"required":true,"enumName":"StageProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldState","version":"1.0.0","description":"Retrieves old data from an event whose context was a voice state instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["channelID","guildID","authorID","deaf","selfDeaf","guildDeaf","muted","selfMuted","guildMuted","timestamp","selfVideo","streaming","suppressed"],"required":true,"enumName":"VoiceStateProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSticker","version":"1.4.0","description":"Retrieves old data from an event whose context was a sticker instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","name","guildID","authorID","timestamp","url","format","available","tags","sortValue","packID","description"],"required":true,"enumName":"StickerProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$oldSubscription","version":"2.5.0","description":"Retrieves old data from an event whose context was a subscription instance","brackets":true,"unwrap":true,"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","userID","status","country","skuIDs","renewalSkuIDs","entitlementIDs","canceledTimestamp","periodEndTimestamp","periodStartTimestamp"],"required":true,"enumName":"SubscriptionProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"output":["Unknown"],"category":"state"},{"name":"$oldUser","version":"1.0.0","description":"Retrieves old data from an event whose context was a user instance","brackets":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"property","description":"The property to pull","rest":false,"type":"Enum","enum":["id","username","displayName","globalName","badges","avatar","accentColor","banner","timestamp","dmChannelID","avatarDecoration","primaryGuildTag","primaryGuildBadge","primaryGuildEnabled","primaryGuildID"],"required":true,"enumName":"UserProperty"},{"name":"separator","description":"The separator to use in case of array","rest":false,"type":"String"}],"category":"state"},{"name":"$async","version":"1.0.0","description":"Runs code asynchronously, will not return any value","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"type":"String","required":true}],"experimental":true,"category":"statement"},{"name":"$break","version":"1.0.3","description":"Breaks the loop","unwrap":false,"category":"statement"},{"name":"$case","version":"1.0.3","description":"Adds a switch case","brackets":true,"experimental":true,"unwrap":true,"output":["Unknown"],"args":[{"name":"value","description":"The match case","rest":false,"required":true,"type":"String"},{"name":"code","description":"Code to execute if it matches this case","rest":false,"required":true,"type":"String"}],"category":"statement"},{"name":"$continue","version":"1.0.3","description":"Skips executing bottom code of the loop","unwrap":false,"category":"statement"},{"name":"$default","version":"1.0.6","brackets":true,"unwrap":true,"description":"Returns right hand value if the left hand value is falsy","args":[{"name":"left hand","description":"Left hand value","rest":false,"required":true,"type":"String"},{"name":"right hand","description":"Right hand value","rest":false,"required":true,"type":"String"}],"output":["String"],"category":"statement"},{"name":"$else","version":"1.2.0","description":"Creates an else statement","unwrap":true,"output":["Unknown"],"args":[{"name":"else","description":"The code to run","required":true,"type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$elseIf","version":"1.2.0","description":"Creates an else if statement","unwrap":false,"output":["Unknown"],"args":[{"name":"condition","description":"The condition to check against","rest":false,"type":"String","condition":true},{"name":"if true","description":"The code to run if true","required":true,"type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$if","version":"1.0.0","description":"Creates an if statement","unwrap":false,"output":["Unknown"],"args":[{"name":"condition","description":"The condition to check against","rest":false,"type":"String","condition":true},{"name":"if true","description":"The code to run if true","required":true,"type":"String","rest":false},{"name":"if false","description":"The code to run if false","type":"String","rest":false}],"brackets":true,"category":"statement"},{"name":"$ifx","version":"1.2.0","description":"WIP if statements","brackets":true,"unwrap":false,"args":[{"name":"block","description":"The if, elseif, else blocks","rest":false,"required":true,"type":"String"}],"experimental":true,"category":"statement"},{"name":"$loop","version":"1.4.0","description":"Executes given code for N times","unwrap":false,"brackets":true,"experimental":true,"args":[{"name":"times","description":"How many times to run the code","rest":false,"required":true,"type":"Number"},{"name":"code","rest":false,"required":true,"type":"String","description":"The code to execute"},{"name":"variable","description":"The variable to load the current iteration count for $env","rest":false,"type":"String"},{"name":"asc","description":"Whether to use asc order for iteration count","rest":false,"type":"Boolean"}],"category":"statement"},{"name":"$return","version":"1.0.0","description":"Returns a value","unwrap":true,"output":["Unknown"],"args":[{"name":"value","description":"The value to return","rest":false,"required":true,"type":"String"}],"brackets":false,"category":"statement"},{"name":"$scope","version":"1.4.0","description":"Runs functions in a cloned context","brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"sync vars","description":"Whether to pass vars as reference","type":"Boolean","rest":false}],"unwrap":false,"output":["Unknown"],"category":"statement"},{"name":"$switch","version":"1.0.3","description":"Switch-case statement for javascript","unwrap":false,"experimental":true,"output":["Unknown"],"args":[{"name":"value","description":"The value to match with","rest":false,"required":true,"type":"String"},{"name":"cases","rest":false,"description":"The cases to use ($case), use $case[default;...] to add a default case","type":"String","required":true}],"brackets":true,"category":"statement"},{"name":"$try","version":"1.0.0","experimental":true,"description":"Handles a possible error from given code","unwrap":false,"args":[{"name":"code","rest":false,"type":"String","required":true,"description":"The code to safely execute"},{"name":"catch code","description":"The code to run in case of an error","rest":false,"type":"String"},{"name":"variable","description":"Variable to load the error message to","rest":false,"type":"String"}],"brackets":true,"category":"statement"},{"name":"$while","version":"1.0.3","description":"Executes code while a condition is true","unwrap":false,"brackets":true,"experimental":true,"args":[{"name":"condition","condition":true,"description":"The condition to validate","rest":false,"required":true,"type":"String"},{"name":"code","rest":false,"required":true,"type":"String","description":"The code to execute"}],"category":"statement"},{"name":"$addSticker","version":"1.0.0","description":"Adds a sticker to a guild, returns sticker id","unwrap":true,"output":["Sticker"],"brackets":true,"args":[{"name":"guild ID","description":"The guild to add the sticker to","rest":false,"type":"Guild","required":true},{"name":"url","description":"The url or file path for this sticker","rest":false,"required":true,"type":"String"},{"name":"name","description":"The sticker name","rest":false,"type":"String","required":true},{"name":"tags","description":"The tags to use for this sticker","type":"String","required":true,"rest":false},{"name":"description","description":"The description for the sticker","rest":false,"type":"String"}],"category":"sticker"},{"name":"$deleteStickers","version":"1.0.0","brackets":true,"unwrap":true,"output":["Number"],"description":"Deletes given stickers, returns the count of stickers deleted","args":[{"name":"guild ID","description":"The guild to delete stickers from","rest":false,"required":true,"type":"Guild"},{"name":"stickers","description":"The stickers to delete","rest":true,"required":true,"pointer":0,"type":"String"}],"category":"sticker"},{"name":"$editSticker","version":"1.4.0","description":"Edits a sticker on a guild, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"name","description":"The new name for the sticker","rest":false,"type":"String"},{"name":"description","description":"The new description for the sticker","rest":false,"type":"String"},{"name":"tags","description":"The new tags for the sticker","rest":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerDescription","version":"1.4.0","description":"Sets a sticker's description, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"description","description":"The new description for the sticker","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerName","version":"1.4.0","description":"Sets a sticker's name, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"name","description":"The new name for the sticker","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$setStickerTags","version":"1.4.0","description":"Sets a sticker's tags, returns bool","brackets":true,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to edit","rest":false,"required":true,"type":"Sticker"},{"name":"tags","description":"The new tags for the sticker","rest":true,"required":true,"type":"String"}],"output":["Boolean"],"category":"sticker"},{"name":"$stickerAvailable","version":"1.4.0","description":"Returns whether a sticker is available","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get availability of","rest":false,"required":true,"type":"Sticker"}],"output":["Boolean"],"category":"sticker"},{"name":"$stickerCreatedAt","version":"1.4.0","description":"Returns a sticker's creation timestamp","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull timestamp of","rest":false,"required":true,"type":"Sticker"}],"output":["Number"],"category":"sticker"},{"name":"$stickerDescription","version":"1.4.0","description":"Returns a sticker's description","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull description of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerFormat","version":"1.4.0","description":"Returns a sticker's format","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get format of","rest":false,"required":true,"type":"Sticker"}],"output":["StickerFormatType"],"category":"sticker"},{"name":"$stickerGuildID","version":"1.4.0","description":"Returns a sticker's guild id","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull guild of","rest":false,"required":true,"type":"Sticker"}],"output":["Guild"],"category":"sticker"},{"name":"$stickerID","version":"1.4.0","description":"Returns the sticker id","unwrap":false,"output":["Sticker"],"category":"sticker"},{"name":"$stickerName","version":"1.4.0","description":"Returns a sticker name","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull name of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerOwnerID","version":"1.4.0","description":"Returns the user who added the sticker","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull owner of","rest":false,"required":true,"type":"Sticker"}],"output":["User"],"category":"sticker"},{"name":"$stickerPackID","version":"1.4.0","description":"Returns a sticker's pack id","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull pack of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerRawData","version":"1.5.0","description":"Returns the raw data of a sticker","unwrap":true,"brackets":false,"args":[{"name":"sticker ID","rest":false,"required":true,"description":"The sticker to get raw data from","type":"Sticker"}],"output":["Json"],"category":"sticker"},{"name":"$stickerSortValue","version":"1.4.0","description":"Returns a sticker's sort value","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get sort value of","rest":false,"required":true,"type":"Sticker"}],"output":["Number"],"category":"sticker"},{"name":"$stickerTags","version":"1.4.0","description":"Returns a sticker's tags","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull tags of","rest":false,"required":true,"type":"Sticker"}],"output":["String"],"category":"sticker"},{"name":"$stickerType","version":"1.4.0","description":"Returns the sticker's type","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to get type of","rest":false,"required":true,"type":"Sticker"}],"output":["StickerType"],"category":"sticker"},{"name":"$stickerURL","version":"2.3.0","description":"Returns a sticker url","brackets":false,"unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to pull url of","rest":false,"required":true,"type":"Sticker"}],"output":["URL"],"category":"sticker"},{"name":"$advancedReplace","version":"1.5.0","aliases":["$advancedReplaceText"],"output":["String"],"description":"Replaces text in a string multiple times","unwrap":true,"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match;replacement","description":"The text to match and their replacement","required":true,"rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$argCount","version":"1.0.0","description":"Counts the number of args in a message","aliases":["$argsCount"],"unwrap":true,"brackets":false,"output":["Number"],"args":[{"name":"text","description":"Text to count arguments","required":true,"rest":false,"type":"String"}],"category":"string"},{"name":"$charCodeAt","version":"1.0.6","description":"Returns the char code at given index","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"message","description":"The string to get char code of","rest":false,"required":true,"type":"String"},{"name":"index","description":"The index to get its char code","type":"Number","rest":false,"required":true}],"category":"string"},{"name":"$charCount","version":"1.0.0","aliases":["$textLength"],"description":"Gets the char count of a text","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"text","description":"The text to get its length","rest":false,"type":"String","required":true},{"name":"char","description":"The character to count in the text","rest":false,"type":"String"}],"category":"string"},{"name":"$checkContains","version":"1.0.0","aliases":["$includes"],"output":["Boolean"],"description":"Checks whether a string contains a set of other trings","unwrap":true,"args":[{"name":"text","description":"The text to check on","required":true,"rest":false,"type":"String"},{"name":"matches","description":"The list of strings to try match","rest":true,"type":"String","required":true}],"brackets":true,"category":"string"},{"name":"$cropArgs","version":"1.4.0","description":"Crops given args","brackets":true,"output":["String"],"args":[{"name":"args","description":"The args to crop","rest":false,"required":true,"type":"String"},{"name":"start index","description":"The start index to start cropping","rest":false,"required":true,"type":"Number"},{"name":"end index","description":"The end index to finish cropping","rest":false,"type":"Number"}],"unwrap":true,"category":"string"},{"name":"$cropText","version":"1.0.3","description":"Crops given text","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to crop","rest":false,"required":true,"type":"String"},{"name":"start index","description":"The start index to start cropping","rest":false,"required":true,"type":"Number"},{"name":"end index","description":"The end index to finish cropping","rest":false,"type":"Number"},{"name":"ending","description":"Add extra text to the end","rest":false,"type":"String"}],"unwrap":true,"category":"string"},{"name":"$endsWith","version":"1.0.0","description":"Checks whether given string ends with X string","unwrap":true,"output":["Boolean"],"args":[{"name":"string","description":"The string to check against","type":"String","rest":false,"required":true},{"name":"values","required":true,"description":"The values to match at the end","rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$fromCharCode","version":"1.0.6","description":"Returns the characters from given codes","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"codes","description":"The codes to get its char codes","type":"Number","rest":true,"required":true}],"category":"string"},{"name":"$padEnd","version":"1.0.6","description":"Pads a string at the end","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to pad at the end","rest":false,"required":true,"type":"String"},{"name":"max length","description":"The max length of the string","rest":false,"required":true,"type":"Number"},{"name":"filler","description":"The filler to use to pad","rest":false,"type":"String"}],"category":"string"},{"name":"$padStart","version":"1.0.6","description":"Pads a string at the start","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to pad at the start","rest":false,"required":true,"type":"String"},{"name":"max length","description":"The max length of the string","rest":false,"required":true,"type":"Number"},{"name":"filler","description":"The filler to use to pad","rest":false,"type":"String"}],"category":"string"},{"name":"$randomString","version":"1.2.0","description":"Creates a random string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"length","description":"The length of the random string","rest":false,"required":true,"type":"Number"},{"name":"characters","description":"The characters to use for this string","rest":false,"required":false,"type":"String"}],"category":"string"},{"name":"$randomText","version":"1.0.0","description":"Returns a random text (no cache)","unwrap":true,"brackets":true,"output":["String"],"args":[{"name":"texts","description":"The texts to use","rest":true,"required":true,"type":"String"}],"category":"string"},{"name":"$randomUUID","version":"1.2.0","description":"Returns a random uuid","unwrap":false,"output":["String"],"category":"string"},{"name":"$repeat","version":"1.1.0","aliases":["$repeatText"],"description":"Repeats given text for x times","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to repeat","type":"String","rest":false,"required":true},{"name":"amount","rest":false,"required":true,"type":"Number","description":"How many times to repeat this text"}],"category":"string"},{"name":"$replace","version":"1.0.0","aliases":["$replaceText"],"output":["String"],"description":"Replace text in a string","unwrap":true,"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match","description":"Text to match in base","rest":false,"required":true,"type":"String"},{"name":"new value","description":"The text to replace matches with","type":"String","rest":false,"required":true},{"name":"amount","description":"How many times to perform this replacement","rest":false,"type":"Number"}],"brackets":true,"category":"string"},{"name":"$replaceRegex","version":"1.0.0","description":"Replace text in a string using regex","unwrap":true,"output":["String"],"args":[{"name":"text","description":"The base text","rest":false,"required":true,"type":"String"},{"name":"match","description":"Regex to match in base","rest":false,"required":true,"type":"String","pointer":2},{"name":"flags","description":"The flags to use for the regex","rest":false,"required":true,"type":"String"},{"name":"new value","description":"The text to replace matches with","type":"String","rest":false,"required":true},{"name":"amount","description":"How many times to perform this replacement","rest":false,"type":"Number"}],"brackets":true,"category":"string"},{"name":"$reverseText","version":"1.5.0","description":"Reverses given text","aliases":["$reverse"],"brackets":true,"unwrap":true,"args":[{"name":"string","description":"The string to use","rest":false,"required":true,"type":"String"}],"output":["String"],"category":"string"},{"name":"$sliceText","version":"1.3.0","description":"Slices given text","brackets":true,"output":["String"],"args":[{"name":"text","description":"The text to slice","rest":false,"required":true,"type":"String"},{"name":"start","description":"The start index","rest":false,"required":false,"type":"Number"},{"name":"end","description":"The end index","rest":false,"required":false,"type":"Number"}],"unwrap":true,"category":"string"},{"name":"$snowflake","version":"1.4.0","description":"Generates a snowflake, this value will never clash","unwrap":false,"output":["String"],"category":"string"},{"name":"$startsWith","version":"1.0.0","description":"Checks whether given string starts with X string","unwrap":true,"output":["Boolean"],"args":[{"name":"string","description":"The string to check against","type":"String","rest":false,"required":true},{"name":"values","required":true,"description":"The values to match at the start","rest":true,"type":"String"}],"brackets":true,"category":"string"},{"name":"$toCamelCase","version":"1.0.6","description":"Converts a string to camel case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn camel case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toKebabCase","version":"1.0.6","description":"Converts a string to kebab case","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"message","description":"The string to turn kebab case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toLowerCase","version":"1.0.0","description":"Makes a string lowercase","unwrap":true,"output":["String"],"args":[{"name":"string","description":"The string to turn lowercase","type":"String","rest":true,"required":true}],"brackets":true,"category":"string"},{"name":"$toSnakeCase","version":"1.0.6","description":"Converts a string to snake case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn snake case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toTitleCase","version":"1.0.6","description":"Converts a string to title case","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"message","description":"The string to turn title case","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$toUpperCase","version":"1.0.0","description":"Makes a string uppercase","unwrap":true,"output":["String"],"args":[{"name":"string","description":"The string to turn uppercase","type":"String","rest":true,"required":true}],"brackets":true,"category":"string"},{"name":"$trim","version":"1.0.6","aliases":["$trimSpace"],"description":"Trims a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimEnd","version":"1.0.6","description":"Trims at the end of a string","brackets":true,"output":["String"],"unwrap":true,"args":[{"name":"text","description":"The text to trim at the end","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimLines","version":"1.5.0","description":"Trims empty lines from a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim empty lines","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$trimStart","version":"1.0.6","description":"Trims at the start of a string","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"text","description":"The text to trim at the start","rest":false,"required":true,"type":"String"}],"category":"string"},{"name":"$cpu","version":"1.0.0","description":"Returns the cpu usage of the host (not accurate)","aliases":["$cpuUsage"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$cpuArch","version":"1.0.7","output":["String"],"description":"Returns the cpu architecture","unwrap":false,"category":"system"},{"name":"$cpuCores","version":"1.0.7","output":["Number"],"description":"Returns the amount of cpu cores","unwrap":false,"category":"system"},{"name":"$cpuModel","version":"1.0.7","description":"Returns the cpu model","unwrap":false,"output":["String"],"category":"system"},{"name":"$cpuSpeed","version":"1.0.7","description":"Returns the cpu speed in MHz","unwrap":false,"output":["Number"],"category":"system"},{"name":"$networkCardIPs","version":"1.2.0","description":"Returns your network's card ips","unwrap":true,"output":["String[]"],"brackets":false,"args":[{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"system"},{"name":"$networkCardNames","version":"1.2.0","description":"Returns your network's card names","unwrap":true,"output":["String[]"],"brackets":false,"args":[{"name":"separator","description":"The separator to use","rest":false,"required":true,"type":"String"}],"category":"system"},{"name":"$nodeVersion","version":"1.0.0","description":"Returns the node version","unwrap":false,"output":["String"],"category":"system"},{"name":"$os","version":"1.0.7","description":"Returns the operating system name","unwrap":false,"output":["String"],"category":"system"},{"name":"$osUptime","version":"1.0.7","description":"Returns the operating system uptime (seconds)","unwrap":false,"output":["Number"],"category":"system"},{"name":"$ram","version":"1.0.0","description":"Returns the current ram usage in MB","aliases":["$memory","$ramUsage"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$ramTotal","version":"2.2.0","description":"Returns the maximum total ram capacity of the system in GB","aliases":["$memoryTotal","$maxRam"],"unwrap":false,"output":["Number"],"category":"system"},{"name":"$calendarDay","version":"1.5.0","description":"Returns the calendar day","unwrap":false,"output":["Number"],"category":"time"},{"name":"$calendarWeek","version":"1.5.0","description":"Returns the calendar week","unwrap":false,"output":["Number"],"category":"time"},{"name":"$clearInterval","version":"2.3.0","description":"Clears an active interval, returns bool","aliases":["$stopInterval"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The name of the interval","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"time"},{"name":"$clearTimeout","version":"2.3.0","description":"Clears an active timeout, returns bool","aliases":["$stopTimeout"],"unwrap":true,"brackets":true,"args":[{"name":"name","description":"The name of the timeout","rest":false,"required":true,"type":"String"}],"output":["Boolean"],"category":"time"},{"name":"$day","version":"1.2.0","description":"Returns current day of month","aliases":["$dayOfMonth"],"unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the day","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["String"],"category":"time"},{"name":"$discordTimestamp","version":"1.4.0","description":"Creates a discord timestamp","unwrap":true,"brackets":true,"args":[{"name":"time","description":"The time to turn into timestamp","rest":false,"required":true,"type":"Time"},{"name":"style","rest":false,"required":true,"enum":["ShortTime","MediumTime","LongTime","ShortDate","LongDate","LongDateShortTime","ShortDateTime","FullDateShortTime","LongDateTime","ShortDateShortTime","ShortDateMediumTime","RelativeTime"],"type":"Enum","description":"The timestamp style","enumName":"TimestampStyles"}],"output":["String"],"category":"time"},{"name":"$executionTime","version":"1.0.3","description":"Returns current execution time","unwrap":false,"output":["Number"],"category":"time"},{"name":"$getTimestamp","version":"1.0.0","description":"Gets the current timestamp","unwrap":false,"output":["Number"],"category":"time"},{"name":"$hour","version":"1.2.0","description":"Returns current hour","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the hour","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$minute","version":"1.2.0","description":"Returns current minute","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the minute","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$month","version":"1.2.0","description":"Returns current month","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the month","rest":false,"type":"Enum","enum":["Numeric","TwoDigit","Long","Short","Narrow"],"enumName":"ExtendedTimeFormat"}],"output":["String"],"category":"time"},{"name":"$parseDate","version":"1.0.2","description":"Parses valid ms to a date","brackets":true,"output":["Date"],"args":[{"name":"ms","description":"The ms to convert to date","rest":false,"type":"Number","required":true},{"name":"type","description":"The date type","enum":["LocaleDate","LocaleTime","Locale","Date","ISO","UTC","Time"],"rest":false,"required":true,"type":"Enum","enumName":"DateType"}],"unwrap":true,"category":"time"},{"name":"$parseDigital","version":"1.5.0","description":"Parses given ms to digital format","brackets":true,"unwrap":true,"output":["String"],"args":[{"name":"ms","description":"The ms to convert to digital format","rest":false,"type":"Number","required":true}],"category":"time"},{"name":"$parseMS","version":"1.0.2","description":"Parses valid ms to duration","brackets":true,"output":["String"],"args":[{"name":"ms","description":"The ms to convert to string","rest":false,"type":"Number","required":true},{"name":"limit","description":"Limit of units to use","rest":false,"type":"Number"},{"name":"separator","description":"The separator to use for every unit","rest":false,"type":"String"},{"name":"and","rest":false,"description":"Whether to use and word for last unit","type":"Boolean"}],"unwrap":true,"category":"time"},{"name":"$parseString","version":"1.0.2","description":"Parses valid duration string to ms","brackets":true,"output":["Number"],"args":[{"name":"duration","description":"The valid string to convert to ms","rest":false,"type":"String","required":true}],"unwrap":true,"category":"time"},{"name":"$second","version":"1.2.0","description":"Returns current second","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the second","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$setCalendar","version":"1.5.0","description":"Sets the calendar for time functions","aliases":["$calendar"],"unwrap":true,"brackets":true,"experimental":true,"args":[{"name":"type","description":"The calendar type to use","rest":false,"type":"Enum","enum":["Buddhist","Chinese","Coptic","Dangi","Ethioaa","Ethiopic","Gregory","Hebrew","Indian","Islamic","IslamicUmalqura","IslamicTbla","IslamicCivil","IslamicRgsa","Iso8601","Japanese","Persian","Roc"],"required":true,"enumName":"CalendarType"}],"category":"time"},{"name":"$setInterval","version":"1.0.2","description":"Executes code after given duration until canceled","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"time","description":"How long to wait for before running this code","rest":false,"type":"Time"},{"name":"name","description":"The name for this interval","rest":false,"type":"String"}],"category":"time"},{"name":"$setTimeout","version":"1.0.2","description":"Executes code after given duration","unwrap":false,"brackets":true,"args":[{"name":"code","description":"The code to execute","rest":false,"required":true,"type":"String"},{"name":"time","description":"How long to wait for before running this code","rest":false,"type":"Time"},{"name":"name","description":"The name for this timeout","rest":false,"type":"String"}],"category":"time"},{"name":"$setTimezone","version":"1.5.0","aliases":["$timezone"],"description":"Sets the timezone for time functions","unwrap":true,"brackets":true,"args":[{"name":"timezone","description":"The timezone to set","rest":false,"type":"String","required":true}],"category":"time"},{"name":"$unparseDate","version":"1.2.0","description":"Unparses given date to ms","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"date","description":"The date to get its ms","type":"Date","rest":false,"required":true}],"category":"time"},{"name":"$unparseDigital","version":"1.5.0","description":"Unparses given digital format to ms","brackets":true,"unwrap":true,"output":["Number"],"args":[{"name":"digital","description":"The digital format to convert to ms","rest":false,"type":"String","required":true}],"category":"time"},{"name":"$wait","version":"1.0.0","description":"Delays the code below for x milliseconds","brackets":true,"unwrap":true,"args":[{"name":"duration","description":"The duration to wait for","rest":false,"type":"Time","required":true}],"category":"time"},{"name":"$week","version":"1.5.0","description":"Returns current week of month","unwrap":false,"output":["Number"],"category":"time"},{"name":"$weekday","version":"2.3.0","description":"Returns current day of week","aliases":["$dayOfWeek"],"unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the day","rest":false,"type":"Enum","enum":["Numeric","TwoDigit","Long","Short","Narrow"],"enumName":"ExtendedTimeFormat"}],"output":["String"],"category":"time"},{"name":"$year","version":"1.2.0","description":"Returns current year","unwrap":true,"brackets":false,"args":[{"name":"format","description":"The format of the year","rest":false,"type":"Enum","enum":["Numeric","TwoDigit"],"enumName":"BasicTimeFormat"}],"output":["Number"],"category":"time"},{"name":"$api","version":"1.5.0","description":"Sends a discord api request, using a discord-api-types route","unwrap":true,"aliases":["$discordAPI"],"args":[{"name":"route name","description":"Route name, like so `channel`","type":"String","rest":false},{"name":"route method","description":"Route method, like so `get`","type":"String","rest":false,"required":true},{"name":"route params;body","description":"Parameters for this route, body has to be json","rest":true,"required":true,"type":"String"}],"output":["Unknown"],"brackets":true,"category":"unsafe"},{"name":"$coroutine","version":"1.2.0","description":"Runs given code in a separate thread","experimental":true,"unwrap":false,"args":[{"name":"code","description":"The code to run","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"unsafe"},{"name":"$djsEval","version":"1.0.0","aliases":["$js"],"description":"Evaluates JavaScript code","unwrap":true,"output":["Unknown"],"args":[{"name":"code","description":"The code to eval","rest":true,"required":true,"type":"String"}],"brackets":true,"category":"unsafe"},{"name":"$eval","version":"1.0.0","description":"Evaluates given code","unwrap":true,"output":["Unknown"],"brackets":true,"args":[{"name":"code","type":"String","rest":false,"required":true,"description":"The code to eval"},{"name":"send","type":"Boolean","rest":false,"description":"Whether to send as new message"}],"category":"unsafe"},{"name":"$exec","version":"1.0.0","brackets":true,"description":"Runs a command in console","unwrap":true,"output":["Unknown"],"args":[{"name":"command","description":"The command to execute","rest":false,"type":"String","required":true}],"category":"unsafe"},{"name":"$function","version":"1.0.0","description":"Runs a function","unwrap":false,"experimental":true,"output":["Unknown"],"args":[{"name":"code","description":"Code to execute","required":true,"type":"String","rest":true}],"brackets":true,"category":"unsafe"},{"name":"$gc","version":"1.5.0","description":"Triggers JavaScript's garbage collector, only available if passed --expose-gc flag to node","unwrap":false,"output":["Boolean"],"category":"unsafe"},{"name":"$instanceName","version":"1.4.0","aliases":["$instance","$contextInstance"],"description":"Returns the context's instance name","output":["String"],"unwrap":false,"category":"unsafe"},{"name":"$loadChannelContext","version":"1.4.0","aliases":["$useChannelContext","$asChannelContext"],"brackets":true,"description":"Loads a channel instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"channel ID","description":"The channel to adapt context with","rest":false,"required":true,"type":"Channel"}],"category":"unsafe"},{"name":"$loadGuildContext","version":"1.4.0","aliases":["$useGuildContext","$asGuildContext"],"brackets":true,"description":"Loads a guild instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"guild ID","description":"The guild to adapt context with","rest":false,"required":true,"type":"Guild"}],"category":"unsafe"},{"name":"$loadMemberContext","version":"1.4.0","aliases":["$useMemberContext","$asMemberContext"],"description":"Loads a member instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull member from","rest":false,"required":true,"type":"Guild"},{"name":"member ID","description":"The member to adapt context with","rest":false,"required":true,"type":"Member","pointer":0}],"category":"unsafe"},{"name":"$loadMessageContext","version":"1.4.0","aliases":["$useMessageContext","$asMessageContext"],"description":"Loads a message instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"channel ID","description":"The channel to pull message from","rest":false,"required":true,"type":"TextChannel"},{"name":"message ID","description":"The message to adapt context with","rest":false,"required":true,"type":"Message","pointer":0}],"category":"unsafe"},{"name":"$loadRoleContext","version":"1.4.0","aliases":["$useRoleContext","$asRoleContext"],"description":"Loads a role instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"brackets":true,"args":[{"name":"guild ID","description":"The guild to pull role from","rest":false,"required":true,"type":"Guild"},{"name":"role ID","description":"The role to adapt context with","rest":false,"required":true,"type":"Role","pointer":0}],"category":"unsafe"},{"name":"$loadStickerContext","version":"1.4.0","aliases":["$useStickerContext","$asStickerContext"],"brackets":true,"description":"Loads a sticker instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"sticker ID","description":"The sticker to adapt context with","rest":false,"required":true,"type":"Sticker"}],"category":"unsafe"},{"name":"$loadUserContext","version":"1.4.0","aliases":["$useUserContext","$asUserContext"],"brackets":true,"description":"Loads a user instance to the current context, this is not reversible and is adviced to use with $scope.","unwrap":true,"args":[{"name":"user ID","description":"The user to adapt context with","rest":false,"required":true,"type":"User"}],"category":"unsafe"},{"name":"$authorID","version":"1.0.0","aliases":["$userID"],"description":"Retrieves a user's id","unwrap":false,"output":["User"],"category":"user"},{"name":"$discriminator","version":"1.4.0","description":"Returns the user discriminator","brackets":false,"unwrap":true,"args":[{"name":"user ID","description":"The user to get its discriminator","rest":false,"required":true,"type":"User"}],"output":["String"],"category":"user"},{"name":"$isBot","version":"1.0.0","description":"Whether the user is a bot","unwrap":true,"output":["Boolean"],"args":[{"name":"user ID","description":"The user to check whether its a bot","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$isBotVerified","version":"1.0.0","description":"Whether the bot is verified","unwrap":true,"output":["Boolean"],"args":[{"name":"user ID","description":"The bot to check whether its verified","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$isUserDMEnabled","version":"1.2.0","description":"Checks whether the given user can be DMed","unwrap":true,"brackets":false,"output":["Boolean"],"args":[{"name":"user","description":"The user to test DMs","rest":false,"required":true,"type":"User"}],"category":"user"},{"name":"$randomUserID","version":"1.0.3","description":"Returns a random user ID","unwrap":false,"output":["User"],"category":"user"},{"name":"$sendDM","version":"1.0.0","description":"Sends a dm to the user","unwrap":true,"brackets":true,"output":["Message"],"args":[{"name":"user ID","description":"The user to dm","rest":false,"type":"User","required":true},{"name":"content","description":"The content to send","rest":false,"type":"String"},{"name":"return message ID","description":"Returns the message id of the newly created message","rest":false,"type":"Boolean"}],"category":"user"},{"name":"$userAccentColor","version":"1.0.0","description":"Returns the user accent color","brackets":false,"output":["Color"],"args":[{"name":"user ID","description":"The user to retrieve the accent color","rest":false,"required":true,"type":"User"}],"unwrap":true,"category":"user"},{"name":"$userAvatar","version":"1.0.0","description":"Returns the user avatar","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the avatar","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userAvatarDecoration","version":"1.0.0","description":"Returns the user decoration","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the decoration","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userBadges","version":"1.0.0","description":"Returns the public badges of a user","aliases":["$userFlags"],"unwrap":true,"output":["UserFlags[]"],"args":[{"name":"user ID","description":"The user to return its badges","required":true,"rest":false,"type":"User"},{"name":"separator","description":"The separator to use for every badge","rest":false,"type":"String"}],"brackets":false,"category":"user"},{"name":"$userBanner","version":"1.0.0","description":"Returns the user banner","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the banner","rest":false,"required":true,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"unwrap":true,"category":"user"},{"name":"$userCount","version":"1.0.0","description":"Returns the user count of the bot","unwrap":false,"output":["Number"],"category":"user"},{"name":"$userCreatedAt","version":"1.0.2","description":"Returns the timestamp this user created their account","unwrap":true,"output":["Number"],"args":[{"name":"user ID","description":"The user to return its creation date","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userDefaultAvatar","version":"1.5.0","description":"Returns the default user avatar","brackets":false,"output":["URL"],"args":[{"name":"user ID","description":"The user to retrieve the default avatar","rest":false,"required":true,"type":"User"}],"unwrap":true,"category":"user"},{"name":"$userDisplayName","version":"1.0.0","description":"Returns the display name of a user","unwrap":true,"output":["String"],"args":[{"name":"user ID","description":"The user to return its display name","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userExists","version":"1.0.0","description":"Returns whether a user id exists","unwrap":true,"output":["Boolean"],"brackets":true,"args":[{"name":"user ID","description":"The user to check","rest":false,"required":true,"type":"String"}],"category":"user"},{"name":"$userGlobalName","version":"1.0.0","description":"Returns the global name of a user","unwrap":true,"output":["String"],"args":[{"name":"user ID","description":"The user to return its global name","required":true,"rest":false,"type":"User"}],"brackets":false,"category":"user"},{"name":"$userGuildBadge","version":"2.5.0","description":"Returns the primary guild tag badge of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"},{"name":"size","description":"The size to use for the image","rest":false,"type":"Number"},{"name":"extension","description":"The extension to use for the image","rest":false,"type":"String"}],"output":["URL"],"category":"user"},{"name":"$userGuildEnabled","version":"2.5.0","description":"Returns whether the primary guild of a user is enabled","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["Boolean"],"category":"user"},{"name":"$userGuildID","version":"2.5.0","description":"Returns the primary guild id of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["Guild"],"category":"user"},{"name":"$userGuildTag","version":"2.5.0","description":"Returns the primary guild tag name of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get its primary guild","required":true,"rest":false,"type":"User"}],"output":["String"],"category":"user"},{"name":"$userIDs","version":"1.4.0","description":"Returns all the users that are currently cached","unwrap":true,"brackets":false,"args":[{"name":"separator","description":"The separator to use for every id","rest":false,"type":"String"}],"output":["User[]"],"category":"user"},{"name":"$userRawData","version":"1.5.0","description":"Returns the raw data of a user","unwrap":true,"brackets":false,"args":[{"name":"user ID","description":"The user to get raw data from","rest":false,"type":"User","required":true}],"output":["Json"],"category":"user"},{"name":"$userReferenceID","version":"1.5.0","description":"Returns the id of the user this message replies to","unwrap":true,"output":["User"],"args":[{"name":"channel ID","rest":false,"required":true,"description":"The channel to get the message from","type":"Channel"},{"name":"message ID","description":"The message to get its reference user","rest":false,"type":"Message","pointer":0,"required":true}],"brackets":false,"category":"user"},{"name":"$userTag","version":"1.4.0","description":"Returns the user tag","brackets":false,"unwrap":true,"args":[{"name":"user ID","description":"The user to get its tag","rest":false,"required":true,"type":"User"}],"output":["String"],"category":"user"},{"name":"$username","version":"1.0.0","description":"Retrieves a user's username","brackets":false,"output":["String"],"args":[{"name":"id","description":"The user id to get the username of","type":"User","rest":false}],"unwrap":true,"category":"user"},{"name":"$delete","version":"1.0.0","description":"Deletes a keyword","unwrap":true,"output":["Boolean"],"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true}],"brackets":true,"category":"variable"},{"name":"$env","version":"1.0.0","aliases":["$jsonDump"],"output":["Unknown"],"description":"Retrieves an environment value","args":[{"name":"key","description":"The key to return its value","required":true,"type":"String","rest":true}],"brackets":true,"unwrap":true,"category":"variable"},{"name":"$get","version":"1.0.0","output":["Unknown"],"description":"Get a keyword value","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true}],"brackets":true,"category":"variable"},{"name":"$has","version":"1.0.0","description":"Checks whether a keyword exists","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"name","description":"The name of the keyword","rest":false,"type":"String","required":true}],"category":"variable"},{"name":"$let","version":"1.0.0","description":"Create a keyword","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The key value","rest":false,"required":true,"type":"String"}],"brackets":true,"category":"variable"},{"name":"$letDivide","version":"1.3.0","description":"Short-hand for $let[...;$divide[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to divide with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letMulti","version":"1.3.0","description":"Short-hand for $let[...;$multi[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to multiply with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letSub","version":"1.3.0","description":"Short-hand for $let[...;$sub[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to sub with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$letSum","version":"1.3.0","description":"Short-hand for $let[...;$sum[$get[...];...]]","unwrap":true,"args":[{"name":"key","description":"The key name","rest":false,"type":"String","required":true},{"name":"value","description":"The value to sum with","rest":false,"required":true,"type":"Number"}],"brackets":true,"category":"variable"},{"name":"$getWebhook","version":"2.6.0","description":"Returns a webhook from a channel","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to get","rest":false,"type":"Webhook","required":true},{"name":"property","description":"The property of the webhook to return","rest":false,"type":"Enum","enum":["id","name","type","avatar","ownerID","channelID","guildID","sourceChannelID","sourceGuildID","timestamp","token","url"],"enumName":"WebhookProperty"}],"output":["Json","Unknown"],"category":"webhook"},{"name":"$webhookCreate","version":"1.0.0","description":"Creates a webhook in a channel, returns the webhook id","brackets":true,"unwrap":true,"output":["Webhook"],"args":[{"name":"channel ID","description":"The channel to create the webhook","type":"Channel","rest":false,"required":true},{"name":"name","description":"The webhook name","rest":false,"required":true,"type":"String"},{"name":"url","description":"The avatar url","rest":false,"type":"String"}],"category":"webhook"},{"name":"$webhookDelete","version":"1.0.0","description":"Deletes webhook with given id","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to delete","rest":false,"type":"Webhook","required":true}],"category":"webhook"},{"name":"$webhookEdit","version":"1.0.0","description":"Edits webhook with given id, returns bool","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to edit","rest":false,"type":"Webhook","required":true},{"name":"name","description":"The new name for the webhook","rest":false,"type":"String"},{"name":"url","description":"The new avatar for the webhook","rest":false,"type":"String"}],"output":["Boolean"],"category":"webhook"},{"name":"$webhookEditMessage","version":"1.5.0","description":"Edits a webhook message, returns bool","brackets":true,"unwrap":true,"output":["Boolean"],"args":[{"name":"url","description":"The webhook url","rest":false,"required":true,"type":"String"},{"name":"message ID","description":"The message to edit","rest":false,"required":true,"type":"String"},{"name":"content","description":"The new content for the message","rest":false,"type":"String"},{"name":"thread ID","description":"The thread this message belongs to","rest":false,"type":"Channel"}],"category":"webhook"},{"name":"$webhookExists","version":"1.0.0","description":"Checks whether given webhook id exists","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook id to check for","rest":false,"type":"String","required":true}],"output":["Boolean"],"category":"webhook"},{"name":"$webhookIsUserCreated","version":"2.3.0","description":"Checks whether given webhook is user created","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to pull data from","rest":false,"type":"Webhook","required":true}],"output":["Boolean"],"category":"webhook"},{"name":"$webhookSend","version":"1.0.0","description":"Sends a message with a webhook","brackets":true,"unwrap":true,"output":["Message"],"args":[{"name":"url","description":"The webhook url","rest":false,"required":true,"type":"String"},{"name":"content","description":"The content for the message","rest":false,"type":"String"},{"name":"return message ID","description":"Return the message id of the sent message","rest":false,"type":"Boolean"},{"name":"username","description":"The username for the message","rest":false,"type":"String"},{"name":"avatar","description":"The avatar for the message","rest":false,"type":"String"},{"name":"thread ID","description":"The thread to send message to","rest":false,"type":"Channel"},{"name":"post name","description":"The name for the created forum post","rest":false,"type":"String"},{"name":"tags","description":"The tags for the created forum post","rest":true,"type":"String"}],"category":"webhook"},{"name":"$webhookToken","version":"1.0.0","description":"Returns the token of a webhook","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to pull data from","rest":false,"type":"Webhook","required":true}],"output":["String"],"category":"webhook"},{"name":"$webhookType","version":"2.3.0","description":"Returns the type of a webhook","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to pull data from","rest":false,"type":"Webhook","required":true}],"output":["WebhookType"],"category":"webhook"},{"name":"$webhookURL","version":"1.0.0","description":"Returns the url of a webhook","brackets":true,"unwrap":true,"args":[{"name":"webhook ID","description":"The webhook to pull data from","rest":false,"type":"Webhook","required":true}],"output":["URL"],"category":"webhook"},{"name":"$ws","version":"1.5.0","description":"Creates a WebSocket connection to a server","aliases":["$websocket"],"brackets":true,"unwrap":true,"args":[{"name":"host","description":"The WS host, formatted as wss://hostname:port","rest":false,"required":true,"type":"String"}],"output":["Number"],"category":"websocket"},{"name":"$wsClose","version":"1.5.0","description":"Closes a websocket connection and removes all listeners of it","aliases":["$websocketClose"],"brackets":true,"unwrap":true,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"code","description":"The status code to send","rest":false,"type":"Number"}],"category":"websocket"},{"name":"$wsOn","version":"1.5.0","description":"Attach a listener to a websocket","unwrap":false,"aliases":["$websocketOn"],"brackets":true,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"listener name","description":"The name of the event to listen to","rest":false,"required":true,"type":"String"},{"name":"callback","description":"The code to execute every time this event is fired","rest":false,"required":true,"type":"String"},{"name":"params","description":"The arguments that will contain the data of the event that was sent","rest":true,"required":true,"type":"String"}],"category":"websocket"},{"name":"$wsSend","version":"1.5.0","description":"Sends a websocket message","aliases":["$websocketSend"],"brackets":true,"unwrap":false,"args":[{"name":"websocket ID","description":"The id of the websocket to attach this listener to","rest":false,"required":true,"type":"Number"},{"name":"value","description":"The json value to send over","rest":false,"required":true,"type":"Json"},{"name":"callback","description":"Code to execute on completion of request","rest":false,"type":"String"},{"name":"variable name","description":"Variable to store error on if callback was called for an error","rest":false,"required":false,"type":"String"}],"category":"websocket"},{"name":"$wsState","version":"1.5.0","output":["ConnectionState"],"description":"Returns a websocket's connection state","unwrap":true,"brackets":true,"args":[{"name":"websocket ID","description":"The websocket to get its state","rest":false,"required":true,"type":"Number"}],"category":"websocket"}] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 73fcb02a82..c81c464afe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,16 @@ { "name": "@tryforge/forgescript", - "version": "2.5.0", + "version": "2.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@tryforge/forgescript", - "version": "2.5.0", + "version": "2.6.0", "license": "GPL-3.0", "dependencies": { "chalk": "^4.1.2", - "discord.js": "^14.22.1", + "discord.js": "^14.25.1", "ms-utility": "^3.3.0", "tiny-typed-emitter": "^2.1.0", "undici": "^5.23.0" @@ -45,15 +45,15 @@ } }, "node_modules/@discordjs/builders": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.11.2.tgz", - "integrity": "sha512-F1WTABdd8/R9D1icJzajC4IuLyyS8f3rTOz66JsSI3pKvpCAtsMBweu8cyNYsIyvcrKAVn9EPK+Psoymq+XC0A==", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.13.0.tgz", + "integrity": "sha512-COK0uU6ZaJI+LA67H/rp8IbEkYwlZf3mAoBI5wtPh5G5cbEQGNhVpzINg2f/6+q/YipnNIKy6fJDg6kMUKUw4Q==", "license": "Apache-2.0", "dependencies": { "@discordjs/formatters": "^0.6.1", "@discordjs/util": "^1.1.1", "@sapphire/shapeshift": "^4.0.0", - "discord-api-types": "^0.38.1", + "discord-api-types": "^0.38.31", "fast-deep-equal": "^3.1.3", "ts-mixer": "^6.0.4", "tslib": "^2.6.3" @@ -74,12 +74,12 @@ } }, "node_modules/@discordjs/formatters": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.6.1.tgz", - "integrity": "sha512-5cnX+tASiPCqCWtFcFslxBVUaCetB0thvM/JyavhbXInP1HJIEU+Qv/zMrnuwSsX3yWH2lVXNJZeDK3EiP4HHg==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.6.2.tgz", + "integrity": "sha512-y4UPwWhH6vChKRkGdMB4odasUbHOUwy7KL+OVwF86PvT6QVOwElx+TiI1/6kcmcEe+g5YRXJFiXSXUdabqZOvQ==", "license": "Apache-2.0", "dependencies": { - "discord-api-types": "^0.38.1" + "discord-api-types": "^0.38.33" }, "engines": { "node": ">=16.11.0" @@ -133,10 +133,13 @@ } }, "node_modules/@discordjs/util": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.1.1.tgz", - "integrity": "sha512-eddz6UnOBEB1oITPinyrB2Pttej49M9FZQY8NxgEvc3tq6ZICZ19m70RsmzRdDHk80O9NoYN/25AqJl8vPVf/g==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.2.0.tgz", + "integrity": "sha512-3LKP7F2+atl9vJFhaBjn4nOaSWahZ/yWjOvA4e5pnXkt2qyXRCHLxoBQy81GFtLGCq7K9lPm9R517M1U+/90Qg==", "license": "Apache-2.0", + "dependencies": { + "discord-api-types": "^0.38.33" + }, "engines": { "node": ">=18" }, @@ -526,6 +529,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.16.0.tgz", "integrity": "sha512-H2GM3eUo12HpKZU9njig3DF5zJ58ja6ahj1GoHEHOgQvYxzoFJJEvC1MQ7T2l9Ha+69ZSOn7RTxOdpC/y3ikMw==", "dev": true, + "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "6.16.0", "@typescript-eslint/types": "6.16.0", @@ -635,10 +639,11 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } @@ -734,6 +739,7 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -865,10 +871,11 @@ "license": "MIT" }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -1091,28 +1098,28 @@ } }, "node_modules/discord-api-types": { - "version": "0.38.21", - "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.21.tgz", - "integrity": "sha512-E6KtXUNjZVIYP1GMjmeRdAC1xRql9xtSahRwJYpP74/hJ6Q2i2oTp6ZbFG/FUN0WqtdW2igHDsJyF2u9hV8pHQ==", + "version": "0.38.34", + "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.34.tgz", + "integrity": "sha512-muq7xKGznj5MSFCzuIm/2TO7DpttuomUTemVM82fRqgnMl70YRzEyY24jlbiV6R9tzOTq6A6UnZ0bsfZeKD38Q==", "license": "MIT", "workspaces": [ "scripts/actions/documentation" ] }, "node_modules/discord.js": { - "version": "14.22.1", - "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.22.1.tgz", - "integrity": "sha512-3k+Kisd/v570Jr68A1kNs7qVhNehDwDJAPe4DZ2Syt+/zobf9zEcuYFvsfIaAOgCa0BiHMfOOKQY4eYINl0z7w==", + "version": "14.25.1", + "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.25.1.tgz", + "integrity": "sha512-2l0gsPOLPs5t6GFZfQZKnL1OJNYFcuC/ETWsW4VtKVD/tg4ICa9x+jb9bkPffkMdRpRpuUaO/fKkHCBeiCKh8g==", "license": "Apache-2.0", "dependencies": { - "@discordjs/builders": "^1.11.2", + "@discordjs/builders": "^1.13.0", "@discordjs/collection": "1.5.3", - "@discordjs/formatters": "^0.6.1", + "@discordjs/formatters": "^0.6.2", "@discordjs/rest": "^2.6.0", - "@discordjs/util": "^1.1.1", + "@discordjs/util": "^1.2.0", "@discordjs/ws": "^1.2.3", "@sapphire/snowflake": "3.5.3", - "discord-api-types": "^0.38.16", + "discord-api-types": "^0.38.33", "fast-deep-equal": "3.1.3", "lodash.snakecase": "4.1.1", "magic-bytes.js": "^1.10.0", @@ -1223,6 +1230,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.52.0.tgz", "integrity": "sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==", "dev": true, + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -1931,10 +1939,11 @@ "dev": true }, "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -2855,10 +2864,11 @@ } }, "node_modules/typedoc/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } @@ -2883,6 +2893,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -2892,9 +2903,9 @@ } }, "node_modules/undici": { - "version": "5.28.4", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", - "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", + "version": "5.29.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.29.0.tgz", + "integrity": "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==", "license": "MIT", "dependencies": { "@fastify/busboy": "^2.0.0" diff --git a/package.json b/package.json index 214b30c0d4..887ec60676 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,16 @@ { "name": "@tryforge/forgescript", - "version": "2.5.0", + "version": "2.6.0", "description": "ForgeScript is a comprehensive package that empowers you to effortlessly interact with Discord's API. It ensures scripting remains easy to learn and consistently effective.", "types": "dist/index.d.ts", "main": "dist/index.js", "scripts": { "prepublishOnly": "tsc", - "docgen": "tsc && typedoc ./src --out ./docs && node dist/docgen", + "build": "tsc -p tsconfig.build.json && node dist/@build/license && tsc -p tsconfig.json", + "docgen": "npm run build && typedoc ./src --out ./docs && node dist/docgen", "eslint": "eslint ./src/**/* --fix", - "commit": "npm run docgen && node dist/commit", - "test": "tsc && node dist/__tests__/runner" + "commit": "npm run docgen && node dist/@build/commit", + "test": "npm run build && node dist/__tests__/runner" }, "keywords": [ "bdfd", @@ -51,7 +52,7 @@ }, "dependencies": { "chalk": "^4.1.2", - "discord.js": "^14.22.1", + "discord.js": "^14.25.1", "ms-utility": "^3.3.0", "tiny-typed-emitter": "^2.1.0", "undici": "^5.23.0" diff --git a/src/commit.ts b/src/@build/commit.ts similarity index 78% rename from src/commit.ts rename to src/@build/commit.ts index 901969f684..8e8cd42844 100644 --- a/src/commit.ts +++ b/src/@build/commit.ts @@ -1,13 +1,29 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { stdin, stdout } from "process" +import { createInterface } from "readline" import { execSync } from "child_process" import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs" -import prompt from "./functions/prompt" import { join } from "path" import { platform } from "os" +async function prompt(q: string) { + const itf = createInterface(stdin, stdout) + return new Promise(r => { + itf.question(q, input => { + itf.close() + r(input) + }) + }) +} + const path = "./metadata" if (!existsSync(path)) mkdirSync(path) -const version = require("../package.json").version +const version = require("../../package.json").version async function main() { let skip = false diff --git a/src/@build/license.ts b/src/@build/license.ts new file mode 100644 index 0000000000..8372e21843 --- /dev/null +++ b/src/@build/license.ts @@ -0,0 +1,58 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { existsSync, readFileSync, readdirSync, statSync, writeFileSync } from "fs" +import { join, resolve } from "path" + +const LICENSE = `/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/` + +const dir = resolve("src") + +function log(msg: string) { + const time = new Date().toLocaleTimeString() + console.log(`[${time}] ${msg}`) +} + +if (!existsSync(dir)) { + console.error("src folder not found") + process.exit(1) +} + +const isTs = (file: string) => file.endsWith(".ts") + +function addHeaderIfMissing(filePath: string) { + try { + const content = readFileSync(filePath, "utf8") + const c = content.split("\n") + const l = LICENSE.split("\n") + let i = 0 + for(const line of c) { + if(line.startsWith(l[i])) i++ + else break + } + if(i === l.length) return false + writeFileSync(filePath, `${LICENSE}\n\n${content}`) + log(`Added license header → ${filePath}`) + return true + } catch { + return false + } +} + +function scanDir(dir: string) { + for (const entry of readdirSync(dir)) { + const full = join(dir, entry) + const st = statSync(full) + if (st.isDirectory()) scanDir(full) + else if (st.isFile() && isTs(full)) addHeaderIfMissing(full) + } +} + +log("Scanning existing files for missing headers…") +scanDir(dir) +log("Completed the scan.") \ No newline at end of file diff --git a/src/__tests__/app/ok.ts b/src/__tests__/app/ok.ts index 2470630f51..2c183fad1b 100644 --- a/src/__tests__/app/ok.ts +++ b/src/__tests__/app/ok.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationCommandOptionType, ApplicationCommandType } from "discord.js" import { ApplicationCommand } from "../../structures" import { RegistrationType } from "../../managers" diff --git a/src/__tests__/app/ping.ts b/src/__tests__/app/ping.ts index bbac513b39..5985b35a15 100644 --- a/src/__tests__/app/ping.ts +++ b/src/__tests__/app/ping.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationCommandOptionType, ApplicationCommandType } from "discord.js" import { ApplicationCommand } from "../../structures/base/ApplicationCommand" diff --git a/src/__tests__/app/test/bye.ts b/src/__tests__/app/test/bye.ts index 8b3028d4ad..ea7d40485f 100644 --- a/src/__tests__/app/test/bye.ts +++ b/src/__tests__/app/test/bye.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationCommandOptionType } from "discord.js" import { ApplicationCommand } from "../../../structures" diff --git a/src/__tests__/async.ts b/src/__tests__/async.ts index 4a2060bc36..14516c1a20 100644 --- a/src/__tests__/async.ts +++ b/src/__tests__/async.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + async function asyncTask() { return 0 } diff --git a/src/__tests__/bar.ts b/src/__tests__/bar.ts index 788e742471..ad65b504f2 100644 --- a/src/__tests__/bar.ts +++ b/src/__tests__/bar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { generateAdvancedBar, generateBar } from "../functions/generateBar" console.log( diff --git a/src/__tests__/bulk.ts b/src/__tests__/bulk.ts index dc881854d3..cb7af01247 100644 --- a/src/__tests__/bulk.ts +++ b/src/__tests__/bulk.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { setTimeout } from "timers/promises" import { Logger } from "../structures" diff --git a/src/__tests__/client.ts b/src/__tests__/client.ts index 02db70c573..47c274fad4 100644 --- a/src/__tests__/client.ts +++ b/src/__tests__/client.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ForgeClient } from "../core" import { config } from "dotenv" import { ActivityType, ApplicationCommandType, Events } from "discord.js" diff --git a/src/__tests__/custom/uwu.ts b/src/__tests__/custom/uwu.ts index 76ceb438b6..15c145877b 100644 --- a/src/__tests__/custom/uwu.ts +++ b/src/__tests__/custom/uwu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/__tests__/diagnostics.ts b/src/__tests__/diagnostics.ts index 32df01cad8..197ae9feb4 100644 --- a/src/__tests__/diagnostics.ts +++ b/src/__tests__/diagnostics.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { subscribe, channel } from "node:diagnostics_channel" const ch = channel("messaging") diff --git a/src/__tests__/docs.ts b/src/__tests__/docs.ts index f2d9a1543b..949d9bc474 100644 --- a/src/__tests__/docs.ts +++ b/src/__tests__/docs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import express from "express" const app = express() app.use(express.static("./docs")) diff --git a/src/__tests__/error.ts b/src/__tests__/error.ts index 41d2630c4b..426caf2f0e 100644 --- a/src/__tests__/error.ts +++ b/src/__tests__/error.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ErrorType, ForgeError } from "../structures/forge/ForgeError" console.log(new ForgeError(null, ErrorType.InvalidArgType, "cope", "id", "User")) diff --git a/src/__tests__/ext.ts b/src/__tests__/ext.ts index 17768d5232..852b137ae3 100644 --- a/src/__tests__/ext.ts +++ b/src/__tests__/ext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { join } from "node:path" import { ForgeClient } from "../core/ForgeClient" import { BaseCommandManager } from "../managers" diff --git a/src/__tests__/fs.ts b/src/__tests__/fs.ts index 6f7b43159c..834be948c2 100644 --- a/src/__tests__/fs.ts +++ b/src/__tests__/fs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { FileReader } from "../core/FileReader" console.log( diff --git a/src/__tests__/read.ts b/src/__tests__/read.ts index 4048a2f25a..78cc5014d7 100644 --- a/src/__tests__/read.ts +++ b/src/__tests__/read.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inspect } from "util" import { FunctionManager } from "../managers/FunctionManager" import { Interpreter } from "../core/Interpreter" diff --git a/src/__tests__/regex.ts b/src/__tests__/regex.ts index f89db0183a..956237796f 100644 --- a/src/__tests__/regex.ts +++ b/src/__tests__/regex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inspect } from "node:util" import { Compiler } from "../core" import { FunctionManager } from "../managers" diff --git a/src/__tests__/rgb.ts b/src/__tests__/rgb.ts index b9c65d6afe..41f701c25d 100644 --- a/src/__tests__/rgb.ts +++ b/src/__tests__/rgb.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import clc from "cli-color" console.log(clc.red("ok")) \ No newline at end of file diff --git a/src/__tests__/runner.ts b/src/__tests__/runner.ts index 905ea251f9..aba70b1d28 100644 --- a/src/__tests__/runner.ts +++ b/src/__tests__/runner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { argv } from "process" import(`./${argv.slice(2).join(" ")}`) diff --git a/src/__tests__/validate.ts b/src/__tests__/validate.ts index 0b76dfded6..0080dd1517 100644 --- a/src/__tests__/validate.ts +++ b/src/__tests__/validate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { FunctionManager } from "../managers" import { ArgType } from "../structures" import { Logger } from "../structures/@internal/Logger" diff --git a/src/constants.ts b/src/constants.ts index 5f8147b6e5..00df16b7c7 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import Parser from "ms-utility" import { DefaultTimeUnits } from "ms-utility/dist/constants" diff --git a/src/core/Compiler.ts b/src/core/Compiler.ts index 5c7fb7a7aa..adde0d18aa 100644 --- a/src/core/Compiler.ts +++ b/src/core/Compiler.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inspect } from "util" import { CompiledFunction } from "../structures/@internal/CompiledFunction" import { ErrorType, ForgeError } from "../structures/forge/ForgeError" diff --git a/src/core/FileReader.ts b/src/core/FileReader.ts index 1df940cb81..1965f26fcb 100644 --- a/src/core/FileReader.ts +++ b/src/core/FileReader.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { readFileSync } from "fs" import { BaseCommand, ErrorType, ForgeError, IBaseCommand } from "../structures" diff --git a/src/core/ForgeClient.ts b/src/core/ForgeClient.ts index e72be687e6..7f84946a2e 100644 --- a/src/core/ForgeClient.ts +++ b/src/core/ForgeClient.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { disableValidators, ClientOptions, diff --git a/src/core/Interpreter.ts b/src/core/Interpreter.ts index d37df6c799..f4b237fb6a 100644 --- a/src/core/Interpreter.ts +++ b/src/core/Interpreter.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationRule, Channel, @@ -11,6 +16,7 @@ import { Invite, Message, PartialMessage, + PartialPollAnswer, PartialSoundboardSound, PollAnswer, Presence, @@ -24,7 +30,7 @@ import { VoiceState } from "discord.js" import { IExtendedCompilationResult } from "." -import { Sendable, BaseCommand, Context, Logger, Container, Return } from "../structures" +import { Sendable, BaseCommand, Context, Logger, Container, Return, ILocalFunctionData } from "../structures" import { ForgeClient } from "./ForgeClient" export interface IStates { @@ -39,7 +45,7 @@ export interface IStates { audit: GuildAuditLogsEntry channel: Channel guild: Guild - poll: PollAnswer + poll: PollAnswer | PartialPollAnswer entitlement: Entitlement ban: GuildBan scheduledEvent: GuildScheduledEvent @@ -110,13 +116,18 @@ export interface IRunnable { /** * The already existing variables defined with $let */ - keywords?: Record + keywords?: Record /** * The already existing env variables */ environment?: Record + /** + * The already existing local functions + */ + localFunctions?: Record + /** * The args used in the message command */ diff --git a/src/core/index.ts b/src/core/index.ts index 89a5c4dafc..3a3feccc4d 100644 --- a/src/core/index.ts +++ b/src/core/index.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export * from "./Compiler" export * from "./Interpreter" export * from "./FileReader" diff --git a/src/docgen.ts b/src/docgen.ts index d825e42cfb..ac0903e3be 100644 --- a/src/docgen.ts +++ b/src/docgen.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ComponentType, GatewayIntentBits, Locale, StickerFormatType } from "discord.js" import generateMetadata from "./functions/generateMetadata" import { NativeEventName } from "./managers" diff --git a/src/experimental/threading/thread.ts b/src/experimental/threading/thread.ts index 0a7b0c3e07..a322107814 100644 --- a/src/experimental/threading/thread.ts +++ b/src/experimental/threading/thread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { parentPort } from "worker_threads" import { BaseCommand, IBaseCommand } from "../../structures" import { Compiler, IRunnable, Interpreter } from "../../core" diff --git a/src/experimental/threading/translationThread.ts b/src/experimental/threading/translationThread.ts index 7343685774..6ff801e124 100644 --- a/src/experimental/threading/translationThread.ts +++ b/src/experimental/threading/translationThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { parentPort } from "worker_threads" import noop from "../../functions/noop" diff --git a/src/functions/array.ts b/src/functions/array.ts index 47a49771ab..42bfd5276c 100644 --- a/src/functions/array.ts +++ b/src/functions/array.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType } from "../structures" export default function(value?: any) { diff --git a/src/functions/components.ts b/src/functions/components.ts index a84bb15c32..cb85fccdc9 100644 --- a/src/functions/components.ts +++ b/src/functions/components.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ButtonBuilder, @@ -38,7 +43,7 @@ const TopLevelComponentBuilders = { /** * Checks whether the specified component type is a top level component. * @param type The component type. - * @param actionRow Whether to include action rows when checking. Defaults to true. + * @param actionRow Whether to include action rows when checking. Defaults to `true`. * @returns */ export function isTopLevel(type: ComponentType, actionRow: boolean = true) { @@ -68,12 +73,22 @@ export function buildComponent(comp: any, ctx?: Context) { } /** - * Adds an action row. This is only needed inside ComponentsV2 functions and should never be used outside this context. + * Gets the last component of the current label or action row. + * @param ctx The current context. + * @returns + */ +export function getLastComponent(ctx: Context) { + return (ctx.component.label?.data.component ?? ctx.container.actionRow?.components[0]) +} + +/** + * Adds an action row to the components. This is mostly needed inside ComponentsV2 functions. * @param ctx The current context. + * @param cv2 Whether to set the IsComponentsV2 flag. Defaults to `true`. * @returns */ -export function addActionRow(ctx: Context) { - ctx.container.isComponentsV2 = true +export function addActionRow(ctx: Context, cv2: boolean = true) { + if (cv2) ctx.container.isComponentsV2 = true const row = ctx.container.actionRow if (!row) return diff --git a/src/functions/contextNoop.ts b/src/functions/contextNoop.ts index daab12e3ad..2c6da61b1f 100644 --- a/src/functions/contextNoop.ts +++ b/src/functions/contextNoop.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Context, Logger } from "../structures" export default function(this: Context, ...args: any[]) { diff --git a/src/functions/customImport.ts b/src/functions/customImport.ts index 2531078463..072c570db2 100644 --- a/src/functions/customImport.ts +++ b/src/functions/customImport.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { execSync } from "child_process" import { Logger } from "../structures" diff --git a/src/functions/defineProperties.ts b/src/functions/defineProperties.ts index 597a9fa3cb..61338cd742 100644 --- a/src/functions/defineProperties.ts +++ b/src/functions/defineProperties.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceState } from "discord.js" import { EnumLike, GetEnum } from "../structures" diff --git a/src/functions/digital.ts b/src/functions/digital.ts index 225dc69686..ab852c35ce 100644 --- a/src/functions/digital.ts +++ b/src/functions/digital.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + const DigitalFormatRegex = /^(?:(\d+):)?([0-5]?\d):([0-5]?\d)$/ export function parseDigital(ms: number): string { diff --git a/src/functions/enum.ts b/src/functions/enum.ts index 1c5083760f..e835fba2db 100644 --- a/src/functions/enum.ts +++ b/src/functions/enum.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EnumLike } from "../structures" export function enumToArray(x: EnumLike) { diff --git a/src/functions/fetchAllMessages.ts b/src/functions/fetchAllMessages.ts index 4f000800bf..2f42d3b035 100644 --- a/src/functions/fetchAllMessages.ts +++ b/src/functions/fetchAllMessages.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Collection, Message, TextBasedChannel } from "discord.js" export default async function (ch: TextBasedChannel) { diff --git a/src/functions/generateBar.ts b/src/functions/generateBar.ts index d8276d9878..d885cac034 100644 --- a/src/functions/generateBar.ts +++ b/src/functions/generateBar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export function generateBar( current: number, max: number, diff --git a/src/functions/generateMetadata.ts b/src/functions/generateMetadata.ts index cd9d8bc333..4f67c39390 100644 --- a/src/functions/generateMetadata.ts +++ b/src/functions/generateMetadata.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs" import { EventManager, FunctionManager } from "../managers" import { cwd, exit } from "process" diff --git a/src/functions/getVersionNumber.ts b/src/functions/getVersionNumber.ts index 852c4889e0..b497f66aa7 100644 --- a/src/functions/getVersionNumber.ts +++ b/src/functions/getVersionNumber.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export default function(v: string) { return Number(v.replace(/\./g, "")) } \ No newline at end of file diff --git a/src/functions/hex.ts b/src/functions/hex.ts index 65fb7ad007..d40463bff5 100644 --- a/src/functions/hex.ts +++ b/src/functions/hex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Colors } from "discord.js" export function hex2int(hex: string) { diff --git a/src/functions/isTrue.ts b/src/functions/isTrue.ts index 2763af0c46..29893464d2 100644 --- a/src/functions/isTrue.ts +++ b/src/functions/isTrue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Return } from "../structures" export default function(t: Return) { diff --git a/src/functions/noop.ts b/src/functions/noop.ts index 32fbd90ff2..a7dac45d1d 100644 --- a/src/functions/noop.ts +++ b/src/functions/noop.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { DiscordAPIError } from "discord.js" import { inspect } from "node:util" import { Logger } from "../structures/@internal/Logger" diff --git a/src/functions/ordinal.ts b/src/functions/ordinal.ts index c63ca95d73..285e64d054 100644 --- a/src/functions/ordinal.ts +++ b/src/functions/ordinal.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export function ordinal(i: number) { const j = i % 10, k = i % 100 diff --git a/src/functions/overwritePermissionsArrayToObject.ts b/src/functions/overwritePermissionsArrayToObject.ts index 4e2738b596..5580499517 100644 --- a/src/functions/overwritePermissionsArrayToObject.ts +++ b/src/functions/overwritePermissionsArrayToObject.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionsString } from "discord.js" import { OverwritePermission } from "../structures" diff --git a/src/functions/parseJSON.ts b/src/functions/parseJSON.ts index e849be2411..7b75784eb1 100644 --- a/src/functions/parseJSON.ts +++ b/src/functions/parseJSON.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export const JSONStartRegex = /^[[{]/ export const JSONEndRegex = /^[\]}]/ export const JSONNumberRegex = /^\d+$/ diff --git a/src/functions/parseSingleEmoji.ts b/src/functions/parseSingleEmoji.ts index 042a2f91e8..8aae952a98 100644 --- a/src/functions/parseSingleEmoji.ts +++ b/src/functions/parseSingleEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { parseEmoji } from "discord.js" import { CompiledFunction, Context } from "../structures" diff --git a/src/functions/prompt.ts b/src/functions/prompt.ts index ab35a888c2..2530de003f 100644 --- a/src/functions/prompt.ts +++ b/src/functions/prompt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { stdin, stdout } from "process" import { createInterface } from "readline" diff --git a/src/functions/recursiveReaddirSync.ts b/src/functions/recursiveReaddirSync.ts index dafe758ccc..ae87888178 100644 --- a/src/functions/recursiveReaddirSync.ts +++ b/src/functions/recursiveReaddirSync.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Dirent, lstatSync, readdirSync } from "fs" import { join } from "path" diff --git a/src/functions/splitNumber.ts b/src/functions/splitNumber.ts index 39d45518b4..71748e76b6 100644 --- a/src/functions/splitNumber.ts +++ b/src/functions/splitNumber.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export default function (n: number, max: number): Array { const splitTimes = n % max === 0 ? Math.floor(n / max) : Math.floor(n / max) + 1 const arr = new Array(splitTimes) diff --git a/src/functions/thread.ts b/src/functions/thread.ts index 24a9889285..6620d32245 100644 --- a/src/functions/thread.ts +++ b/src/functions/thread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { once } from "events" import { join } from "path" import { Worker } from "worker_threads" diff --git a/src/functions/translate.ts b/src/functions/translate.ts index cca4c8e333..7c988509db 100644 --- a/src/functions/translate.ts +++ b/src/functions/translate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Locale, SnowflakeUtil } from "discord.js" import { ArgType, IArg, IEvent, INativeFunction, Logger } from "../structures" import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs" diff --git a/src/handlers/events/autoModerationActionExecution.ts b/src/handlers/events/autoModerationActionExecution.ts index 5fe6e7d819..21a94e2e6f 100644 --- a/src/handlers/events/autoModerationActionExecution.ts +++ b/src/handlers/events/autoModerationActionExecution.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/autoModerationRuleCreate.ts b/src/handlers/events/autoModerationRuleCreate.ts index d1182cd36d..107cabf55b 100644 --- a/src/handlers/events/autoModerationRuleCreate.ts +++ b/src/handlers/events/autoModerationRuleCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/autoModerationRuleDelete.ts b/src/handlers/events/autoModerationRuleDelete.ts index fccb8d15e3..73153d0d22 100644 --- a/src/handlers/events/autoModerationRuleDelete.ts +++ b/src/handlers/events/autoModerationRuleDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/autoModerationRuleUpdate.ts b/src/handlers/events/autoModerationRuleUpdate.ts index 03bcbaf111..99b03a64c5 100644 --- a/src/handlers/events/autoModerationRuleUpdate.ts +++ b/src/handlers/events/autoModerationRuleUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/channelCreate.ts b/src/handlers/events/channelCreate.ts index 45b1e28463..c90f094e48 100644 --- a/src/handlers/events/channelCreate.ts +++ b/src/handlers/events/channelCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/channelDelete.ts b/src/handlers/events/channelDelete.ts index dcfa29f160..bfaddc0fde 100644 --- a/src/handlers/events/channelDelete.ts +++ b/src/handlers/events/channelDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/channelPinsUpdate.ts b/src/handlers/events/channelPinsUpdate.ts index bcf4d6f8ca..9b933d3801 100644 --- a/src/handlers/events/channelPinsUpdate.ts +++ b/src/handlers/events/channelPinsUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/channelUpdate.ts b/src/handlers/events/channelUpdate.ts index 909103f6d0..0b0b0b2f9e 100644 --- a/src/handlers/events/channelUpdate.ts +++ b/src/handlers/events/channelUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/clientReady.ts b/src/handlers/events/clientReady.ts index 9caf0adac5..7d0c622e14 100644 --- a/src/handlers/events/clientReady.ts +++ b/src/handlers/events/clientReady.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { Logger } from "../../structures" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/debug.ts b/src/handlers/events/debug.ts index c3512014ba..d1e3e35ef3 100644 --- a/src/handlers/events/debug.ts +++ b/src/handlers/events/debug.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/emojiCreate.ts b/src/handlers/events/emojiCreate.ts index a562817254..9a6c1e15b3 100644 --- a/src/handlers/events/emojiCreate.ts +++ b/src/handlers/events/emojiCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/emojiDelete.ts b/src/handlers/events/emojiDelete.ts index 340b761a91..19d683e106 100644 --- a/src/handlers/events/emojiDelete.ts +++ b/src/handlers/events/emojiDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/emojiUpdate.ts b/src/handlers/events/emojiUpdate.ts index 749ec64f0a..3395801e2e 100644 --- a/src/handlers/events/emojiUpdate.ts +++ b/src/handlers/events/emojiUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/entitlementCreate.ts b/src/handlers/events/entitlementCreate.ts index 40a4f0c911..6173a0eb6a 100644 --- a/src/handlers/events/entitlementCreate.ts +++ b/src/handlers/events/entitlementCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/entitlementDelete.ts b/src/handlers/events/entitlementDelete.ts index 7f2fe512e1..d028868215 100644 --- a/src/handlers/events/entitlementDelete.ts +++ b/src/handlers/events/entitlementDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/entitlementUpdate.ts b/src/handlers/events/entitlementUpdate.ts index 5363d4b104..d01897f847 100644 --- a/src/handlers/events/entitlementUpdate.ts +++ b/src/handlers/events/entitlementUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/error.ts b/src/handlers/events/error.ts index 37b0bd5b7e..7e6b7e646f 100644 --- a/src/handlers/events/error.ts +++ b/src/handlers/events/error.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildAuditLogEntryCreate.ts b/src/handlers/events/guildAuditLogEntryCreate.ts index 3bcb259a1a..e611548757 100644 --- a/src/handlers/events/guildAuditLogEntryCreate.ts +++ b/src/handlers/events/guildAuditLogEntryCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildAvailable.ts b/src/handlers/events/guildAvailable.ts index 70036c3fa1..07b692cdf9 100644 --- a/src/handlers/events/guildAvailable.ts +++ b/src/handlers/events/guildAvailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildBanAdd.ts b/src/handlers/events/guildBanAdd.ts index c18bb87742..07d903f44f 100644 --- a/src/handlers/events/guildBanAdd.ts +++ b/src/handlers/events/guildBanAdd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildBanRemove.ts b/src/handlers/events/guildBanRemove.ts index 215d346cf9..7f78cbe1ae 100644 --- a/src/handlers/events/guildBanRemove.ts +++ b/src/handlers/events/guildBanRemove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildCreate.ts b/src/handlers/events/guildCreate.ts index 9075151749..21a0191135 100644 --- a/src/handlers/events/guildCreate.ts +++ b/src/handlers/events/guildCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/guildDelete.ts b/src/handlers/events/guildDelete.ts index 3ae79b6844..fc12f164db 100644 --- a/src/handlers/events/guildDelete.ts +++ b/src/handlers/events/guildDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/guildIntegrationsUpdate.ts b/src/handlers/events/guildIntegrationsUpdate.ts index 0cad54bd41..7ba96d11e6 100644 --- a/src/handlers/events/guildIntegrationsUpdate.ts +++ b/src/handlers/events/guildIntegrationsUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildMemberAdd.ts b/src/handlers/events/guildMemberAdd.ts index f278b66782..65942818f8 100644 --- a/src/handlers/events/guildMemberAdd.ts +++ b/src/handlers/events/guildMemberAdd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/guildMemberAvailable.ts b/src/handlers/events/guildMemberAvailable.ts index 68ee425034..637eb0c601 100644 --- a/src/handlers/events/guildMemberAvailable.ts +++ b/src/handlers/events/guildMemberAvailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildMember } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildMemberRemove.ts b/src/handlers/events/guildMemberRemove.ts index d6411a3e02..e030a644a6 100644 --- a/src/handlers/events/guildMemberRemove.ts +++ b/src/handlers/events/guildMemberRemove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildMember } from "discord.js" import { Interpreter } from "../../core" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/guildMemberUpdate.ts b/src/handlers/events/guildMemberUpdate.ts index 83f4dcd1ed..a297c39958 100644 --- a/src/handlers/events/guildMemberUpdate.ts +++ b/src/handlers/events/guildMemberUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildMember } from "discord.js" import { Interpreter } from "../../core" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/guildScheduledEventCreate.ts b/src/handlers/events/guildScheduledEventCreate.ts index 14819fc010..75584e621a 100644 --- a/src/handlers/events/guildScheduledEventCreate.ts +++ b/src/handlers/events/guildScheduledEventCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildScheduledEventDelete.ts b/src/handlers/events/guildScheduledEventDelete.ts index c1b627c79d..28b515b045 100644 --- a/src/handlers/events/guildScheduledEventDelete.ts +++ b/src/handlers/events/guildScheduledEventDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildScheduledEvent } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildScheduledEventUpdate.ts b/src/handlers/events/guildScheduledEventUpdate.ts index af09a0c42b..03af182bb8 100644 --- a/src/handlers/events/guildScheduledEventUpdate.ts +++ b/src/handlers/events/guildScheduledEventUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildScheduledEvent } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildScheduledEventUserAdd.ts b/src/handlers/events/guildScheduledEventUserAdd.ts index 132b20fada..81a6569096 100644 --- a/src/handlers/events/guildScheduledEventUserAdd.ts +++ b/src/handlers/events/guildScheduledEventUserAdd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildScheduledEvent } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildScheduledEventUserRemove.ts b/src/handlers/events/guildScheduledEventUserRemove.ts index b75c1fc787..398929987e 100644 --- a/src/handlers/events/guildScheduledEventUserRemove.ts +++ b/src/handlers/events/guildScheduledEventUserRemove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildScheduledEvent } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildSoundboardSoundCreate.ts b/src/handlers/events/guildSoundboardSoundCreate.ts index a8b3686cb7..225addcf71 100644 --- a/src/handlers/events/guildSoundboardSoundCreate.ts +++ b/src/handlers/events/guildSoundboardSoundCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildSoundboardSoundDelete.ts b/src/handlers/events/guildSoundboardSoundDelete.ts index 9c17e0dce8..237082f3ef 100644 --- a/src/handlers/events/guildSoundboardSoundDelete.ts +++ b/src/handlers/events/guildSoundboardSoundDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildSoundboardSoundUpdate.ts b/src/handlers/events/guildSoundboardSoundUpdate.ts index 19652aab30..0ac0f30868 100644 --- a/src/handlers/events/guildSoundboardSoundUpdate.ts +++ b/src/handlers/events/guildSoundboardSoundUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildUnavailable.ts b/src/handlers/events/guildUnavailable.ts index b9553c2dbf..06684053a0 100644 --- a/src/handlers/events/guildUnavailable.ts +++ b/src/handlers/events/guildUnavailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/guildUpdate.ts b/src/handlers/events/guildUpdate.ts index ccf56124b2..9637caecc0 100644 --- a/src/handlers/events/guildUpdate.ts +++ b/src/handlers/events/guildUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/interactionCreate.ts b/src/handlers/events/interactionCreate.ts index 3e21278388..ea38f732ce 100644 --- a/src/handlers/events/interactionCreate.ts +++ b/src/handlers/events/interactionCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/inviteCreate.ts b/src/handlers/events/inviteCreate.ts index 33c0e672c5..2cd98238e7 100644 --- a/src/handlers/events/inviteCreate.ts +++ b/src/handlers/events/inviteCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/inviteDelete.ts b/src/handlers/events/inviteDelete.ts index 6f29eeddc8..376b96d728 100644 --- a/src/handlers/events/inviteDelete.ts +++ b/src/handlers/events/inviteDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/handlers/events/messageCreate.ts b/src/handlers/events/messageCreate.ts index ba8b14c49b..6be37744f8 100644 --- a/src/handlers/events/messageCreate.ts +++ b/src/handlers/events/messageCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core/Interpreter" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageDelete.ts b/src/handlers/events/messageDelete.ts index 9d3d8288b4..5b49929c47 100644 --- a/src/handlers/events/messageDelete.ts +++ b/src/handlers/events/messageDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageDeleteBulk.ts b/src/handlers/events/messageDeleteBulk.ts index ba346bcf61..cc04058a73 100644 --- a/src/handlers/events/messageDeleteBulk.ts +++ b/src/handlers/events/messageDeleteBulk.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Collection } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messagePollVoteAdd.ts b/src/handlers/events/messagePollVoteAdd.ts index 19c4c2289e..98878c97cc 100644 --- a/src/handlers/events/messagePollVoteAdd.ts +++ b/src/handlers/events/messagePollVoteAdd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messagePollVoteRemove.ts b/src/handlers/events/messagePollVoteRemove.ts index c5ee91b068..6d952bd9b2 100644 --- a/src/handlers/events/messagePollVoteRemove.ts +++ b/src/handlers/events/messagePollVoteRemove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageReactionAdd.ts b/src/handlers/events/messageReactionAdd.ts index ab9da50dc1..58c2046814 100644 --- a/src/handlers/events/messageReactionAdd.ts +++ b/src/handlers/events/messageReactionAdd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageReaction, User } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageReactionRemove.ts b/src/handlers/events/messageReactionRemove.ts index caf7433a11..1ac79c23a8 100644 --- a/src/handlers/events/messageReactionRemove.ts +++ b/src/handlers/events/messageReactionRemove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageReaction, User } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageReactionRemoveAll.ts b/src/handlers/events/messageReactionRemoveAll.ts index 44c97afa67..97dbf11f9c 100644 --- a/src/handlers/events/messageReactionRemoveAll.ts +++ b/src/handlers/events/messageReactionRemoveAll.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageReaction, User } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageReactionRemoveEmoji.ts b/src/handlers/events/messageReactionRemoveEmoji.ts index 86288eeca2..ce81a5bec9 100644 --- a/src/handlers/events/messageReactionRemoveEmoji.ts +++ b/src/handlers/events/messageReactionRemoveEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageReaction, User } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/messageUpdate.ts b/src/handlers/events/messageUpdate.ts index 2a56cb2bb8..aecd306752 100644 --- a/src/handlers/events/messageUpdate.ts +++ b/src/handlers/events/messageUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/presenceUpdate.ts b/src/handlers/events/presenceUpdate.ts index 4b14899e8d..aa4d8f4001 100644 --- a/src/handlers/events/presenceUpdate.ts +++ b/src/handlers/events/presenceUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/roleCreate.ts b/src/handlers/events/roleCreate.ts index 15593b94c3..86972887e7 100644 --- a/src/handlers/events/roleCreate.ts +++ b/src/handlers/events/roleCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/roleDelete.ts b/src/handlers/events/roleDelete.ts index d378163016..a6ba8c0350 100644 --- a/src/handlers/events/roleDelete.ts +++ b/src/handlers/events/roleDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/roleUpdate.ts b/src/handlers/events/roleUpdate.ts index 3d6865294a..caffb3fea8 100644 --- a/src/handlers/events/roleUpdate.ts +++ b/src/handlers/events/roleUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/shardDisconnect.ts b/src/handlers/events/shardDisconnect.ts index 0a2c1c97be..dd72e24793 100644 --- a/src/handlers/events/shardDisconnect.ts +++ b/src/handlers/events/shardDisconnect.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/shardError.ts b/src/handlers/events/shardError.ts index b3508db151..59ff7f5a17 100644 --- a/src/handlers/events/shardError.ts +++ b/src/handlers/events/shardError.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/shardReady.ts b/src/handlers/events/shardReady.ts index 7d6802c825..3aa90c7493 100644 --- a/src/handlers/events/shardReady.ts +++ b/src/handlers/events/shardReady.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/shardReconnecting.ts b/src/handlers/events/shardReconnecting.ts index 3e01c06ed8..485a93270d 100644 --- a/src/handlers/events/shardReconnecting.ts +++ b/src/handlers/events/shardReconnecting.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/shardResume.ts b/src/handlers/events/shardResume.ts index f65e117094..8112ab78b8 100644 --- a/src/handlers/events/shardResume.ts +++ b/src/handlers/events/shardResume.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stageInstanceCreate.ts b/src/handlers/events/stageInstanceCreate.ts index 6a314893e6..70fbc49768 100644 --- a/src/handlers/events/stageInstanceCreate.ts +++ b/src/handlers/events/stageInstanceCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stageInstanceDelete.ts b/src/handlers/events/stageInstanceDelete.ts index 56b6c9dc12..6961964973 100644 --- a/src/handlers/events/stageInstanceDelete.ts +++ b/src/handlers/events/stageInstanceDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stageInstanceUpdate.ts b/src/handlers/events/stageInstanceUpdate.ts index 55f53ff091..ff8db1e4b2 100644 --- a/src/handlers/events/stageInstanceUpdate.ts +++ b/src/handlers/events/stageInstanceUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stickerCreate.ts b/src/handlers/events/stickerCreate.ts index e2df37a99f..1e4c8cd6ae 100644 --- a/src/handlers/events/stickerCreate.ts +++ b/src/handlers/events/stickerCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stickerDelete.ts b/src/handlers/events/stickerDelete.ts index 298412428c..61e9f673a8 100644 --- a/src/handlers/events/stickerDelete.ts +++ b/src/handlers/events/stickerDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/stickerUpdate.ts b/src/handlers/events/stickerUpdate.ts index baa06c1a56..0c8de59d99 100644 --- a/src/handlers/events/stickerUpdate.ts +++ b/src/handlers/events/stickerUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/subscriptionCreate.ts b/src/handlers/events/subscriptionCreate.ts index 58d1d04e02..6ac1e396b2 100644 --- a/src/handlers/events/subscriptionCreate.ts +++ b/src/handlers/events/subscriptionCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/subscriptionDelete.ts b/src/handlers/events/subscriptionDelete.ts index babf9bdae0..2cfb9d7472 100644 --- a/src/handlers/events/subscriptionDelete.ts +++ b/src/handlers/events/subscriptionDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/subscriptionUpdate.ts b/src/handlers/events/subscriptionUpdate.ts index 98df83fb52..5a2dee4fd7 100644 --- a/src/handlers/events/subscriptionUpdate.ts +++ b/src/handlers/events/subscriptionUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/threadCreate.ts b/src/handlers/events/threadCreate.ts index 7b345642bd..1f31bec138 100644 --- a/src/handlers/events/threadCreate.ts +++ b/src/handlers/events/threadCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/threadDelete.ts b/src/handlers/events/threadDelete.ts index ef6c6c8569..b0db430d6c 100644 --- a/src/handlers/events/threadDelete.ts +++ b/src/handlers/events/threadDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/threadMemberUpdate.ts b/src/handlers/events/threadMemberUpdate.ts index 5d3e0fd6ce..ca4759d8bd 100644 --- a/src/handlers/events/threadMemberUpdate.ts +++ b/src/handlers/events/threadMemberUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/threadUpdate.ts b/src/handlers/events/threadUpdate.ts index 73019bd6f3..b3c0e68dff 100644 --- a/src/handlers/events/threadUpdate.ts +++ b/src/handlers/events/threadUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/typingStart.ts b/src/handlers/events/typingStart.ts index f262839d7e..c28e0b8e87 100644 --- a/src/handlers/events/typingStart.ts +++ b/src/handlers/events/typingStart.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/userUpdate.ts b/src/handlers/events/userUpdate.ts index 3092e081fe..3f137956c4 100644 --- a/src/handlers/events/userUpdate.ts +++ b/src/handlers/events/userUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { User } from "discord.js" import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/voiceChannelEffectSend.ts b/src/handlers/events/voiceChannelEffectSend.ts index 95acf92a4f..c5f03107b0 100644 --- a/src/handlers/events/voiceChannelEffectSend.ts +++ b/src/handlers/events/voiceChannelEffectSend.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/voiceStateUpdate.ts b/src/handlers/events/voiceStateUpdate.ts index fc7dcb094e..abe8bd5977 100644 --- a/src/handlers/events/voiceStateUpdate.ts +++ b/src/handlers/events/voiceStateUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/handlers/events/webhooksUpdate.ts b/src/handlers/events/webhooksUpdate.ts index 89f22ebcae..278f388345 100644 --- a/src/handlers/events/webhooksUpdate.ts +++ b/src/handlers/events/webhooksUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter } from "../../core" import { DiscordEventHandler } from "../../structures/extended/DiscordEventHandler" diff --git a/src/index.ts b/src/index.ts index c81d32db8b..f8dbbe2e26 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import generateMetadata from "./functions/generateMetadata" export * from "./managers" diff --git a/src/managers/ApplicationCommandManager.ts b/src/managers/ApplicationCommandManager.ts index df54fecbf9..e541bbbb6e 100644 --- a/src/managers/ApplicationCommandManager.ts +++ b/src/managers/ApplicationCommandManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + /* eslint-disable indent */ import { APIApplicationCommandOption, diff --git a/src/managers/BaseCommandManager.ts b/src/managers/BaseCommandManager.ts index 4cd96a2ca5..b574c3ab75 100644 --- a/src/managers/BaseCommandManager.ts +++ b/src/managers/BaseCommandManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Collection } from "discord.js" import { cwd } from "process" import { FileReader, ForgeClient } from "../core" diff --git a/src/managers/CooldownManager.ts b/src/managers/CooldownManager.ts index b8870ae6c0..2dbe9b37a7 100644 --- a/src/managers/CooldownManager.ts +++ b/src/managers/CooldownManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Collection } from "discord.js" import { ForgeClient } from "../core" diff --git a/src/managers/EventManager.ts b/src/managers/EventManager.ts index 859b920855..1963303027 100644 --- a/src/managers/EventManager.ts +++ b/src/managers/EventManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents, Collection } from "discord.js" import { type ForgeClient } from "../core/ForgeClient" import { CommandType } from "../structures/base/BaseCommand" diff --git a/src/managers/ForgeFunctionManager.ts b/src/managers/ForgeFunctionManager.ts index 7bae9106de..287ebb912d 100644 --- a/src/managers/ForgeFunctionManager.ts +++ b/src/managers/ForgeFunctionManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ForgeClient } from "../core/ForgeClient" import { ForgeFunction, IForgeFunction } from "../structures/forge/ForgeFunction" import recursiveReaddirSync from "../functions/recursiveReaddirSync" diff --git a/src/managers/FunctionManager.ts b/src/managers/FunctionManager.ts index 2fe2723d9d..3fd89d00c8 100644 --- a/src/managers/FunctionManager.ts +++ b/src/managers/FunctionManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IArg, INativeFunction, NativeFunction } from "../structures/@internal/NativeFunction" import { IRawFunction, Compiler } from "../core" import recursiveReaddirSync from "../functions/recursiveReaddirSync" diff --git a/src/managers/NativeCommandManager.ts b/src/managers/NativeCommandManager.ts index 72a881833f..825556f22a 100644 --- a/src/managers/NativeCommandManager.ts +++ b/src/managers/NativeCommandManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { CommandType } from "../structures" import { BaseCommandManager } from "./BaseCommandManager" import { NativeEventName } from "./EventManager" diff --git a/src/managers/ThreadManager.ts b/src/managers/ThreadManager.ts index 3c73aff7ee..6997908de6 100644 --- a/src/managers/ThreadManager.ts +++ b/src/managers/ThreadManager.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Worker } from "worker_threads" import { ForgeClient, IRunnable } from "../core" import { once } from "events" diff --git a/src/managers/index.ts b/src/managers/index.ts index 7600eec246..cd2d601615 100644 --- a/src/managers/index.ts +++ b/src/managers/index.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export * from "./BaseCommandManager" export * from "./FunctionManager" export * from "./ForgeFunctionManager" diff --git a/src/native/array/advancedTextSplit.ts b/src/native/array/advancedTextSplit.ts index f8ae8d6e15..7cdd0c3574 100644 --- a/src/native/array/advancedTextSplit.ts +++ b/src/native/array/advancedTextSplit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayAdvancedSort.ts b/src/native/array/arrayAdvancedSort.ts index affd00fd75..d3d112f090 100644 --- a/src/native/array/arrayAdvancedSort.ts +++ b/src/native/array/arrayAdvancedSort.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" async function asyncSort(array: T[], asyncComparator: (a: T, b: T) => Promise): Promise { diff --git a/src/native/array/arrayAt.ts b/src/native/array/arrayAt.ts index 3bcbf8b429..dad57d3479 100644 --- a/src/native/array/arrayAt.ts +++ b/src/native/array/arrayAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, Context, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayClear.ts b/src/native/array/arrayClear.ts index cb5afd1360..04ad82860b 100644 --- a/src/native/array/arrayClear.ts +++ b/src/native/array/arrayClear.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayConcat.ts b/src/native/array/arrayConcat.ts index cbf07feee4..d142527784 100644 --- a/src/native/array/arrayConcat.ts +++ b/src/native/array/arrayConcat.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayCreate.ts b/src/native/array/arrayCreate.ts index 21dd120263..3a05a9bec5 100644 --- a/src/native/array/arrayCreate.ts +++ b/src/native/array/arrayCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayEvery.ts b/src/native/array/arrayEvery.ts index cf2d9a305d..30cdbff661 100644 --- a/src/native/array/arrayEvery.ts +++ b/src/native/array/arrayEvery.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import isTrue from "../../functions/isTrue" import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arrayFill.ts b/src/native/array/arrayFill.ts index 8ab251e78c..0e708f6181 100644 --- a/src/native/array/arrayFill.ts +++ b/src/native/array/arrayFill.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayFindIndex.ts b/src/native/array/arrayFindIndex.ts index 7178653202..8aeb4d9784 100644 --- a/src/native/array/arrayFindIndex.ts +++ b/src/native/array/arrayFindIndex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import isTrue from "../../functions/isTrue" import { ArgType, IExtendedCompiledFunctionConditionField, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arrayFindLastIndex.ts b/src/native/array/arrayFindLastIndex.ts index 66509449b2..05c5fc2ef7 100644 --- a/src/native/array/arrayFindLastIndex.ts +++ b/src/native/array/arrayFindLastIndex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import isTrue from "../../functions/isTrue" import { ArgType, IExtendedCompiledFunctionConditionField, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arrayForEach.ts b/src/native/array/arrayForEach.ts index 6891039687..7009b7f695 100644 --- a/src/native/array/arrayForEach.ts +++ b/src/native/array/arrayForEach.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayIncludes.ts b/src/native/array/arrayIncludes.ts index 0ad5a85cae..99c8a1eac9 100644 --- a/src/native/array/arrayIncludes.ts +++ b/src/native/array/arrayIncludes.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayIndexOf.ts b/src/native/array/arrayIndexOf.ts index 7226eeaf44..c1b42254b4 100644 --- a/src/native/array/arrayIndexOf.ts +++ b/src/native/array/arrayIndexOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayJoin.ts b/src/native/array/arrayJoin.ts index fbb4d9d19e..89b114df96 100644 --- a/src/native/array/arrayJoin.ts +++ b/src/native/array/arrayJoin.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arrayLastIndexOf.ts b/src/native/array/arrayLastIndexOf.ts index 94d8ba5df1..0bc0b6cf9f 100644 --- a/src/native/array/arrayLastIndexOf.ts +++ b/src/native/array/arrayLastIndexOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayLength.ts b/src/native/array/arrayLength.ts index 1b40242abc..d0dbe1e2cc 100644 --- a/src/native/array/arrayLength.ts +++ b/src/native/array/arrayLength.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayLoad.ts b/src/native/array/arrayLoad.ts index deae7271b0..879d7c79b9 100644 --- a/src/native/array/arrayLoad.ts +++ b/src/native/array/arrayLoad.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayMap.ts b/src/native/array/arrayMap.ts index 1c74b2a84e..3ac4a775ba 100644 --- a/src/native/array/arrayMap.ts +++ b/src/native/array/arrayMap.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import parseJSON from "../../functions/parseJSON" import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arrayPop.ts b/src/native/array/arrayPop.ts index eae1bcabcb..785966b751 100644 --- a/src/native/array/arrayPop.ts +++ b/src/native/array/arrayPop.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayPush.ts b/src/native/array/arrayPush.ts index d68898304e..3454d640b5 100644 --- a/src/native/array/arrayPush.ts +++ b/src/native/array/arrayPush.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayPushJSON.ts b/src/native/array/arrayPushJSON.ts index ca713e6a29..b6d433086e 100644 --- a/src/native/array/arrayPushJSON.ts +++ b/src/native/array/arrayPushJSON.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayRandomIndex.ts b/src/native/array/arrayRandomIndex.ts index 0797a4530f..3907cabbd1 100644 --- a/src/native/array/arrayRandomIndex.ts +++ b/src/native/array/arrayRandomIndex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayRandomValue.ts b/src/native/array/arrayRandomValue.ts index fada92d1ab..91bca00385 100644 --- a/src/native/array/arrayRandomValue.ts +++ b/src/native/array/arrayRandomValue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayReduce.ts b/src/native/array/arrayReduce.ts index c5712531ed..0c9d2bcd12 100644 --- a/src/native/array/arrayReduce.ts +++ b/src/native/array/arrayReduce.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayReverse.ts b/src/native/array/arrayReverse.ts index 480b94daba..6223ade6a1 100644 --- a/src/native/array/arrayReverse.ts +++ b/src/native/array/arrayReverse.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayShift.ts b/src/native/array/arrayShift.ts index 327e5a65fb..a2dfe759d2 100644 --- a/src/native/array/arrayShift.ts +++ b/src/native/array/arrayShift.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayShuffle.ts b/src/native/array/arrayShuffle.ts index 98bd0f9479..e4bb0fe750 100644 --- a/src/native/array/arrayShuffle.ts +++ b/src/native/array/arrayShuffle.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, Context, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arraySlice.ts b/src/native/array/arraySlice.ts index b70c1a0b8a..d54aee8b24 100644 --- a/src/native/array/arraySlice.ts +++ b/src/native/array/arraySlice.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arraySome.ts b/src/native/array/arraySome.ts index 70c3d966bb..e6ddf8b57f 100644 --- a/src/native/array/arraySome.ts +++ b/src/native/array/arraySome.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import isTrue from "../../functions/isTrue" import { ArgType, IExtendedCompiledFunctionConditionField, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/array/arraySort.ts b/src/native/array/arraySort.ts index 42a6698e37..76ba11abfe 100644 --- a/src/native/array/arraySort.ts +++ b/src/native/array/arraySort.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum SortType { diff --git a/src/native/array/arraySplice.ts b/src/native/array/arraySplice.ts index 5d694fb6c7..cb87e34352 100644 --- a/src/native/array/arraySplice.ts +++ b/src/native/array/arraySplice.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayUnique.ts b/src/native/array/arrayUnique.ts index 754a6533d1..58a45c6c15 100644 --- a/src/native/array/arrayUnique.ts +++ b/src/native/array/arrayUnique.ts @@ -1,3 +1,9 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { isEqual, uniqWith } from "lodash" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -26,7 +32,7 @@ export default new NativeFunction({ execute(ctx, [variable, other]) { const arr = ctx.getEnvironmentInstance(Array, variable) if (arr !== null) { - const unique = [...new Set(arr)] + const unique = uniqWith(arr, isEqual) if (other) ctx.setEnvironmentKey(other, unique) diff --git a/src/native/array/arrayUnload.ts b/src/native/array/arrayUnload.ts index ebe03ba2c7..ecfd9d3843 100644 --- a/src/native/array/arrayUnload.ts +++ b/src/native/array/arrayUnload.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayUnshift.ts b/src/native/array/arrayUnshift.ts index 8bd9a73661..18986b1bcc 100644 --- a/src/native/array/arrayUnshift.ts +++ b/src/native/array/arrayUnshift.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/arrayUnshiftJSON.ts b/src/native/array/arrayUnshiftJSON.ts index 46112042d4..e14321593e 100644 --- a/src/native/array/arrayUnshiftJSON.ts +++ b/src/native/array/arrayUnshiftJSON.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/array/getSplitTextLength.ts b/src/native/array/getSplitTextLength.ts index 801c14a2e7..aacca83c68 100644 --- a/src/native/array/getSplitTextLength.ts +++ b/src/native/array/getSplitTextLength.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { SplitTextName } from "./textSplit" diff --git a/src/native/array/getTextSplitIndex.ts b/src/native/array/getTextSplitIndex.ts index 245b454b8f..a3fee6bffd 100644 --- a/src/native/array/getTextSplitIndex.ts +++ b/src/native/array/getTextSplitIndex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { SplitTextName } from "./textSplit" diff --git a/src/native/array/segmentTextSplit.ts b/src/native/array/segmentTextSplit.ts index 1018c692eb..eee4e2e037 100644 --- a/src/native/array/segmentTextSplit.ts +++ b/src/native/array/segmentTextSplit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export const SplitTextName = "splits" as const diff --git a/src/native/array/splitText.ts b/src/native/array/splitText.ts index d1bd8c3b2c..c08fe4d58b 100644 --- a/src/native/array/splitText.ts +++ b/src/native/array/splitText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { SplitTextName } from "./textSplit" diff --git a/src/native/array/splitTextJoin.ts b/src/native/array/splitTextJoin.ts index 566f2f15a3..c92eaab5cc 100644 --- a/src/native/array/splitTextJoin.ts +++ b/src/native/array/splitTextJoin.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" import { SplitTextName } from "./textSplit" diff --git a/src/native/array/textSplit.ts b/src/native/array/textSplit.ts index 61161d48a8..3c4af6dc9f 100644 --- a/src/native/array/textSplit.ts +++ b/src/native/array/textSplit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export const SplitTextName = "splits" as const diff --git a/src/native/audit/fetchAuditLog.ts b/src/native/audit/fetchAuditLog.ts index 2e5a465f29..5e34e9b74c 100644 --- a/src/native/audit/fetchAuditLog.ts +++ b/src/native/audit/fetchAuditLog.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AuditLogEvent } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/audit/fetchAuditLogCount.ts b/src/native/audit/fetchAuditLogCount.ts index ef7b61e866..a3046e44b4 100644 --- a/src/native/audit/fetchAuditLogCount.ts +++ b/src/native/audit/fetchAuditLogCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AuditLogEvent } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/audit/fetchUserAuditLog.ts b/src/native/audit/fetchUserAuditLog.ts index 531c8c2d00..0234db22e0 100644 --- a/src/native/audit/fetchUserAuditLog.ts +++ b/src/native/audit/fetchUserAuditLog.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AuditLogEvent } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/audit/setAuditLogReason.ts b/src/native/audit/setAuditLogReason.ts index 5e97061902..6a33a202ba 100644 --- a/src/native/audit/setAuditLogReason.ts +++ b/src/native/audit/setAuditLogReason.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodActionType.ts b/src/native/automod/automodActionType.ts index 505da056a4..6e6ace3826 100644 --- a/src/native/automod/automodActionType.ts +++ b/src/native/automod/automodActionType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationActionType } from "discord.js" import { NativeFunction, Return } from "../../structures" diff --git a/src/native/automod/automodAlertSystemMessageID.ts b/src/native/automod/automodAlertSystemMessageID.ts index 1bfffef0c9..f812f31248 100644 --- a/src/native/automod/automodAlertSystemMessageID.ts +++ b/src/native/automod/automodAlertSystemMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodChannelID.ts b/src/native/automod/automodChannelID.ts index ed0fba3d46..ead525bdb8 100644 --- a/src/native/automod/automodChannelID.ts +++ b/src/native/automod/automodChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodContent.ts b/src/native/automod/automodContent.ts index eceea4837c..9fabd02dd0 100644 --- a/src/native/automod/automodContent.ts +++ b/src/native/automod/automodContent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodCustomMessage.ts b/src/native/automod/automodCustomMessage.ts index 4b8187c59a..5b88f857c1 100644 --- a/src/native/automod/automodCustomMessage.ts +++ b/src/native/automod/automodCustomMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodDuration.ts b/src/native/automod/automodDuration.ts index a5b540ae07..26fd8bb8df 100644 --- a/src/native/automod/automodDuration.ts +++ b/src/native/automod/automodDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodMatchedContent.ts b/src/native/automod/automodMatchedContent.ts index 01ed4816de..6c1a36227a 100644 --- a/src/native/automod/automodMatchedContent.ts +++ b/src/native/automod/automodMatchedContent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodMatchedKeyword.ts b/src/native/automod/automodMatchedKeyword.ts index 2bb277cdca..49f3282fc0 100644 --- a/src/native/automod/automodMatchedKeyword.ts +++ b/src/native/automod/automodMatchedKeyword.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodRuleID.ts b/src/native/automod/automodRuleID.ts index 96ff69c6ae..fa624ef94e 100644 --- a/src/native/automod/automodRuleID.ts +++ b/src/native/automod/automodRuleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/automodRuleTriggerType.ts b/src/native/automod/automodRuleTriggerType.ts index d9770fb4c7..0271b42df5 100644 --- a/src/native/automod/automodRuleTriggerType.ts +++ b/src/native/automod/automodRuleTriggerType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationRuleTriggerType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/automod/createAutomodRule.ts b/src/native/automod/createAutomodRule.ts index 3b39d7ee61..15e69dba71 100644 --- a/src/native/automod/createAutomodRule.ts +++ b/src/native/automod/createAutomodRule.ts @@ -1,6 +1,10 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationRuleTriggerType, AutoModerationRuleEventType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" -import { isBoolean } from "lodash" export default new NativeFunction({ name: "$createAutomodRule", @@ -64,7 +68,7 @@ export default new NativeFunction({ actions: ctx.automodRule.actions || [], exemptRoles: ctx.automodRule.exemptRoles, exemptChannels: ctx.automodRule.exemptChannels, - enabled: isBoolean(enabled) ? enabled : true, + enabled: typeof(enabled) === "boolean" ? enabled : true, reason: reason || ctx.reason }).catch(ctx.noop) diff --git a/src/native/automod/deleteAutomodRule.ts b/src/native/automod/deleteAutomodRule.ts index fb28bbb0e0..639953b424 100644 --- a/src/native/automod/deleteAutomodRule.ts +++ b/src/native/automod/deleteAutomodRule.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -16,7 +21,7 @@ export default new NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to delete", + description: "The automod rule to delete", rest: false, required: true, type: ArgType.AutomodRule, diff --git a/src/native/automod/editAutomodRule.ts b/src/native/automod/editAutomodRule.ts index b59d76bc1a..fbe531ac0e 100644 --- a/src/native/automod/editAutomodRule.ts +++ b/src/native/automod/editAutomodRule.ts @@ -1,6 +1,10 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationRuleEventType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" -import { isBoolean } from "lodash" export default new NativeFunction({ name: "$editAutomodRule", @@ -18,7 +22,7 @@ export default new NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to edit", + description: "The automod rule to edit", rest: false, required: true, type: ArgType.AutomodRule, @@ -61,7 +65,7 @@ export default new NativeFunction({ actions: ctx.automodRule.actions || undefined, exemptRoles: ctx.automodRule.exemptRoles || undefined, exemptChannels: ctx.automodRule.exemptChannels || undefined, - enabled: isBoolean(enabled) ? enabled : undefined, + enabled: typeof(enabled) === "boolean" ? enabled : undefined, reason: reason || ctx.reason }).catch(ctx.noop) diff --git a/src/native/automod/getAutomodRule.ts b/src/native/automod/getAutomodRule.ts index fdd5721942..5f30ecd9a9 100644 --- a/src/native/automod/getAutomodRule.ts +++ b/src/native/automod/getAutomodRule.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { AutomodRuleProperty, AutomodRuleProperties } from "../../properties/automodRule" @@ -17,7 +22,7 @@ export default new NativeFunction({ }, { name: "rule ID", - description: "The id of the automod rule to get", + description: "The automod rule to get", rest: false, required: true, type: ArgType.AutomodRule, @@ -41,7 +46,7 @@ export default new NativeFunction({ ArgType.Json, ArgType.Unknown ], - async execute(ctx, [, rule, prop, sep ]) { + execute(ctx, [, rule, prop, sep ]) { if (prop) return this.success(AutomodRuleProperties[prop](rule, sep)) return this.successJSON(rule) }, diff --git a/src/native/automod/getAutomodRuleActions.ts b/src/native/automod/getAutomodRuleActions.ts new file mode 100644 index 0000000000..0eddfe184b --- /dev/null +++ b/src/native/automod/getAutomodRuleActions.ts @@ -0,0 +1,54 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" +import { AutomodRuleActionProperty, AutomodRuleActionProperties } from "../../properties/automodRule" +import array from "../../functions/array" + +export default new NativeFunction({ + name: "$getAutomodRuleActions", + version: "2.6.0", + description: "Returns the actions of an automod rule from a guild", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to get automod rule from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "rule ID", + description: "The automod rule to get its actions", + rest: false, + required: true, + type: ArgType.AutomodRule, + pointer: 0 + }, + { + name: "property", + description: "The property of each action to return", + rest: false, + type: ArgType.Enum, + enum: AutomodRuleActionProperty + }, + { + name: "separator", + description: "The separator to use for every property", + rest: false, + type: ArgType.String, + }, + ], + output: [ + ArgType.Json, + array() + ], + execute(ctx, [, rule, prop, sep ]) { + if (prop) return this.success(rule.actions.map((x) => AutomodRuleActionProperties[prop](x)).join(sep ?? ", ")) + return this.successJSON(rule.actions) + }, +}) \ No newline at end of file diff --git a/src/native/automod/setAutomodAction.ts b/src/native/automod/setAutomodAction.ts index ab70648fb9..75641cdc0b 100644 --- a/src/native/automod/setAutomodAction.ts +++ b/src/native/automod/setAutomodAction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, AutoModerationActionType, GuildTextChannelResolvable, ThreadChannel, AutoModerationActionOptions } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/automod/setAutomodAllowList.ts b/src/native/automod/setAutomodAllowList.ts index 81c5324e4b..3f79428bd8 100644 --- a/src/native/automod/setAutomodAllowList.ts +++ b/src/native/automod/setAutomodAllowList.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodExemptChannels.ts b/src/native/automod/setAutomodExemptChannels.ts index 9ce93df97c..5fe56536a3 100644 --- a/src/native/automod/setAutomodExemptChannels.ts +++ b/src/native/automod/setAutomodExemptChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodExemptRoles.ts b/src/native/automod/setAutomodExemptRoles.ts index f84641e7f3..b317da30d6 100644 --- a/src/native/automod/setAutomodExemptRoles.ts +++ b/src/native/automod/setAutomodExemptRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodKeywordFilter.ts b/src/native/automod/setAutomodKeywordFilter.ts index 1a0f4a198c..4366cf998b 100644 --- a/src/native/automod/setAutomodKeywordFilter.ts +++ b/src/native/automod/setAutomodKeywordFilter.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodMentionRaidProtection.ts b/src/native/automod/setAutomodMentionRaidProtection.ts index bc2aa498c8..a9ad271e39 100644 --- a/src/native/automod/setAutomodMentionRaidProtection.ts +++ b/src/native/automod/setAutomodMentionRaidProtection.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodMentionTotalLimit.ts b/src/native/automod/setAutomodMentionTotalLimit.ts index 2146627885..395650fcc0 100644 --- a/src/native/automod/setAutomodMentionTotalLimit.ts +++ b/src/native/automod/setAutomodMentionTotalLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/automod/setAutomodPresets.ts b/src/native/automod/setAutomodPresets.ts index b357edb074..bd9638db70 100644 --- a/src/native/automod/setAutomodPresets.ts +++ b/src/native/automod/setAutomodPresets.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutoModerationRuleKeywordPresetType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/automod/setAutomodRegexFilter.ts b/src/native/automod/setAutomodRegexFilter.ts index e0efc20715..f6e35188b7 100644 --- a/src/native/automod/setAutomodRegexFilter.ts +++ b/src/native/automod/setAutomodRegexFilter.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/applicationCommandCount.ts b/src/native/bot/applicationCommandCount.ts index 7295f075ab..8be441ae3a 100644 --- a/src/native/bot/applicationCommandCount.ts +++ b/src/native/bot/applicationCommandCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationCommandOptionType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/bot/applicationCommands.ts b/src/native/bot/applicationCommands.ts index c41f3d47b5..74dcab5d17 100644 --- a/src/native/bot/applicationCommands.ts +++ b/src/native/bot/applicationCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botCount.ts b/src/native/bot/botCount.ts index 77d01909d4..7972a9acb1 100644 --- a/src/native/bot/botCount.ts +++ b/src/native/bot/botCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botCustomInvite.ts b/src/native/bot/botCustomInvite.ts index 6cb7470462..0ca3eb1032 100644 --- a/src/native/bot/botCustomInvite.ts +++ b/src/native/bot/botCustomInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botDescription.ts b/src/native/bot/botDescription.ts index 6a132eefe0..5d4b1d2425 100644 --- a/src/native/bot/botDescription.ts +++ b/src/native/bot/botDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botDestroy.ts b/src/native/bot/botDestroy.ts index 1e50e48366..805e69f66e 100644 --- a/src/native/bot/botDestroy.ts +++ b/src/native/bot/botDestroy.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botID.ts b/src/native/bot/botID.ts index 041103e3cb..563bc90fc0 100644 --- a/src/native/bot/botID.ts +++ b/src/native/bot/botID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botInvite.ts b/src/native/bot/botInvite.ts index 2fb6cd79aa..a173856c7b 100644 --- a/src/native/bot/botInvite.ts +++ b/src/native/bot/botInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { OAuth2Scopes, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botMutualGuilds.ts b/src/native/bot/botMutualGuilds.ts index 86cfea15eb..321be51a35 100644 --- a/src/native/bot/botMutualGuilds.ts +++ b/src/native/bot/botMutualGuilds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botOwnerID.ts b/src/native/bot/botOwnerID.ts index 5b0cff3796..32ee094842 100644 --- a/src/native/bot/botOwnerID.ts +++ b/src/native/bot/botOwnerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { User } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/bot/botTags.ts b/src/native/bot/botTags.ts index 97808f0075..947c25760b 100644 --- a/src/native/bot/botTags.ts +++ b/src/native/bot/botTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botTeamCreatedAt.ts b/src/native/bot/botTeamCreatedAt.ts index ebd0842c66..f6d5db64f8 100644 --- a/src/native/bot/botTeamCreatedAt.ts +++ b/src/native/bot/botTeamCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Team } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botTeamID.ts b/src/native/bot/botTeamID.ts index 4e07a1620d..b677391470 100644 --- a/src/native/bot/botTeamID.ts +++ b/src/native/bot/botTeamID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Team } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botTeamIcon.ts b/src/native/bot/botTeamIcon.ts index b358393682..e5af8f9863 100644 --- a/src/native/bot/botTeamIcon.ts +++ b/src/native/bot/botTeamIcon.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize, Team } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botTeamMembers.ts b/src/native/bot/botTeamMembers.ts index fa49f98d9b..98ef201bcf 100644 --- a/src/native/bot/botTeamMembers.ts +++ b/src/native/bot/botTeamMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Team } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { TeamMemberProperties, TeamMemberProperty } from "../../properties/teamMember" diff --git a/src/native/bot/botTeamName.ts b/src/native/bot/botTeamName.ts index 28ea51d5a7..4e1dc3f4d2 100644 --- a/src/native/bot/botTeamName.ts +++ b/src/native/bot/botTeamName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Team } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botToken.ts b/src/native/bot/botToken.ts index 6b6e0a83d1..e2f21d9873 100644 --- a/src/native/bot/botToken.ts +++ b/src/native/bot/botToken.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botUserAuthorizationCount.ts b/src/native/bot/botUserAuthorizationCount.ts index c5d88657dd..386c2d7784 100644 --- a/src/native/bot/botUserAuthorizationCount.ts +++ b/src/native/bot/botUserAuthorizationCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botUserInstallCount.ts b/src/native/bot/botUserInstallCount.ts index d11c9aa55e..377d439b94 100644 --- a/src/native/bot/botUserInstallCount.ts +++ b/src/native/bot/botUserInstallCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/botWebhookEvents.ts b/src/native/bot/botWebhookEvents.ts index 0abebde96d..c048a7c3fe 100644 --- a/src/native/bot/botWebhookEvents.ts +++ b/src/native/bot/botWebhookEvents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationWebhookEventType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/bot/botWebhookStatus.ts b/src/native/bot/botWebhookStatus.ts index 2b3752675a..7c8182f452 100644 --- a/src/native/bot/botWebhookStatus.ts +++ b/src/native/bot/botWebhookStatus.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationWebhookEventStatus } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/bot/botWebhookURL.ts b/src/native/bot/botWebhookURL.ts index fb137e5657..c9291409e2 100644 --- a/src/native/bot/botWebhookURL.ts +++ b/src/native/bot/botWebhookURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/deleteGlobalApplicationCommands.ts b/src/native/bot/deleteGlobalApplicationCommands.ts index 49542b1a67..e6f3cc4014 100644 --- a/src/native/bot/deleteGlobalApplicationCommands.ts +++ b/src/native/bot/deleteGlobalApplicationCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/extensionVersion.ts b/src/native/bot/extensionVersion.ts index e40cab82b9..d171c7f742 100644 --- a/src/native/bot/extensionVersion.ts +++ b/src/native/bot/extensionVersion.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/hasExtension.ts b/src/native/bot/hasExtension.ts index 99b46b8c78..2368ef9cc0 100644 --- a/src/native/bot/hasExtension.ts +++ b/src/native/bot/hasExtension.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/ping.ts b/src/native/bot/ping.ts index d1c12d2b31..6c17bd547b 100644 --- a/src/native/bot/ping.ts +++ b/src/native/bot/ping.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setBotAvatar.ts b/src/native/bot/setBotAvatar.ts index cf5207ed29..27061431ee 100644 --- a/src/native/bot/setBotAvatar.ts +++ b/src/native/bot/setBotAvatar.ts @@ -1,4 +1,8 @@ -import noop from "../../functions/noop" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setBotBanner.ts b/src/native/bot/setBotBanner.ts index 24202eae25..69a48452b4 100644 --- a/src/native/bot/setBotBanner.ts +++ b/src/native/bot/setBotBanner.ts @@ -1,5 +1,8 @@ -import { ChatInputCommandInteraction } from "discord.js" -import noop from "../../functions/noop" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setBotDescription.ts b/src/native/bot/setBotDescription.ts index 064072eecd..947fa1fc5c 100644 --- a/src/native/bot/setBotDescription.ts +++ b/src/native/bot/setBotDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setBotGuildAvatar.ts b/src/native/bot/setBotGuildAvatar.ts new file mode 100644 index 0000000000..afeacde6e3 --- /dev/null +++ b/src/native/bot/setBotGuildAvatar.ts @@ -0,0 +1,36 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setBotGuildAvatar", + version: "2.6.0", + description: "Sets the bot avatar on a guild", + brackets: true, + unwrap: true, + aliases: [ + "$setClientGuildAvatar" + ], + args: [ + { + name: "guild ID", + description: "The guild to set avatar on", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "url", + description: "The icon url", + rest: false, + type: ArgType.String, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [guild, url]) { + return this.success(!!(await guild.members.editMe({ avatar: url }).catch(ctx.noop))) + }, +}) diff --git a/src/native/bot/setBotGuildBanner.ts b/src/native/bot/setBotGuildBanner.ts new file mode 100644 index 0000000000..d2b464fb1e --- /dev/null +++ b/src/native/bot/setBotGuildBanner.ts @@ -0,0 +1,36 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setBotGuildBanner", + version: "2.6.0", + description: "Sets the bot banner on a guild", + brackets: true, + unwrap: true, + aliases: [ + "$setClientGuildBanner" + ], + args: [ + { + name: "guild ID", + description: "The guild to set banner on", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "url", + description: "The banner url", + rest: false, + type: ArgType.String, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [guild, url]) { + return this.success(!!(await guild.members.editMe({ banner: url }).catch(ctx.noop))) + }, +}) diff --git a/src/native/bot/setBotGuildDescription.ts b/src/native/bot/setBotGuildDescription.ts new file mode 100644 index 0000000000..e19ec94f97 --- /dev/null +++ b/src/native/bot/setBotGuildDescription.ts @@ -0,0 +1,38 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setBotGuildDescription", + version: "2.6.0", + description: "Sets the bot description on a guild", + aliases: [ + "$setBotGuildBio", + "$setClientGuildBio", + "$setClientGuildDescription" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to set description on", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "description", + description: "The new description", + rest: false, + type: ArgType.String, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [guild, bio]) { + return this.success(!!(await guild.members.editMe({ bio }).catch(ctx.noop))) + }, +}) \ No newline at end of file diff --git a/src/native/bot/setBotName.ts b/src/native/bot/setBotName.ts index 303b9bd238..39f9b12949 100644 --- a/src/native/bot/setBotName.ts +++ b/src/native/bot/setBotName.ts @@ -1,4 +1,8 @@ -import noop from "../../functions/noop" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setBotTags.ts b/src/native/bot/setBotTags.ts index 638ebf30e6..ca6b7cb2d9 100644 --- a/src/native/bot/setBotTags.ts +++ b/src/native/bot/setBotTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/setStatus.ts b/src/native/bot/setStatus.ts index ff77090028..48cd97c771 100644 --- a/src/native/bot/setStatus.ts +++ b/src/native/bot/setStatus.ts @@ -1,4 +1,9 @@ -import { ActivityType, PresenceStatusData, PresenceUpdateStatus } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ActivityType, PresenceStatusData } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/shardCount.ts b/src/native/bot/shardCount.ts index 73e8a82c41..7187163958 100644 --- a/src/native/bot/shardCount.ts +++ b/src/native/bot/shardCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/shardID.ts b/src/native/bot/shardID.ts index 4e6f55fc92..69d8de644a 100644 --- a/src/native/bot/shardID.ts +++ b/src/native/bot/shardID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/shardStatus.ts b/src/native/bot/shardStatus.ts index c3404d619c..34382e39df 100644 --- a/src/native/bot/shardStatus.ts +++ b/src/native/bot/shardStatus.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Status } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/bot/updateApplicationCommands.ts b/src/native/bot/updateApplicationCommands.ts index 9a4930a694..3ae6459390 100644 --- a/src/native/bot/updateApplicationCommands.ts +++ b/src/native/bot/updateApplicationCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/updateCommands.ts b/src/native/bot/updateCommands.ts index bb19a34339..a7d5d71049 100644 --- a/src/native/bot/updateCommands.ts +++ b/src/native/bot/updateCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/uptime.ts b/src/native/bot/uptime.ts index e95b8a8b76..23c8290d4f 100644 --- a/src/native/bot/uptime.ts +++ b/src/native/bot/uptime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/bot/version.ts b/src/native/bot/version.ts index 2826a4ea0c..0658dd56a5 100644 --- a/src/native/bot/version.ts +++ b/src/native/bot/version.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferAlloc.ts b/src/native/buffer/bufferAlloc.ts index ab8db1c230..a8ea38100a 100644 --- a/src/native/buffer/bufferAlloc.ts +++ b/src/native/buffer/bufferAlloc.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferAllocUnsafe.ts b/src/native/buffer/bufferAllocUnsafe.ts index bfc7e39113..4263e19876 100644 --- a/src/native/buffer/bufferAllocUnsafe.ts +++ b/src/native/buffer/bufferAllocUnsafe.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferLength.ts b/src/native/buffer/bufferLength.ts index 3554b10049..97d528b94b 100644 --- a/src/native/buffer/bufferLength.ts +++ b/src/native/buffer/bufferLength.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferReadInt32.ts b/src/native/buffer/bufferReadInt32.ts index 5d70a92550..440828a94d 100644 --- a/src/native/buffer/bufferReadInt32.ts +++ b/src/native/buffer/bufferReadInt32.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferReadUtf8.ts b/src/native/buffer/bufferReadUtf8.ts index c2b215e439..fe157cd7e7 100644 --- a/src/native/buffer/bufferReadUtf8.ts +++ b/src/native/buffer/bufferReadUtf8.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferResize.ts b/src/native/buffer/bufferResize.ts index 8a44f55fa5..e0d0ed71c5 100644 --- a/src/native/buffer/bufferResize.ts +++ b/src/native/buffer/bufferResize.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferToString.ts b/src/native/buffer/bufferToString.ts index 26ae721ed9..0456e68277 100644 --- a/src/native/buffer/bufferToString.ts +++ b/src/native/buffer/bufferToString.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferWriteInt32.ts b/src/native/buffer/bufferWriteInt32.ts index 2bf90ef877..bd3eb6fa5a 100644 --- a/src/native/buffer/bufferWriteInt32.ts +++ b/src/native/buffer/bufferWriteInt32.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/buffer/bufferWriteUtf8.ts b/src/native/buffer/bufferWriteUtf8.ts index 99b2481a53..fbbfa07a22 100644 --- a/src/native/buffer/bufferWriteUtf8.ts +++ b/src/native/buffer/bufferWriteUtf8.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/addChannelPerms.ts b/src/native/channel/addChannelPerms.ts index e9a5315473..f151c52508 100644 --- a/src/native/channel/addChannelPerms.ts +++ b/src/native/channel/addChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel, PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/addPostTags.ts b/src/native/channel/addPostTags.ts index 3604073a0b..20b4e417e1 100644 --- a/src/native/channel/addPostTags.ts +++ b/src/native/channel/addPostTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/addThreadMember.ts b/src/native/channel/addThreadMember.ts index 4016337b35..548bea0485 100644 --- a/src/native/channel/addThreadMember.ts +++ b/src/native/channel/addThreadMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/archiveThread.ts b/src/native/channel/archiveThread.ts index a488e13eef..fa508b47dc 100644 --- a/src/native/channel/archiveThread.ts +++ b/src/native/channel/archiveThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelBitrate.ts b/src/native/channel/channelBitrate.ts index d3b4795bdc..accbef7eee 100644 --- a/src/native/channel/channelBitrate.ts +++ b/src/native/channel/channelBitrate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelCategoryID.ts b/src/native/channel/channelCategoryID.ts index d5d3a8c59e..33bbcd89b5 100644 --- a/src/native/channel/channelCategoryID.ts +++ b/src/native/channel/channelCategoryID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelChildrenCount.ts b/src/native/channel/channelChildrenCount.ts index 7aa1d9b72d..7c6fa808ed 100644 --- a/src/native/channel/channelChildrenCount.ts +++ b/src/native/channel/channelChildrenCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelChildrenIDs.ts b/src/native/channel/channelChildrenIDs.ts index 76e125070e..3e227959e3 100644 --- a/src/native/channel/channelChildrenIDs.ts +++ b/src/native/channel/channelChildrenIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelCount.ts b/src/native/channel/channelCount.ts index 39296df99a..415a244f14 100644 --- a/src/native/channel/channelCount.ts +++ b/src/native/channel/channelCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelCreatedAt.ts b/src/native/channel/channelCreatedAt.ts index f6c3de5eca..83379af883 100644 --- a/src/native/channel/channelCreatedAt.ts +++ b/src/native/channel/channelCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelDeletable.ts b/src/native/channel/channelDeletable.ts index 9f74bcb918..782c06b603 100644 --- a/src/native/channel/channelDeletable.ts +++ b/src/native/channel/channelDeletable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelExists.ts b/src/native/channel/channelExists.ts index 44b1ce8540..9f6e81144f 100644 --- a/src/native/channel/channelExists.ts +++ b/src/native/channel/channelExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelFlags.ts b/src/native/channel/channelFlags.ts index 7ff5dea77c..5f58ca0c90 100644 --- a/src/native/channel/channelFlags.ts +++ b/src/native/channel/channelFlags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelFlags } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelFull.ts b/src/native/channel/channelFull.ts index ef99ad5bcd..0c875d7546 100644 --- a/src/native/channel/channelFull.ts +++ b/src/native/channel/channelFull.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelGuildID.ts b/src/native/channel/channelGuildID.ts index b839da17f4..91e704f46c 100644 --- a/src/native/channel/channelGuildID.ts +++ b/src/native/channel/channelGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelHasAnyPerms.ts b/src/native/channel/channelHasAnyPerms.ts index e5887eb237..4c6b87566a 100644 --- a/src/native/channel/channelHasAnyPerms.ts +++ b/src/native/channel/channelHasAnyPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildTextBasedChannel, PermissionFlagsBits } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelHasPerms.ts b/src/native/channel/channelHasPerms.ts index 2245c4b1f5..41a88c30b3 100644 --- a/src/native/channel/channelHasPerms.ts +++ b/src/native/channel/channelHasPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildTextBasedChannel, PermissionFlagsBits } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelID.ts b/src/native/channel/channelID.ts index bba74c7097..819f23cf8d 100644 --- a/src/native/channel/channelID.ts +++ b/src/native/channel/channelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelIDs.ts b/src/native/channel/channelIDs.ts index 6fccac0c47..2a55ff6de4 100644 --- a/src/native/channel/channelIDs.ts +++ b/src/native/channel/channelIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/channelIsChildrenOf.ts b/src/native/channel/channelIsChildrenOf.ts index 5e296dbcac..3b9ba22940 100644 --- a/src/native/channel/channelIsChildrenOf.ts +++ b/src/native/channel/channelIsChildrenOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/channelJoinable.ts b/src/native/channel/channelJoinable.ts index 2af611af97..855c6400d6 100644 --- a/src/native/channel/channelJoinable.ts +++ b/src/native/channel/channelJoinable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelManageable.ts b/src/native/channel/channelManageable.ts index 7dfe33f43a..95d53d479e 100644 --- a/src/native/channel/channelManageable.ts +++ b/src/native/channel/channelManageable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelMembers.ts b/src/native/channel/channelMembers.ts index 1b899c9abc..82470b8de3 100644 --- a/src/native/channel/channelMembers.ts +++ b/src/native/channel/channelMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" import { Collection, GuildMember } from "discord.js" diff --git a/src/native/channel/channelNSFW.ts b/src/native/channel/channelNSFW.ts index c86c94e88d..7263b61d10 100644 --- a/src/native/channel/channelNSFW.ts +++ b/src/native/channel/channelNSFW.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelName.ts b/src/native/channel/channelName.ts index 19fffcb44a..91d47dc344 100644 --- a/src/native/channel/channelName.ts +++ b/src/native/channel/channelName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelNames.ts b/src/native/channel/channelNames.ts index 7f6dd7ba52..42f20aa03b 100644 --- a/src/native/channel/channelNames.ts +++ b/src/native/channel/channelNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelPermissions.ts b/src/native/channel/channelPermissions.ts index f0303b4c29..ef1d084b1a 100644 --- a/src/native/channel/channelPermissions.ts +++ b/src/native/channel/channelPermissions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { PermissionOverwritesProperties, PermissionOverwritesProperty } from "../../properties/permissionOverwrites" diff --git a/src/native/channel/channelPermissionsFor.ts b/src/native/channel/channelPermissionsFor.ts index 7e3316689e..e053e75462 100644 --- a/src/native/channel/channelPermissionsFor.ts +++ b/src/native/channel/channelPermissionsFor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildTextBasedChannel, PermissionFlagsBits } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelPermissionsOf.ts b/src/native/channel/channelPermissionsOf.ts index f6c77e7fdb..62c8cda5b5 100644 --- a/src/native/channel/channelPermissionsOf.ts +++ b/src/native/channel/channelPermissionsOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel, PermissionFlagsBits } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelPinnedMessages.ts b/src/native/channel/channelPinnedMessages.ts index bcfa7d7f30..dce0ca2e97 100644 --- a/src/native/channel/channelPinnedMessages.ts +++ b/src/native/channel/channelPinnedMessages.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelPosition.ts b/src/native/channel/channelPosition.ts index 7368b61b70..67594192ad 100644 --- a/src/native/channel/channelPosition.ts +++ b/src/native/channel/channelPosition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelRawData.ts b/src/native/channel/channelRawData.ts index 4a362e06f8..a352511054 100644 --- a/src/native/channel/channelRawData.ts +++ b/src/native/channel/channelRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelSlowmode.ts b/src/native/channel/channelSlowmode.ts index 026a41e134..db9a624dfc 100644 --- a/src/native/channel/channelSlowmode.ts +++ b/src/native/channel/channelSlowmode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelTags.ts b/src/native/channel/channelTags.ts index d3959936b6..b65c6427c6 100644 --- a/src/native/channel/channelTags.ts +++ b/src/native/channel/channelTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelThreadIDs.ts b/src/native/channel/channelThreadIDs.ts index 5d53c3a3a2..bfad43b683 100644 --- a/src/native/channel/channelThreadIDs.ts +++ b/src/native/channel/channelThreadIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadManager } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelTopic.ts b/src/native/channel/channelTopic.ts index 6f93511da1..97fa9e84e8 100644 --- a/src/native/channel/channelTopic.ts +++ b/src/native/channel/channelTopic.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelType.ts b/src/native/channel/channelType.ts index a59980403d..c92d34b607 100644 --- a/src/native/channel/channelType.ts +++ b/src/native/channel/channelType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/channelURL.ts b/src/native/channel/channelURL.ts index ad978903a1..b1bd32fb62 100644 --- a/src/native/channel/channelURL.ts +++ b/src/native/channel/channelURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelUserLimit.ts b/src/native/channel/channelUserLimit.ts index 153bbf7db2..819efdbcba 100644 --- a/src/native/channel/channelUserLimit.ts +++ b/src/native/channel/channelUserLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/channelVoiceMemberCount.ts b/src/native/channel/channelVoiceMemberCount.ts index d219ec9ab6..c4ce97dfe4 100644 --- a/src/native/channel/channelVoiceMemberCount.ts +++ b/src/native/channel/channelVoiceMemberCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelVoiceMemberIDs.ts b/src/native/channel/channelVoiceMemberIDs.ts index d52308423b..7c33197b29 100644 --- a/src/native/channel/channelVoiceMemberIDs.ts +++ b/src/native/channel/channelVoiceMemberIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/channelVoiceRegion.ts b/src/native/channel/channelVoiceRegion.ts index c4fe301644..d43db26137 100644 --- a/src/native/channel/channelVoiceRegion.ts +++ b/src/native/channel/channelVoiceRegion.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, VoiceChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { VoiceRegionType } from "./setVoiceRegion" diff --git a/src/native/channel/channelWebhooks.ts b/src/native/channel/channelWebhooks.ts index 4f48396f72..08854d1312 100644 --- a/src/native/channel/channelWebhooks.ts +++ b/src/native/channel/channelWebhooks.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, BaseGuildTextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { WebhookProperties, WebhookProperty } from "../../properties/webhook" diff --git a/src/native/channel/clearChannelPerms.ts b/src/native/channel/clearChannelPerms.ts index 675b7d8699..bef4faeafb 100644 --- a/src/native/channel/clearChannelPerms.ts +++ b/src/native/channel/clearChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/clearMessages.ts b/src/native/channel/clearMessages.ts index f291feffef..058090674d 100644 --- a/src/native/channel/clearMessages.ts +++ b/src/native/channel/clearMessages.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import splitNumber from "../../functions/splitNumber" diff --git a/src/native/channel/clearUserMessages.ts b/src/native/channel/clearUserMessages.ts index 17f8108fbb..804581d8b7 100644 --- a/src/native/channel/clearUserMessages.ts +++ b/src/native/channel/clearUserMessages.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import splitNumber from "../../functions/splitNumber" diff --git a/src/native/channel/cloneChannel.ts b/src/native/channel/cloneChannel.ts index 6d188d9bfe..d24c5df22c 100644 --- a/src/native/channel/cloneChannel.ts +++ b/src/native/channel/cloneChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/cloneChannelPerms.ts b/src/native/channel/cloneChannelPerms.ts index 4066484f68..0590a4a34a 100644 --- a/src/native/channel/cloneChannelPerms.ts +++ b/src/native/channel/cloneChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/createChannel.ts b/src/native/channel/createChannel.ts index a162f8929a..758f54fa52 100644 --- a/src/native/channel/createChannel.ts +++ b/src/native/channel/createChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType, GuildChannelCreateOptions } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/createForumPost.ts b/src/native/channel/createForumPost.ts index 0367722a59..3140c4f990 100644 --- a/src/native/channel/createForumPost.ts +++ b/src/native/channel/createForumPost.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/createForumTag.ts b/src/native/channel/createForumTag.ts index dae7bd8f5f..323cf827d9 100644 --- a/src/native/channel/createForumTag.ts +++ b/src/native/channel/createForumTag.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildForumTagData, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { parseSingleEmoji } from "../../functions/parseSingleEmoji" diff --git a/src/native/channel/createInvite.ts b/src/native/channel/createInvite.ts index b06c630332..2dff1b72cd 100644 --- a/src/native/channel/createInvite.ts +++ b/src/native/channel/createInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/createStageInstance.ts b/src/native/channel/createStageInstance.ts index 0554057538..468f8b7435 100644 --- a/src/native/channel/createStageInstance.ts +++ b/src/native/channel/createStageInstance.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, StageChannel, StageInstancePrivacyLevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/createThread.ts b/src/native/channel/createThread.ts index 1990d29102..41c90871d5 100644 --- a/src/native/channel/createThread.ts +++ b/src/native/channel/createThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/deleteChannelPerms.ts b/src/native/channel/deleteChannelPerms.ts index 233bf59522..56551a36ba 100644 --- a/src/native/channel/deleteChannelPerms.ts +++ b/src/native/channel/deleteChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel, PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/deleteChannels.ts b/src/native/channel/deleteChannels.ts index 5895facac2..69dd68861c 100644 --- a/src/native/channel/deleteChannels.ts +++ b/src/native/channel/deleteChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/deleteForumTags.ts b/src/native/channel/deleteForumTags.ts index 6c38bcdf1c..1a65818a83 100644 --- a/src/native/channel/deleteForumTags.ts +++ b/src/native/channel/deleteForumTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/deleteStageInstance.ts b/src/native/channel/deleteStageInstance.ts index 903d96978a..3912a0e034 100644 --- a/src/native/channel/deleteStageInstance.ts +++ b/src/native/channel/deleteStageInstance.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/deleteThread.ts b/src/native/channel/deleteThread.ts index a7af94411f..53350cc4dd 100644 --- a/src/native/channel/deleteThread.ts +++ b/src/native/channel/deleteThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/dmChannelID.ts b/src/native/channel/dmChannelID.ts index d1e4210d47..a85f8e18bf 100644 --- a/src/native/channel/dmChannelID.ts +++ b/src/native/channel/dmChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/editForumTag.ts b/src/native/channel/editForumTag.ts index b9c2f41e8d..b9ce644080 100644 --- a/src/native/channel/editForumTag.ts +++ b/src/native/channel/editForumTag.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { parseSingleEmoji } from "../../functions/parseSingleEmoji" diff --git a/src/native/channel/editStageInstance.ts b/src/native/channel/editStageInstance.ts index fc03cb8702..e86a4d9cfa 100644 --- a/src/native/channel/editStageInstance.ts +++ b/src/native/channel/editStageInstance.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StageInstancePrivacyLevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/fetchChannels.ts b/src/native/channel/fetchChannels.ts index 6f20d3eafe..9fe83a0f66 100644 --- a/src/native/channel/fetchChannels.ts +++ b/src/native/channel/fetchChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/fetchThreads.ts b/src/native/channel/fetchThreads.ts index 815d1dc08f..1a7ef9ad55 100644 --- a/src/native/channel/fetchThreads.ts +++ b/src/native/channel/fetchThreads.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadManager } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/firstMessageID.ts b/src/native/channel/firstMessageID.ts index 047e84cc16..da23991a3f 100644 --- a/src/native/channel/firstMessageID.ts +++ b/src/native/channel/firstMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/followChannel.ts b/src/native/channel/followChannel.ts index 86dc4d6005..ea62273ef9 100644 --- a/src/native/channel/followChannel.ts +++ b/src/native/channel/followChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, Guild, NewsChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/forumDefaultLayout.ts b/src/native/channel/forumDefaultLayout.ts index e399291791..4f3d544084 100644 --- a/src/native/channel/forumDefaultLayout.ts +++ b/src/native/channel/forumDefaultLayout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, ForumChannel, ForumLayoutType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/forumDefaultReactionEmoji.ts b/src/native/channel/forumDefaultReactionEmoji.ts index 4188108bef..6322f8511f 100644 --- a/src/native/channel/forumDefaultReactionEmoji.ts +++ b/src/native/channel/forumDefaultReactionEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/forumDefaultSortOrder.ts b/src/native/channel/forumDefaultSortOrder.ts index 86a1670e8a..4411cd9868 100644 --- a/src/native/channel/forumDefaultSortOrder.ts +++ b/src/native/channel/forumDefaultSortOrder.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, SortOrderType, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/forumDefaultThreadArchiveDuration.ts b/src/native/channel/forumDefaultThreadArchiveDuration.ts index 50264ce7de..d299190f63 100644 --- a/src/native/channel/forumDefaultThreadArchiveDuration.ts +++ b/src/native/channel/forumDefaultThreadArchiveDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadAutoArchiveDuration, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/forumDefaultThreadSlowmode.ts b/src/native/channel/forumDefaultThreadSlowmode.ts index e0af0ad3dc..ed022bb44f 100644 --- a/src/native/channel/forumDefaultThreadSlowmode.ts +++ b/src/native/channel/forumDefaultThreadSlowmode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/forumTags.ts b/src/native/channel/forumTags.ts index 1ddfe2a162..ce6833b3ac 100644 --- a/src/native/channel/forumTags.ts +++ b/src/native/channel/forumTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { ForumTagProperty, ForumTagProperties } from "../../properties/forumTag" diff --git a/src/native/channel/getStageInstance.ts b/src/native/channel/getStageInstance.ts index 2311b8a636..b1dd041379 100644 --- a/src/native/channel/getStageInstance.ts +++ b/src/native/channel/getStageInstance.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StageProperties, StageProperty } from "../../properties/stage" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/getThreadMembers.ts b/src/native/channel/getThreadMembers.ts index 88b8238d39..a59b7f7707 100644 --- a/src/native/channel/getThreadMembers.ts +++ b/src/native/channel/getThreadMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/channel/guildChannelID.ts b/src/native/channel/guildChannelID.ts index 851fef2d51..69e6c0fb12 100644 --- a/src/native/channel/guildChannelID.ts +++ b/src/native/channel/guildChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/lastMessageID.ts b/src/native/channel/lastMessageID.ts index 7b9fd1fc58..c0b206c146 100644 --- a/src/native/channel/lastMessageID.ts +++ b/src/native/channel/lastMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/channel/lastPinTimestamp.ts b/src/native/channel/lastPinTimestamp.ts index 2fe22a067f..8b2b2994ee 100644 --- a/src/native/channel/lastPinTimestamp.ts +++ b/src/native/channel/lastPinTimestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/channel/lockThread.ts b/src/native/channel/lockThread.ts index c47d12f11b..0861c0796f 100644 --- a/src/native/channel/lockThread.ts +++ b/src/native/channel/lockThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/modifyChannelPerms.ts b/src/native/channel/modifyChannelPerms.ts index fa1b334352..d0853dc9c2 100644 --- a/src/native/channel/modifyChannelPerms.ts +++ b/src/native/channel/modifyChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel, PermissionFlagsBits } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import overwritePermissionsArrayToObject from "../../functions/overwritePermissionsArrayToObject" diff --git a/src/native/channel/modifyPostTags.ts b/src/native/channel/modifyPostTags.ts index 25091b5f64..305ada70cf 100644 --- a/src/native/channel/modifyPostTags.ts +++ b/src/native/channel/modifyPostTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/randomChannelID.ts b/src/native/channel/randomChannelID.ts index f061ab0aaf..1b64ff1c51 100644 --- a/src/native/channel/randomChannelID.ts +++ b/src/native/channel/randomChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/randomGuildChannelID.ts b/src/native/channel/randomGuildChannelID.ts index 1d2e280251..0f8d5ef75d 100644 --- a/src/native/channel/randomGuildChannelID.ts +++ b/src/native/channel/randomGuildChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/removeChannelPerms.ts b/src/native/channel/removeChannelPerms.ts index c11f1a8a78..9c87827b40 100644 --- a/src/native/channel/removeChannelPerms.ts +++ b/src/native/channel/removeChannelPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildChannel, PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/removeThreadMember.ts b/src/native/channel/removeThreadMember.ts index dc2adc76e9..0b914e3f79 100644 --- a/src/native/channel/removeThreadMember.ts +++ b/src/native/channel/removeThreadMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/sendMessage.ts b/src/native/channel/sendMessage.ts index f8d21fd5f4..53e9807674 100644 --- a/src/native/channel/sendMessage.ts +++ b/src/native/channel/sendMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setChannelArchiveDuration.ts b/src/native/channel/setChannelArchiveDuration.ts index f426157bb8..e7683b9537 100644 --- a/src/native/channel/setChannelArchiveDuration.ts +++ b/src/native/channel/setChannelArchiveDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel, ThreadAutoArchiveDuration } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setChannelCategory.ts b/src/native/channel/setChannelCategory.ts index aa6934ec29..6e6378449e 100644 --- a/src/native/channel/setChannelCategory.ts +++ b/src/native/channel/setChannelCategory.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setChannelNSFW.ts b/src/native/channel/setChannelNSFW.ts index 727b6e21b4..c4b2456852 100644 --- a/src/native/channel/setChannelNSFW.ts +++ b/src/native/channel/setChannelNSFW.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setChannelName.ts b/src/native/channel/setChannelName.ts index adb987a7e1..f5a33bde5a 100644 --- a/src/native/channel/setChannelName.ts +++ b/src/native/channel/setChannelName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setChannelSlowmode.ts b/src/native/channel/setChannelSlowmode.ts index ba5cfd155a..7e50c0b325 100644 --- a/src/native/channel/setChannelSlowmode.ts +++ b/src/native/channel/setChannelSlowmode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setChannelTopic.ts b/src/native/channel/setChannelTopic.ts index 6b25c83f35..f3f396af66 100644 --- a/src/native/channel/setChannelTopic.ts +++ b/src/native/channel/setChannelTopic.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setDefaultForumLayout.ts b/src/native/channel/setDefaultForumLayout.ts index 516a1d0d46..32cf831a40 100644 --- a/src/native/channel/setDefaultForumLayout.ts +++ b/src/native/channel/setDefaultForumLayout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, ForumChannel, ForumLayoutType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setDefaultReactionEmoji.ts b/src/native/channel/setDefaultReactionEmoji.ts index 367d371682..734ee13f82 100644 --- a/src/native/channel/setDefaultReactionEmoji.ts +++ b/src/native/channel/setDefaultReactionEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, DefaultReactionEmoji, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { parseSingleEmoji } from "../../functions/parseSingleEmoji" diff --git a/src/native/channel/setDefaultSortOrder.ts b/src/native/channel/setDefaultSortOrder.ts index 12ba3a5d46..f61da74723 100644 --- a/src/native/channel/setDefaultSortOrder.ts +++ b/src/native/channel/setDefaultSortOrder.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, SortOrderType, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setDefaultThreadArchiveDuration.ts b/src/native/channel/setDefaultThreadArchiveDuration.ts index ae7e5b3f25..409f909483 100644 --- a/src/native/channel/setDefaultThreadArchiveDuration.ts +++ b/src/native/channel/setDefaultThreadArchiveDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadAutoArchiveDuration, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setDefaultThreadSlowmode.ts b/src/native/channel/setDefaultThreadSlowmode.ts index 4ca180644a..33e1cee1d9 100644 --- a/src/native/channel/setDefaultThreadSlowmode.ts +++ b/src/native/channel/setDefaultThreadSlowmode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadOnlyChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setPostTags.ts b/src/native/channel/setPostTags.ts index 0bf7a5ddb9..6cb64e3638 100644 --- a/src/native/channel/setPostTags.ts +++ b/src/native/channel/setPostTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/setThreadArchiveDuration.ts b/src/native/channel/setThreadArchiveDuration.ts index 709c468dc4..5a9a298b74 100644 --- a/src/native/channel/setThreadArchiveDuration.ts +++ b/src/native/channel/setThreadArchiveDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadAutoArchiveDuration, ThreadChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setVoiceBitrate.ts b/src/native/channel/setVoiceBitrate.ts index 181d70ab7b..921b6ed3d6 100644 --- a/src/native/channel/setVoiceBitrate.ts +++ b/src/native/channel/setVoiceBitrate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { BaseChannel, VoiceChannel } from "discord.js" diff --git a/src/native/channel/setVoiceDeaf.ts b/src/native/channel/setVoiceDeaf.ts index 672f396f82..4d4baa77dd 100644 --- a/src/native/channel/setVoiceDeaf.ts +++ b/src/native/channel/setVoiceDeaf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/setVoiceMute.ts b/src/native/channel/setVoiceMute.ts index f2b2b0b0d6..8270cd34e5 100644 --- a/src/native/channel/setVoiceMute.ts +++ b/src/native/channel/setVoiceMute.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/setVoiceRegion.ts b/src/native/channel/setVoiceRegion.ts index 2df6ffac1c..112543e688 100644 --- a/src/native/channel/setVoiceRegion.ts +++ b/src/native/channel/setVoiceRegion.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, VoiceChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/channel/setVoiceUndeaf.ts b/src/native/channel/setVoiceUndeaf.ts index 79b4e9325c..b8702f64cf 100644 --- a/src/native/channel/setVoiceUndeaf.ts +++ b/src/native/channel/setVoiceUndeaf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/setVoiceUnmute.ts b/src/native/channel/setVoiceUnmute.ts index 35e4bafc28..5075635d79 100644 --- a/src/native/channel/setVoiceUnmute.ts +++ b/src/native/channel/setVoiceUnmute.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/channel/setVoiceUserLimit.ts b/src/native/channel/setVoiceUserLimit.ts index 9f8244b193..61879ee2f5 100644 --- a/src/native/channel/setVoiceUserLimit.ts +++ b/src/native/channel/setVoiceUserLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { BaseChannel, VoiceChannel } from "discord.js" diff --git a/src/native/channel/setVoiceVideoQuality.ts b/src/native/channel/setVoiceVideoQuality.ts index ee17f23147..ff48fc6e5f 100644 --- a/src/native/channel/setVoiceVideoQuality.ts +++ b/src/native/channel/setVoiceVideoQuality.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { BaseChannel, VideoQualityMode, VoiceChannel } from "discord.js" diff --git a/src/native/channel/startTyping.ts b/src/native/channel/startTyping.ts index eb5703d5b6..2a8c56f900 100644 --- a/src/native/channel/startTyping.ts +++ b/src/native/channel/startTyping.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/threadIsArchived.ts b/src/native/channel/threadIsArchived.ts index a847a4ea72..5d5665d915 100644 --- a/src/native/channel/threadIsArchived.ts +++ b/src/native/channel/threadIsArchived.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/threadOwnerID.ts b/src/native/channel/threadOwnerID.ts index 8c39b40446..d2c1fda773 100644 --- a/src/native/channel/threadOwnerID.ts +++ b/src/native/channel/threadOwnerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/threadStarterMessageID.ts b/src/native/channel/threadStarterMessageID.ts index af6e564c4b..b2f0cdeb5f 100644 --- a/src/native/channel/threadStarterMessageID.ts +++ b/src/native/channel/threadStarterMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, Message, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/threadTotalMessagesSent.ts b/src/native/channel/threadTotalMessagesSent.ts index f5f61e8da7..2284b2c1a6 100644 --- a/src/native/channel/threadTotalMessagesSent.ts +++ b/src/native/channel/threadTotalMessagesSent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/channel/transcript.ts b/src/native/channel/transcript.ts index dd599b65e8..a4c7e5088c 100644 --- a/src/native/channel/transcript.ts +++ b/src/native/channel/transcript.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import fetchAllMessages from "../../functions/fetchAllMessages" import { ArgType, IExtendedCompiledFunctionField, NativeFunction } from "../../structures" diff --git a/src/native/channel/unarchiveThread.ts b/src/native/channel/unarchiveThread.ts index 849cfaef26..13a8dbee05 100644 --- a/src/native/channel/unarchiveThread.ts +++ b/src/native/channel/unarchiveThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/channel/unlockThread.ts b/src/native/channel/unlockThread.ts index 7abc47f8f8..b76e57a860 100644 --- a/src/native/channel/unlockThread.ts +++ b/src/native/channel/unlockThread.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ThreadChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/command/commandCount.ts b/src/native/command/commandCount.ts index 31b3c013c1..09d0951093 100644 --- a/src/native/command/commandCount.ts +++ b/src/native/command/commandCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/command/commandInfo.ts b/src/native/command/commandInfo.ts index 3a664291e7..12e767b943 100644 --- a/src/native/command/commandInfo.ts +++ b/src/native/command/commandInfo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents, Events } from "discord.js" import { ArgType, Context, NativeFunction, Return } from "../../structures" diff --git a/src/native/command/commandName.ts b/src/native/command/commandName.ts index 60191d2649..fe765b2449 100644 --- a/src/native/command/commandName.ts +++ b/src/native/command/commandName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/command/commandNames.ts b/src/native/command/commandNames.ts index 77d2d10436..6c82307b87 100644 --- a/src/native/command/commandNames.ts +++ b/src/native/command/commandNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/command/deleteCommand.ts b/src/native/command/deleteCommand.ts index b2220fd2f6..8c5bbd8c91 100644 --- a/src/native/command/deleteCommand.ts +++ b/src/native/command/deleteCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { NativeFunction, Return } from "../../structures" diff --git a/src/native/component/addActionRow.ts b/src/native/component/addActionRow.ts index 770b4f5b95..5cb56a759c 100644 --- a/src/native/component/addActionRow.ts +++ b/src/native/component/addActionRow.ts @@ -1,5 +1,11 @@ -import { ActionRowBuilder, ComponentType, ContainerBuilder } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ActionRowBuilder } from "discord.js" import { NativeFunction, Return } from "../../structures" +import { addActionRow } from "../../functions/components" export default new NativeFunction({ name: "$addActionRow", @@ -7,15 +13,7 @@ export default new NativeFunction({ description: "Adds an action row", unwrap: true, execute(ctx) { - const row = ctx.container.actionRow - const comp = ctx.container.components.at(-1) - - if (row) { - if (comp instanceof ContainerBuilder && ctx.container.isInside(ComponentType.Container)) - comp.addActionRowComponents(row) - else ctx.container.components.push(row) - } - + addActionRow(ctx, false) ctx.container.actionRow = new ActionRowBuilder() return this.success() }, diff --git a/src/native/component/addActionRowTo.ts b/src/native/component/addActionRowTo.ts index 55b9a72c1a..968383fc04 100644 --- a/src/native/component/addActionRowTo.ts +++ b/src/native/component/addActionRowTo.ts @@ -1,5 +1,11 @@ -import { ActionRow, ActionRowBuilder, ButtonBuilder, MessageActionRowComponent } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ActionRowBuilder, createComponentBuilder } from "discord.js" import { ArgType, Container, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" +import { addActionRow } from "../../functions/components" export default new NativeFunction({ name: "$addActionRowTo", @@ -45,22 +51,23 @@ export default new NativeFunction({ async execute(ctx) { const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 1, 3) if (!this["isValidReturnType"](rt)) return rt - + const [, m, keep ] = args const code = this.data.fields![2] as IExtendedCompiledFunctionField - const rows = keep ? m.components.map(x => ActionRowBuilder.from(x as ActionRow)) : new Array() + const comps = keep ? m.components.map((x) => createComponentBuilder(x.toJSON())) : new Array() const oldContainer = ctx.runtime.container const newContainer = new Container() - + // Add our new rows - newContainer.components = rows + newContainer.components = comps // Use new container ctx.container = newContainer const codeExec = await this["resolveCode"](ctx, code) + addActionRow(ctx, false) // Return the container ctx.container = oldContainer! @@ -69,7 +76,7 @@ export default new NativeFunction({ // Since rows is a reference, we do not need to retrieve from container. return this.success( - !!(await m.edit({ components: rows as ActionRowBuilder[] }).catch(ctx.noop)) + !!(await m.edit({ components: comps.map((x) => x.toJSON()) }).catch(ctx.noop)) ) }, }) \ No newline at end of file diff --git a/src/native/component/addButton.ts b/src/native/component/addButton.ts index f0dec9867e..bba2bc97eb 100644 --- a/src/native/component/addButton.ts +++ b/src/native/component/addButton.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonBuilder, ButtonStyle, ComponentType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { resolveNumericEnum } from "../../functions/enum" diff --git a/src/native/component/addButtonTo.ts b/src/native/component/addButtonTo.ts index d8591b7c17..8d7271cfd5 100644 --- a/src/native/component/addButtonTo.ts +++ b/src/native/component/addButtonTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ButtonBuilder, ButtonStyle, createComponentBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { resolveNumericEnum } from "../../functions/enum" diff --git a/src/native/component/addChannelSelectMenu.ts b/src/native/component/addChannelSelectMenu.ts index 35435a1f9c..c5da80fbe2 100644 --- a/src/native/component/addChannelSelectMenu.ts +++ b/src/native/component/addChannelSelectMenu.ts @@ -1,4 +1,9 @@ -import { ChannelSelectMenuBuilder } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ChannelSelectMenuBuilder, ComponentType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -50,13 +55,16 @@ export default new NativeFunction({ const menu = new ChannelSelectMenuBuilder() .setDefaultChannels(channels) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id) - + if (placeholder) menu.setPlaceholder(placeholder) if (min) menu.setMinValues(min) if (max) menu.setMaxValues(max) - ctx.container.actionRow?.addComponents(menu) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setChannelSelectMenuComponent(menu) + else ctx.container.actionRow?.addComponents(menu) + return this.success() } }) \ No newline at end of file diff --git a/src/native/component/addChannelSelectMenuTo.ts b/src/native/component/addChannelSelectMenuTo.ts index e22a2f8413..dbba390a2e 100644 --- a/src/native/component/addChannelSelectMenuTo.ts +++ b/src/native/component/addChannelSelectMenuTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ChannelSelectMenuBuilder, createComponentBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/component/addChannelType.ts b/src/native/component/addChannelType.ts index 79be3af2b6..e17d7cf1cf 100644 --- a/src/native/component/addChannelType.ts +++ b/src/native/component/addChannelType.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelSelectMenuBuilder, ChannelType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$addChannelType", @@ -19,7 +25,7 @@ export default new NativeFunction({ } ], execute(ctx, [ types ]) { - const menu = ctx.container.actionRow?.components[0] + const menu = getLastComponent(ctx) if (menu instanceof ChannelSelectMenuBuilder) { menu.addChannelTypes(types) } diff --git a/src/native/component/addChoice.ts b/src/native/component/addChoice.ts index f9de32f9ee..148544fd05 100644 --- a/src/native/component/addChoice.ts +++ b/src/native/component/addChoice.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/component/addContainer.ts b/src/native/component/addContainer.ts index e80f45fe5a..a095c6d75e 100644 --- a/src/native/component/addContainer.ts +++ b/src/native/component/addContainer.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ComponentType, ContainerBuilder } from "discord.js" import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" @@ -39,17 +44,12 @@ export default new NativeFunction({ const resolved = await this["resolveCode"](ctx, code) if (!this["isValidReturnType"](resolved)) return resolved - if (this.displayField(1)) { - const color = await this["resolveUnhandledArg"](ctx, 1) - if (!this["isValidReturnType"](color)) return color - comp.setAccentColor(color.value as number) - } + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 1, 2) + if (!this["isValidReturnType"](rt)) return rt + const [ color, spoiler ] = args - if (this.displayField(2)) { - const spoiler = await this["resolveUnhandledArg"](ctx, 2) - if (!this["isValidReturnType"](spoiler)) return spoiler - comp.setSpoiler(spoiler.value as boolean) - } + comp.setAccentColor(color || undefined) + comp.setSpoiler(spoiler || false) addActionRow(ctx) ctx.container.inside.pop() diff --git a/src/native/component/addDefaultChannelOption.ts b/src/native/component/addDefaultChannelOption.ts index dd075887f2..4a9587b509 100644 --- a/src/native/component/addDefaultChannelOption.ts +++ b/src/native/component/addDefaultChannelOption.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$addDefaultChannelOption", @@ -21,7 +27,7 @@ export default new NativeFunction({ } ], execute(ctx, [ ids ]) { - const menu = ctx.container.actionRow?.components[0] + const menu = getLastComponent(ctx) if (menu instanceof ChannelSelectMenuBuilder) { menu.addDefaultChannels(ids) } diff --git a/src/native/component/addDefaultRoleOption.ts b/src/native/component/addDefaultRoleOption.ts index cb92f7bd1d..fd73b870fb 100644 --- a/src/native/component/addDefaultRoleOption.ts +++ b/src/native/component/addDefaultRoleOption.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MentionableSelectMenuBuilder, RoleSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$addDefaultRoleOption", @@ -21,7 +27,7 @@ export default new NativeFunction({ } ], execute(ctx, [ ids ]) { - const menu = ctx.container.actionRow?.components[0] + const menu = getLastComponent(ctx) if (menu instanceof RoleSelectMenuBuilder || menu instanceof MentionableSelectMenuBuilder) { menu.addDefaultRoles(ids) } diff --git a/src/native/component/addDefaultUserOption.ts b/src/native/component/addDefaultUserOption.ts index 4d20f7e9d6..e18857b917 100644 --- a/src/native/component/addDefaultUserOption.ts +++ b/src/native/component/addDefaultUserOption.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MentionableSelectMenuBuilder, UserSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$addDefaultUserOption", @@ -21,7 +27,7 @@ export default new NativeFunction({ } ], execute(ctx, [ ids ]) { - const menu = ctx.container.actionRow?.components[0] + const menu = getLastComponent(ctx) if (menu instanceof UserSelectMenuBuilder || menu instanceof MentionableSelectMenuBuilder) { menu.addDefaultUsers(ids) } diff --git a/src/native/component/addFile.ts b/src/native/component/addFile.ts index d8f7d1adb5..7738dc5b4b 100644 --- a/src/native/component/addFile.ts +++ b/src/native/component/addFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ComponentType, ContainerBuilder, FileBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" diff --git a/src/native/component/addFileUpload.ts b/src/native/component/addFileUpload.ts new file mode 100644 index 0000000000..8a74788759 --- /dev/null +++ b/src/native/component/addFileUpload.ts @@ -0,0 +1,48 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { FileUploadBuilder } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$addFileUpload", + version: "2.6.0", + description: "Adds a new file upload component to the modal label", + unwrap: true, + brackets: true, + args: [ + { + name: "custom ID", + description: "The custom id for this field", + rest: false, + required: true, + type: ArgType.String, + }, + { + name: "min values", + description: "The min values of file uploads", + rest: false, + type: ArgType.Number, + }, + { + name: "max values", + description: "The max values of file uploads", + rest: false, + type: ArgType.Number, + }, + ], + execute(ctx, [id, min, max]) { + const field = new FileUploadBuilder() + .setCustomId(id) + .setRequired(ctx.component.required) + + if (min) field.setMinValues(min) + if (max) field.setMaxValues(max) + + ctx.component.label?.setFileUploadComponent(field) + + return this.success() + }, +}) \ No newline at end of file diff --git a/src/native/component/addLabel.ts b/src/native/component/addLabel.ts new file mode 100644 index 0000000000..e375bdcd69 --- /dev/null +++ b/src/native/component/addLabel.ts @@ -0,0 +1,67 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, LabelBuilder } from "discord.js" +import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$addLabel", + version: "2.6.0", + description: "Adds a new label component to the modal", + unwrap: false, + brackets: true, + args: [ + { + name: "name", + description: "The name for the label", + rest: false, + required: true, + type: ArgType.String, + }, + { + name: "component", + description: "The component to attach to the label", + rest: false, + required: true, + type: ArgType.String, + }, + { + name: "description", + description: "The description for the label", + rest: false, + type: ArgType.String, + }, + { + name: "required", + description: "Whether this field is required", + rest: false, + type: ArgType.Boolean, + }, + ], + async execute(ctx) { + if (!ctx.interaction) return this.success() + ctx.container.inside.push(ComponentType.Label) + + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 2, 3) + if (!this["isValidReturnType"](rt)) return rt + const [ name, desc, required ] = args + + const label = new LabelBuilder().setLabel(name) + if (desc) label.setDescription(desc) + + ctx.component.label = label + ctx.component.required = required || false + + const code = this.data.fields![1] as IExtendedCompiledFunctionField + const resolved = await this["resolveCode"](ctx, code) + if (!this["isValidReturnType"](resolved)) return resolved + + ctx.container.modal?.addLabelComponents(ctx.component.label) + + ctx.component = {} + ctx.container.inside.pop() + return this.success() + }, +}) \ No newline at end of file diff --git a/src/native/component/addMediaGallery.ts b/src/native/component/addMediaGallery.ts index 87f060593e..5e9405e1e2 100644 --- a/src/native/component/addMediaGallery.ts +++ b/src/native/component/addMediaGallery.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" import { ComponentType, ContainerBuilder, MediaGalleryBuilder } from "discord.js" diff --git a/src/native/component/addMediaItem.ts b/src/native/component/addMediaItem.ts index 330280871a..b36906895e 100644 --- a/src/native/component/addMediaItem.ts +++ b/src/native/component/addMediaItem.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MediaGalleryItemBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" @@ -5,7 +10,6 @@ export default new NativeFunction({ name: "$addMediaItem", version: "2.4.0", description: "Adds a new media gallery item", - aliases: ["$addItem"], unwrap: true, brackets: true, args: [ diff --git a/src/native/component/addMentionableSelectMenu.ts b/src/native/component/addMentionableSelectMenu.ts index e99ddb4c8e..ce23da681a 100644 --- a/src/native/component/addMentionableSelectMenu.ts +++ b/src/native/component/addMentionableSelectMenu.ts @@ -1,4 +1,9 @@ -import { MentionableSelectMenuBuilder, SelectMenuDefaultValueType, User } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, MentionableSelectMenuBuilder, SelectMenuDefaultValueType, User } from "discord.js" import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -50,6 +55,7 @@ export default new NativeFunction({ execute(ctx, [ id, placeholder, min, max, disabled, defaults ]) { const menu = new MentionableSelectMenuBuilder() .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id) .setDefaultValues(defaults.map(x => { return { @@ -62,7 +68,9 @@ export default new NativeFunction({ if (min) menu.setMinValues(min) if (max) menu.setMaxValues(max) - ctx.container.actionRow?.addComponents(menu) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setMentionableSelectMenuComponent(menu) + else ctx.container.actionRow?.addComponents(menu) + return this.success() } }) \ No newline at end of file diff --git a/src/native/component/addMentionableSelectMenuTo.ts b/src/native/component/addMentionableSelectMenuTo.ts index 5393c36df8..43c74f8880 100644 --- a/src/native/component/addMentionableSelectMenuTo.ts +++ b/src/native/component/addMentionableSelectMenuTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, createComponentBuilder, MentionableSelectMenuBuilder, SelectMenuDefaultValueType, User } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/component/addOption.ts b/src/native/component/addOption.ts index d7904635ba..fef9db41f7 100644 --- a/src/native/component/addOption.ts +++ b/src/native/component/addOption.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APISelectMenuOption, BaseSelectMenuBuilder, parseEmoji } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$addOption", @@ -43,21 +49,21 @@ export default new NativeFunction({ }, ], execute(ctx, [name, desc, value, emoji, def]) { - const menu = ctx.container.actionRow?.components[0] - - const data: APISelectMenuOption = { - label: name, - description: desc || undefined, - value, - default: def || false, - emoji: emoji - ? (parseEmoji(emoji) as APISelectMenuOption["emoji"]) ?? { - name: emoji, - } - : undefined, - } + const menu = getLastComponent(ctx) if (menu instanceof BaseSelectMenuBuilder && "addOptions" in menu) { + const data: APISelectMenuOption = { + label: name, + description: desc || undefined, + value, + default: def || false, + emoji: emoji + ? (parseEmoji(emoji) as APISelectMenuOption["emoji"]) ?? { + name: emoji, + } + : undefined, + } + menu.addOptions(data) } diff --git a/src/native/component/addRoleSelectMenu.ts b/src/native/component/addRoleSelectMenu.ts index 3ed3bc2455..a9fefcff37 100644 --- a/src/native/component/addRoleSelectMenu.ts +++ b/src/native/component/addRoleSelectMenu.ts @@ -1,4 +1,9 @@ -import { RoleSelectMenuBuilder } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, RoleSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -51,13 +56,16 @@ export default new NativeFunction({ const menu = new RoleSelectMenuBuilder() .setDefaultRoles(roles) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id) if (placeholder) menu.setPlaceholder(placeholder) if (min) menu.setMinValues(min) if (max) menu.setMaxValues(max) - ctx.container.actionRow?.addComponents(menu) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setRoleSelectMenuComponent(menu) + else ctx.container.actionRow?.addComponents(menu) + return this.success() } }) \ No newline at end of file diff --git a/src/native/component/addRoleSelectMenuTo.ts b/src/native/component/addRoleSelectMenuTo.ts index 31f456f66a..b0c32dc544 100644 --- a/src/native/component/addRoleSelectMenuTo.ts +++ b/src/native/component/addRoleSelectMenuTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, createComponentBuilder, RoleSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/component/addSection.ts b/src/native/component/addSection.ts index 6cf3880587..eaa54f7262 100644 --- a/src/native/component/addSection.ts +++ b/src/native/component/addSection.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" import { ComponentType, ContainerBuilder, SectionBuilder } from "discord.js" diff --git a/src/native/component/addSeparator.ts b/src/native/component/addSeparator.ts index 27eaf42a65..1a7cf62a27 100644 --- a/src/native/component/addSeparator.ts +++ b/src/native/component/addSeparator.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ComponentType, ContainerBuilder, SeparatorBuilder, SeparatorSpacingSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" diff --git a/src/native/component/addStringSelectMenu.ts b/src/native/component/addStringSelectMenu.ts index 1e6ca6bc6e..f5ddf62ffb 100644 --- a/src/native/component/addStringSelectMenu.ts +++ b/src/native/component/addStringSelectMenu.ts @@ -1,4 +1,9 @@ -import { StringSelectMenuBuilder } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, StringSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -41,13 +46,18 @@ export default new NativeFunction({ }, ], execute(ctx, [id, placeholder, disabled, min, max]) { - const menu = new StringSelectMenuBuilder().setCustomId(id).setDisabled(disabled || false) + const menu = new StringSelectMenuBuilder() + .setCustomId(id) + .setDisabled(disabled || false) + .setRequired(ctx.component.required) if (placeholder) menu.setPlaceholder(placeholder) if (min) menu.setMinValues(min) if (max) menu.setMaxValues(max) - ctx.container.actionRow?.addComponents(menu) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setStringSelectMenuComponent(menu) + else ctx.container.actionRow?.addComponents(menu) + return this.success() }, }) \ No newline at end of file diff --git a/src/native/component/addStringSelectMenuTo.ts b/src/native/component/addStringSelectMenuTo.ts index ff06d328a1..815bf0dcbd 100644 --- a/src/native/component/addStringSelectMenuTo.ts +++ b/src/native/component/addStringSelectMenuTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, createComponentBuilder, StringSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/addTextDisplay.ts b/src/native/component/addTextDisplay.ts index a879f99e2b..db8475b932 100644 --- a/src/native/component/addTextDisplay.ts +++ b/src/native/component/addTextDisplay.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ComponentType, ContainerBuilder, TextDisplayBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { addActionRow } from "../../functions/components" @@ -22,7 +27,8 @@ export default new NativeFunction({ const comp = ctx.container.components.at(-1) const text = new TextDisplayBuilder().setContent(content) - if (ctx.container.isInside(ComponentType.Section)) ctx.component.section?.addTextDisplayComponents(text) + if (ctx.container.modal) ctx.container.modal.addTextDisplayComponents(text) + else if (ctx.container.isInside(ComponentType.Section)) ctx.component.section?.addTextDisplayComponents(text) else if (comp instanceof ContainerBuilder && ctx.container.isInside(ComponentType.Container)) comp.addTextDisplayComponents(text) else ctx.container.components.push(text) diff --git a/src/native/component/addTextInput.ts b/src/native/component/addTextInput.ts index dbaa7bfd26..c54ccee96f 100644 --- a/src/native/component/addTextInput.ts +++ b/src/native/component/addTextInput.ts @@ -1,4 +1,9 @@ -import { ActionRowBuilder, TextInputBuilder, TextInputStyle } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, LabelBuilder, TextInputBuilder, TextInputStyle } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -17,7 +22,7 @@ export default new NativeFunction({ }, { name: "name", - description: "The field name", + description: "The field name, will be overwritten when used inside a label", rest: false, required: true, type: ArgType.String, @@ -60,20 +65,20 @@ export default new NativeFunction({ type: ArgType.Number, }, ], - execute(ctx, [id, label, type, required, placeholder, value, min, max]) { + execute(ctx, [id, name, type, required, placeholder, value, min, max]) { const field = new TextInputBuilder() .setCustomId(id) - .setLabel(label) .setStyle(type || TextInputStyle.Paragraph) - .setRequired(required || false) + .setRequired(ctx.component.required || required || false) if (placeholder) field.setPlaceholder(placeholder) if (value) field.setValue(value) if (min) field.setMinLength(min) if (max) field.setMaxLength(max) - ctx.container.modal?.addComponents(new ActionRowBuilder().addComponents(field)) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setTextInputComponent(field) + else ctx.container.modal?.addLabelComponents(new LabelBuilder().setLabel(name).setTextInputComponent(field)) return this.success() }, -}) +}) \ No newline at end of file diff --git a/src/native/component/addThumbnail.ts b/src/native/component/addThumbnail.ts index be7f0666cb..2c5ca83c21 100644 --- a/src/native/component/addThumbnail.ts +++ b/src/native/component/addThumbnail.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ThumbnailBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/addUserSelectMenu.ts b/src/native/component/addUserSelectMenu.ts index 69deed8d92..dc2ee319e8 100644 --- a/src/native/component/addUserSelectMenu.ts +++ b/src/native/component/addUserSelectMenu.ts @@ -1,4 +1,9 @@ -import { UserSelectMenuBuilder } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ComponentType, UserSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -51,13 +56,16 @@ export default new NativeFunction({ const menu = new UserSelectMenuBuilder() .setDefaultUsers(users) .setDisabled(disabled || false) + .setRequired(ctx.component.required) .setCustomId(id) - + if (placeholder) menu.setPlaceholder(placeholder) if (min) menu.setMinValues(min) if (max) menu.setMaxValues(max) - ctx.container.actionRow?.addComponents(menu) + if (ctx.container.isInside(ComponentType.Label)) ctx.component.label?.setUserSelectMenuComponent(menu) + else ctx.container.actionRow?.addComponents(menu) + return this.success() } }) \ No newline at end of file diff --git a/src/native/component/addUserSelectMenuTo.ts b/src/native/component/addUserSelectMenuTo.ts index 098ea0769d..5617cb9be4 100644 --- a/src/native/component/addUserSelectMenuTo.ts +++ b/src/native/component/addUserSelectMenuTo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, createComponentBuilder, UserSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/component/deleteActionRow.ts b/src/native/component/deleteActionRow.ts index 5ea87a8904..c17e75f502 100644 --- a/src/native/component/deleteActionRow.ts +++ b/src/native/component/deleteActionRow.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/component/deleteActionRowFrom.ts b/src/native/component/deleteActionRowFrom.ts index 897ff994e4..6bcca9485e 100644 --- a/src/native/component/deleteActionRowFrom.ts +++ b/src/native/component/deleteActionRowFrom.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createComponentBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/deleteComponent.ts b/src/native/component/deleteComponent.ts index b23e9ea3a6..c2b1aaa754 100644 --- a/src/native/component/deleteComponent.ts +++ b/src/native/component/deleteComponent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/deleteComponentFrom.ts b/src/native/component/deleteComponentFrom.ts index c2c2e161bf..b1db464ec1 100644 --- a/src/native/component/deleteComponentFrom.ts +++ b/src/native/component/deleteComponentFrom.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRow, ActionRowBuilder, ButtonBuilder, MessageActionRowComponent } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/disableButtons.ts b/src/native/component/disableButtons.ts index 56e32ba1a6..e9fa0f2bf6 100644 --- a/src/native/component/disableButtons.ts +++ b/src/native/component/disableButtons.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonBuilder, ActionRowBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/disableButtonsOf.ts b/src/native/component/disableButtonsOf.ts index 55edfb31ac..06a3412053 100644 --- a/src/native/component/disableButtonsOf.ts +++ b/src/native/component/disableButtonsOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonBuilder, ActionRowBuilder, ActionRow, MessageActionRowComponent } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/disableComponents.ts b/src/native/component/disableComponents.ts index 1876e38aed..1b563894a1 100644 --- a/src/native/component/disableComponents.ts +++ b/src/native/component/disableComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/disableComponentsOf.ts b/src/native/component/disableComponentsOf.ts index 07fe86ef93..42345208ee 100644 --- a/src/native/component/disableComponentsOf.ts +++ b/src/native/component/disableComponentsOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRow, ActionRowBuilder, MessageActionRowComponent, MessageActionRowComponentBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/editButton.ts b/src/native/component/editButton.ts index 31bfe42d96..3e48f34034 100644 --- a/src/native/component/editButton.ts +++ b/src/native/component/editButton.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ButtonBuilder, ButtonStyle, ContainerBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { resolveNumericEnum } from "../../functions/enum" @@ -25,24 +30,22 @@ export default new NativeFunction({ }, { name: "label", - description: "The button label", + description: "The new button label", rest: false, type: ArgType.String, - required: true, }, { name: "style", - description: "The style for this button", + description: "The new style for this button", enum: ButtonStyle, type: ArgType.Enum, - required: true, rest: false, }, { name: "emoji", rest: false, type: ArgType.String, - description: "The emoji for this button", + description: "The new emoji for this button", }, { name: "disabled", @@ -66,12 +69,10 @@ export default new NativeFunction({ ) as ButtonBuilder if (!btn) return this.success() - style = resolveNumericEnum(ButtonStyle, style) - - // @ts-ignore - btn.setLabel(label || btn.data.label) - .setStyle(style) + style = (style ? resolveNumericEnum(ButtonStyle, style) : btn.data.style) + if (label) btn.setLabel(label) + if (style) btn.setStyle(style) if (emoji) btn.setEmoji(emoji) if (typeof disabled === "boolean") btn.setDisabled(disabled) diff --git a/src/native/component/editButtonOf.ts b/src/native/component/editButtonOf.ts index 061d57c0df..49a14a576d 100644 --- a/src/native/component/editButtonOf.ts +++ b/src/native/component/editButtonOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRow, ActionRowBuilder, ButtonBuilder, ButtonStyle, MessageActionRowComponent } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { resolveNumericEnum } from "../../functions/enum" @@ -40,24 +45,22 @@ export default new NativeFunction({ }, { name: "label", - description: "The button label", + description: "The new button label", rest: false, type: ArgType.String, - required: true, }, { name: "style", - description: "The style for this button", + description: "The new style for this button", enum: ButtonStyle, type: ArgType.Enum, - required: true, rest: false, }, { name: "emoji", rest: false, type: ArgType.String, - description: "The emoji for this button", + description: "The new emoji for this button", }, { name: "disabled", @@ -80,12 +83,10 @@ export default new NativeFunction({ ) as ButtonBuilder if (!btn) return this.success() - style = resolveNumericEnum(ButtonStyle, style) - - // @ts-ignore - btn.setLabel(label || btn.data.label) - .setStyle(style) + style = (style ? resolveNumericEnum(ButtonStyle, style) : btn.data.style) + if (label) btn.setLabel(label) + if (style) btn.setStyle(style) if (emoji) btn.setEmoji(emoji) if (typeof disabled === "boolean") btn.setDisabled(disabled) diff --git a/src/native/component/editChannelSelectMenu.ts b/src/native/component/editChannelSelectMenu.ts index 9556bac5a4..855fb53ad2 100644 --- a/src/native/component/editChannelSelectMenu.ts +++ b/src/native/component/editChannelSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ChannelSelectMenuBuilder, ContainerBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editChannelSelectMenuOf.ts b/src/native/component/editChannelSelectMenuOf.ts index 32847d22da..d4004a99d2 100644 --- a/src/native/component/editChannelSelectMenuOf.ts +++ b/src/native/component/editChannelSelectMenuOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ChannelSelectMenuBuilder, ContainerBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editMentionableSelectMenu.ts b/src/native/component/editMentionableSelectMenu.ts index e9ceb907d4..65afb29195 100644 --- a/src/native/component/editMentionableSelectMenu.ts +++ b/src/native/component/editMentionableSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, MentionableSelectMenuBuilder, SelectMenuDefaultValueType, User } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editMentionableSelectMenuOf.ts b/src/native/component/editMentionableSelectMenuOf.ts index 2d08270872..3eba6bc7f7 100644 --- a/src/native/component/editMentionableSelectMenuOf.ts +++ b/src/native/component/editMentionableSelectMenuOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, MentionableSelectMenuBuilder, SelectMenuDefaultValueType, User } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editOption.ts b/src/native/component/editOption.ts index 98b5a3f5fe..5ef9c6968f 100644 --- a/src/native/component/editOption.ts +++ b/src/native/component/editOption.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, StringSelectMenuBuilder, parseEmoji } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" @@ -11,7 +16,7 @@ export default new NativeFunction({ args: [ { name: "name", - description: "The option name", + description: "The option name to find", rest: false, required: true, type: ArgType.String @@ -25,21 +30,20 @@ export default new NativeFunction({ }, { name: "description", - description: "The description for this option", + description: "The new description for this option", rest: false, type: ArgType.String, required: false, }, { name: "value", - description: "The value to use for this option", + description: "The new value for this option", rest: false, - required: true, type: ArgType.String, }, { name: "emoji", - description: "The emoji to use for this option", + description: "The new emoji for this option", type: ArgType.String, rest: false, }, diff --git a/src/native/component/editRoleSelectMenu.ts b/src/native/component/editRoleSelectMenu.ts index d1841252aa..9e6104e069 100644 --- a/src/native/component/editRoleSelectMenu.ts +++ b/src/native/component/editRoleSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, RoleSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editRoleSelectMenuOf.ts b/src/native/component/editRoleSelectMenuOf.ts index 2a89ad15e9..5a1a7ef2bc 100644 --- a/src/native/component/editRoleSelectMenuOf.ts +++ b/src/native/component/editRoleSelectMenuOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, RoleSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editStringSelectMenu.ts b/src/native/component/editStringSelectMenu.ts index 991c2135da..d541e7cfe7 100644 --- a/src/native/component/editStringSelectMenu.ts +++ b/src/native/component/editStringSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, StringSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editStringSelectMenuOf.ts b/src/native/component/editStringSelectMenuOf.ts index 9ab959b6f0..907f201c8a 100644 --- a/src/native/component/editStringSelectMenuOf.ts +++ b/src/native/component/editStringSelectMenuOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, StringSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editUserSelectMenu.ts b/src/native/component/editUserSelectMenu.ts index 52610685fd..72f24f882e 100644 --- a/src/native/component/editUserSelectMenu.ts +++ b/src/native/component/editUserSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, UserSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/editUserSelectMenuOf.ts b/src/native/component/editUserSelectMenuOf.ts index f7a0b15d60..59f8fe9f54 100644 --- a/src/native/component/editUserSelectMenuOf.ts +++ b/src/native/component/editUserSelectMenuOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder, ContainerBuilder, UserSelectMenuBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/component/enableButtons.ts b/src/native/component/enableButtons.ts index b5088dac33..815a9c4b28 100644 --- a/src/native/component/enableButtons.ts +++ b/src/native/component/enableButtons.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonBuilder, ActionRowBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/enableButtonsOf.ts b/src/native/component/enableButtonsOf.ts index d877b6b26f..0006f0e9d9 100644 --- a/src/native/component/enableButtonsOf.ts +++ b/src/native/component/enableButtonsOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonBuilder, ActionRowBuilder, ActionRow, MessageActionRowComponent } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/enableComponents.ts b/src/native/component/enableComponents.ts index b32d475331..e69c272cd4 100644 --- a/src/native/component/enableComponents.ts +++ b/src/native/component/enableComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRowBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/enableComponentsOf.ts b/src/native/component/enableComponentsOf.ts index 97d7608092..12e49d0735 100644 --- a/src/native/component/enableComponentsOf.ts +++ b/src/native/component/enableComponentsOf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRow, ActionRowBuilder, MessageActionRowComponent, MessageActionRowComponentBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/component/setChannelType.ts b/src/native/component/setChannelType.ts index 7626ff46af..bf4bcc5e57 100644 --- a/src/native/component/setChannelType.ts +++ b/src/native/component/setChannelType.ts @@ -1,5 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelSelectMenuBuilder, ChannelType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" +import { getLastComponent } from "../../functions/components" export default new NativeFunction({ name: "$setChannelType", @@ -19,7 +25,7 @@ export default new NativeFunction({ } ], execute(ctx, [ types ]) { - const menu = ctx.container.actionRow?.components[0] + const menu = getLastComponent(ctx) if (menu instanceof ChannelSelectMenuBuilder) { menu.setChannelTypes(types) } diff --git a/src/native/condition/and.ts b/src/native/condition/and.ts index 9bd33371e3..90caf4f1d8 100644 --- a/src/native/condition/and.ts +++ b/src/native/condition/and.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/condition/checkCondition.ts b/src/native/condition/checkCondition.ts index e45d664092..8c00b5032e 100644 --- a/src/native/condition/checkCondition.ts +++ b/src/native/condition/checkCondition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/condition/isBoolean.ts b/src/native/condition/isBoolean.ts index 7ae2897edb..44b77491fc 100644 --- a/src/native/condition/isBoolean.ts +++ b/src/native/condition/isBoolean.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/condition/isValidHex.ts b/src/native/condition/isValidHex.ts index 57f57f4edf..457aa7f881 100644 --- a/src/native/condition/isValidHex.ts +++ b/src/native/condition/isValidHex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export const MaxHexIntValue = 0xffffff as const diff --git a/src/native/condition/isValidLink.ts b/src/native/condition/isValidLink.ts index 7898ffbce5..2eb44a8c0b 100644 --- a/src/native/condition/isValidLink.ts +++ b/src/native/condition/isValidLink.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export const LinkRegex = diff --git a/src/native/condition/or.ts b/src/native/condition/or.ts index 211d85a557..110ad2253d 100644 --- a/src/native/condition/or.ts +++ b/src/native/condition/or.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/channelCooldown.ts b/src/native/cooldown/channelCooldown.ts index f3df5ddef8..00068db436 100644 --- a/src/native/cooldown/channelCooldown.ts +++ b/src/native/cooldown/channelCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/cooldown.ts b/src/native/cooldown/cooldown.ts index 0308e6136a..6837c6f2f2 100644 --- a/src/native/cooldown/cooldown.ts +++ b/src/native/cooldown/cooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/deleteChannelCooldown.ts b/src/native/cooldown/deleteChannelCooldown.ts index 15eb6720b7..27d3c1e9a5 100644 --- a/src/native/cooldown/deleteChannelCooldown.ts +++ b/src/native/cooldown/deleteChannelCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/deleteCooldown.ts b/src/native/cooldown/deleteCooldown.ts index 9e4aeba5a2..cac1fd1213 100644 --- a/src/native/cooldown/deleteCooldown.ts +++ b/src/native/cooldown/deleteCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/deleteGuildCooldown.ts b/src/native/cooldown/deleteGuildCooldown.ts index afde62767e..0365e14968 100644 --- a/src/native/cooldown/deleteGuildCooldown.ts +++ b/src/native/cooldown/deleteGuildCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/deleteMemberCooldown.ts b/src/native/cooldown/deleteMemberCooldown.ts index 96edf9adc2..aa4e9c8935 100644 --- a/src/native/cooldown/deleteMemberCooldown.ts +++ b/src/native/cooldown/deleteMemberCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/deleteUserCooldown.ts b/src/native/cooldown/deleteUserCooldown.ts index 6ca23ef1bb..546621bf03 100644 --- a/src/native/cooldown/deleteUserCooldown.ts +++ b/src/native/cooldown/deleteUserCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/getChannelCooldownTime.ts b/src/native/cooldown/getChannelCooldownTime.ts index 55b294d8be..682ad7867b 100644 --- a/src/native/cooldown/getChannelCooldownTime.ts +++ b/src/native/cooldown/getChannelCooldownTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/getCooldownTime.ts b/src/native/cooldown/getCooldownTime.ts index c603be0333..386ee9814f 100644 --- a/src/native/cooldown/getCooldownTime.ts +++ b/src/native/cooldown/getCooldownTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/getGuildCooldownTime.ts b/src/native/cooldown/getGuildCooldownTime.ts index 45e8f75862..b703c5fdd9 100644 --- a/src/native/cooldown/getGuildCooldownTime.ts +++ b/src/native/cooldown/getGuildCooldownTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/getMemberCooldownTime.ts b/src/native/cooldown/getMemberCooldownTime.ts index 66abc90797..2f08dffe2c 100644 --- a/src/native/cooldown/getMemberCooldownTime.ts +++ b/src/native/cooldown/getMemberCooldownTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/getUserCooldownTime.ts b/src/native/cooldown/getUserCooldownTime.ts index 61397f1333..869ba83e0f 100644 --- a/src/native/cooldown/getUserCooldownTime.ts +++ b/src/native/cooldown/getUserCooldownTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/guildCooldown.ts b/src/native/cooldown/guildCooldown.ts index b234327316..e7333be825 100644 --- a/src/native/cooldown/guildCooldown.ts +++ b/src/native/cooldown/guildCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/memberCooldown.ts b/src/native/cooldown/memberCooldown.ts index 1c01f25666..ba3e54021b 100644 --- a/src/native/cooldown/memberCooldown.ts +++ b/src/native/cooldown/memberCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/cooldown/userCooldown.ts b/src/native/cooldown/userCooldown.ts index 83e298a33f..59c258c4c1 100644 --- a/src/native/cooldown/userCooldown.ts +++ b/src/native/cooldown/userCooldown.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/crypto/createQueryParams.ts b/src/native/crypto/createQueryParams.ts index 1c34cd00b5..08f4b76abb 100644 --- a/src/native/crypto/createQueryParams.ts +++ b/src/native/crypto/createQueryParams.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { stringify } from "node:querystring" diff --git a/src/native/crypto/decodeURI.ts b/src/native/crypto/decodeURI.ts index f6dfe2d9ee..6f6f7d7f3f 100644 --- a/src/native/crypto/decodeURI.ts +++ b/src/native/crypto/decodeURI.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/crypto/decodeURIComponent.ts b/src/native/crypto/decodeURIComponent.ts index e041eda9ce..9b30607c53 100644 --- a/src/native/crypto/decodeURIComponent.ts +++ b/src/native/crypto/decodeURIComponent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/crypto/decrypt.ts b/src/native/crypto/decrypt.ts index bb2588f293..b378bcee3e 100644 --- a/src/native/crypto/decrypt.ts +++ b/src/native/crypto/decrypt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createDecipheriv } from "crypto" import { ArgType, NativeFunction } from "../../structures" import { deriveKey } from "./encrypt" diff --git a/src/native/crypto/deflate.ts b/src/native/crypto/deflate.ts index 4b1d5a12cc..5ab7887341 100644 --- a/src/native/crypto/deflate.ts +++ b/src/native/crypto/deflate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { deflateSync, inflateSync } from "zlib" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/crypto/encodeURI.ts b/src/native/crypto/encodeURI.ts index 9e6439a6ad..94c361a91f 100644 --- a/src/native/crypto/encodeURI.ts +++ b/src/native/crypto/encodeURI.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/crypto/encodeURIComponent.ts b/src/native/crypto/encodeURIComponent.ts index ffd25adb42..85f7fb1923 100644 --- a/src/native/crypto/encodeURIComponent.ts +++ b/src/native/crypto/encodeURIComponent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/crypto/encrypt.ts b/src/native/crypto/encrypt.ts index ebb1d8fbc0..a71d11a2e2 100644 --- a/src/native/crypto/encrypt.ts +++ b/src/native/crypto/encrypt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createCipheriv, scryptSync } from "crypto" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/crypto/inflate.ts b/src/native/crypto/inflate.ts index 3e0f41e2df..fc56e2e4b0 100644 --- a/src/native/crypto/inflate.ts +++ b/src/native/crypto/inflate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inflateSync } from "zlib" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/crypto/md5.ts b/src/native/crypto/md5.ts index c5d108bee8..8080fe5caa 100644 --- a/src/native/crypto/md5.ts +++ b/src/native/crypto/md5.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createHash, randomUUID } from "crypto" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/crypto/randomBytes.ts b/src/native/crypto/randomBytes.ts index 86838ae675..084c173af7 100644 --- a/src/native/crypto/randomBytes.ts +++ b/src/native/crypto/randomBytes.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createCipheriv, createDecipheriv, randomBytes } from "crypto" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/crypto/sha256.ts b/src/native/crypto/sha256.ts index 5969f75665..57d7e00331 100644 --- a/src/native/crypto/sha256.ts +++ b/src/native/crypto/sha256.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createHash, randomUUID } from "crypto" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/crypto/sha512.ts b/src/native/crypto/sha512.ts index 44e1d30ab1..17ed0ae126 100644 --- a/src/native/crypto/sha512.ts +++ b/src/native/crypto/sha512.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { createHash, randomUUID } from "crypto" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/embed/addField.ts b/src/native/embed/addField.ts index f36ea46707..b892e0daeb 100644 --- a/src/native/embed/addField.ts +++ b/src/native/embed/addField.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EmbedField } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/embed/author.ts b/src/native/embed/author.ts index 297ed83569..97f30c4371 100644 --- a/src/native/embed/author.ts +++ b/src/native/embed/author.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/color.ts b/src/native/embed/color.ts index 5bfa182951..9a1cacadb4 100644 --- a/src/native/embed/color.ts +++ b/src/native/embed/color.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ColorResolvable, Colors } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/embed/deleteField.ts b/src/native/embed/deleteField.ts index 7f9b56a3de..d8155a4692 100644 --- a/src/native/embed/deleteField.ts +++ b/src/native/embed/deleteField.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/description.ts b/src/native/embed/description.ts index f17668f5a1..6941382358 100644 --- a/src/native/embed/description.ts +++ b/src/native/embed/description.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/editField.ts b/src/native/embed/editField.ts index 2a4b8757ef..0dda176423 100644 --- a/src/native/embed/editField.ts +++ b/src/native/embed/editField.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/footer.ts b/src/native/embed/footer.ts index 29cecc9ce9..8ddae5a838 100644 --- a/src/native/embed/footer.ts +++ b/src/native/embed/footer.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/image.ts b/src/native/embed/image.ts index 0e64e8e7cc..0724b86907 100644 --- a/src/native/embed/image.ts +++ b/src/native/embed/image.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/thumbnail.ts b/src/native/embed/thumbnail.ts index 58bb024df8..cb1a2e86d9 100644 --- a/src/native/embed/thumbnail.ts +++ b/src/native/embed/thumbnail.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/timestamp.ts b/src/native/embed/timestamp.ts index 0d7c825720..8fbfbb100d 100644 --- a/src/native/embed/timestamp.ts +++ b/src/native/embed/timestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/embed/title.ts b/src/native/embed/title.ts index 2acbada24d..e5202c9d0c 100644 --- a/src/native/embed/title.ts +++ b/src/native/embed/title.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/addApplicationEmoji.ts b/src/native/emoji/addApplicationEmoji.ts index 9928637859..6d00366384 100644 --- a/src/native/emoji/addApplicationEmoji.ts +++ b/src/native/emoji/addApplicationEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/addEmoji.ts b/src/native/emoji/addEmoji.ts index 1f3fcd7d4e..0f7a3e8ad7 100644 --- a/src/native/emoji/addEmoji.ts +++ b/src/native/emoji/addEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/deleteApplicationEmojis.ts b/src/native/emoji/deleteApplicationEmojis.ts index 09ab599d63..7194bcb0a5 100644 --- a/src/native/emoji/deleteApplicationEmojis.ts +++ b/src/native/emoji/deleteApplicationEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/deleteEmojiMessageReactions.ts b/src/native/emoji/deleteEmojiMessageReactions.ts index 99ec691f8c..8b3b69abe5 100644 --- a/src/native/emoji/deleteEmojiMessageReactions.ts +++ b/src/native/emoji/deleteEmojiMessageReactions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/emoji/deleteEmojis.ts b/src/native/emoji/deleteEmojis.ts index 4bad4abcbf..e67046041d 100644 --- a/src/native/emoji/deleteEmojis.ts +++ b/src/native/emoji/deleteEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/editApplicationEmoji.ts b/src/native/emoji/editApplicationEmoji.ts index a8823edd3a..6d31f48e45 100644 --- a/src/native/emoji/editApplicationEmoji.ts +++ b/src/native/emoji/editApplicationEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/editEmoji.ts b/src/native/emoji/editEmoji.ts index 88da9d50f9..02aabbe561 100644 --- a/src/native/emoji/editEmoji.ts +++ b/src/native/emoji/editEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/emoji.ts b/src/native/emoji/emoji.ts index 971d6ae8c7..ea2e4a29ae 100644 --- a/src/native/emoji/emoji.ts +++ b/src/native/emoji/emoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/emojiAnimated.ts b/src/native/emoji/emojiAnimated.ts index 482f38e20a..314d542502 100644 --- a/src/native/emoji/emojiAnimated.ts +++ b/src/native/emoji/emojiAnimated.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its animation state", + description: "The emoji to return its animation state", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/emojiAuthorID.ts b/src/native/emoji/emojiAuthorID.ts new file mode 100644 index 0000000000..fe6c1d72ee --- /dev/null +++ b/src/native/emoji/emojiAuthorID.ts @@ -0,0 +1,29 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { User } from "discord.js" +import { ArgType, NativeFunction } from "../../structures" + +export default new NativeFunction({ + name: "$emojiAuthorID", + version: "2.6.0", + description: "Returns the author id of an emoji", + brackets: false, + unwrap: true, + args: [ + { + name: "emoji ID", + description: "The emoji to return its author", + rest: false, + required: true, + type: ArgType.Emoji, + }, + ], + output: ArgType.User, + execute(ctx, [emoji]) { + emoji ??= ctx.emoji! + return this.success(emoji && "author" in emoji ? (emoji.author as User | null)?.id : undefined) + }, +}) \ No newline at end of file diff --git a/src/native/emoji/emojiCount.ts b/src/native/emoji/emojiCount.ts index 9b1269633b..92eead3280 100644 --- a/src/native/emoji/emojiCount.ts +++ b/src/native/emoji/emojiCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum EmojiType { diff --git a/src/native/emoji/emojiCreatedAt.ts b/src/native/emoji/emojiCreatedAt.ts index 595c79a4e4..e54600cefd 100644 --- a/src/native/emoji/emojiCreatedAt.ts +++ b/src/native/emoji/emojiCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its creation timestamp", + description: "The emoji to return its creation timestamp", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/emojiExists.ts b/src/native/emoji/emojiExists.ts index f881014e94..65d2ad47df 100644 --- a/src/native/emoji/emojiExists.ts +++ b/src/native/emoji/emojiExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji to check", + description: "The emoji id to check", rest: false, required: true, type: ArgType.String, diff --git a/src/native/emoji/emojiGuildID.ts b/src/native/emoji/emojiGuildID.ts index fe7d04f6aa..7a29c45b63 100644 --- a/src/native/emoji/emojiGuildID.ts +++ b/src/native/emoji/emojiGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its guild id", + description: "The emoji to return its guild id", rest: false, type: ArgType.GuildEmoji, required: true, diff --git a/src/native/emoji/emojiID.ts b/src/native/emoji/emojiID.ts index 994d59e255..9ad7058588 100644 --- a/src/native/emoji/emojiID.ts +++ b/src/native/emoji/emojiID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/emojiIDs.ts b/src/native/emoji/emojiIDs.ts index 68fc791d5f..73d973ef80 100644 --- a/src/native/emoji/emojiIDs.ts +++ b/src/native/emoji/emojiIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/emoji/emojiIdentifier.ts b/src/native/emoji/emojiIdentifier.ts index 4fe93bd9c2..74cf75c674 100644 --- a/src/native/emoji/emojiIdentifier.ts +++ b/src/native/emoji/emojiIdentifier.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its identifier", + description: "The emoji to return its identifier", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/emojiName.ts b/src/native/emoji/emojiName.ts index c0beaf05ae..0c58f13149 100644 --- a/src/native/emoji/emojiName.ts +++ b/src/native/emoji/emojiName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its name", + description: "The emoji to return its name", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/emojiNames.ts b/src/native/emoji/emojiNames.ts index 1f225ffd5e..9b9bcc86be 100644 --- a/src/native/emoji/emojiNames.ts +++ b/src/native/emoji/emojiNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/emoji/emojiRawData.ts b/src/native/emoji/emojiRawData.ts index 711dfa30ed..e3610e5b85 100644 --- a/src/native/emoji/emojiRawData.ts +++ b/src/native/emoji/emojiRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -5,7 +10,7 @@ export default new NativeFunction({ version: "1.5.0", description: "Returns the raw data of an emoji", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "emoji ID", @@ -17,6 +22,6 @@ export default new NativeFunction({ ], output: ArgType.Json, execute(ctx, [emoji]) { - return this.successJSON(emoji.toJSON()) + return this.successJSON((emoji ?? ctx.emoji)?.toJSON()) }, }) \ No newline at end of file diff --git a/src/native/emoji/emojiRequiresColons.ts b/src/native/emoji/emojiRequiresColons.ts index 898d9cc98e..40dfee233f 100644 --- a/src/native/emoji/emojiRequiresColons.ts +++ b/src/native/emoji/emojiRequiresColons.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its colons state", + description: "The emoji to return its colons state", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/emojiRoles.ts b/src/native/emoji/emojiRoles.ts index 6aa257a800..3ea65183a3 100644 --- a/src/native/emoji/emojiRoles.ts +++ b/src/native/emoji/emojiRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" @@ -11,7 +16,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its roles", + description: "The emoji to return its roles", rest: false, type: ArgType.GuildEmoji, required: true, diff --git a/src/native/emoji/emojiURL.ts b/src/native/emoji/emojiURL.ts index 279b2d7d37..aa2d11e25e 100644 --- a/src/native/emoji/emojiURL.ts +++ b/src/native/emoji/emojiURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -10,7 +15,7 @@ export default new NativeFunction({ args: [ { name: "emoji ID", - description: "The emoji id to return its url", + description: "The emoji to return its url", rest: false, type: ArgType.Emoji, required: true, diff --git a/src/native/emoji/fetchApplicationEmojis.ts b/src/native/emoji/fetchApplicationEmojis.ts index ae384708c3..d9a69b1b48 100644 --- a/src/native/emoji/fetchApplicationEmojis.ts +++ b/src/native/emoji/fetchApplicationEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/getApplicationEmojis.ts b/src/native/emoji/getApplicationEmojis.ts index 32f26c1d4e..39884eb949 100644 --- a/src/native/emoji/getApplicationEmojis.ts +++ b/src/native/emoji/getApplicationEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ApplicationEmojiProperties, ApplicationEmojiProperty } from "../../properties/applicationEmoji" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/emoji/randomApplicationEmojiID.ts b/src/native/emoji/randomApplicationEmojiID.ts index e6378b4ddf..434de47521 100644 --- a/src/native/emoji/randomApplicationEmojiID.ts +++ b/src/native/emoji/randomApplicationEmojiID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/randomEmojiID.ts b/src/native/emoji/randomEmojiID.ts index 8ad901b663..48b6e030fe 100644 --- a/src/native/emoji/randomEmojiID.ts +++ b/src/native/emoji/randomEmojiID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/emoji/randomGuildEmojiID.ts b/src/native/emoji/randomGuildEmojiID.ts index 046c1321ba..e07ecf2c61 100644 --- a/src/native/emoji/randomGuildEmojiID.ts +++ b/src/native/emoji/randomGuildEmojiID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementConsume.ts b/src/native/entitlement/entitlementConsume.ts index 08f03d12d7..70bf9b2836 100644 --- a/src/native/entitlement/entitlementConsume.ts +++ b/src/native/entitlement/entitlementConsume.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementEndTimestamp.ts b/src/native/entitlement/entitlementEndTimestamp.ts index f3fcfe867c..27e9e5225f 100644 --- a/src/native/entitlement/entitlementEndTimestamp.ts +++ b/src/native/entitlement/entitlementEndTimestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementGuildID.ts b/src/native/entitlement/entitlementGuildID.ts index 5b70eacbf2..669f33c7b1 100644 --- a/src/native/entitlement/entitlementGuildID.ts +++ b/src/native/entitlement/entitlementGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementID.ts b/src/native/entitlement/entitlementID.ts index bd457f039c..3afc5163e2 100644 --- a/src/native/entitlement/entitlementID.ts +++ b/src/native/entitlement/entitlementID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementIsActive.ts b/src/native/entitlement/entitlementIsActive.ts index 1a1841ce6e..bbb9e28dc4 100644 --- a/src/native/entitlement/entitlementIsActive.ts +++ b/src/native/entitlement/entitlementIsActive.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementIsConsumed.ts b/src/native/entitlement/entitlementIsConsumed.ts index 2616d1936d..35fd90bb96 100644 --- a/src/native/entitlement/entitlementIsConsumed.ts +++ b/src/native/entitlement/entitlementIsConsumed.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementIsDeleted.ts b/src/native/entitlement/entitlementIsDeleted.ts index 9792b455f9..a14860293c 100644 --- a/src/native/entitlement/entitlementIsDeleted.ts +++ b/src/native/entitlement/entitlementIsDeleted.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementIsGuildSubscription.ts b/src/native/entitlement/entitlementIsGuildSubscription.ts index 9a3fa27c9d..ee83fcabfb 100644 --- a/src/native/entitlement/entitlementIsGuildSubscription.ts +++ b/src/native/entitlement/entitlementIsGuildSubscription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementIsUserSubscription.ts b/src/native/entitlement/entitlementIsUserSubscription.ts index 9f93a5aa38..89489c9a5b 100644 --- a/src/native/entitlement/entitlementIsUserSubscription.ts +++ b/src/native/entitlement/entitlementIsUserSubscription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementSkuID.ts b/src/native/entitlement/entitlementSkuID.ts index 1f26754615..787d6dafa8 100644 --- a/src/native/entitlement/entitlementSkuID.ts +++ b/src/native/entitlement/entitlementSkuID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementStartTimestamp.ts b/src/native/entitlement/entitlementStartTimestamp.ts index d00a1f9d1d..2aee02750e 100644 --- a/src/native/entitlement/entitlementStartTimestamp.ts +++ b/src/native/entitlement/entitlementStartTimestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/entitlementType.ts b/src/native/entitlement/entitlementType.ts index 53272f4cdc..7f10f872be 100644 --- a/src/native/entitlement/entitlementType.ts +++ b/src/native/entitlement/entitlementType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EntitlementType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/entitlement/entitlementUserID.ts b/src/native/entitlement/entitlementUserID.ts index c6a9f33599..93b19c64df 100644 --- a/src/native/entitlement/entitlementUserID.ts +++ b/src/native/entitlement/entitlementUserID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/hasAllEntitlements.ts b/src/native/entitlement/hasAllEntitlements.ts index 4ec3bc09dd..a9cc74cd69 100644 --- a/src/native/entitlement/hasAllEntitlements.ts +++ b/src/native/entitlement/hasAllEntitlements.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/hasAnyEntitlement.ts b/src/native/entitlement/hasAnyEntitlement.ts index e09946b409..a972592783 100644 --- a/src/native/entitlement/hasAnyEntitlement.ts +++ b/src/native/entitlement/hasAnyEntitlement.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/entitlement/hasEntitlement.ts b/src/native/entitlement/hasEntitlement.ts index 66c7ed63ba..f383df94a6 100644 --- a/src/native/entitlement/hasEntitlement.ts +++ b/src/native/entitlement/hasEntitlement.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/event/createScheduledEvent.ts b/src/native/event/createScheduledEvent.ts new file mode 100644 index 0000000000..a77fbca638 --- /dev/null +++ b/src/native/event/createScheduledEvent.ts @@ -0,0 +1,83 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { GuildScheduledEventEntityType, GuildScheduledEventPrivacyLevel, GuildScheduledEventRecurrenceRuleOptions } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$createScheduledEvent", + version: "2.6.0", + description: "Creates a new scheduled event on a guild, returns event id", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to create scheduled event on", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "name", + description: "The name of the scheduled event", + rest: false, + required: true, + type: ArgType.String, + }, + { + name: "description", + description: "The description of the scheduled event", + rest: false, + type: ArgType.String, + }, + { + name: "type", + description: "The entity type of the scheduled event", + rest: false, + required: true, + type: ArgType.Enum, + enum: GuildScheduledEventEntityType, + }, + { + name: "start", + description: "The start time of the scheduled event", + rest: false, + required: true, + type: ArgType.Date, + }, + { + name: "end", + description: "The end time of the scheduled event", + rest: false, + type: ArgType.Date, + }, + { + name: "cover", + description: "The cover image of the scheduled event", + rest: false, + type: ArgType.URL, + }, + ], + output: ArgType.ScheduledEvent, + async execute(ctx, [guild, name, desc, type, start, end, cover]) { + const event = await guild.scheduledEvents.create({ + name, + entityType: type, + privacyLevel: GuildScheduledEventPrivacyLevel.GuildOnly, + scheduledStartTime: start, + scheduledEndTime: end || undefined, + description: desc || undefined, + image: cover || undefined, + channel: ctx.scheduledEvent.channel, + entityMetadata: ctx.scheduledEvent.entityMetadata, + reason: ctx.reason + }).catch(ctx.noop) + + ctx.clearScheduledEventOptions() + + return this.success(event?.id) + }, +}) \ No newline at end of file diff --git a/src/native/event/deleteScheduledEvent.ts b/src/native/event/deleteScheduledEvent.ts new file mode 100644 index 0000000000..dcd9064750 --- /dev/null +++ b/src/native/event/deleteScheduledEvent.ts @@ -0,0 +1,42 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$deleteScheduledEvent", + version: "2.6.0", + description: "Deletes a scheduled event from a guild, returns bool", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to delete scheduled event from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to delete", + rest: false, + required: true, + type: ArgType.ScheduledEvent, + pointer: 0, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [, event]) { + try { + await event.delete() + } catch (error) { + ctx.noop(error) + return this.success(false) + } + + return this.success(true) + }, +}) \ No newline at end of file diff --git a/src/native/event/editScheduledEvent.ts b/src/native/event/editScheduledEvent.ts new file mode 100644 index 0000000000..f72d50f55d --- /dev/null +++ b/src/native/event/editScheduledEvent.ts @@ -0,0 +1,87 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { GuildScheduledEventEntityType } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$editScheduledEvent", + version: "2.6.0", + description: "Edits an existing scheduled event on a guild, returns bool", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to edit scheduled event on", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to edit", + rest: false, + required: true, + type: ArgType.ScheduledEvent, + pointer: 0, + }, + { + name: "name", + description: "The new name for the scheduled event", + rest: false, + type: ArgType.String, + }, + { + name: "description", + description: "The new description for the scheduled event", + rest: false, + type: ArgType.String, + }, + { + name: "type", + description: "The new entity type for the scheduled event", + rest: false, + type: ArgType.Enum, + enum: GuildScheduledEventEntityType, + }, + { + name: "start", + description: "The new start time for the scheduled event", + rest: false, + type: ArgType.Date, + }, + { + name: "end", + description: "The new end time for the scheduled event", + rest: false, + type: ArgType.Date, + }, + { + name: "cover", + description: "The new cover image for the scheduled event", + rest: false, + type: ArgType.URL, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [, event, name, desc, type, start, end, cover]) { + const edit = await event.edit({ + name: name || undefined, + description: desc || undefined, + entityType: type || undefined, + scheduledStartTime: start || undefined, + scheduledEndTime: end || undefined, + image: cover || undefined, + channel: ctx.scheduledEvent.channel, + entityMetadata: ctx.scheduledEvent.entityMetadata, + reason: ctx.reason + }).catch(ctx.noop) + + ctx.clearScheduledEventOptions() + + return this.success(!!edit) + }, +}) \ No newline at end of file diff --git a/src/native/event/getScheduledEvent.ts b/src/native/event/getScheduledEvent.ts new file mode 100644 index 0000000000..ccf4940bd3 --- /dev/null +++ b/src/native/event/getScheduledEvent.ts @@ -0,0 +1,47 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" +import { ScheduledEventProperties, ScheduledEventProperty } from "../../properties/scheduledEvent" + +export default new NativeFunction({ + name: "$getScheduledEvent", + version: "2.6.0", + description: "Returns a scheduled event of a guild", + unwrap: true, + brackets: false, + args: [ + { + name: "guild ID", + description: "The guild to get scheduled event from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "event ID", + description: "The scheduled event to get", + rest: false, + required: true, + type: ArgType.ScheduledEvent, + pointer: 0, + }, + { + name: "property", + description: "The property of the scheduled event to return", + rest: false, + type: ArgType.Enum, + enum: ScheduledEventProperty + }, + ], + output: [ + ArgType.Json, + ArgType.Unknown + ], + execute(ctx, [, event, prop]) { + if (prop) return this.success(ScheduledEventProperties[prop](event)) + return this.successJSON(event) + }, +}) \ No newline at end of file diff --git a/src/native/event/setScheduledEventChannel.ts b/src/native/event/setScheduledEventChannel.ts new file mode 100644 index 0000000000..4116165902 --- /dev/null +++ b/src/native/event/setScheduledEventChannel.ts @@ -0,0 +1,29 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { BaseChannel, VoiceBasedChannel } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setScheduledEventChannel", + version: "2.6.0", + description: "Sets a channel for the current scheduled event", + unwrap: true, + brackets: true, + args: [ + { + name: "channel ID", + description: "The voice channel of the scheduled event", + rest: false, + required: true, + type: ArgType.Channel, + check: (i: BaseChannel) => i.isVoiceBased() + }, + ], + execute(ctx, [channel]) { + ctx.scheduledEvent.channel = channel as VoiceBasedChannel + return this.success() + }, +}) \ No newline at end of file diff --git a/src/native/event/setScheduledEventLocation.ts b/src/native/event/setScheduledEventLocation.ts new file mode 100644 index 0000000000..8fd4dbb774 --- /dev/null +++ b/src/native/event/setScheduledEventLocation.ts @@ -0,0 +1,28 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setScheduledEventLocation", + version: "2.6.0", + description: "Sets a location for the current scheduled event", + unwrap: true, + brackets: true, + args: [ + { + name: "location", + description: "The location of the scheduled event", + rest: false, + required: true, + type: ArgType.String, + }, + ], + execute(ctx, [location]) { + ctx.scheduledEvent.entityMetadata ??= {} + ctx.scheduledEvent.entityMetadata.location = location + return this.success() + }, +}) \ No newline at end of file diff --git a/src/native/file/appendFile.ts b/src/native/file/appendFile.ts index 1a104e70a3..8fb78fd67f 100644 --- a/src/native/file/appendFile.ts +++ b/src/native/file/appendFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { appendFileSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/copyFile.ts b/src/native/file/copyFile.ts index e0b6866623..fd33d6227c 100644 --- a/src/native/file/copyFile.ts +++ b/src/native/file/copyFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { copyFileSync, cpSync, statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/deleteFile.ts b/src/native/file/deleteFile.ts index 6bfe2628c3..35a935a785 100644 --- a/src/native/file/deleteFile.ts +++ b/src/native/file/deleteFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { rmSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileAccessedAt.ts b/src/native/file/fileAccessedAt.ts index 40c8c9c6c0..743cace165 100644 --- a/src/native/file/fileAccessedAt.ts +++ b/src/native/file/fileAccessedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileBlockCount.ts b/src/native/file/fileBlockCount.ts index 8b4cec9cea..352196bd5f 100644 --- a/src/native/file/fileBlockCount.ts +++ b/src/native/file/fileBlockCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileBlockSize.ts b/src/native/file/fileBlockSize.ts index 7234e6f8e0..989fd05825 100644 --- a/src/native/file/fileBlockSize.ts +++ b/src/native/file/fileBlockSize.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileChangedAt.ts b/src/native/file/fileChangedAt.ts index 308c192b27..100e7ac17a 100644 --- a/src/native/file/fileChangedAt.ts +++ b/src/native/file/fileChangedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileCreatedAt.ts b/src/native/file/fileCreatedAt.ts index 01655e4c3c..f1dab047b3 100644 --- a/src/native/file/fileCreatedAt.ts +++ b/src/native/file/fileCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileExists.ts b/src/native/file/fileExists.ts index e41ed5a3aa..65fb00bc7a 100644 --- a/src/native/file/fileExists.ts +++ b/src/native/file/fileExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { existsSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileModifiedAt.ts b/src/native/file/fileModifiedAt.ts index 539af8bb91..6392455a79 100644 --- a/src/native/file/fileModifiedAt.ts +++ b/src/native/file/fileModifiedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/fileSize.ts b/src/native/file/fileSize.ts index 4f18e44905..df069bcfd0 100644 --- a/src/native/file/fileSize.ts +++ b/src/native/file/fileSize.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/isDirectory.ts b/src/native/file/isDirectory.ts index 6da424a2f8..127aa0a66b 100644 --- a/src/native/file/isDirectory.ts +++ b/src/native/file/isDirectory.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/isFile.ts b/src/native/file/isFile.ts index f930a50147..4ea5df1752 100644 --- a/src/native/file/isFile.ts +++ b/src/native/file/isFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/isSymbolicLink.ts b/src/native/file/isSymbolicLink.ts index 3adb6b1ec1..8d216c2993 100644 --- a/src/native/file/isSymbolicLink.ts +++ b/src/native/file/isSymbolicLink.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/mkdir.ts b/src/native/file/mkdir.ts index 3e8c2b5eb2..dce53ea37d 100644 --- a/src/native/file/mkdir.ts +++ b/src/native/file/mkdir.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { mkdirSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/mktdir.ts b/src/native/file/mktdir.ts index a33bfc5681..d171a13804 100644 --- a/src/native/file/mktdir.ts +++ b/src/native/file/mktdir.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { mkdtempSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/moveFile.ts b/src/native/file/moveFile.ts index 4e4ed5bfe4..152e634756 100644 --- a/src/native/file/moveFile.ts +++ b/src/native/file/moveFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { copyFileSync, cpSync, rmSync, statSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/pathJoin.ts b/src/native/file/pathJoin.ts index 996f780f9d..9f9cf0a44e 100644 --- a/src/native/file/pathJoin.ts +++ b/src/native/file/pathJoin.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import path from "path" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/pathResolve.ts b/src/native/file/pathResolve.ts index d4d9fd60b9..932e39981a 100644 --- a/src/native/file/pathResolve.ts +++ b/src/native/file/pathResolve.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import path from "path" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/readDir.ts b/src/native/file/readDir.ts index de40b7e1e4..a90491bedd 100644 --- a/src/native/file/readDir.ts +++ b/src/native/file/readDir.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { readdirSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/file/readFile.ts b/src/native/file/readFile.ts index 7ef30c5a90..7e909aafa0 100644 --- a/src/native/file/readFile.ts +++ b/src/native/file/readFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { readFileSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/renameFile.ts b/src/native/file/renameFile.ts index bc11f65fb1..604485bc41 100644 --- a/src/native/file/renameFile.ts +++ b/src/native/file/renameFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { renameSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/symlink.ts b/src/native/file/symlink.ts index 95ad9eaf67..7bcd13bdb1 100644 --- a/src/native/file/symlink.ts +++ b/src/native/file/symlink.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { symlinkSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/truncateFile.ts b/src/native/file/truncateFile.ts index 1f18a6bad8..424a68185d 100644 --- a/src/native/file/truncateFile.ts +++ b/src/native/file/truncateFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { truncateSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/file/writeFile.ts b/src/native/file/writeFile.ts index 5d383b4435..8c16d29071 100644 --- a/src/native/file/writeFile.ts +++ b/src/native/file/writeFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { writeFileSync } from "fs" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/formatting/bold.ts b/src/native/formatting/bold.ts index fad8974b67..a29bf58462 100644 --- a/src/native/formatting/bold.ts +++ b/src/native/formatting/bold.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/codeBlock.ts b/src/native/formatting/codeBlock.ts index 1fd1b1e4df..b44fa287f0 100644 --- a/src/native/formatting/codeBlock.ts +++ b/src/native/formatting/codeBlock.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold, codeBlock } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { MarkdownEscapeRegex } from "./inlineCode" diff --git a/src/native/formatting/hyperlink.ts b/src/native/formatting/hyperlink.ts index 3bbf42b309..72b74ff854 100644 --- a/src/native/formatting/hyperlink.ts +++ b/src/native/formatting/hyperlink.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/inlineCode.ts b/src/native/formatting/inlineCode.ts index f722af6d23..5db0e88459 100644 --- a/src/native/formatting/inlineCode.ts +++ b/src/native/formatting/inlineCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/italic.ts b/src/native/formatting/italic.ts index b9d3240d71..60480053b9 100644 --- a/src/native/formatting/italic.ts +++ b/src/native/formatting/italic.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { italic } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/spoiler.ts b/src/native/formatting/spoiler.ts index fcd59acee3..caee9ccf6d 100644 --- a/src/native/formatting/spoiler.ts +++ b/src/native/formatting/spoiler.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold, spoiler } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/strikethrough.ts b/src/native/formatting/strikethrough.ts index ec7351196a..5cf92d76a1 100644 --- a/src/native/formatting/strikethrough.ts +++ b/src/native/formatting/strikethrough.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { bold, strikethrough } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/subtext.ts b/src/native/formatting/subtext.ts index 825a9a95de..4fed4e2d8c 100644 --- a/src/native/formatting/subtext.ts +++ b/src/native/formatting/subtext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { subtext } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/formatting/underline.ts b/src/native/formatting/underline.ts index ba4125e45f..3c0227b84e 100644 --- a/src/native/formatting/underline.ts +++ b/src/native/formatting/underline.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { underline } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/createGuild.ts b/src/native/guild/createGuild.ts index 1cc70ac9e1..263600acd5 100644 --- a/src/native/guild/createGuild.ts +++ b/src/native/guild/createGuild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/createGuildTemplate.ts b/src/native/guild/createGuildTemplate.ts index c003ee7c02..2914ca49ed 100644 --- a/src/native/guild/createGuildTemplate.ts +++ b/src/native/guild/createGuildTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/deleteGuild.ts b/src/native/guild/deleteGuild.ts index 01084101b7..134ca634e9 100644 --- a/src/native/guild/deleteGuild.ts +++ b/src/native/guild/deleteGuild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/deleteGuildApplicationCommands.ts b/src/native/guild/deleteGuildApplicationCommands.ts index 457a3fbd23..79be6ebce2 100644 --- a/src/native/guild/deleteGuildApplicationCommands.ts +++ b/src/native/guild/deleteGuildApplicationCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/deleteGuildTemplate.ts b/src/native/guild/deleteGuildTemplate.ts index 2e47b631c6..56ee9723c7 100644 --- a/src/native/guild/deleteGuildTemplate.ts +++ b/src/native/guild/deleteGuildTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/editGuildTemplate.ts b/src/native/guild/editGuildTemplate.ts index dbb3670343..7ef1fcf426 100644 --- a/src/native/guild/editGuildTemplate.ts +++ b/src/native/guild/editGuildTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/getGuildInvite.ts b/src/native/guild/getGuildInvite.ts index 5c3c3659f5..997904e1ec 100644 --- a/src/native/guild/getGuildInvite.ts +++ b/src/native/guild/getGuildInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { InviteProperties, InviteProperty } from "../../properties/invite" diff --git a/src/native/guild/getGuildPreview.ts b/src/native/guild/getGuildPreview.ts index c1ee08a31f..20da1eb9bd 100644 --- a/src/native/guild/getGuildPreview.ts +++ b/src/native/guild/getGuildPreview.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildPreviewProperties, GuildPreviewProperty } from "../../properties/guild" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/getGuildTemplate.ts b/src/native/guild/getGuildTemplate.ts index 908170a268..1d11a30fa7 100644 --- a/src/native/guild/getGuildTemplate.ts +++ b/src/native/guild/getGuildTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum TemplateProperty { diff --git a/src/native/guild/guildAfkChannelID.ts b/src/native/guild/guildAfkChannelID.ts index db83668c9b..9c30870b69 100644 --- a/src/native/guild/guildAfkChannelID.ts +++ b/src/native/guild/guildAfkChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildAfkTimeout.ts b/src/native/guild/guildAfkTimeout.ts index 338fa804e9..433f91d93e 100644 --- a/src/native/guild/guildAfkTimeout.ts +++ b/src/native/guild/guildAfkTimeout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildApproximateMemberCount.ts b/src/native/guild/guildApproximateMemberCount.ts index de1e93a5f2..e9280544a7 100644 --- a/src/native/guild/guildApproximateMemberCount.ts +++ b/src/native/guild/guildApproximateMemberCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildApproximatePresenceCount.ts b/src/native/guild/guildApproximatePresenceCount.ts index a3ed419f58..709cd210aa 100644 --- a/src/native/guild/guildApproximatePresenceCount.ts +++ b/src/native/guild/guildApproximatePresenceCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildAutomodRules.ts b/src/native/guild/guildAutomodRules.ts index f61c7865c1..2f7007cf91 100644 --- a/src/native/guild/guildAutomodRules.ts +++ b/src/native/guild/guildAutomodRules.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { AutomodRuleProperty, AutomodRuleProperties } from "../../properties/automodRule" import array from "../../functions/array" diff --git a/src/native/guild/guildAvailable.ts b/src/native/guild/guildAvailable.ts index e691eebc4f..bd0621873c 100644 --- a/src/native/guild/guildAvailable.ts +++ b/src/native/guild/guildAvailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildBanReason.ts b/src/native/guild/guildBanReason.ts index fb728d4f9c..aa9acb1774 100644 --- a/src/native/guild/guildBanReason.ts +++ b/src/native/guild/guildBanReason.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildBannedMembers.ts b/src/native/guild/guildBannedMembers.ts index c1b9b1efab..1be5174617 100644 --- a/src/native/guild/guildBannedMembers.ts +++ b/src/native/guild/guildBannedMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import noop from "../../functions/noop" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildBanner.ts b/src/native/guild/guildBanner.ts index 3fc2119e32..09157f489a 100644 --- a/src/native/guild/guildBanner.ts +++ b/src/native/guild/guildBanner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildBoostCount.ts b/src/native/guild/guildBoostCount.ts index 43ca3d9fe9..069867aa13 100644 --- a/src/native/guild/guildBoostCount.ts +++ b/src/native/guild/guildBoostCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildBoostLevel.ts b/src/native/guild/guildBoostLevel.ts index 2407dc80e5..86b5746dea 100644 --- a/src/native/guild/guildBoostLevel.ts +++ b/src/native/guild/guildBoostLevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildBoostProgressBarEnabled.ts b/src/native/guild/guildBoostProgressBarEnabled.ts index a55761a29c..4d7d6faaf2 100644 --- a/src/native/guild/guildBoostProgressBarEnabled.ts +++ b/src/native/guild/guildBoostProgressBarEnabled.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildBoostRoleID.ts b/src/native/guild/guildBoostRoleID.ts index a1a79e8d03..3aae25b07b 100644 --- a/src/native/guild/guildBoostRoleID.ts +++ b/src/native/guild/guildBoostRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildBoosterIDs.ts b/src/native/guild/guildBoosterIDs.ts index 16eabd9217..54b4dfb4d2 100644 --- a/src/native/guild/guildBoosterIDs.ts +++ b/src/native/guild/guildBoosterIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildBotCount.ts b/src/native/guild/guildBotCount.ts index 3d9ad2a705..5e8bc9a5cf 100644 --- a/src/native/guild/guildBotCount.ts +++ b/src/native/guild/guildBotCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildChannelCount.ts b/src/native/guild/guildChannelCount.ts index 7219e5ca41..120161f987 100644 --- a/src/native/guild/guildChannelCount.ts +++ b/src/native/guild/guildChannelCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildChannelExists.ts b/src/native/guild/guildChannelExists.ts index baf2f942cd..432efd8bda 100644 --- a/src/native/guild/guildChannelExists.ts +++ b/src/native/guild/guildChannelExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildChannelIDs.ts b/src/native/guild/guildChannelIDs.ts index 4279cad21b..afa3beb10b 100644 --- a/src/native/guild/guildChannelIDs.ts +++ b/src/native/guild/guildChannelIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildCount.ts b/src/native/guild/guildCount.ts index 5c31fe42a8..16ce821e37 100644 --- a/src/native/guild/guildCount.ts +++ b/src/native/guild/guildCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildCreatedAt.ts b/src/native/guild/guildCreatedAt.ts index 8f12a84d3e..045c382be8 100644 --- a/src/native/guild/guildCreatedAt.ts +++ b/src/native/guild/guildCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildDefaultMessageNotifications.ts b/src/native/guild/guildDefaultMessageNotifications.ts index 85d714fb0e..16dcb31115 100644 --- a/src/native/guild/guildDefaultMessageNotifications.ts +++ b/src/native/guild/guildDefaultMessageNotifications.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildDescription.ts b/src/native/guild/guildDescription.ts index d3f5383d5e..2dc2d43c83 100644 --- a/src/native/guild/guildDescription.ts +++ b/src/native/guild/guildDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildDiscoverySplash.ts b/src/native/guild/guildDiscoverySplash.ts index 898d020ca7..567f8a2ffe 100644 --- a/src/native/guild/guildDiscoverySplash.ts +++ b/src/native/guild/guildDiscoverySplash.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildDmSpamDetectedAt.ts b/src/native/guild/guildDmSpamDetectedAt.ts index 01db973139..e154460f07 100644 --- a/src/native/guild/guildDmSpamDetectedAt.ts +++ b/src/native/guild/guildDmSpamDetectedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildDmsDisabledUntil.ts b/src/native/guild/guildDmsDisabledUntil.ts index ea25cfc7c6..6e60bd3589 100644 --- a/src/native/guild/guildDmsDisabledUntil.ts +++ b/src/native/guild/guildDmsDisabledUntil.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildEmojiCount.ts b/src/native/guild/guildEmojiCount.ts index 418ed840dd..dd30e69957 100644 --- a/src/native/guild/guildEmojiCount.ts +++ b/src/native/guild/guildEmojiCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { EmojiType } from "../emoji/emojiCount" diff --git a/src/native/guild/guildEmojiExists.ts b/src/native/guild/guildEmojiExists.ts index 2777057d62..ef97e1ac9e 100644 --- a/src/native/guild/guildEmojiExists.ts +++ b/src/native/guild/guildEmojiExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildEmojiIDs.ts b/src/native/guild/guildEmojiIDs.ts index bfc01c2d9f..cd8c17b268 100644 --- a/src/native/guild/guildEmojiIDs.ts +++ b/src/native/guild/guildEmojiIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildEmojiLimit.ts b/src/native/guild/guildEmojiLimit.ts index 8fc09b431a..c449d3d3c3 100644 --- a/src/native/guild/guildEmojiLimit.ts +++ b/src/native/guild/guildEmojiLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildEmojis.ts b/src/native/guild/guildEmojis.ts index 5d134d69fa..6606527876 100644 --- a/src/native/guild/guildEmojis.ts +++ b/src/native/guild/guildEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildExists.ts b/src/native/guild/guildExists.ts index 7deede782d..9fe984c707 100644 --- a/src/native/guild/guildExists.ts +++ b/src/native/guild/guildExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildExplicitContentFilter.ts b/src/native/guild/guildExplicitContentFilter.ts index 26bebd18e0..fa6d33c133 100644 --- a/src/native/guild/guildExplicitContentFilter.ts +++ b/src/native/guild/guildExplicitContentFilter.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications, GuildExplicitContentFilter } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildFeatures.ts b/src/native/guild/guildFeatures.ts index 6490461769..f87c164bda 100644 --- a/src/native/guild/guildFeatures.ts +++ b/src/native/guild/guildFeatures.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildFeature } from "discord.js" import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildHasAnyFeatures.ts b/src/native/guild/guildHasAnyFeatures.ts index 991b81517a..6bf26731d3 100644 --- a/src/native/guild/guildHasAnyFeatures.ts +++ b/src/native/guild/guildHasAnyFeatures.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildFeature } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildHasFeatures.ts b/src/native/guild/guildHasFeatures.ts index 9eb69aa22c..7b41bbd24f 100644 --- a/src/native/guild/guildHasFeatures.ts +++ b/src/native/guild/guildHasFeatures.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildFeature } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildHasTemplate.ts b/src/native/guild/guildHasTemplate.ts index ec357b85bf..0884b125f3 100644 --- a/src/native/guild/guildHasTemplate.ts +++ b/src/native/guild/guildHasTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildHighestRoleID.ts b/src/native/guild/guildHighestRoleID.ts index b30ca1295d..ff34060aa8 100644 --- a/src/native/guild/guildHighestRoleID.ts +++ b/src/native/guild/guildHighestRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildID.ts b/src/native/guild/guildID.ts index ae2afa99f3..befe89e586 100644 --- a/src/native/guild/guildID.ts +++ b/src/native/guild/guildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildIDs.ts b/src/native/guild/guildIDs.ts index 9155eaf135..622bf4ba84 100644 --- a/src/native/guild/guildIDs.ts +++ b/src/native/guild/guildIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildIcon.ts b/src/native/guild/guildIcon.ts index b2ecf08e94..c887e60d32 100644 --- a/src/native/guild/guildIcon.ts +++ b/src/native/guild/guildIcon.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildInviteExists.ts b/src/native/guild/guildInviteExists.ts index 68e6f480f3..c78b242329 100644 --- a/src/native/guild/guildInviteExists.ts +++ b/src/native/guild/guildInviteExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildInvites.ts b/src/native/guild/guildInvites.ts index bb807d30f8..30013b75da 100644 --- a/src/native/guild/guildInvites.ts +++ b/src/native/guild/guildInvites.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { InviteProperties, InviteProperty } from "../../properties/invite" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/guild/guildInvitesDisabledUntil.ts b/src/native/guild/guildInvitesDisabledUntil.ts index c88a8d39f1..52bd9997f0 100644 --- a/src/native/guild/guildInvitesDisabledUntil.ts +++ b/src/native/guild/guildInvitesDisabledUntil.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildLarge.ts b/src/native/guild/guildLarge.ts index 2ae9274676..d59ceb4ffb 100644 --- a/src/native/guild/guildLarge.ts +++ b/src/native/guild/guildLarge.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildLeave.ts b/src/native/guild/guildLeave.ts index a3055ce668..7371a9a016 100644 --- a/src/native/guild/guildLeave.ts +++ b/src/native/guild/guildLeave.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildLowestRoleID.ts b/src/native/guild/guildLowestRoleID.ts index 4b921cf8b1..d245f7162c 100644 --- a/src/native/guild/guildLowestRoleID.ts +++ b/src/native/guild/guildLowestRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMFALevel.ts b/src/native/guild/guildMFALevel.ts index e9d3a80a94..e05929f86f 100644 --- a/src/native/guild/guildMFALevel.ts +++ b/src/native/guild/guildMFALevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications, GuildExplicitContentFilter, GuildMFALevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildMaxStageVideoChannelUsers.ts b/src/native/guild/guildMaxStageVideoChannelUsers.ts index 877cc08cd9..2285d4f05a 100644 --- a/src/native/guild/guildMaxStageVideoChannelUsers.ts +++ b/src/native/guild/guildMaxStageVideoChannelUsers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMaxVideoChannelUsers.ts b/src/native/guild/guildMaxVideoChannelUsers.ts index 52d74e38ff..92bec842ad 100644 --- a/src/native/guild/guildMaxVideoChannelUsers.ts +++ b/src/native/guild/guildMaxVideoChannelUsers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMaximumBitrate.ts b/src/native/guild/guildMaximumBitrate.ts index 327435af04..d145c3edae 100644 --- a/src/native/guild/guildMaximumBitrate.ts +++ b/src/native/guild/guildMaximumBitrate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMaximumMembers.ts b/src/native/guild/guildMaximumMembers.ts index 36595dddc7..0fbab567dc 100644 --- a/src/native/guild/guildMaximumMembers.ts +++ b/src/native/guild/guildMaximumMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMaximumPresences.ts b/src/native/guild/guildMaximumPresences.ts index 56c6614926..ebe1f247d7 100644 --- a/src/native/guild/guildMaximumPresences.ts +++ b/src/native/guild/guildMaximumPresences.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildMemberCount.ts b/src/native/guild/guildMemberCount.ts index 640de1925e..0c2f5880f0 100644 --- a/src/native/guild/guildMemberCount.ts +++ b/src/native/guild/guildMemberCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum PresenceStatus { diff --git a/src/native/guild/guildMemberIDs.ts b/src/native/guild/guildMemberIDs.ts index 866eccc5d9..a5a039c157 100644 --- a/src/native/guild/guildMemberIDs.ts +++ b/src/native/guild/guildMemberIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildNSFWLevel.ts b/src/native/guild/guildNSFWLevel.ts index 0d91596fff..68e4a673ac 100644 --- a/src/native/guild/guildNSFWLevel.ts +++ b/src/native/guild/guildNSFWLevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications, GuildExplicitContentFilter, GuildMFALevel, GuildNSFWLevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildName.ts b/src/native/guild/guildName.ts index a76bbe77b9..522cb5bae3 100644 --- a/src/native/guild/guildName.ts +++ b/src/native/guild/guildName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildNameAcronym.ts b/src/native/guild/guildNameAcronym.ts index b12d2a9f0b..7f8f2fa415 100644 --- a/src/native/guild/guildNameAcronym.ts +++ b/src/native/guild/guildNameAcronym.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildNames.ts b/src/native/guild/guildNames.ts index 39b2e228ab..2272eb52ba 100644 --- a/src/native/guild/guildNames.ts +++ b/src/native/guild/guildNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildOwnerID.ts b/src/native/guild/guildOwnerID.ts index 614846e1d9..c5904c206d 100644 --- a/src/native/guild/guildOwnerID.ts +++ b/src/native/guild/guildOwnerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildPartnered.ts b/src/native/guild/guildPartnered.ts index 6730db0f70..3be4860184 100644 --- a/src/native/guild/guildPartnered.ts +++ b/src/native/guild/guildPartnered.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildPreferredLocale.ts b/src/native/guild/guildPreferredLocale.ts index 8a45e88c72..76fb1cf763 100644 --- a/src/native/guild/guildPreferredLocale.ts +++ b/src/native/guild/guildPreferredLocale.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Locale } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildPublicUpdatesChannelID.ts b/src/native/guild/guildPublicUpdatesChannelID.ts index 740f509009..e2d2f27ec8 100644 --- a/src/native/guild/guildPublicUpdatesChannelID.ts +++ b/src/native/guild/guildPublicUpdatesChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildRaidDetectedAt.ts b/src/native/guild/guildRaidDetectedAt.ts index 980fd00f31..a93ce546b6 100644 --- a/src/native/guild/guildRaidDetectedAt.ts +++ b/src/native/guild/guildRaidDetectedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildRawData.ts b/src/native/guild/guildRawData.ts index c29905def7..6377f7f7b5 100644 --- a/src/native/guild/guildRawData.ts +++ b/src/native/guild/guildRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildRoleCount.ts b/src/native/guild/guildRoleCount.ts index eee8057e12..463cb4c709 100644 --- a/src/native/guild/guildRoleCount.ts +++ b/src/native/guild/guildRoleCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildRoleIDs.ts b/src/native/guild/guildRoleIDs.ts index ee500bd5ac..38b845c785 100644 --- a/src/native/guild/guildRoleIDs.ts +++ b/src/native/guild/guildRoleIDs.ts @@ -1,33 +1,49 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ name: "$guildRoleIDs", version: "1.3.0", - unwrap: true, + description: "Returns every role id of the guild", aliases: [ - "$serverRoleIDs" + "$serverRoleIDs", + "$roleIDs" ], - output: array(), + unwrap: true, brackets: false, - description: "Returns every role id of the guild", args: [ { name: "guild ID", + description: "The guild to get role ids from", rest: false, required: true, type: ArgType.Guild, - description: "The guild to get role ids from" }, { name: "separator", description: "The separator to use for every role", rest: false, type: ArgType.String + }, + { + name: "everyone", + description: "Whether to include the @everyone role, defaults to true", + rest: false, + type: ArgType.Boolean } ], - execute(ctx, [ guild, sep ]) { - guild ??= ctx.guild! - return this.success(guild?.roles.cache.map(x => x.id).join(sep ?? ", ")) + output: array(), + execute(ctx, [ guild, sep, everyone ]) { + return this.success( + (guild ?? ctx.guild)?.roles.cache + .filter((x) => everyone !== false || x.guild.id !== x.id) + .map((x) => x.id) + .join(sep ?? ", ") + ) }, }) \ No newline at end of file diff --git a/src/native/guild/guildRulesChannelID.ts b/src/native/guild/guildRulesChannelID.ts index 50b05033b7..4abbcd3d52 100644 --- a/src/native/guild/guildRulesChannelID.ts +++ b/src/native/guild/guildRulesChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildSafetyAlertsChannelID.ts b/src/native/guild/guildSafetyAlertsChannelID.ts index 5a3e4c4b02..f30adcc228 100644 --- a/src/native/guild/guildSafetyAlertsChannelID.ts +++ b/src/native/guild/guildSafetyAlertsChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildScheduledEvents.ts b/src/native/guild/guildScheduledEvents.ts new file mode 100644 index 0000000000..adbce5ae4f --- /dev/null +++ b/src/native/guild/guildScheduledEvents.ts @@ -0,0 +1,48 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" +import { ScheduledEventProperties, ScheduledEventProperty } from "../../properties/scheduledEvent" +import array from "../../functions/array" + +export default new NativeFunction({ + name: "$guildScheduledEvents", + version: "2.6.0", + description: "Returns all scheduled events of a guild", + unwrap: true, + brackets: false, + args: [ + { + name: "guild ID", + description: "The guild to get scheduled events from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "property", + description: "The property of the scheduled events to return", + rest: false, + type: ArgType.Enum, + enum: ScheduledEventProperty + }, + { + name: "separator", + description: "The separator to use for each property", + rest: false, + type: ArgType.String, + }, + ], + output: [ + ArgType.Json, + array() + ], + async execute(ctx, [ guild, prop, sep ]) { + const events = await (guild ?? ctx.guild)?.scheduledEvents?.fetch().catch(ctx.noop) + + if (prop) return this.success(events?.map((x) => ScheduledEventProperties[prop](x)).join(sep ?? ", ")) + return this.successJSON(events) + }, +}) \ No newline at end of file diff --git a/src/native/guild/guildShardID.ts b/src/native/guild/guildShardID.ts index 1798a2a568..4538ce1224 100644 --- a/src/native/guild/guildShardID.ts +++ b/src/native/guild/guildShardID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildSoundboardLimit.ts b/src/native/guild/guildSoundboardLimit.ts index 7ef5b6d261..8a4251d5d1 100644 --- a/src/native/guild/guildSoundboardLimit.ts +++ b/src/native/guild/guildSoundboardLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildSoundboardSounds.ts b/src/native/guild/guildSoundboardSounds.ts index b122d76657..add575d9cd 100644 --- a/src/native/guild/guildSoundboardSounds.ts +++ b/src/native/guild/guildSoundboardSounds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" import { SoundboardSoundProperties, SoundboardSoundProperty } from "../../properties/sound" diff --git a/src/native/guild/guildSplashURL.ts b/src/native/guild/guildSplashURL.ts index b7765d3420..aaa0ec7179 100644 --- a/src/native/guild/guildSplashURL.ts +++ b/src/native/guild/guildSplashURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildStageInstances.ts b/src/native/guild/guildStageInstances.ts index cfa5990c48..f452706439 100644 --- a/src/native/guild/guildStageInstances.ts +++ b/src/native/guild/guildStageInstances.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { StageProperties, StageProperty } from "../../properties/stage" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildStickerExists.ts b/src/native/guild/guildStickerExists.ts index 58a995081c..c4921790eb 100644 --- a/src/native/guild/guildStickerExists.ts +++ b/src/native/guild/guildStickerExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildStickerIDs.ts b/src/native/guild/guildStickerIDs.ts index d8080d91ab..d9f1f514c2 100644 --- a/src/native/guild/guildStickerIDs.ts +++ b/src/native/guild/guildStickerIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/guild/guildStickerLimit.ts b/src/native/guild/guildStickerLimit.ts index eecebeabfd..85cfb08bc9 100644 --- a/src/native/guild/guildStickerLimit.ts +++ b/src/native/guild/guildStickerLimit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildSystemChannelID.ts b/src/native/guild/guildSystemChannelID.ts index eb8db044f7..5b89772385 100644 --- a/src/native/guild/guildSystemChannelID.ts +++ b/src/native/guild/guildSystemChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildTemplateCode.ts b/src/native/guild/guildTemplateCode.ts index 354d75944f..7fa4b783ad 100644 --- a/src/native/guild/guildTemplateCode.ts +++ b/src/native/guild/guildTemplateCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildTimedOutMembers.ts b/src/native/guild/guildTimedOutMembers.ts index 45dd80cf24..526680df41 100644 --- a/src/native/guild/guildTimedOutMembers.ts +++ b/src/native/guild/guildTimedOutMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildVanityCode.ts b/src/native/guild/guildVanityCode.ts index b1336559a4..d28b87fa06 100644 --- a/src/native/guild/guildVanityCode.ts +++ b/src/native/guild/guildVanityCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildVanityUses.ts b/src/native/guild/guildVanityUses.ts index d672e512fc..300433de81 100644 --- a/src/native/guild/guildVanityUses.ts +++ b/src/native/guild/guildVanityUses.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildVerificationLevel.ts b/src/native/guild/guildVerificationLevel.ts index ef1c136ad7..f3e103f484 100644 --- a/src/native/guild/guildVerificationLevel.ts +++ b/src/native/guild/guildVerificationLevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildVerificationLevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildVerified.ts b/src/native/guild/guildVerified.ts index 957cc41828..c2e793c703 100644 --- a/src/native/guild/guildVerified.ts +++ b/src/native/guild/guildVerified.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/guildWebhooks.ts b/src/native/guild/guildWebhooks.ts index c88edff2f4..c4c126db55 100644 --- a/src/native/guild/guildWebhooks.ts +++ b/src/native/guild/guildWebhooks.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" import { WebhookProperties, WebhookProperty } from "../../properties/webhook" diff --git a/src/native/guild/guildWidgetChannelEnabled.ts b/src/native/guild/guildWidgetChannelEnabled.ts index fd0742841d..9564f3338f 100644 --- a/src/native/guild/guildWidgetChannelEnabled.ts +++ b/src/native/guild/guildWidgetChannelEnabled.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications, GuildExplicitContentFilter } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/guildWidgetChannelID.ts b/src/native/guild/guildWidgetChannelID.ts index 64772c0057..25c6a60353 100644 --- a/src/native/guild/guildWidgetChannelID.ts +++ b/src/native/guild/guildWidgetChannelID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications, GuildExplicitContentFilter } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/randomGuildID.ts b/src/native/guild/randomGuildID.ts index ba3661ada3..30d04f4a01 100644 --- a/src/native/guild/randomGuildID.ts +++ b/src/native/guild/randomGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/registerGuildApplicationCommands.ts b/src/native/guild/registerGuildApplicationCommands.ts index eae9fe02f2..64d26a8201 100644 --- a/src/native/guild/registerGuildApplicationCommands.ts +++ b/src/native/guild/registerGuildApplicationCommands.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildAFKChannel.ts b/src/native/guild/setGuildAFKChannel.ts index 21727e50a1..3c334cd5d5 100644 --- a/src/native/guild/setGuildAFKChannel.ts +++ b/src/native/guild/setGuildAFKChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, VoiceChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildAFKTimeout.ts b/src/native/guild/setGuildAFKTimeout.ts index 667a28a0fc..9bf5bc7ba3 100644 --- a/src/native/guild/setGuildAFKTimeout.ts +++ b/src/native/guild/setGuildAFKTimeout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildBanner.ts b/src/native/guild/setGuildBanner.ts index 93bc160df3..038c9e61b1 100644 --- a/src/native/guild/setGuildBanner.ts +++ b/src/native/guild/setGuildBanner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildBoostProgressBar.ts b/src/native/guild/setGuildBoostProgressBar.ts index ac1f4461ac..eab46e52f3 100644 --- a/src/native/guild/setGuildBoostProgressBar.ts +++ b/src/native/guild/setGuildBoostProgressBar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildDefaultMessageNotifications.ts b/src/native/guild/setGuildDefaultMessageNotifications.ts index 7914fc171b..37c84cfe57 100644 --- a/src/native/guild/setGuildDefaultMessageNotifications.ts +++ b/src/native/guild/setGuildDefaultMessageNotifications.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildDefaultMessageNotifications } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildDiscoverySplash.ts b/src/native/guild/setGuildDiscoverySplash.ts index c57cfc1057..cef67c8e11 100644 --- a/src/native/guild/setGuildDiscoverySplash.ts +++ b/src/native/guild/setGuildDiscoverySplash.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildDmsDisabled.ts b/src/native/guild/setGuildDmsDisabled.ts new file mode 100644 index 0000000000..d9af679473 --- /dev/null +++ b/src/native/guild/setGuildDmsDisabled.ts @@ -0,0 +1,37 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setGuildDmsDisabled", + version: "2.6.0", + description: "Sets the guild's DMs activity disabled for a specific duration, returns bool", + aliases: ["$setServerDmsDisabled"], + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to disable DMs for", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "duration", + description: "The duration for disabling DMs, omit to enable DMs again", + rest: false, + type: ArgType.Time, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [guild, ms]) { + return this.success((await guild.setIncidentActions({ + dmsDisabledUntil: ms ? Date.now() + ms : null, + invitesDisabledUntil: guild.incidentsData?.invitesDisabledUntil + }).catch(() => false)) !== false) + }, +}) \ No newline at end of file diff --git a/src/native/guild/setGuildExplicitContentFilter.ts b/src/native/guild/setGuildExplicitContentFilter.ts index 90627e1a55..10269b6da0 100644 --- a/src/native/guild/setGuildExplicitContentFilter.ts +++ b/src/native/guild/setGuildExplicitContentFilter.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildExplicitContentFilter } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildIcon.ts b/src/native/guild/setGuildIcon.ts index 52c4bdebdc..d13663ea0e 100644 --- a/src/native/guild/setGuildIcon.ts +++ b/src/native/guild/setGuildIcon.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildInvitesDisabled.ts b/src/native/guild/setGuildInvitesDisabled.ts new file mode 100644 index 0000000000..0c08ed2fc9 --- /dev/null +++ b/src/native/guild/setGuildInvitesDisabled.ts @@ -0,0 +1,37 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$setGuildInvitesDisabled", + version: "2.6.0", + description: "Sets the guild's invites disabled for a specific duration, returns bool", + aliases: ["$setServerInvitesDisabled"], + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to disable invites for", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "duration", + description: "The duration for disabling invites, omit to enable invites again", + rest: false, + type: ArgType.Time, + }, + ], + output: ArgType.Boolean, + async execute(ctx, [guild, ms]) { + return this.success((await guild.setIncidentActions({ + invitesDisabledUntil: ms ? Date.now() + ms : null, + dmsDisabledUntil: guild.incidentsData?.dmsDisabledUntil + }).catch(() => false)) !== false) + }, +}) \ No newline at end of file diff --git a/src/native/guild/setGuildMFALevel.ts b/src/native/guild/setGuildMFALevel.ts index 26d24ef703..99201f9f75 100644 --- a/src/native/guild/setGuildMFALevel.ts +++ b/src/native/guild/setGuildMFALevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildMFALevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildName.ts b/src/native/guild/setGuildName.ts index 3c93802a82..e6db07e653 100644 --- a/src/native/guild/setGuildName.ts +++ b/src/native/guild/setGuildName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildOwner.ts b/src/native/guild/setGuildOwner.ts index 881d262d4f..3e14c60f20 100644 --- a/src/native/guild/setGuildOwner.ts +++ b/src/native/guild/setGuildOwner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildPausedInvites.ts b/src/native/guild/setGuildPausedInvites.ts index 0d1a3a13f4..2cf70e7356 100644 --- a/src/native/guild/setGuildPausedInvites.ts +++ b/src/native/guild/setGuildPausedInvites.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildPreferredLocale.ts b/src/native/guild/setGuildPreferredLocale.ts index f2f5711f59..460ddcea01 100644 --- a/src/native/guild/setGuildPreferredLocale.ts +++ b/src/native/guild/setGuildPreferredLocale.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Locale } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildPublicUpdatesChannel.ts b/src/native/guild/setGuildPublicUpdatesChannel.ts index f87037a874..d2943ec383 100644 --- a/src/native/guild/setGuildPublicUpdatesChannel.ts +++ b/src/native/guild/setGuildPublicUpdatesChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildRulesChannel.ts b/src/native/guild/setGuildRulesChannel.ts index 4b99b385db..5072a302f6 100644 --- a/src/native/guild/setGuildRulesChannel.ts +++ b/src/native/guild/setGuildRulesChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildSafetyAlertsChannel.ts b/src/native/guild/setGuildSafetyAlertsChannel.ts index ff77eaf600..6c5577428e 100644 --- a/src/native/guild/setGuildSafetyAlertsChannel.ts +++ b/src/native/guild/setGuildSafetyAlertsChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildSplash.ts b/src/native/guild/setGuildSplash.ts index d326b69a51..db3f4d283c 100644 --- a/src/native/guild/setGuildSplash.ts +++ b/src/native/guild/setGuildSplash.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/guild/setGuildSystemChannel.ts b/src/native/guild/setGuildSystemChannel.ts index 1b0d70f8ea..096e6d27d6 100644 --- a/src/native/guild/setGuildSystemChannel.ts +++ b/src/native/guild/setGuildSystemChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildVerificationLevel.ts b/src/native/guild/setGuildVerificationLevel.ts index bb886bf6fb..d01a1c8d4a 100644 --- a/src/native/guild/setGuildVerificationLevel.ts +++ b/src/native/guild/setGuildVerificationLevel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildVerificationLevel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/setGuildWidgetSettings.ts b/src/native/guild/setGuildWidgetSettings.ts index ab865d0eee..d7cdb6c4cb 100644 --- a/src/native/guild/setGuildWidgetSettings.ts +++ b/src/native/guild/setGuildWidgetSettings.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ForumChannel, GuildChannel, MediaChannel, NewsChannel, StageChannel, TextChannel, VoiceBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/guild/syncGuildTemplate.ts b/src/native/guild/syncGuildTemplate.ts index ce52887ed8..a409b0b80f 100644 --- a/src/native/guild/syncGuildTemplate.ts +++ b/src/native/guild/syncGuildTemplate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/http/httpAddForm.ts b/src/native/http/httpAddForm.ts index b868ee4b6b..5e9db32768 100644 --- a/src/native/http/httpAddForm.ts +++ b/src/native/http/httpAddForm.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { FormData } from "undici" import { NativeFunction } from "../../structures" diff --git a/src/native/http/httpAddHeader.ts b/src/native/http/httpAddHeader.ts index 08b51678ab..6165ba08a2 100644 --- a/src/native/http/httpAddHeader.ts +++ b/src/native/http/httpAddHeader.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpAppendFile.ts b/src/native/http/httpAppendFile.ts index 2e8c7c400b..773fc2468d 100644 --- a/src/native/http/httpAppendFile.ts +++ b/src/native/http/httpAppendFile.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/http/httpAppendValue.ts b/src/native/http/httpAppendValue.ts index 7bc1771a10..00bff3705d 100644 --- a/src/native/http/httpAppendValue.ts +++ b/src/native/http/httpAppendValue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/http/httpGetHeader.ts b/src/native/http/httpGetHeader.ts index 67c3128b15..32e583be17 100644 --- a/src/native/http/httpGetHeader.ts +++ b/src/native/http/httpGetHeader.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpPing.ts b/src/native/http/httpPing.ts index d60577c738..f6640b57b2 100644 --- a/src/native/http/httpPing.ts +++ b/src/native/http/httpPing.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpRemoveHeader.ts b/src/native/http/httpRemoveHeader.ts index f6df5677df..83496ce248 100644 --- a/src/native/http/httpRemoveHeader.ts +++ b/src/native/http/httpRemoveHeader.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpRequest.ts b/src/native/http/httpRequest.ts index 0378efd1e5..e8d21641a1 100644 --- a/src/native/http/httpRequest.ts +++ b/src/native/http/httpRequest.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { fetch } from "undici" import { HTTPContentType } from "../../structures" diff --git a/src/native/http/httpResult.ts b/src/native/http/httpResult.ts index 645f3565a5..954591c777 100644 --- a/src/native/http/httpResult.ts +++ b/src/native/http/httpResult.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpSetBody.ts b/src/native/http/httpSetBody.ts index 21daf7d0dc..a0c6ea8709 100644 --- a/src/native/http/httpSetBody.ts +++ b/src/native/http/httpSetBody.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/http/httpSetContentType.ts b/src/native/http/httpSetContentType.ts index 74f1b626b3..e803bc6d2e 100644 --- a/src/native/http/httpSetContentType.ts +++ b/src/native/http/httpSetContentType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { HTTPContentType } from "../../structures" import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" diff --git a/src/native/interaction/applicationCommandDescription.ts b/src/native/interaction/applicationCommandDescription.ts index 3dcb1b4179..12373d84e7 100644 --- a/src/native/interaction/applicationCommandDescription.ts +++ b/src/native/interaction/applicationCommandDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/applicationCommandDisplay.ts b/src/native/interaction/applicationCommandDisplay.ts index 9c367014b9..40fdaa335e 100644 --- a/src/native/interaction/applicationCommandDisplay.ts +++ b/src/native/interaction/applicationCommandDisplay.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/applicationCommandID.ts b/src/native/interaction/applicationCommandID.ts index 9d5cfb8174..d47081adbc 100644 --- a/src/native/interaction/applicationCommandID.ts +++ b/src/native/interaction/applicationCommandID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/applicationCommandName.ts b/src/native/interaction/applicationCommandName.ts index 3dffda4982..4ff6479a7e 100644 --- a/src/native/interaction/applicationCommandName.ts +++ b/src/native/interaction/applicationCommandName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/applicationCommandOptions.ts b/src/native/interaction/applicationCommandOptions.ts index facf4790a3..7014ddb29e 100644 --- a/src/native/interaction/applicationCommandOptions.ts +++ b/src/native/interaction/applicationCommandOptions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/applicationSubCommandGroupName.ts b/src/native/interaction/applicationSubCommandGroupName.ts index c87145ca0c..cd3b9fb8b6 100644 --- a/src/native/interaction/applicationSubCommandGroupName.ts +++ b/src/native/interaction/applicationSubCommandGroupName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/applicationSubCommandName.ts b/src/native/interaction/applicationSubCommandName.ts index 0ac91f2452..8eb22cbe76 100644 --- a/src/native/interaction/applicationSubCommandName.ts +++ b/src/native/interaction/applicationSubCommandName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/authorizingIntegrationOwners.ts b/src/native/interaction/authorizingIntegrationOwners.ts index e6b434fa11..f06d1d7590 100644 --- a/src/native/interaction/authorizingIntegrationOwners.ts +++ b/src/native/interaction/authorizingIntegrationOwners.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum AuthorizingIntegrationOwnersType { diff --git a/src/native/interaction/autocomplete.ts b/src/native/interaction/autocomplete.ts index 8d5075e44e..9f1b59905f 100644 --- a/src/native/interaction/autocomplete.ts +++ b/src/native/interaction/autocomplete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/context.ts b/src/native/interaction/context.ts index 7273c3a61b..93c3479f1e 100644 --- a/src/native/interaction/context.ts +++ b/src/native/interaction/context.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { InteractionContextType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/customID.ts b/src/native/interaction/customID.ts index 28c5d5bb57..c1244c6705 100644 --- a/src/native/interaction/customID.ts +++ b/src/native/interaction/customID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/interaction/defer.ts b/src/native/interaction/defer.ts index 87c0c6d92d..fb7dc91979 100644 --- a/src/native/interaction/defer.ts +++ b/src/native/interaction/defer.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageFlags } from "discord.js" import { NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/deferUpdate.ts b/src/native/interaction/deferUpdate.ts index ca88d37845..18754be1e2 100644 --- a/src/native/interaction/deferUpdate.ts +++ b/src/native/interaction/deferUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/ephemeral.ts b/src/native/interaction/ephemeral.ts index 399963c85c..21068ef6a9 100644 --- a/src/native/interaction/ephemeral.ts +++ b/src/native/interaction/ephemeral.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/focusedOptionName.ts b/src/native/interaction/focusedOptionName.ts index e6ef6b2436..56eaf8d974 100644 --- a/src/native/interaction/focusedOptionName.ts +++ b/src/native/interaction/focusedOptionName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/focusedOptionValue.ts b/src/native/interaction/focusedOptionValue.ts index c6eacc4653..730a8867a9 100644 --- a/src/native/interaction/focusedOptionValue.ts +++ b/src/native/interaction/focusedOptionValue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/input.ts b/src/native/interaction/input.ts index 982cea6ca1..082a86693f 100644 --- a/src/native/interaction/input.ts +++ b/src/native/interaction/input.ts @@ -1,24 +1,42 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$input", version: "1.0.0", - description: "Returns a value from a text field", + description: "Returns the value from a modal field", brackets: true, unwrap: true, - output: ArgType.String, args: [ { name: "custom ID", - description: "The custom id to get the input field value", + description: "The custom id to get its field value", rest: false, type: ArgType.String, required: true, }, + { + name: "separator", + description: "The separator to use in case of array", + rest: false, + type: ArgType.String, + }, ], - execute(ctx, [id]) { + output: ArgType.String, + execute(ctx, [id, sep]) { + if (!ctx.interaction?.isModalSubmit()) return this.success() + const field = ctx.interaction.fields.getField(id) + return this.success( - ctx.interaction?.isModalSubmit() ? ctx.interaction.fields.getTextInputValue(id) : undefined + "value" in field + ? field.value + : "attachments" in field + ? field.attachments.map((x) => x.url).join(sep ?? ", ") + : field.values.join(sep ?? ", ") ) }, }) diff --git a/src/native/interaction/interactionDelete.ts b/src/native/interaction/interactionDelete.ts index ba35695a6f..86934107b6 100644 --- a/src/native/interaction/interactionDelete.ts +++ b/src/native/interaction/interactionDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { NativeFunction } from "../../structures" diff --git a/src/native/interaction/interactionFollowUp.ts b/src/native/interaction/interactionFollowUp.ts index b08bab6939..4626beda6f 100644 --- a/src/native/interaction/interactionFollowUp.ts +++ b/src/native/interaction/interactionFollowUp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/interactionRawData.ts b/src/native/interaction/interactionRawData.ts index 3eb210cd8b..d7259f746c 100644 --- a/src/native/interaction/interactionRawData.ts +++ b/src/native/interaction/interactionRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/interactionReply.ts b/src/native/interaction/interactionReply.ts index 2e09c8e0b9..072cbcdfbc 100644 --- a/src/native/interaction/interactionReply.ts +++ b/src/native/interaction/interactionReply.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/interactionRequirePremium.ts b/src/native/interaction/interactionRequirePremium.ts index 0c94a03de4..986e895478 100644 --- a/src/native/interaction/interactionRequirePremium.ts +++ b/src/native/interaction/interactionRequirePremium.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Logger, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/interactionUpdate.ts b/src/native/interaction/interactionUpdate.ts index bf12ae13a5..c89c996f51 100644 --- a/src/native/interaction/interactionUpdate.ts +++ b/src/native/interaction/interactionUpdate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/isActivityCommand.ts b/src/native/interaction/isActivityCommand.ts index bea04bba40..747646121d 100644 --- a/src/native/interaction/isActivityCommand.ts +++ b/src/native/interaction/isActivityCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isAnySelectMenu.ts b/src/native/interaction/isAnySelectMenu.ts index dc12aa71d1..29ce5dd441 100644 --- a/src/native/interaction/isAnySelectMenu.ts +++ b/src/native/interaction/isAnySelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isAutocomplete.ts b/src/native/interaction/isAutocomplete.ts index d648311126..8ab70e32b4 100644 --- a/src/native/interaction/isAutocomplete.ts +++ b/src/native/interaction/isAutocomplete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isButton.ts b/src/native/interaction/isButton.ts index 96c9a8153e..bc0b458876 100644 --- a/src/native/interaction/isButton.ts +++ b/src/native/interaction/isButton.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isChannelSelectMenu.ts b/src/native/interaction/isChannelSelectMenu.ts index acb29f2e4b..a3acddb746 100644 --- a/src/native/interaction/isChannelSelectMenu.ts +++ b/src/native/interaction/isChannelSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isCommand.ts b/src/native/interaction/isCommand.ts index cc5e94cf80..543c129f80 100644 --- a/src/native/interaction/isCommand.ts +++ b/src/native/interaction/isCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isContextMenu.ts b/src/native/interaction/isContextMenu.ts index dc9d2ee084..ddc651fcf1 100644 --- a/src/native/interaction/isContextMenu.ts +++ b/src/native/interaction/isContextMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isMentionableSelectMenu.ts b/src/native/interaction/isMentionableSelectMenu.ts index 2d35489405..d2b78a1fa5 100644 --- a/src/native/interaction/isMentionableSelectMenu.ts +++ b/src/native/interaction/isMentionableSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isModal.ts b/src/native/interaction/isModal.ts index 37547437a5..c920a268fb 100644 --- a/src/native/interaction/isModal.ts +++ b/src/native/interaction/isModal.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isRepliable.ts b/src/native/interaction/isRepliable.ts index 32c5cf7531..4f26b5f050 100644 --- a/src/native/interaction/isRepliable.ts +++ b/src/native/interaction/isRepliable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isRoleSelectMenu.ts b/src/native/interaction/isRoleSelectMenu.ts index 6c74c15f43..c316429d9e 100644 --- a/src/native/interaction/isRoleSelectMenu.ts +++ b/src/native/interaction/isRoleSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isSlashCommand.ts b/src/native/interaction/isSlashCommand.ts index 4cee1768bc..ce9ab42c99 100644 --- a/src/native/interaction/isSlashCommand.ts +++ b/src/native/interaction/isSlashCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isStringSelectMenu.ts b/src/native/interaction/isStringSelectMenu.ts index e71fdda016..e0e48950af 100644 --- a/src/native/interaction/isStringSelectMenu.ts +++ b/src/native/interaction/isStringSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/isUserSelectMenu.ts b/src/native/interaction/isUserSelectMenu.ts index b191c9e460..00e6a1fb3f 100644 --- a/src/native/interaction/isUserSelectMenu.ts +++ b/src/native/interaction/isUserSelectMenu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/launchActivity.ts b/src/native/interaction/launchActivity.ts index 060e66da94..28d1c0c7de 100644 --- a/src/native/interaction/launchActivity.ts +++ b/src/native/interaction/launchActivity.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/locale.ts b/src/native/interaction/locale.ts index 5ef950dda6..5ed53c267c 100644 --- a/src/native/interaction/locale.ts +++ b/src/native/interaction/locale.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Locale } from "discord.js" import { NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/interaction/modal.ts b/src/native/interaction/modal.ts index 9ad3a7829f..c626f67ccc 100644 --- a/src/native/interaction/modal.ts +++ b/src/native/interaction/modal.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ModalBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" @@ -24,8 +29,8 @@ export default new NativeFunction({ }, ], execute(ctx, [id, title]) { - ctx.container.modal = new ModalBuilder().setCustomId(id).setTitle(title) + if (ctx.interaction) ctx.container.modal = new ModalBuilder().setCustomId(id).setTitle(title) return this.success() }, -}) +}) \ No newline at end of file diff --git a/src/native/interaction/option.ts b/src/native/interaction/option.ts index f5ed4499d7..2177d541b0 100644 --- a/src/native/interaction/option.ts +++ b/src/native/interaction/option.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/interaction/selectMenuValues.ts b/src/native/interaction/selectMenuValues.ts index 54c9fd30e0..30bbf1270d 100644 --- a/src/native/interaction/selectMenuValues.ts +++ b/src/native/interaction/selectMenuValues.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/interaction/showModal.ts b/src/native/interaction/showModal.ts index 23972280f6..3c079cd80d 100644 --- a/src/native/interaction/showModal.ts +++ b/src/native/interaction/showModal.ts @@ -1,10 +1,14 @@ -import noop from "../../functions/noop" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ name: "$showModal", version: "1.4.0", - description: "Submits the modal", + description: "Shows the modal immediately", unwrap: false, async execute(ctx) { if (ctx.interaction && "showModal" in ctx.interaction && ctx.container.modal) { diff --git a/src/native/interaction/targetMember.ts b/src/native/interaction/targetMember.ts index 724949fd8b..d7a530c792 100644 --- a/src/native/interaction/targetMember.ts +++ b/src/native/interaction/targetMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { MemberProperties, MemberProperty } from "../../properties/member" diff --git a/src/native/interaction/targetMessage.ts b/src/native/interaction/targetMessage.ts index 4673ef7e08..a871be6c02 100644 --- a/src/native/interaction/targetMessage.ts +++ b/src/native/interaction/targetMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { MessageProperties, MessageProperty } from "../../properties/message" diff --git a/src/native/interaction/targetMessageEmbeds.ts b/src/native/interaction/targetMessageEmbeds.ts index fc8ffaa7bf..f01d08b935 100644 --- a/src/native/interaction/targetMessageEmbeds.ts +++ b/src/native/interaction/targetMessageEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Embed, EmbedBuilder } from "discord.js" import { EmbedProperties, EmbedProperty } from "../../properties/embed" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/invite/deleteInvite.ts b/src/native/invite/deleteInvite.ts index 61888bf4ff..95f60530f1 100644 --- a/src/native/invite/deleteInvite.ts +++ b/src/native/invite/deleteInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/invite/getInvite.ts b/src/native/invite/getInvite.ts index d31c9634b7..284e067afd 100644 --- a/src/native/invite/getInvite.ts +++ b/src/native/invite/getInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { InviteProperties, InviteProperty } from "../../properties/invite" diff --git a/src/native/invite/inviteExists.ts b/src/native/invite/inviteExists.ts index b1a5ecd78e..a28d73b65e 100644 --- a/src/native/invite/inviteExists.ts +++ b/src/native/invite/inviteExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/invite/inviterCode.ts b/src/native/invite/inviterCode.ts index 82c0007e59..dfd2267aa2 100644 --- a/src/native/invite/inviterCode.ts +++ b/src/native/invite/inviterCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/native/invite/inviterID.ts b/src/native/invite/inviterID.ts index 3777104fac..ed3eae2528 100644 --- a/src/native/invite/inviterID.ts +++ b/src/native/invite/inviterID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { InviteTracker } from "../../structures/trackers/InviteTracker" diff --git a/src/native/json/isJSON.ts b/src/native/json/isJSON.ts index 2763b5c81f..cfc36fcaee 100644 --- a/src/native/json/isJSON.ts +++ b/src/native/json/isJSON.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -6,7 +11,7 @@ export default new NativeFunction({ aliases: [ "$isValidJSON" ], - description: "Checks whether given json is valid", + description: "Checks whether given JSON is valid", unwrap: true, brackets: true, args: [ diff --git a/src/native/json/jsonAssign.ts b/src/native/json/jsonAssign.ts new file mode 100644 index 0000000000..f8b4d8d60e --- /dev/null +++ b/src/native/json/jsonAssign.ts @@ -0,0 +1,45 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" + +export default new NativeFunction({ + name: "$jsonAssign", + version: "2.6.0", + description: "Combines multiple JSON objects into a single JSON object", + brackets: true, + unwrap: true, + args: [ + { + name: "variable", + description: "The variable that holds the target object", + required: true, + type: ArgType.String, + rest: false + }, + { + name: "other variable", + description: "The variable to load the result to, leave empty to return output", + type: ArgType.String, + rest: false + }, + { + name: "objects", + description: "The objects from which to copy properties", + type: ArgType.Json, + required: true, + rest: true + } + ], + output: ArgType.Json, + execute(ctx, [ var1, var2, objects ]) { + const json = ctx.getEnvironmentKey(var1) + if (!json) return this.success() + + const obj = Object.assign(json, ...objects) + if (var2) return this.success(void ctx.setEnvironmentKey(var2, obj)) + else return this.successJSON(obj) + } +}) \ No newline at end of file diff --git a/src/native/json/jsonDelete.ts b/src/native/json/jsonDelete.ts index a7a50a7069..ba8a9596c6 100644 --- a/src/native/json/jsonDelete.ts +++ b/src/native/json/jsonDelete.ts @@ -1,9 +1,14 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ name: "$jsonDelete", version: "1.4.0", - description: "Delete a key from a traversed json", + description: "Deletes a key from a traversed JSON", unwrap: true, brackets: true, output: ArgType.Boolean, diff --git a/src/native/json/jsonEntries.ts b/src/native/json/jsonEntries.ts index 534c604db9..94c2024d5b 100644 --- a/src/native/json/jsonEntries.ts +++ b/src/native/json/jsonEntries.ts @@ -1,9 +1,14 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$jsonEntries", version: "1.4.0", - description: "Gets entries from a json var", + description: "Gets entries from a JSON variable", brackets: true, args: [ { diff --git a/src/native/json/jsonHas.ts b/src/native/json/jsonHas.ts index f2e689b838..fb5167b877 100644 --- a/src/native/json/jsonHas.ts +++ b/src/native/json/jsonHas.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/json/jsonKeys.ts b/src/native/json/jsonKeys.ts index ebe350bb81..35931b7e07 100644 --- a/src/native/json/jsonKeys.ts +++ b/src/native/json/jsonKeys.ts @@ -1,9 +1,14 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$jsonKeys", version: "1.4.0", - description: "Gets keys from a json var", + description: "Gets keys from a JSON variable", brackets: true, args: [ { diff --git a/src/native/json/jsonLoad.ts b/src/native/json/jsonLoad.ts index 08accc2d37..ce48f79b30 100644 --- a/src/native/json/jsonLoad.ts +++ b/src/native/json/jsonLoad.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -8,7 +13,7 @@ export default new NativeFunction({ args: [ { name: "variable", - description: "The variable to load it to", + description: "The variable to load json to", rest: false, type: ArgType.String, required: true, diff --git a/src/native/json/jsonSet.ts b/src/native/json/jsonSet.ts index e8a8b3f3f8..42a71a7963 100644 --- a/src/native/json/jsonSet.ts +++ b/src/native/json/jsonSet.ts @@ -1,10 +1,15 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import parseJSON from "../../functions/parseJSON" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$jsonSet", version: "1.2.0", - description: "Adds a json key with a value", + description: "Adds a JSON key with a value", unwrap: true, brackets: true, args: [ diff --git a/src/native/json/jsonStringify.ts b/src/native/json/jsonStringify.ts index 9c86f09b62..6b10071076 100644 --- a/src/native/json/jsonStringify.ts +++ b/src/native/json/jsonStringify.ts @@ -1,7 +1,9 @@ -import { stringify } from "querystring" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" -import { Return } from "../../structures/@internal/Return" -import { allowedNodeEnvironmentFlags } from "process" export default new NativeFunction({ name: "$jsonStringify", diff --git a/src/native/json/jsonValues.ts b/src/native/json/jsonValues.ts index 861e3b25b9..45f59a8811 100644 --- a/src/native/json/jsonValues.ts +++ b/src/native/json/jsonValues.ts @@ -1,10 +1,15 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$jsonValues", version: "1.4.0", - description: "Gets values from a json var", + description: "Gets values from a JSON variable", brackets: true, args: [ { diff --git a/src/native/limiter/onlyForCategories.ts b/src/native/limiter/onlyForCategories.ts index f26ed47b29..29aec598cc 100644 --- a/src/native/limiter/onlyForCategories.ts +++ b/src/native/limiter/onlyForCategories.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, CategoryChannel, ChannelType } from "discord.js" import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" diff --git a/src/native/limiter/onlyForChannels.ts b/src/native/limiter/onlyForChannels.ts index 44ea94a3f8..d585267cdc 100644 --- a/src/native/limiter/onlyForChannels.ts +++ b/src/native/limiter/onlyForChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/limiter/onlyForGuilds.ts b/src/native/limiter/onlyForGuilds.ts index 254077c1de..d1760fb117 100644 --- a/src/native/limiter/onlyForGuilds.ts +++ b/src/native/limiter/onlyForGuilds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/limiter/onlyForRoles.ts b/src/native/limiter/onlyForRoles.ts index 39eb55889b..f74f62b1c4 100644 --- a/src/native/limiter/onlyForRoles.ts +++ b/src/native/limiter/onlyForRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/limiter/onlyForUsers.ts b/src/native/limiter/onlyForUsers.ts index 05a7418276..7fb9b691d1 100644 --- a/src/native/limiter/onlyForUsers.ts +++ b/src/native/limiter/onlyForUsers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/limiter/onlyIf.ts b/src/native/limiter/onlyIf.ts index d636c1f228..f710ae5c90 100644 --- a/src/native/limiter/onlyIf.ts +++ b/src/native/limiter/onlyIf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, diff --git a/src/native/limiter/stop.ts b/src/native/limiter/stop.ts index 989b0c0a64..2109fcd395 100644 --- a/src/native/limiter/stop.ts +++ b/src/native/limiter/stop.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/logging/chalkLog.ts b/src/native/logging/chalkLog.ts index eed8d8e52c..6057acdbcf 100644 --- a/src/native/logging/chalkLog.ts +++ b/src/native/logging/chalkLog.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import chalk from "chalk" diff --git a/src/native/logging/log.ts b/src/native/logging/log.ts index 3b3e32e470..79172ff097 100644 --- a/src/native/logging/log.ts +++ b/src/native/logging/log.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/logging/logger.ts b/src/native/logging/logger.ts index ce67d7a763..940180d66a 100644 --- a/src/native/logging/logger.ts +++ b/src/native/logging/logger.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { LogType, Logger } from "../../structures/@internal/Logger" diff --git a/src/native/lookup/findApplicationEmoji.ts b/src/native/lookup/findApplicationEmoji.ts index 80dce35f5d..d90043e584 100644 --- a/src/native/lookup/findApplicationEmoji.ts +++ b/src/native/lookup/findApplicationEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/lookup/findChannel.ts b/src/native/lookup/findChannel.ts index d9ba1b8ff1..8e47fb6298 100644 --- a/src/native/lookup/findChannel.ts +++ b/src/native/lookup/findChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" import { ChannelMentionCharRegex } from "./findGuildChannel" diff --git a/src/native/lookup/findChannels.ts b/src/native/lookup/findChannels.ts index fe201b5fef..ae08acbdcd 100644 --- a/src/native/lookup/findChannels.ts +++ b/src/native/lookup/findChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" import { ChannelProperties, ChannelProperty } from "../../properties/channel" diff --git a/src/native/lookup/findEmoji.ts b/src/native/lookup/findEmoji.ts index cf25a91d6f..f9f5c66e7a 100644 --- a/src/native/lookup/findEmoji.ts +++ b/src/native/lookup/findEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { parseEmoji } from "discord.js" import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" diff --git a/src/native/lookup/findGuild.ts b/src/native/lookup/findGuild.ts index 1394db34f5..02b5452fed 100644 --- a/src/native/lookup/findGuild.ts +++ b/src/native/lookup/findGuild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/lookup/findGuildChannel.ts b/src/native/lookup/findGuildChannel.ts index ba2d26aa6a..d97d9bbb8a 100644 --- a/src/native/lookup/findGuildChannel.ts +++ b/src/native/lookup/findGuildChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export const ChannelMentionCharRegex = /[<>#]/g diff --git a/src/native/lookup/findGuildEmoji.ts b/src/native/lookup/findGuildEmoji.ts index 9d010ab0c3..1d4780d2f7 100644 --- a/src/native/lookup/findGuildEmoji.ts +++ b/src/native/lookup/findGuildEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/lookup/findMember.ts b/src/native/lookup/findMember.ts index 8eb2ec029e..479220e2b6 100644 --- a/src/native/lookup/findMember.ts +++ b/src/native/lookup/findMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" diff --git a/src/native/lookup/findMembers.ts b/src/native/lookup/findMembers.ts index e2a044190c..6c243a716d 100644 --- a/src/native/lookup/findMembers.ts +++ b/src/native/lookup/findMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { MemberProperties, MemberProperty } from "../../properties/member" import { Arg, ArgType, NativeFunction } from "../../structures" diff --git a/src/native/lookup/findRole.ts b/src/native/lookup/findRole.ts index 8bd8070fa4..5af003be46 100644 --- a/src/native/lookup/findRole.ts +++ b/src/native/lookup/findRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export const RoleMentionCharRegex = /[@<>&]/g diff --git a/src/native/lookup/findRoles.ts b/src/native/lookup/findRoles.ts index 9de167e449..c44e76bd5a 100644 --- a/src/native/lookup/findRoles.ts +++ b/src/native/lookup/findRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" import { RoleProperties, RoleProperty } from "../../properties/role" diff --git a/src/native/lookup/findUser.ts b/src/native/lookup/findUser.ts index ef7a697c0f..4e3a723be9 100644 --- a/src/native/lookup/findUser.ts +++ b/src/native/lookup/findUser.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import noop from "../../functions/noop" import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" diff --git a/src/native/math/abs.ts b/src/native/math/abs.ts index 2955ce42e4..f950a2ad98 100644 --- a/src/native/math/abs.ts +++ b/src/native/math/abs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/base.ts b/src/native/math/base.ts index 19f1f2169c..7b81db59e3 100644 --- a/src/native/math/base.ts +++ b/src/native/math/base.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/bigintDivide.ts b/src/native/math/bigintDivide.ts index 2ee9578a81..60a9b19df9 100644 --- a/src/native/math/bigintDivide.ts +++ b/src/native/math/bigintDivide.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/bigintMulti.ts b/src/native/math/bigintMulti.ts index 93fc95ed4f..8fc9576e06 100644 --- a/src/native/math/bigintMulti.ts +++ b/src/native/math/bigintMulti.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/bigintSub.ts b/src/native/math/bigintSub.ts index 8cdb4951f3..303a2a17dd 100644 --- a/src/native/math/bigintSub.ts +++ b/src/native/math/bigintSub.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/bigintSum.ts b/src/native/math/bigintSum.ts index ef9e7db61c..ba446dab22 100644 --- a/src/native/math/bigintSum.ts +++ b/src/native/math/bigintSum.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/ceil.ts b/src/native/math/ceil.ts index f2163e03cd..3632ca6a19 100644 --- a/src/native/math/ceil.ts +++ b/src/native/math/ceil.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/divide.ts b/src/native/math/divide.ts index f4af921043..ce64480c26 100644 --- a/src/native/math/divide.ts +++ b/src/native/math/divide.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/floor.ts b/src/native/math/floor.ts index a6380cc7ff..b7c62f18b6 100644 --- a/src/native/math/floor.ts +++ b/src/native/math/floor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/logn.ts b/src/native/math/logn.ts index 6865309911..ac99d3615f 100644 --- a/src/native/math/logn.ts +++ b/src/native/math/logn.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/math.ts b/src/native/math/math.ts index 1fd1f2dacf..eadf8fcabd 100644 --- a/src/native/math/math.ts +++ b/src/native/math/math.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" const MathRegex = /[^0-9%\-+./*\t\n\s()<>]/ diff --git a/src/native/math/max.ts b/src/native/math/max.ts index 6099c087ce..72d59a8225 100644 --- a/src/native/math/max.ts +++ b/src/native/math/max.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/min.ts b/src/native/math/min.ts index 483767ab6c..fee5c40e84 100644 --- a/src/native/math/min.ts +++ b/src/native/math/min.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/modulo.ts b/src/native/math/modulo.ts index 09b25f3e5f..1d9a8a8be8 100644 --- a/src/native/math/modulo.ts +++ b/src/native/math/modulo.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/multi.ts b/src/native/math/multi.ts index 76ee636185..5761ff9f99 100644 --- a/src/native/math/multi.ts +++ b/src/native/math/multi.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/pi.ts b/src/native/math/pi.ts index 141df3d189..4642a9e8f3 100644 --- a/src/native/math/pi.ts +++ b/src/native/math/pi.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/pow.ts b/src/native/math/pow.ts index cef0b77854..711e7a28a9 100644 --- a/src/native/math/pow.ts +++ b/src/native/math/pow.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/round.ts b/src/native/math/round.ts index d466001ea7..ecf2a0bd4f 100644 --- a/src/native/math/round.ts +++ b/src/native/math/round.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/sign.ts b/src/native/math/sign.ts index c22b627c57..6a5f0be84b 100644 --- a/src/native/math/sign.ts +++ b/src/native/math/sign.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/sqrt.ts b/src/native/math/sqrt.ts index 42f20ecb59..aafeed6b2f 100644 --- a/src/native/math/sqrt.ts +++ b/src/native/math/sqrt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/sub.ts b/src/native/math/sub.ts index cbc1113408..b8a265d862 100644 --- a/src/native/math/sub.ts +++ b/src/native/math/sub.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/sum.ts b/src/native/math/sum.ts index d848ff756b..9a5bb89712 100644 --- a/src/native/math/sum.ts +++ b/src/native/math/sum.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/math/trunc.ts b/src/native/math/trunc.ts index 6f68bd0b7a..74aa705535 100644 --- a/src/native/math/trunc.ts +++ b/src/native/math/trunc.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/ban.ts b/src/native/member/ban.ts index b21b3aa993..f1c228b3e2 100644 --- a/src/native/member/ban.ts +++ b/src/native/member/ban.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/fetchMembers.ts b/src/native/member/fetchMembers.ts index a536696c1f..6b65b8565e 100644 --- a/src/native/member/fetchMembers.ts +++ b/src/native/member/fetchMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/hasAnyPerms.ts b/src/native/member/hasAnyPerms.ts index 001289c8e6..28db84c8a4 100644 --- a/src/native/member/hasAnyPerms.ts +++ b/src/native/member/hasAnyPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/hasAnyRole.ts b/src/native/member/hasAnyRole.ts index 5e063cd07f..29d7a65a4e 100644 --- a/src/native/member/hasAnyRole.ts +++ b/src/native/member/hasAnyRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/hasPerms.ts b/src/native/member/hasPerms.ts index ef4cc16ac7..eb2ed6c8e6 100644 --- a/src/native/member/hasPerms.ts +++ b/src/native/member/hasPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/hasRoles.ts b/src/native/member/hasRoles.ts index 9bc46225b0..8de7ed3a50 100644 --- a/src/native/member/hasRoles.ts +++ b/src/native/member/hasRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/isBanned.ts b/src/native/member/isBanned.ts index 5f45fe5ee3..54ffacfdf5 100644 --- a/src/native/member/isBanned.ts +++ b/src/native/member/isBanned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/isBoosting.ts b/src/native/member/isBoosting.ts index 3e3b6a87ef..341acb0a31 100644 --- a/src/native/member/isBoosting.ts +++ b/src/native/member/isBoosting.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/isDeaf.ts b/src/native/member/isDeaf.ts index de0d00b20e..72d5fb7999 100644 --- a/src/native/member/isDeaf.ts +++ b/src/native/member/isDeaf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/isGuildDeaf.ts b/src/native/member/isGuildDeaf.ts index 9463242521..793093659a 100644 --- a/src/native/member/isGuildDeaf.ts +++ b/src/native/member/isGuildDeaf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/isGuildMuted.ts b/src/native/member/isGuildMuted.ts index 1369b30f24..3a07b3a9bc 100644 --- a/src/native/member/isGuildMuted.ts +++ b/src/native/member/isGuildMuted.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/isMuted.ts b/src/native/member/isMuted.ts index 106715c0bc..212a75f4f8 100644 --- a/src/native/member/isMuted.ts +++ b/src/native/member/isMuted.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/isSelfDeaf.ts b/src/native/member/isSelfDeaf.ts index c60083dad8..088220bcee 100644 --- a/src/native/member/isSelfDeaf.ts +++ b/src/native/member/isSelfDeaf.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/isSelfMuted.ts b/src/native/member/isSelfMuted.ts index ec6989e076..aa14b59ca9 100644 --- a/src/native/member/isSelfMuted.ts +++ b/src/native/member/isSelfMuted.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/isTimedOut.ts b/src/native/member/isTimedOut.ts index 81cc1a9a85..1283371ace 100644 --- a/src/native/member/isTimedOut.ts +++ b/src/native/member/isTimedOut.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/isVerified.ts b/src/native/member/isVerified.ts index 3c45a02409..8cd5cfe3e0 100644 --- a/src/native/member/isVerified.ts +++ b/src/native/member/isVerified.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/kickMember.ts b/src/native/member/kickMember.ts index a4c96fa6dd..2e6c9eeea4 100644 --- a/src/native/member/kickMember.ts +++ b/src/native/member/kickMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberActivity.ts b/src/native/member/memberActivity.ts index c16a7480e8..2fa9c3b818 100644 --- a/src/native/member/memberActivity.ts +++ b/src/native/member/memberActivity.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { ActivityProperties, ActivityProperty } from "../../properties/activity" import array from "../../functions/array" diff --git a/src/native/member/memberAddRoles.ts b/src/native/member/memberAddRoles.ts index 147b8ed613..55fe12564e 100644 --- a/src/native/member/memberAddRoles.ts +++ b/src/native/member/memberAddRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberAvatar.ts b/src/native/member/memberAvatar.ts index 94c825ed0a..57a4fc0cc7 100644 --- a/src/native/member/memberAvatar.ts +++ b/src/native/member/memberAvatar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { CDN, GuildMember, ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberAvatarDecoration.ts b/src/native/member/memberAvatarDecoration.ts index 153037fd3d..375ce76248 100644 --- a/src/native/member/memberAvatarDecoration.ts +++ b/src/native/member/memberAvatarDecoration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, CDN, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberBanner.ts b/src/native/member/memberBanner.ts index 61df44e21f..de34d1e08f 100644 --- a/src/native/member/memberBanner.ts +++ b/src/native/member/memberBanner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { CDN, GuildMember, ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberBoostingSince.ts b/src/native/member/memberBoostingSince.ts index ff71cc43da..6704bc31c3 100644 --- a/src/native/member/memberBoostingSince.ts +++ b/src/native/member/memberBoostingSince.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberBotRoleID.ts b/src/native/member/memberBotRoleID.ts new file mode 100644 index 0000000000..d6848a8026 --- /dev/null +++ b/src/native/member/memberBotRoleID.ts @@ -0,0 +1,35 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$memberBotRoleID", + version: "2.6.0", + description: "Returns the managed bot role of a member, only available for bots", + unwrap: true, + brackets: true, + args: [ + { + name: "guild ID", + description: "The guild to pull member from", + rest: false, + type: ArgType.Guild, + required: true, + }, + { + name: "user ID", + description: "The user to get the managed bot role from", + rest: false, + pointer: 0, + type: ArgType.Member, + required: true, + }, + ], + output: ArgType.Role, + execute(ctx, [guild, user]) { + return this.success(guild.roles.botRoleFor(user)?.id) + }, +}) \ No newline at end of file diff --git a/src/native/member/memberCustomStatus.ts b/src/native/member/memberCustomStatus.ts index 688e80870b..7a81b2038c 100644 --- a/src/native/member/memberCustomStatus.ts +++ b/src/native/member/memberCustomStatus.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActivityType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberDisplayColor.ts b/src/native/member/memberDisplayColor.ts index 8e11b7b2a3..e0d18358bd 100644 --- a/src/native/member/memberDisplayColor.ts +++ b/src/native/member/memberDisplayColor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberDisplayName.ts b/src/native/member/memberDisplayName.ts index c9e66d7fb8..d3727fe5af 100644 --- a/src/native/member/memberDisplayName.ts +++ b/src/native/member/memberDisplayName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberExists.ts b/src/native/member/memberExists.ts index b2b25363ca..4089f52943 100644 --- a/src/native/member/memberExists.ts +++ b/src/native/member/memberExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberFlags.ts b/src/native/member/memberFlags.ts index 3be2cd37bf..e1106c6b9c 100644 --- a/src/native/member/memberFlags.ts +++ b/src/native/member/memberFlags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildMemberFlags, GuildMemberFlagsBitField } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/member/memberHighestRoleID.ts b/src/native/member/memberHighestRoleID.ts index 09e63316d2..0258b3532d 100644 --- a/src/native/member/memberHighestRoleID.ts +++ b/src/native/member/memberHighestRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberJoinPosition.ts b/src/native/member/memberJoinPosition.ts index f080214008..a6e7969bcb 100644 --- a/src/native/member/memberJoinPosition.ts +++ b/src/native/member/memberJoinPosition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Guild, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberJoinedAt.ts b/src/native/member/memberJoinedAt.ts index 005f3bebfd..6ab5212c21 100644 --- a/src/native/member/memberJoinedAt.ts +++ b/src/native/member/memberJoinedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberLowestRoleID.ts b/src/native/member/memberLowestRoleID.ts index b1900f4014..dc76af4a52 100644 --- a/src/native/member/memberLowestRoleID.ts +++ b/src/native/member/memberLowestRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberPerms.ts b/src/native/member/memberPerms.ts index e5886039a6..f057b354cf 100644 --- a/src/native/member/memberPerms.ts +++ b/src/native/member/memberPerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionFlagsBits, PermissionsBitField } from "discord.js" import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberRawData.ts b/src/native/member/memberRawData.ts index e3687fee71..1423516f67 100644 --- a/src/native/member/memberRawData.ts +++ b/src/native/member/memberRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberRemoveRoles.ts b/src/native/member/memberRemoveRoles.ts index ecb6346538..2799805045 100644 --- a/src/native/member/memberRemoveRoles.ts +++ b/src/native/member/memberRemoveRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberRoles.ts b/src/native/member/memberRoles.ts index ce72e5e14d..8ec21a9b4c 100644 --- a/src/native/member/memberRoles.ts +++ b/src/native/member/memberRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/memberSetNickname.ts b/src/native/member/memberSetNickname.ts index 871e9fb292..5c673e441a 100644 --- a/src/native/member/memberSetNickname.ts +++ b/src/native/member/memberSetNickname.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -30,7 +35,11 @@ export default new NativeFunction({ type: ArgType.String, }, ], - async execute(ctx, [, m, nick]) { - return this.success(!!(await m.setNickname(nick, ctx.reason).catch(ctx.noop))) + async execute(ctx, [g, m, nick]) { + const edit = m.id === ctx.client.user.id + ? g.members.editMe({ nick, reason: ctx.reason }) + : m.setNickname(nick, ctx.reason) + + return this.success(!!(await edit.catch(ctx.noop))) }, -}) +}) \ No newline at end of file diff --git a/src/native/member/memberSetRoles.ts b/src/native/member/memberSetRoles.ts index 1d5fbc7544..4e39e93fde 100644 --- a/src/native/member/memberSetRoles.ts +++ b/src/native/member/memberSetRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/memberTimeoutDuration.ts b/src/native/member/memberTimeoutDuration.ts index 127b78370d..8bdcf3d43f 100644 --- a/src/native/member/memberTimeoutDuration.ts +++ b/src/native/member/memberTimeoutDuration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/nickname.ts b/src/native/member/nickname.ts index f82c9c7469..5a356ece66 100644 --- a/src/native/member/nickname.ts +++ b/src/native/member/nickname.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, GuildMember } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/platform.ts b/src/native/member/platform.ts index 4a76b50198..829161616c 100644 --- a/src/native/member/platform.ts +++ b/src/native/member/platform.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/member/pruneMembers.ts b/src/native/member/pruneMembers.ts index 1709df4c54..af4b5cdcef 100644 --- a/src/native/member/pruneMembers.ts +++ b/src/native/member/pruneMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/randomMemberID.ts b/src/native/member/randomMemberID.ts index 93eede49b1..7dc974c2fa 100644 --- a/src/native/member/randomMemberID.ts +++ b/src/native/member/randomMemberID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/status.ts b/src/native/member/status.ts index cf18653c33..181e073f8e 100644 --- a/src/native/member/status.ts +++ b/src/native/member/status.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/timeout.ts b/src/native/member/timeout.ts index 587d6b7871..ed94eb82b1 100644 --- a/src/native/member/timeout.ts +++ b/src/native/member/timeout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/unban.ts b/src/native/member/unban.ts index a99c3a53b8..1c9982fc8f 100644 --- a/src/native/member/unban.ts +++ b/src/native/member/unban.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/voiceID.ts b/src/native/member/voiceID.ts index a77d8a5400..856bd1dea0 100644 --- a/src/native/member/voiceID.ts +++ b/src/native/member/voiceID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/voiceKick.ts b/src/native/member/voiceKick.ts index f24d33dc50..90c7be9cfc 100644 --- a/src/native/member/voiceKick.ts +++ b/src/native/member/voiceKick.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/member/voiceMove.ts b/src/native/member/voiceMove.ts index d74751655c..f7a1fdba3b 100644 --- a/src/native/member/voiceMove.ts +++ b/src/native/member/voiceMove.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, GuildVoiceChannelResolvable } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/mention/disableAllMentions.ts b/src/native/mention/disableAllMentions.ts index b8f5768bd7..a3c2583a15 100644 --- a/src/native/mention/disableAllMentions.ts +++ b/src/native/mention/disableAllMentions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/mention/disableEveryoneMention.ts b/src/native/mention/disableEveryoneMention.ts index 269d9934f0..892632f449 100644 --- a/src/native/mention/disableEveryoneMention.ts +++ b/src/native/mention/disableEveryoneMention.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ @@ -6,7 +11,7 @@ export default new NativeFunction({ description: "Disables everyone mention", unwrap: false, execute(ctx) { - ctx.container.unparseMention("everyone") + ctx.container.unparseMentions("everyone") return this.success() }, }) \ No newline at end of file diff --git a/src/native/mention/disableRoleMentions.ts b/src/native/mention/disableRoleMentions.ts index aaeb226a76..5d1da94e4f 100644 --- a/src/native/mention/disableRoleMentions.ts +++ b/src/native/mention/disableRoleMentions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ @@ -6,7 +11,7 @@ export default new NativeFunction({ description: "Disables all role mentions", unwrap: false, execute(ctx) { - ctx.container.unparseMention("roles") + ctx.container.unparseMentions("roles") ctx.container.allowedMentions.roles = [] return this.success() }, diff --git a/src/native/mention/disableUserMentions.ts b/src/native/mention/disableUserMentions.ts index df80190ea7..68162baef8 100644 --- a/src/native/mention/disableUserMentions.ts +++ b/src/native/mention/disableUserMentions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ @@ -6,7 +11,7 @@ export default new NativeFunction({ description: "Disables all user mentions", unwrap: false, execute(ctx) { - ctx.container.unparseMention("users") + ctx.container.unparseMentions("users") ctx.container.allowedMentions.users = [] return this.success() }, diff --git a/src/native/mention/enableAllMentions.ts b/src/native/mention/enableAllMentions.ts new file mode 100644 index 0000000000..72b8e225ac --- /dev/null +++ b/src/native/mention/enableAllMentions.ts @@ -0,0 +1,17 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { NativeFunction } from "../../structures" + +export default new NativeFunction({ + name: "$enableAllMentions", + version: "2.6.0", + description: "Enables every possible mention", + unwrap: false, + execute(ctx) { + ctx.container.parseMentions() + return this.success() + }, +}) \ No newline at end of file diff --git a/src/native/mention/enableRoleMentions.ts b/src/native/mention/enableRoleMentions.ts index 70a82809e5..2ffb531418 100644 --- a/src/native/mention/enableRoleMentions.ts +++ b/src/native/mention/enableRoleMentions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -5,7 +10,7 @@ export default new NativeFunction({ version: "1.3.0", description: "Only parses these roles for mentions", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "guild ID", @@ -24,7 +29,8 @@ export default new NativeFunction({ } ], execute(ctx, [, roles ]) { - ctx.container.allowedMentions.roles = roles.map(x => x.id) + if (this.hasFields) ctx.container.allowedMentions.roles = roles.map(x => x.id) + else ctx.container.parseMentions("roles") return this.success() }, }) \ No newline at end of file diff --git a/src/native/mention/enableUserMentions.ts b/src/native/mention/enableUserMentions.ts index 24353da36f..b2eb5f1ef4 100644 --- a/src/native/mention/enableUserMentions.ts +++ b/src/native/mention/enableUserMentions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ @@ -5,7 +10,7 @@ export default new NativeFunction({ version: "1.3.0", description: "Only parses these users for mentions", unwrap: true, - brackets: true, + brackets: false, args: [ { name: "users", @@ -16,7 +21,8 @@ export default new NativeFunction({ } ], execute(ctx, [ users ]) { - ctx.container.allowedMentions.users = users.map(x => x.id) + if (this.hasFields) ctx.container.allowedMentions.users = users.map(x => x.id) + else ctx.container.parseMentions("users") return this.success() }, }) \ No newline at end of file diff --git a/src/native/mention/isChannelMentioned.ts b/src/native/mention/isChannelMentioned.ts index 6c42b65422..0822495e44 100644 --- a/src/native/mention/isChannelMentioned.ts +++ b/src/native/mention/isChannelMentioned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/mention/isRoleMentioned.ts b/src/native/mention/isRoleMentioned.ts index 633edff99b..be2a98d2cc 100644 --- a/src/native/mention/isRoleMentioned.ts +++ b/src/native/mention/isRoleMentioned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/mention/isUserMentioned.ts b/src/native/mention/isUserMentioned.ts index d836e5521c..3a45d58b96 100644 --- a/src/native/mention/isUserMentioned.ts +++ b/src/native/mention/isUserMentioned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/mention/mentioned.ts b/src/native/mention/mentioned.ts index f3234e1bb7..e7b9dc3cc5 100644 --- a/src/native/mention/mentioned.ts +++ b/src/native/mention/mentioned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/mention/mentionedChannelCount.ts b/src/native/mention/mentionedChannelCount.ts index 72da8a36c7..29f78f2a7d 100644 --- a/src/native/mention/mentionedChannelCount.ts +++ b/src/native/mention/mentionedChannelCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/mention/mentionedChannels.ts b/src/native/mention/mentionedChannels.ts index 2498943d4c..dad2544036 100644 --- a/src/native/mention/mentionedChannels.ts +++ b/src/native/mention/mentionedChannels.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/mention/mentionedRoleCount.ts b/src/native/mention/mentionedRoleCount.ts index ba9c90cee6..d23c41d2e0 100644 --- a/src/native/mention/mentionedRoleCount.ts +++ b/src/native/mention/mentionedRoleCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/mention/mentionedRoles.ts b/src/native/mention/mentionedRoles.ts index 4a46eff8d3..47cf21f48b 100644 --- a/src/native/mention/mentionedRoles.ts +++ b/src/native/mention/mentionedRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/mention/mentionedUserCount.ts b/src/native/mention/mentionedUserCount.ts index 095fee69a9..3bb7bbf9d8 100644 --- a/src/native/mention/mentionedUserCount.ts +++ b/src/native/mention/mentionedUserCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/mention/nomention.ts b/src/native/mention/nomention.ts index 81eaf55274..2d2d7432a0 100644 --- a/src/native/mention/nomention.ts +++ b/src/native/mention/nomention.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/addMessageReactions.ts b/src/native/message/addMessageReactions.ts index 2d63599833..4cb1614ced 100644 --- a/src/native/message/addMessageReactions.ts +++ b/src/native/message/addMessageReactions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/message/attachment.ts b/src/native/message/attachment.ts index f16619cecb..8aa903682e 100644 --- a/src/native/message/attachment.ts +++ b/src/native/message/attachment.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AttachmentBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/deleteAllMessageReactions.ts b/src/native/message/deleteAllMessageReactions.ts index 676e060033..aecdab1e0a 100644 --- a/src/native/message/deleteAllMessageReactions.ts +++ b/src/native/message/deleteAllMessageReactions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/message/deleteIn.ts b/src/native/message/deleteIn.ts index f5cb5a119a..c423c29fbf 100644 --- a/src/native/message/deleteIn.ts +++ b/src/native/message/deleteIn.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/deleteMessage.ts b/src/native/message/deleteMessage.ts index d52afbadc7..7e63719286 100644 --- a/src/native/message/deleteMessage.ts +++ b/src/native/message/deleteMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/message/deleteUserMessageReaction.ts b/src/native/message/deleteUserMessageReaction.ts index e4ab6b3cea..57fc488981 100644 --- a/src/native/message/deleteUserMessageReaction.ts +++ b/src/native/message/deleteUserMessageReaction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/message/editMessage.ts b/src/native/message/editMessage.ts index 7cfd4416b1..ead028a9de 100644 --- a/src/native/message/editMessage.ts +++ b/src/native/message/editMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/fetchComponents.ts b/src/native/message/fetchComponents.ts index e90ab237ed..53fdb1ffc0 100644 --- a/src/native/message/fetchComponents.ts +++ b/src/native/message/fetchComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/message/fetchEmbeds.ts b/src/native/message/fetchEmbeds.ts index ecd3407300..8e8a572b00 100644 --- a/src/native/message/fetchEmbeds.ts +++ b/src/native/message/fetchEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, EmbedBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/fetchMessage.ts b/src/native/message/fetchMessage.ts index 5fd244db2e..0f2b815fea 100644 --- a/src/native/message/fetchMessage.ts +++ b/src/native/message/fetchMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/fetchResponse.ts b/src/native/message/fetchResponse.ts index 9317cbb347..9bfed6aafd 100644 --- a/src/native/message/fetchResponse.ts +++ b/src/native/message/fetchResponse.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AttachmentBuilder, EmbedBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import { buildComponent } from "../../functions/components" diff --git a/src/native/message/forwardMessage.ts b/src/native/message/forwardMessage.ts index dc2951a4a0..925d7ebdd7 100644 --- a/src/native/message/forwardMessage.ts +++ b/src/native/message/forwardMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, ChannelType, PartialGroupDMChannel, TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/getComponents.ts b/src/native/message/getComponents.ts index 88c0ff7ff5..4cb0d95ed4 100644 --- a/src/native/message/getComponents.ts +++ b/src/native/message/getComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ActionRow, BaseChannel, MessageActionRowComponent } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { ComponentProperties, ComponentProperty } from "../../properties/component" diff --git a/src/native/message/getEmbeds.ts b/src/native/message/getEmbeds.ts index f1f760e600..225f58806e 100644 --- a/src/native/message/getEmbeds.ts +++ b/src/native/message/getEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, Embed, EmbedBuilder } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { EmbedProperties, EmbedProperty } from "../../properties/embed" diff --git a/src/native/message/getMessage.ts b/src/native/message/getMessage.ts index 5c89cb8ffe..e313e80561 100644 --- a/src/native/message/getMessage.ts +++ b/src/native/message/getMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { MessageProperties, MessageProperty } from "../../properties/message" diff --git a/src/native/message/getMessageReactionCount.ts b/src/native/message/getMessageReactionCount.ts index dbf761931c..07b6771dc7 100644 --- a/src/native/message/getMessageReactionCount.ts +++ b/src/native/message/getMessageReactionCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/getMessageReactionUsers.ts b/src/native/message/getMessageReactionUsers.ts index 028d180a54..44c72772e6 100644 --- a/src/native/message/getMessageReactionUsers.ts +++ b/src/native/message/getMessageReactionUsers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/getMessageReactions.ts b/src/native/message/getMessageReactions.ts index 15631cf2e6..c02c00dc55 100644 --- a/src/native/message/getMessageReactions.ts +++ b/src/native/message/getMessageReactions.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ReactionProperties, ReactionProperty } from "../../properties/reaction" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/getPoll.ts b/src/native/message/getPoll.ts index 33e87e9962..442689bd9c 100644 --- a/src/native/message/getPoll.ts +++ b/src/native/message/getPoll.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { PollProperties, PollProperty } from "../../properties/poll" diff --git a/src/native/message/getSnapshots.ts b/src/native/message/getSnapshots.ts index de9b47d77c..0fcc9b6d5b 100644 --- a/src/native/message/getSnapshots.ts +++ b/src/native/message/getSnapshots.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import { MessageProperties, MessageProperty } from "../../properties/message" diff --git a/src/native/message/hasComponents.ts b/src/native/message/hasComponents.ts index 8032cfa63e..834c344697 100644 --- a/src/native/message/hasComponents.ts +++ b/src/native/message/hasComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/hasEmbeds.ts b/src/native/message/hasEmbeds.ts index b458ad35ca..12d2dbfd60 100644 --- a/src/native/message/hasEmbeds.ts +++ b/src/native/message/hasEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/isPinned.ts b/src/native/message/isPinned.ts index daf8f633e4..974ae9f924 100644 --- a/src/native/message/isPinned.ts +++ b/src/native/message/isPinned.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/loadComponents.ts b/src/native/message/loadComponents.ts index b7117ad5b2..e2a04167ec 100644 --- a/src/native/message/loadComponents.ts +++ b/src/native/message/loadComponents.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { buildActionRow, buildComponent, isTopLevel } from "../../functions/components" import { ActionRowBuilder, ComponentType } from "discord.js" diff --git a/src/native/message/loadEmbeds.ts b/src/native/message/loadEmbeds.ts index e108bb1cf2..8907c25d8a 100644 --- a/src/native/message/loadEmbeds.ts +++ b/src/native/message/loadEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIEmbed, EmbedBuilder } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/message/message.ts b/src/native/message/message.ts index aaa495fef3..b2c9169737 100644 --- a/src/native/message/message.ts +++ b/src/native/message/message.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/message/messageAttachment.ts b/src/native/message/messageAttachment.ts index c805d88cf5..92bc33f8a3 100644 --- a/src/native/message/messageAttachment.ts +++ b/src/native/message/messageAttachment.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageAttachmentCount.ts b/src/native/message/messageAttachmentCount.ts index 8bfb490d29..047ca2c624 100644 --- a/src/native/message/messageAttachmentCount.ts +++ b/src/native/message/messageAttachmentCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageAttachmentFlags.ts b/src/native/message/messageAttachmentFlags.ts index 00e07adf47..6af9ccd66a 100644 --- a/src/native/message/messageAttachmentFlags.ts +++ b/src/native/message/messageAttachmentFlags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AttachmentFlags, BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageAttachments.ts b/src/native/message/messageAttachments.ts index ee06b3163d..37e60bd97c 100644 --- a/src/native/message/messageAttachments.ts +++ b/src/native/message/messageAttachments.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageContent.ts b/src/native/message/messageContent.ts index 65e9841887..4367a6981e 100644 --- a/src/native/message/messageContent.ts +++ b/src/native/message/messageContent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/message/messageCreatedAt.ts b/src/native/message/messageCreatedAt.ts index ab0ca54022..349f81c07e 100644 --- a/src/native/message/messageCreatedAt.ts +++ b/src/native/message/messageCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, MessageType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageEditedAt.ts b/src/native/message/messageEditedAt.ts index 6d27658e1b..cb75689126 100644 --- a/src/native/message/messageEditedAt.ts +++ b/src/native/message/messageEditedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, MessageType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageEmojis.ts b/src/native/message/messageEmojis.ts index e39c19e2f7..d3032536a6 100644 --- a/src/native/message/messageEmojis.ts +++ b/src/native/message/messageEmojis.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageExists.ts b/src/native/message/messageExists.ts index a870d5ea45..2d8ede6638 100644 --- a/src/native/message/messageExists.ts +++ b/src/native/message/messageExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageFlags.ts b/src/native/message/messageFlags.ts index 466ddeec9b..aaf0ab0961 100644 --- a/src/native/message/messageFlags.ts +++ b/src/native/message/messageFlags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageFlags } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageID.ts b/src/native/message/messageID.ts index 963c4bbad9..127e6f7f5e 100644 --- a/src/native/message/messageID.ts +++ b/src/native/message/messageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/messageLink.ts b/src/native/message/messageLink.ts index 6b7a5963e1..902d264582 100644 --- a/src/native/message/messageLink.ts +++ b/src/native/message/messageLink.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageRawData.ts b/src/native/message/messageRawData.ts index a1a6917ca5..1863298d83 100644 --- a/src/native/message/messageRawData.ts +++ b/src/native/message/messageRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/messageReferenceID.ts b/src/native/message/messageReferenceID.ts index 29c13ec527..a959085e97 100644 --- a/src/native/message/messageReferenceID.ts +++ b/src/native/message/messageReferenceID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageSlice.ts b/src/native/message/messageSlice.ts index 4ddc95f311..56a0f79b51 100644 --- a/src/native/message/messageSlice.ts +++ b/src/native/message/messageSlice.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/messageSticker.ts b/src/native/message/messageSticker.ts index be6fe62490..17e64498e9 100644 --- a/src/native/message/messageSticker.ts +++ b/src/native/message/messageSticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageStickerCount.ts b/src/native/message/messageStickerCount.ts index 2d92245c6b..566f8d2ac3 100644 --- a/src/native/message/messageStickerCount.ts +++ b/src/native/message/messageStickerCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageStickers.ts b/src/native/message/messageStickers.ts index 7d2e52bbb7..acb4e09430 100644 --- a/src/native/message/messageStickers.ts +++ b/src/native/message/messageStickers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/message/messageType.ts b/src/native/message/messageType.ts index 3f7caedb0a..800b5ee6ae 100644 --- a/src/native/message/messageType.ts +++ b/src/native/message/messageType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, MessageType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/messageWebhookID.ts b/src/native/message/messageWebhookID.ts index 9c855f3094..546abdbd09 100644 --- a/src/native/message/messageWebhookID.ts +++ b/src/native/message/messageWebhookID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/noMentionMessage.ts b/src/native/message/noMentionMessage.ts index 8268b1f940..b177f6aeb1 100644 --- a/src/native/message/noMentionMessage.ts +++ b/src/native/message/noMentionMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/message/pinMessage.ts b/src/native/message/pinMessage.ts index 7119c9e537..1f086ae9d7 100644 --- a/src/native/message/pinMessage.ts +++ b/src/native/message/pinMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/publishMessage.ts b/src/native/message/publishMessage.ts index 92b5b30a44..b0369bb3e4 100644 --- a/src/native/message/publishMessage.ts +++ b/src/native/message/publishMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/message/reply.ts b/src/native/message/reply.ts index a25351ad83..ecec373d32 100644 --- a/src/native/message/reply.ts +++ b/src/native/message/reply.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/silent.ts b/src/native/message/silent.ts new file mode 100644 index 0000000000..900607c469 --- /dev/null +++ b/src/native/message/silent.ts @@ -0,0 +1,17 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$silent", + version: "2.6.0", + description: "Marks the response as silent", + unwrap: false, + execute(ctx) { + ctx.container.silent = true + return this.success() + }, +}) diff --git a/src/native/message/sticker.ts b/src/native/message/sticker.ts index 49d3b0df2d..606d48149a 100644 --- a/src/native/message/sticker.ts +++ b/src/native/message/sticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/suppressEmbeds.ts b/src/native/message/suppressEmbeds.ts index 2d38adb4fc..3aea13c669 100644 --- a/src/native/message/suppressEmbeds.ts +++ b/src/native/message/suppressEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/tts.ts b/src/native/message/tts.ts index b2dfa397e5..e08e11c7bc 100644 --- a/src/native/message/tts.ts +++ b/src/native/message/tts.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/message/unpinMessage.ts b/src/native/message/unpinMessage.ts index 2f34fae143..00751e5afe 100644 --- a/src/native/message/unpinMessage.ts +++ b/src/native/message/unpinMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/message/unsuppressEmbeds.ts b/src/native/message/unsuppressEmbeds.ts index 0a5f9948dd..edcd020fea 100644 --- a/src/native/message/unsuppressEmbeds.ts +++ b/src/native/message/unsuppressEmbeds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/number/abbreviateNumber.ts b/src/native/number/abbreviateNumber.ts index 9058b567fb..14ea4c5502 100644 --- a/src/native/number/abbreviateNumber.ts +++ b/src/native/number/abbreviateNumber.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" const Formatter = Intl.NumberFormat("en-US", { diff --git a/src/native/number/average.ts b/src/native/number/average.ts index f8b1533bbc..916f76f6a3 100644 --- a/src/native/number/average.ts +++ b/src/native/number/average.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/hexToInt.ts b/src/native/number/hexToInt.ts index 9524040111..28654595b4 100644 --- a/src/native/number/hexToInt.ts +++ b/src/native/number/hexToInt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { hex2int } from "../../functions/hex" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/number/inRange.ts b/src/native/number/inRange.ts index 60a9c383c4..eba89ba184 100644 --- a/src/native/number/inRange.ts +++ b/src/native/number/inRange.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/intToHex.ts b/src/native/number/intToHex.ts index bfe4327c6e..86a812c778 100644 --- a/src/native/number/intToHex.ts +++ b/src/native/number/intToHex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { hex2int, int2hex } from "../../functions/hex" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/number/isFloat.ts b/src/native/number/isFloat.ts index a5e8eef6c4..91cf80ca8c 100644 --- a/src/native/number/isFloat.ts +++ b/src/native/number/isFloat.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/isInteger.ts b/src/native/number/isInteger.ts index 0ea8b278e7..cba5925e8b 100644 --- a/src/native/number/isInteger.ts +++ b/src/native/number/isInteger.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { isInteger } from "lodash" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/number/isNumber.ts b/src/native/number/isNumber.ts index 150cc2320d..186a94f6f5 100644 --- a/src/native/number/isNumber.ts +++ b/src/native/number/isNumber.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/maxSafeInteger.ts b/src/native/number/maxSafeInteger.ts index a50805eb53..28e6c0d0b9 100644 --- a/src/native/number/maxSafeInteger.ts +++ b/src/native/number/maxSafeInteger.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/minSafeInteger.ts b/src/native/number/minSafeInteger.ts index 9245b3781b..732ddd02ec 100644 --- a/src/native/number/minSafeInteger.ts +++ b/src/native/number/minSafeInteger.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/ordinal.ts b/src/native/number/ordinal.ts index c2634da87b..70d850efe4 100644 --- a/src/native/number/ordinal.ts +++ b/src/native/number/ordinal.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ordinal } from "../../functions/ordinal" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/number/parseInt.ts b/src/native/number/parseInt.ts index 7bd60526c4..f92adf8d81 100644 --- a/src/native/number/parseInt.ts +++ b/src/native/number/parseInt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/randomNumber.ts b/src/native/number/randomNumber.ts index 65bbd9525f..fe7883a016 100644 --- a/src/native/number/randomNumber.ts +++ b/src/native/number/randomNumber.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/number/separateBigint.ts b/src/native/number/separateBigint.ts index 389333fb9b..2b01f627ae 100644 --- a/src/native/number/separateBigint.ts +++ b/src/native/number/separateBigint.ts @@ -1,6 +1,10 @@ -import { ArgType, NativeFunction, Return } from "../../structures" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ -const NoNumberRegex = /[^0-9.]/g +import { ArgType, NativeFunction, Return } from "../../structures" +import { NoNumberRegex } from "./separateNumber" export default new NativeFunction({ name: "$separateBigint", diff --git a/src/native/number/separateNumber.ts b/src/native/number/separateNumber.ts index 10cc7cafff..b7ac50c864 100644 --- a/src/native/number/separateNumber.ts +++ b/src/native/number/separateNumber.ts @@ -1,6 +1,11 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" -const NoNumberRegex = /[^0-9.]/g +export const NoNumberRegex = /[^0-9.-]/g export default new NativeFunction({ name: "$separateNumber", diff --git a/src/native/other/advancedBar.ts b/src/native/other/advancedBar.ts index d27afb56c1..66e6ed4a45 100644 --- a/src/native/other/advancedBar.ts +++ b/src/native/other/advancedBar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { generateAdvancedBar, generateBar } from "../../functions/generateBar" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/other/awaitComponent.ts b/src/native/other/awaitComponent.ts index 6416b01e95..cd9717cece 100644 --- a/src/native/other/awaitComponent.ts +++ b/src/native/other/awaitComponent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel } from "discord.js" import { ArgType, IExtendedCompiledFunctionConditionField, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/other/awaitMessage.ts b/src/native/other/awaitMessage.ts index 72983936eb..76ded33ecd 100644 --- a/src/native/other/awaitMessage.ts +++ b/src/native/other/awaitMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel, TextChannel } from "discord.js" import { ArgType, IExtendedCompiledFunctionConditionField, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/other/awaitModalSubmit.ts b/src/native/other/awaitModalSubmit.ts index a352dc2ab9..0aed25f25e 100644 --- a/src/native/other/awaitModalSubmit.ts +++ b/src/native/other/awaitModalSubmit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextBasedChannel } from "discord.js" import { ArgType, IExtendedCompiledFunctionConditionField, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import noop from "../../functions/noop" diff --git a/src/native/other/bar.ts b/src/native/other/bar.ts index 12719c4bc4..f5cf6b93c8 100644 --- a/src/native/other/bar.ts +++ b/src/native/other/bar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { generateBar } from "../../functions/generateBar" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/other/c.ts b/src/native/other/c.ts index d4a969645e..13d34567b7 100644 --- a/src/native/other/c.ts +++ b/src/native/other/c.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/callFunction.ts b/src/native/other/callFunction.ts index 8ec4170920..3ccdde8161 100644 --- a/src/native/other/callFunction.ts +++ b/src/native/other/callFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ErrorType } from "../../structures/forge/ForgeError" import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/other/callLocalFunction.ts b/src/native/other/callLocalFunction.ts index 6251ddd413..25fecb76ee 100644 --- a/src/native/other/callLocalFunction.ts +++ b/src/native/other/callLocalFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ErrorType } from "../../structures" import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" @@ -25,9 +30,9 @@ export default new NativeFunction({ ], output: ArgType.Unknown, async execute(ctx, [name, args]) { - const func = ctx.localFunctions.get(name) + const func = ctx.getLocalFunction(name) if (!func) return this.error(ErrorType.UnknownXName, "local function", name) - + if (args.length < func.args.length) return this.error( ErrorType.Custom, diff --git a/src/native/other/debug.ts b/src/native/other/debug.ts index 55c2d7e167..8e8002f6f4 100644 --- a/src/native/other/debug.ts +++ b/src/native/other/debug.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/disableConsoleErrors.ts b/src/native/other/disableConsoleErrors.ts index 67ba49b345..f9dd5d7793 100644 --- a/src/native/other/disableConsoleErrors.ts +++ b/src/native/other/disableConsoleErrors.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/djsVersion.ts b/src/native/other/djsVersion.ts index 752a85ba75..d1b28fb2d0 100644 --- a/src/native/other/djsVersion.ts +++ b/src/native/other/djsVersion.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { version } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/other/enableConsoleErrors.ts b/src/native/other/enableConsoleErrors.ts index 9531f17650..5432558878 100644 --- a/src/native/other/enableConsoleErrors.ts +++ b/src/native/other/enableConsoleErrors.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/error.ts b/src/native/other/error.ts index 00b9bea327..5c3366f45d 100644 --- a/src/native/other/error.ts +++ b/src/native/other/error.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/escapeCode.ts b/src/native/other/escapeCode.ts index 967a1290a9..7440bc26c9 100644 --- a/src/native/other/escapeCode.ts +++ b/src/native/other/escapeCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/other/localFunction.ts b/src/native/other/localFunction.ts index e7460ecb5f..ed4ffc53b2 100644 --- a/src/native/other/localFunction.ts +++ b/src/native/other/localFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { IExtendedCompiledFunctionField } from "../../structures" import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" @@ -33,15 +38,13 @@ export default new NativeFunction({ async execute(ctx) { const code = this.data.fields![1] as IExtendedCompiledFunctionField - const name = await this["resolveUnhandledArg"](ctx, 0) - if (!this["isValidReturnType"](name)) return name - - const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 2) + const { args, return: rt } = await this["resolveMultipleArgs"](ctx, 0, 2) if (!this["isValidReturnType"](rt)) return rt + const [ name, params ] = args - ctx.localFunctions.set(name.value as string, { + ctx.setLocalFunction(name, { code, - args: args[0] + args: params }) return this.success() diff --git a/src/native/other/typeof.ts b/src/native/other/typeof.ts index 421368369f..3d79521c89 100644 --- a/src/native/other/typeof.ts +++ b/src/native/other/typeof.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export const BigIntFormatRegex = /^\d+n$/ diff --git a/src/native/poll/poll.ts b/src/native/poll/poll.ts index 2186fd662a..ba6b390eb2 100644 --- a/src/native/poll/poll.ts +++ b/src/native/poll/poll.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PollLayoutType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/poll/pollAnswer.ts b/src/native/poll/pollAnswer.ts index 32223663ae..0b3444c40c 100644 --- a/src/native/poll/pollAnswer.ts +++ b/src/native/poll/pollAnswer.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PollAnswerData } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/poll/pollAnswerEmoji.ts b/src/native/poll/pollAnswerEmoji.ts index f5b8c496a0..6f2b86b242 100644 --- a/src/native/poll/pollAnswerEmoji.ts +++ b/src/native/poll/pollAnswerEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/poll/pollAnswerID.ts b/src/native/poll/pollAnswerID.ts index 321e0412b2..ffc08f9e8b 100644 --- a/src/native/poll/pollAnswerID.ts +++ b/src/native/poll/pollAnswerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/poll/pollAnswerMessageID.ts b/src/native/poll/pollAnswerMessageID.ts index b556f8bf68..9e2100dbea 100644 --- a/src/native/poll/pollAnswerMessageID.ts +++ b/src/native/poll/pollAnswerMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/poll/pollAnswerText.ts b/src/native/poll/pollAnswerText.ts index 71ac379488..974717aee3 100644 --- a/src/native/poll/pollAnswerText.ts +++ b/src/native/poll/pollAnswerText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/poll/pollAnswerVoteCount.ts b/src/native/poll/pollAnswerVoteCount.ts index 6f2c3edee8..6af8b59799 100644 --- a/src/native/poll/pollAnswerVoteCount.ts +++ b/src/native/poll/pollAnswerVoteCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/poll/pollAnswerVoterIDs.ts b/src/native/poll/pollAnswerVoterIDs.ts index 5b6f148ebb..fd1ade0016 100644 --- a/src/native/poll/pollAnswerVoterIDs.ts +++ b/src/native/poll/pollAnswerVoterIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/poll/pollAnswers.ts b/src/native/poll/pollAnswers.ts index 62d785e6a6..07fd761aaf 100644 --- a/src/native/poll/pollAnswers.ts +++ b/src/native/poll/pollAnswers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PollAnswerData } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/poll/pollEnd.ts b/src/native/poll/pollEnd.ts index f4ff52ba37..33dba1435e 100644 --- a/src/native/poll/pollEnd.ts +++ b/src/native/poll/pollEnd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/reaction/reactionAuthorID.ts b/src/native/reaction/reactionAuthorID.ts index 85c88521b9..cf5c35f619 100644 --- a/src/native/reaction/reactionAuthorID.ts +++ b/src/native/reaction/reactionAuthorID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/reaction/reactionCount.ts b/src/native/reaction/reactionCount.ts index c653df78b9..ed5bdbecb5 100644 --- a/src/native/reaction/reactionCount.ts +++ b/src/native/reaction/reactionCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/reaction/reactionEmoji.ts b/src/native/reaction/reactionEmoji.ts index a5e51354ec..751ce0f741 100644 --- a/src/native/reaction/reactionEmoji.ts +++ b/src/native/reaction/reactionEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/reaction/reactionEmojiID.ts b/src/native/reaction/reactionEmojiID.ts index b2a0be3d20..ba90944921 100644 --- a/src/native/reaction/reactionEmojiID.ts +++ b/src/native/reaction/reactionEmojiID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/reaction/reactionMessageID.ts b/src/native/reaction/reactionMessageID.ts index 33e3e9eaa8..2b4b0b9c09 100644 --- a/src/native/reaction/reactionMessageID.ts +++ b/src/native/reaction/reactionMessageID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/addRole.ts b/src/native/role/addRole.ts index de8c9b3e34..f6494b2f5b 100644 --- a/src/native/role/addRole.ts +++ b/src/native/role/addRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ColorResolvable, PermissionFlagsBits, PermissionsString } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/cloneRole.ts b/src/native/role/cloneRole.ts index 84abe9bda1..8095bd7b7d 100644 --- a/src/native/role/cloneRole.ts +++ b/src/native/role/cloneRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { RoleColorsResolvable } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/deleteRoles.ts b/src/native/role/deleteRoles.ts index 602db55e97..d4e1f4957f 100644 --- a/src/native/role/deleteRoles.ts +++ b/src/native/role/deleteRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRole.ts b/src/native/role/editRole.ts index 0ec9e3300e..0ee3b2ac4a 100644 --- a/src/native/role/editRole.ts +++ b/src/native/role/editRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { ColorResolvable } from "discord.js" diff --git a/src/native/role/editRoleColors.ts b/src/native/role/editRoleColors.ts index 4a637840b2..d40d756097 100644 --- a/src/native/role/editRoleColors.ts +++ b/src/native/role/editRoleColors.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRoleIcon.ts b/src/native/role/editRoleIcon.ts index 5b6bf3564c..1a765f50e5 100644 --- a/src/native/role/editRoleIcon.ts +++ b/src/native/role/editRoleIcon.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRoleName.ts b/src/native/role/editRoleName.ts index d62308fe99..39c49f91cc 100644 --- a/src/native/role/editRoleName.ts +++ b/src/native/role/editRoleName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRolePerms.ts b/src/native/role/editRolePerms.ts index 8b40c3f925..ae550dd546 100644 --- a/src/native/role/editRolePerms.ts +++ b/src/native/role/editRolePerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRolePosition.ts b/src/native/role/editRolePosition.ts index 58f7e756a2..8d76cbb9f2 100644 --- a/src/native/role/editRolePosition.ts +++ b/src/native/role/editRolePosition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/editRoleUnicodeEmoji.ts b/src/native/role/editRoleUnicodeEmoji.ts index d8ab46d494..9d2928a715 100644 --- a/src/native/role/editRoleUnicodeEmoji.ts +++ b/src/native/role/editRoleUnicodeEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/fetchRoles.ts b/src/native/role/fetchRoles.ts index 591e304b8f..de6cc1b962 100644 --- a/src/native/role/fetchRoles.ts +++ b/src/native/role/fetchRoles.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/randomRoleID.ts b/src/native/role/randomRoleID.ts index 5ca0b39a22..b9d7305a2b 100644 --- a/src/native/role/randomRoleID.ts +++ b/src/native/role/randomRoleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleColor.ts b/src/native/role/roleColor.ts index ceda0515c0..6bc102f95f 100644 --- a/src/native/role/roleColor.ts +++ b/src/native/role/roleColor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { int2hex } from "../../functions/hex" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/roleCount.ts b/src/native/role/roleCount.ts index 8f48fc0f3c..051727ac9d 100644 --- a/src/native/role/roleCount.ts +++ b/src/native/role/roleCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleCreatedAt.ts b/src/native/role/roleCreatedAt.ts index 20f75d2a6d..62763a009e 100644 --- a/src/native/role/roleCreatedAt.ts +++ b/src/native/role/roleCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleEditable.ts b/src/native/role/roleEditable.ts index abf2a31ce2..b841253515 100644 --- a/src/native/role/roleEditable.ts +++ b/src/native/role/roleEditable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleExists.ts b/src/native/role/roleExists.ts index a12884428c..564c5370a2 100644 --- a/src/native/role/roleExists.ts +++ b/src/native/role/roleExists.ts @@ -1,9 +1,14 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$roleExists", version: "1.0.0", - description: "Returns whether an role id exists", + description: "Returns whether a role id exists", unwrap: true, brackets: true, output: ArgType.Boolean, diff --git a/src/native/role/roleFlags.ts b/src/native/role/roleFlags.ts index 71112d7cf0..8069fc5361 100644 --- a/src/native/role/roleFlags.ts +++ b/src/native/role/roleFlags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { RoleFlags } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/role/roleHasAnyPerms.ts b/src/native/role/roleHasAnyPerms.ts new file mode 100644 index 0000000000..b6ff783d5e --- /dev/null +++ b/src/native/role/roleHasAnyPerms.ts @@ -0,0 +1,47 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { PermissionFlagsBits } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$roleHasAnyPerms", + version: "2.6.0", + description: "Returns whether the role has any of the specified perms", + aliases: [ + "$hasRoleAnyPerms" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to pull the role from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "role ID", + description: "The role to get its perms", + rest: false, + required: true, + type: ArgType.Role, + pointer: 0, + }, + { + name: "perms", + description: "The perms to check for", + rest: true, + required: true, + type: ArgType.Enum, + enum: PermissionFlagsBits, + }, + ], + output: ArgType.Boolean, + execute(ctx, [, role, perms]) { + return this.success(role.permissions.any(perms)) + }, +}) \ No newline at end of file diff --git a/src/native/role/roleHasPerms.ts b/src/native/role/roleHasPerms.ts new file mode 100644 index 0000000000..9c7f63fd7f --- /dev/null +++ b/src/native/role/roleHasPerms.ts @@ -0,0 +1,47 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { PermissionFlagsBits } from "discord.js" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$roleHasPerms", + version: "2.6.0", + description: "Returns whether the role has all specified perms", + aliases: [ + "$hasRolePerms" + ], + brackets: true, + unwrap: true, + args: [ + { + name: "guild ID", + description: "The guild to pull the role from", + rest: false, + required: true, + type: ArgType.Guild, + }, + { + name: "role ID", + description: "The role to get its perms", + rest: false, + required: true, + type: ArgType.Role, + pointer: 0, + }, + { + name: "perms", + description: "The perms to check for", + rest: true, + required: true, + type: ArgType.Enum, + enum: PermissionFlagsBits, + }, + ], + output: ArgType.Boolean, + execute(ctx, [, role, perms]) { + return this.success(role.permissions.has(perms)) + }, +}) \ No newline at end of file diff --git a/src/native/role/roleHoisted.ts b/src/native/role/roleHoisted.ts index 4fea435589..a66552d35f 100644 --- a/src/native/role/roleHoisted.ts +++ b/src/native/role/roleHoisted.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleID.ts b/src/native/role/roleID.ts index 37f2bbd461..dd174ac3ed 100644 --- a/src/native/role/roleID.ts +++ b/src/native/role/roleID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleIDs.ts b/src/native/role/roleIDs.ts deleted file mode 100644 index eb3b26333c..0000000000 --- a/src/native/role/roleIDs.ts +++ /dev/null @@ -1,35 +0,0 @@ -import array from "../../functions/array" -import { ArgType, NativeFunction, Return } from "../../structures" - -export default new NativeFunction({ - name: "$roleIDs", - version: "1.0.0", - description: "Returns the role ids of a guild", - brackets: false, - output: array(), - args: [ - { - name: "guild ID", - description: "The guild to return the roles of", - rest: false, - type: ArgType.Guild, - required: true, - }, - { - name: "separator", - description: "The separator to use for each role", - rest: false, - required: true, - type: ArgType.String, - }, - ], - unwrap: true, - execute(ctx, [guild, sep]) { - return this.success( - (guild ?? ctx.guild)?.roles.cache - .filter((x) => x.guild.id !== x.id) - .map((x) => x.id) - .join(sep || ", ") - ) - }, -}) diff --git a/src/native/role/roleIcon.ts b/src/native/role/roleIcon.ts index ef64929573..f61705b282 100644 --- a/src/native/role/roleIcon.ts +++ b/src/native/role/roleIcon.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/roleIntColor.ts b/src/native/role/roleIntColor.ts index 3c4cdf4a03..184f125d93 100644 --- a/src/native/role/roleIntColor.ts +++ b/src/native/role/roleIntColor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { RoleColor } from "./roleColor" diff --git a/src/native/role/roleManageable.ts b/src/native/role/roleManageable.ts index a3f8d15356..2aa06a0b91 100644 --- a/src/native/role/roleManageable.ts +++ b/src/native/role/roleManageable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleMembers.ts b/src/native/role/roleMembers.ts index da3b51623a..ebc53ff876 100644 --- a/src/native/role/roleMembers.ts +++ b/src/native/role/roleMembers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/roleMentionable.ts b/src/native/role/roleMentionable.ts index cea33307c1..f2ff80a1d7 100644 --- a/src/native/role/roleMentionable.ts +++ b/src/native/role/roleMentionable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleName.ts b/src/native/role/roleName.ts index 3b5dd19075..9ac8b98369 100644 --- a/src/native/role/roleName.ts +++ b/src/native/role/roleName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleNames.ts b/src/native/role/roleNames.ts index 86e583e2ae..be7ad9a079 100644 --- a/src/native/role/roleNames.ts +++ b/src/native/role/roleNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/rolePerms.ts b/src/native/role/rolePerms.ts index 0d18deed6d..aa68c031cc 100644 --- a/src/native/role/rolePerms.ts +++ b/src/native/role/rolePerms.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionFlagsBits } from "discord.js" import array from "../../functions/array" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/role/rolePosition.ts b/src/native/role/rolePosition.ts index e088a5e60b..d86f5d4c12 100644 --- a/src/native/role/rolePosition.ts +++ b/src/native/role/rolePosition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleRawData.ts b/src/native/role/roleRawData.ts index b8d853255b..64cf31cf82 100644 --- a/src/native/role/roleRawData.ts +++ b/src/native/role/roleRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleRawPosition.ts b/src/native/role/roleRawPosition.ts index 52f1ba3e0a..a14e177c19 100644 --- a/src/native/role/roleRawPosition.ts +++ b/src/native/role/roleRawPosition.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/role/roleTags.ts b/src/native/role/roleTags.ts index 3f90b81ffd..d28219ac4d 100644 --- a/src/native/role/roleTags.ts +++ b/src/native/role/roleTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/role/roleUnicodeEmoji.ts b/src/native/role/roleUnicodeEmoji.ts index 9d409c7e5f..7b8ccf860c 100644 --- a/src/native/role/roleUnicodeEmoji.ts +++ b/src/native/role/roleUnicodeEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/createSoundboardSound.ts b/src/native/soundboard/createSoundboardSound.ts index 9302cb705a..034e85108b 100644 --- a/src/native/soundboard/createSoundboardSound.ts +++ b/src/native/soundboard/createSoundboardSound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { readFileSync } from "node:fs" import { parseSingleEmoji } from "../../functions/parseSingleEmoji" diff --git a/src/native/soundboard/deleteSoundboardSounds.ts b/src/native/soundboard/deleteSoundboardSounds.ts index fc249fdadc..82770ae287 100644 --- a/src/native/soundboard/deleteSoundboardSounds.ts +++ b/src/native/soundboard/deleteSoundboardSounds.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/editSoundboardSound.ts b/src/native/soundboard/editSoundboardSound.ts index 5e74f9da6b..363d12cbf1 100644 --- a/src/native/soundboard/editSoundboardSound.ts +++ b/src/native/soundboard/editSoundboardSound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { parseSingleEmoji } from "../../functions/parseSingleEmoji" diff --git a/src/native/soundboard/getSoundboardSound.ts b/src/native/soundboard/getSoundboardSound.ts index 2e8be0b81e..4d14f3df39 100644 --- a/src/native/soundboard/getSoundboardSound.ts +++ b/src/native/soundboard/getSoundboardSound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { SoundboardSoundProperties, SoundboardSoundProperty } from "../../properties/sound" diff --git a/src/native/soundboard/soundAvailable.ts b/src/native/soundboard/soundAvailable.ts index 5c9ae4e7ce..0c24aa16bc 100644 --- a/src/native/soundboard/soundAvailable.ts +++ b/src/native/soundboard/soundAvailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundCreatedAt.ts b/src/native/soundboard/soundCreatedAt.ts index 67e69e13ff..97436e10dc 100644 --- a/src/native/soundboard/soundCreatedAt.ts +++ b/src/native/soundboard/soundCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundEmoji.ts b/src/native/soundboard/soundEmoji.ts index e1335a9b18..f3680a7a13 100644 --- a/src/native/soundboard/soundEmoji.ts +++ b/src/native/soundboard/soundEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundGuildID.ts b/src/native/soundboard/soundGuildID.ts index c777086712..ac84eeafc0 100644 --- a/src/native/soundboard/soundGuildID.ts +++ b/src/native/soundboard/soundGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundID.ts b/src/native/soundboard/soundID.ts index c2db71ce75..3b6edd307b 100644 --- a/src/native/soundboard/soundID.ts +++ b/src/native/soundboard/soundID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundName.ts b/src/native/soundboard/soundName.ts index 3fd2d2c25c..d126e056ba 100644 --- a/src/native/soundboard/soundName.ts +++ b/src/native/soundboard/soundName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundURL.ts b/src/native/soundboard/soundURL.ts index e62f95c3af..93f3785292 100644 --- a/src/native/soundboard/soundURL.ts +++ b/src/native/soundboard/soundURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundUserID.ts b/src/native/soundboard/soundUserID.ts index 8bdfc7145a..b8ddae6d90 100644 --- a/src/native/soundboard/soundUserID.ts +++ b/src/native/soundboard/soundUserID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/soundboard/soundVolume.ts b/src/native/soundboard/soundVolume.ts index ab15fed97a..586caaa103 100644 --- a/src/native/soundboard/soundVolume.ts +++ b/src/native/soundboard/soundVolume.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/state/auditLog.ts b/src/native/state/auditLog.ts index 125fb35681..f2167ec255 100644 --- a/src/native/state/auditLog.ts +++ b/src/native/state/auditLog.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AuditProperties, AuditProperty } from "../../properties/audit" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/bulk.ts b/src/native/state/bulk.ts index c5a8ce5551..e886df5c7b 100644 --- a/src/native/state/bulk.ts +++ b/src/native/state/bulk.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BulkProperties, BulkProperty } from "../../properties/bulk" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/effect.ts b/src/native/state/effect.ts index c975bcc7ad..318bf8ebfe 100644 --- a/src/native/state/effect.ts +++ b/src/native/state/effect.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceEffectProperties, VoiceEffectProperty } from "../../properties/voiceEffect" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newAutomodRule.ts b/src/native/state/newAutomodRule.ts index 71653d2ac7..d1096c2150 100644 --- a/src/native/state/newAutomodRule.ts +++ b/src/native/state/newAutomodRule.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutomodRuleProperties, AutomodRuleProperty } from "../../properties/automodRule" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newChannel.ts b/src/native/state/newChannel.ts index ad8d0c804b..c3edddaccf 100644 --- a/src/native/state/newChannel.ts +++ b/src/native/state/newChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelProperties, ChannelProperty } from "../../properties/channel" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newEmoji.ts b/src/native/state/newEmoji.ts index 01578d433f..f14695eda7 100644 --- a/src/native/state/newEmoji.ts +++ b/src/native/state/newEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EmojiProperties, EmojiProperty } from "../../properties/emoji" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newEntitlement.ts b/src/native/state/newEntitlement.ts index 4eb26cb17f..59b381912a 100644 --- a/src/native/state/newEntitlement.ts +++ b/src/native/state/newEntitlement.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EntitlementProperties, EntitlementProperty } from "../../properties/entitlement" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newGuild.ts b/src/native/state/newGuild.ts index d724b649bd..5ae13865d1 100644 --- a/src/native/state/newGuild.ts +++ b/src/native/state/newGuild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildProperties, GuildProperty } from "../../properties/guild" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newInvite.ts b/src/native/state/newInvite.ts index 37042de8df..53408e1916 100644 --- a/src/native/state/newInvite.ts +++ b/src/native/state/newInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { InviteProperties, InviteProperty } from "../../properties/invite" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newMember.ts b/src/native/state/newMember.ts index d0f73ddac9..041a469414 100644 --- a/src/native/state/newMember.ts +++ b/src/native/state/newMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MemberProperties, MemberProperty } from "../../properties/member" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newMessage.ts b/src/native/state/newMessage.ts index 91d8de335d..2a3db92240 100644 --- a/src/native/state/newMessage.ts +++ b/src/native/state/newMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageProperties, MessageProperty } from "../../properties/message" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newPresence.ts b/src/native/state/newPresence.ts index 7deb8ef002..6b7149e67f 100644 --- a/src/native/state/newPresence.ts +++ b/src/native/state/newPresence.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PresenceProperties, PresenceProperty } from "../../properties/presence" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newRole.ts b/src/native/state/newRole.ts index 9fe8b09315..3e8d31944d 100644 --- a/src/native/state/newRole.ts +++ b/src/native/state/newRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { RoleProperties, RoleProperty } from "../../properties/role" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newScheduledEvent.ts b/src/native/state/newScheduledEvent.ts index f0b8130524..9514d5dca8 100644 --- a/src/native/state/newScheduledEvent.ts +++ b/src/native/state/newScheduledEvent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ScheduledEventProperties, ScheduledEventProperty } from "../../properties/scheduledEvent" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newSound.ts b/src/native/state/newSound.ts index e0e2cb4338..a7c7883967 100644 --- a/src/native/state/newSound.ts +++ b/src/native/state/newSound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { SoundboardSoundProperties, SoundboardSoundProperty } from "../../properties/sound" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newStage.ts b/src/native/state/newStage.ts index 0d62099649..b87ab137c1 100644 --- a/src/native/state/newStage.ts +++ b/src/native/state/newStage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StageProperties, StageProperty } from "../../properties/stage" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newState.ts b/src/native/state/newState.ts index 2c3755b704..841ca40965 100644 --- a/src/native/state/newState.ts +++ b/src/native/state/newState.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceStateProperties, VoiceStateProperty } from "../../properties/voiceState" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newSticker.ts b/src/native/state/newSticker.ts index 3e729fd120..d92621194a 100644 --- a/src/native/state/newSticker.ts +++ b/src/native/state/newSticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StickerProperties, StickerProperty } from "../../properties/sticker" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newSubscription.ts b/src/native/state/newSubscription.ts index 17b8c2723c..59e41e968e 100644 --- a/src/native/state/newSubscription.ts +++ b/src/native/state/newSubscription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { SubscriptionProperties, SubscriptionProperty } from "../../properties/subscription" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/newUser.ts b/src/native/state/newUser.ts index bd35626d4b..0df9b79bd5 100644 --- a/src/native/state/newUser.ts +++ b/src/native/state/newUser.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { UserProperties, UserProperty } from "../../properties/user" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldAutomodRule.ts b/src/native/state/oldAutomodRule.ts index a120c30814..b57d99b269 100644 --- a/src/native/state/oldAutomodRule.ts +++ b/src/native/state/oldAutomodRule.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AutomodRuleProperties, AutomodRuleProperty } from "../../properties/automodRule" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldChannel.ts b/src/native/state/oldChannel.ts index 5535c17d0d..f56a7958c8 100644 --- a/src/native/state/oldChannel.ts +++ b/src/native/state/oldChannel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ChannelProperties, ChannelProperty } from "../../properties/channel" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldEmoji.ts b/src/native/state/oldEmoji.ts index 8e85ba1c5f..11184bbb71 100644 --- a/src/native/state/oldEmoji.ts +++ b/src/native/state/oldEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EmojiProperties, EmojiProperty } from "../../properties/emoji" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldEntitlement.ts b/src/native/state/oldEntitlement.ts index b5231af66a..910769df51 100644 --- a/src/native/state/oldEntitlement.ts +++ b/src/native/state/oldEntitlement.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EntitlementProperties, EntitlementProperty } from "../../properties/entitlement" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldGuild.ts b/src/native/state/oldGuild.ts index 87a913034c..2056b296ee 100644 --- a/src/native/state/oldGuild.ts +++ b/src/native/state/oldGuild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildProperties, GuildProperty } from "../../properties/guild" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldInvite.ts b/src/native/state/oldInvite.ts index 7b1eee5ce2..6e36c06453 100644 --- a/src/native/state/oldInvite.ts +++ b/src/native/state/oldInvite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { InviteProperties, InviteProperty } from "../../properties/invite" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldMember.ts b/src/native/state/oldMember.ts index 9ed73606fc..1756f844b6 100644 --- a/src/native/state/oldMember.ts +++ b/src/native/state/oldMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MemberProperties, MemberProperty } from "../../properties/member" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldMessage.ts b/src/native/state/oldMessage.ts index 9d187c6f60..c9e56d2128 100644 --- a/src/native/state/oldMessage.ts +++ b/src/native/state/oldMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageProperties, MessageProperty } from "../../properties/message" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldPresence.ts b/src/native/state/oldPresence.ts index 12653e2c28..8889120548 100644 --- a/src/native/state/oldPresence.ts +++ b/src/native/state/oldPresence.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PresenceProperties, PresenceProperty } from "../../properties/presence" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldRole.ts b/src/native/state/oldRole.ts index 21e96919a7..0747ae6a59 100644 --- a/src/native/state/oldRole.ts +++ b/src/native/state/oldRole.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { RoleProperties, RoleProperty } from "../../properties/role" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldScheduledEvent.ts b/src/native/state/oldScheduledEvent.ts index e03259e453..9aa9825a21 100644 --- a/src/native/state/oldScheduledEvent.ts +++ b/src/native/state/oldScheduledEvent.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ScheduledEventProperties, ScheduledEventProperty } from "../../properties/scheduledEvent" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldSound.ts b/src/native/state/oldSound.ts index edd8d2740e..73b96f9096 100644 --- a/src/native/state/oldSound.ts +++ b/src/native/state/oldSound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { SoundboardSoundProperties, SoundboardSoundProperty } from "../../properties/sound" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldStage.ts b/src/native/state/oldStage.ts index d53ddb4d7c..005dd9d14d 100644 --- a/src/native/state/oldStage.ts +++ b/src/native/state/oldStage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StageProperties, StageProperty } from "../../properties/stage" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldState.ts b/src/native/state/oldState.ts index 14016865ac..659b359484 100644 --- a/src/native/state/oldState.ts +++ b/src/native/state/oldState.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceStateProperties, VoiceStateProperty } from "../../properties/voiceState" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldSticker.ts b/src/native/state/oldSticker.ts index ad7ec609c4..99a41a6936 100644 --- a/src/native/state/oldSticker.ts +++ b/src/native/state/oldSticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StickerProperties, StickerProperty } from "../../properties/sticker" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldSubscription.ts b/src/native/state/oldSubscription.ts index 3c258191a2..d800230fd9 100644 --- a/src/native/state/oldSubscription.ts +++ b/src/native/state/oldSubscription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { SubscriptionProperties, SubscriptionProperty } from "../../properties/subscription" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/state/oldUser.ts b/src/native/state/oldUser.ts index b19b731f49..d73d78d8b4 100644 --- a/src/native/state/oldUser.ts +++ b/src/native/state/oldUser.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { UserProperties, UserProperty } from "../../properties/user" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/statement/async.ts b/src/native/statement/async.ts index c0c1c3ade9..f9e4c531b5 100644 --- a/src/native/statement/async.ts +++ b/src/native/statement/async.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/break.ts b/src/native/statement/break.ts index a1627f68ad..1595f07857 100644 --- a/src/native/statement/break.ts +++ b/src/native/statement/break.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/case.ts b/src/native/statement/case.ts index 712cf0aea5..2b33b5aadf 100644 --- a/src/native/statement/case.ts +++ b/src/native/statement/case.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/continue.ts b/src/native/statement/continue.ts index 1c8bee1baf..ee00dc7fb7 100644 --- a/src/native/statement/continue.ts +++ b/src/native/statement/continue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/default.ts b/src/native/statement/default.ts index 0fc178f43f..4e358df86b 100644 --- a/src/native/statement/default.ts +++ b/src/native/statement/default.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/else.ts b/src/native/statement/else.ts index 46b15e4e1b..1bdeab19fd 100644 --- a/src/native/statement/else.ts +++ b/src/native/statement/else.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, diff --git a/src/native/statement/elseif.ts b/src/native/statement/elseif.ts index 2e5b23c199..9c206508b0 100644 --- a/src/native/statement/elseif.ts +++ b/src/native/statement/elseif.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, diff --git a/src/native/statement/if.ts b/src/native/statement/if.ts index 7ef3515f5e..35c74c45c6 100644 --- a/src/native/statement/if.ts +++ b/src/native/statement/if.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, diff --git a/src/native/statement/ifx.ts b/src/native/statement/ifx.ts index 4bb98bfb19..c7649d245d 100644 --- a/src/native/statement/ifx.ts +++ b/src/native/statement/ifx.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import _else from "./else" import elseif from "./elseif" diff --git a/src/native/statement/loop.ts b/src/native/statement/loop.ts index 039a0beca1..735cf32f40 100644 --- a/src/native/statement/loop.ts +++ b/src/native/statement/loop.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -29,8 +34,8 @@ export default new NativeFunction({ type: ArgType.String }, { - name: "desc", - description: "Whether to use desc order for iteration count", + name: "asc", + description: "Whether to use asc order for iteration count", rest: false, type: ArgType.Boolean, } @@ -42,13 +47,13 @@ export default new NativeFunction({ } = await this["resolveMultipleArgs"](ctx, 0, 2, 3) if (!this["isValidReturnType"](rt)) return rt - const [ times, varName, type ] = args + const [ times, varName, asc ] = args const code = this.data.fields![1] as IExtendedCompiledFunctionField let output = "" - let condition = type || times === -1 + let condition = asc || times === -1 - for (let i = condition ? 1 : times;(type ? i <= times : i > 0) || times === -1;condition ? i++ : i--) { + for (let i = condition ? 1 : times;(asc ? i <= times : i > 0) || times === -1;condition ? i++ : i--) { if (varName) ctx.setEnvironmentKey(varName, i) diff --git a/src/native/statement/return.ts b/src/native/statement/return.ts index 55ee48f376..0fff1f7095 100644 --- a/src/native/statement/return.ts +++ b/src/native/statement/return.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/statement/scope.ts b/src/native/statement/scope.ts index 0661b6d63d..276f882dfa 100644 --- a/src/native/statement/scope.ts +++ b/src/native/statement/scope.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/switch.ts b/src/native/statement/switch.ts index 1fcdd9eab3..b6d2951410 100644 --- a/src/native/statement/switch.ts +++ b/src/native/statement/switch.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" import _case from "./case" diff --git a/src/native/statement/try.ts b/src/native/statement/try.ts index 02b58ee1b6..063a6386ac 100644 --- a/src/native/statement/try.ts +++ b/src/native/statement/try.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, ForgeError, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/statement/while.ts b/src/native/statement/while.ts index c61448b620..66f7fef14a 100644 --- a/src/native/statement/while.ts +++ b/src/native/statement/while.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionConditionField, diff --git a/src/native/sticker/addSticker.ts b/src/native/sticker/addSticker.ts index 73809975b8..5e880dd94c 100644 --- a/src/native/sticker/addSticker.ts +++ b/src/native/sticker/addSticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/deleteStickers.ts b/src/native/sticker/deleteStickers.ts index ab96be1679..4ec2dd6fc2 100644 --- a/src/native/sticker/deleteStickers.ts +++ b/src/native/sticker/deleteStickers.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/editSticker.ts b/src/native/sticker/editSticker.ts index 344322d3ca..a7aa2ab93e 100644 --- a/src/native/sticker/editSticker.ts +++ b/src/native/sticker/editSticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/setStickerDescription.ts b/src/native/sticker/setStickerDescription.ts index 6c443c81c0..b638408090 100644 --- a/src/native/sticker/setStickerDescription.ts +++ b/src/native/sticker/setStickerDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/setStickerName.ts b/src/native/sticker/setStickerName.ts index 9448bdaf73..78e7701c34 100644 --- a/src/native/sticker/setStickerName.ts +++ b/src/native/sticker/setStickerName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/setStickerTags.ts b/src/native/sticker/setStickerTags.ts index cffb17ff09..623dd740ec 100644 --- a/src/native/sticker/setStickerTags.ts +++ b/src/native/sticker/setStickerTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerAvailable.ts b/src/native/sticker/stickerAvailable.ts index 01cd247143..3999761b8a 100644 --- a/src/native/sticker/stickerAvailable.ts +++ b/src/native/sticker/stickerAvailable.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerCreatedAt.ts b/src/native/sticker/stickerCreatedAt.ts index b5969a184a..442f38ca96 100644 --- a/src/native/sticker/stickerCreatedAt.ts +++ b/src/native/sticker/stickerCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerDescription.ts b/src/native/sticker/stickerDescription.ts index 280a8a2e58..628a2b2425 100644 --- a/src/native/sticker/stickerDescription.ts +++ b/src/native/sticker/stickerDescription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerFormat.ts b/src/native/sticker/stickerFormat.ts index 7a40325244..dccf3578aa 100644 --- a/src/native/sticker/stickerFormat.ts +++ b/src/native/sticker/stickerFormat.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StickerFormatType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/sticker/stickerGuildID.ts b/src/native/sticker/stickerGuildID.ts index f509636529..eaad5ca39b 100644 --- a/src/native/sticker/stickerGuildID.ts +++ b/src/native/sticker/stickerGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerID.ts b/src/native/sticker/stickerID.ts index 3b437d9a36..904eff53aa 100644 --- a/src/native/sticker/stickerID.ts +++ b/src/native/sticker/stickerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerName.ts b/src/native/sticker/stickerName.ts index e1cadea538..b4c5d83c10 100644 --- a/src/native/sticker/stickerName.ts +++ b/src/native/sticker/stickerName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerOwnerID.ts b/src/native/sticker/stickerOwnerID.ts index d20dc7ca18..0f11442559 100644 --- a/src/native/sticker/stickerOwnerID.ts +++ b/src/native/sticker/stickerOwnerID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerPackID.ts b/src/native/sticker/stickerPackID.ts index 325548d52f..1d854b372f 100644 --- a/src/native/sticker/stickerPackID.ts +++ b/src/native/sticker/stickerPackID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerRawData.ts b/src/native/sticker/stickerRawData.ts index f4723d712d..0702af04ab 100644 --- a/src/native/sticker/stickerRawData.ts +++ b/src/native/sticker/stickerRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerSortValue.ts b/src/native/sticker/stickerSortValue.ts index 0812ce0979..5267fff9ae 100644 --- a/src/native/sticker/stickerSortValue.ts +++ b/src/native/sticker/stickerSortValue.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerTags.ts b/src/native/sticker/stickerTags.ts index 717c049031..7fda7a01e5 100644 --- a/src/native/sticker/stickerTags.ts +++ b/src/native/sticker/stickerTags.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/sticker/stickerType.ts b/src/native/sticker/stickerType.ts index cddbe5e652..2f6406f556 100644 --- a/src/native/sticker/stickerType.ts +++ b/src/native/sticker/stickerType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StickerType } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/sticker/stickerURL.ts b/src/native/sticker/stickerURL.ts index d4e0006592..8d4cc89b54 100644 --- a/src/native/sticker/stickerURL.ts +++ b/src/native/sticker/stickerURL.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/advancedReplace.ts b/src/native/string/advancedReplace.ts index e5bcdd4473..4f47b363ac 100644 --- a/src/native/string/advancedReplace.ts +++ b/src/native/string/advancedReplace.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/argCount.ts b/src/native/string/argCount.ts index 604063b699..2695edf69c 100644 --- a/src/native/string/argCount.ts +++ b/src/native/string/argCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/charCodeAt.ts b/src/native/string/charCodeAt.ts index 3639ee2e08..a4524c7f29 100644 --- a/src/native/string/charCodeAt.ts +++ b/src/native/string/charCodeAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/charCount.ts b/src/native/string/charCount.ts index d0bd9af8f8..4dfa831998 100644 --- a/src/native/string/charCount.ts +++ b/src/native/string/charCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/checkContains.ts b/src/native/string/checkContains.ts index 2b021fe6df..8d461f6867 100644 --- a/src/native/string/checkContains.ts +++ b/src/native/string/checkContains.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/cropArgs.ts b/src/native/string/cropArgs.ts index d22d224507..2f9dfcf9e2 100644 --- a/src/native/string/cropArgs.ts +++ b/src/native/string/cropArgs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/cropText.ts b/src/native/string/cropText.ts index 5095a1a352..013108b5cb 100644 --- a/src/native/string/cropText.ts +++ b/src/native/string/cropText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/endsWith.ts b/src/native/string/endsWith.ts index dbb9d0336f..92f29dd4b7 100644 --- a/src/native/string/endsWith.ts +++ b/src/native/string/endsWith.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/fromCharCode.ts b/src/native/string/fromCharCode.ts index 0683895eea..244c87b4f0 100644 --- a/src/native/string/fromCharCode.ts +++ b/src/native/string/fromCharCode.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/padEnd.ts b/src/native/string/padEnd.ts index 862cc6e4d5..abb8c40076 100644 --- a/src/native/string/padEnd.ts +++ b/src/native/string/padEnd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/padStart.ts b/src/native/string/padStart.ts index df409e2d61..71becc91bf 100644 --- a/src/native/string/padStart.ts +++ b/src/native/string/padStart.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/randomString.ts b/src/native/string/randomString.ts index 1347c639e2..d81f2a4c5d 100644 --- a/src/native/string/randomString.ts +++ b/src/native/string/randomString.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export const Numbers = "0123456789" diff --git a/src/native/string/randomText.ts b/src/native/string/randomText.ts index a038520318..75a0bc5ad7 100644 --- a/src/native/string/randomText.ts +++ b/src/native/string/randomText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/randomUUID.ts b/src/native/string/randomUUID.ts index d3b648ce96..22751a2777 100644 --- a/src/native/string/randomUUID.ts +++ b/src/native/string/randomUUID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { randomUUID } from "crypto" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/string/repeat.ts b/src/native/string/repeat.ts index 27c7b5e368..69b7136c3f 100644 --- a/src/native/string/repeat.ts +++ b/src/native/string/repeat.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/replace.ts b/src/native/string/replace.ts index 36cdc7b7c7..edd36a080a 100644 --- a/src/native/string/replace.ts +++ b/src/native/string/replace.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/replaceRegex.ts b/src/native/string/replaceRegex.ts index bfa2679452..ebe0089a3b 100644 --- a/src/native/string/replaceRegex.ts +++ b/src/native/string/replaceRegex.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/reverseText.ts b/src/native/string/reverseText.ts index 622300612a..887925a68b 100644 --- a/src/native/string/reverseText.ts +++ b/src/native/string/reverseText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/sliceText.ts b/src/native/string/sliceText.ts index 3c8b11c3cd..7d15954be2 100644 --- a/src/native/string/sliceText.ts +++ b/src/native/string/sliceText.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/snowflake.ts b/src/native/string/snowflake.ts index 5032a4b362..e5e0e3414c 100644 --- a/src/native/string/snowflake.ts +++ b/src/native/string/snowflake.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { SnowflakeUtil } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/string/startsWith.ts b/src/native/string/startsWith.ts index 0c53243dbb..fceed0d392 100644 --- a/src/native/string/startsWith.ts +++ b/src/native/string/startsWith.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { startsWith } from "lodash" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/string/toCamelCase.ts b/src/native/string/toCamelCase.ts index f8adee3979..a7450ac2c6 100644 --- a/src/native/string/toCamelCase.ts +++ b/src/native/string/toCamelCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { camelCase } from "lodash" diff --git a/src/native/string/toKebabCase.ts b/src/native/string/toKebabCase.ts index 27b1a1c01c..efa17dc76d 100644 --- a/src/native/string/toKebabCase.ts +++ b/src/native/string/toKebabCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { kebabCase } from "lodash" diff --git a/src/native/string/toLowerCase.ts b/src/native/string/toLowerCase.ts index f4cd3f36e4..a59269d1fc 100644 --- a/src/native/string/toLowerCase.ts +++ b/src/native/string/toLowerCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/toSnakeCase.ts b/src/native/string/toSnakeCase.ts index d83bfc0146..c1ce4991fb 100644 --- a/src/native/string/toSnakeCase.ts +++ b/src/native/string/toSnakeCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { snakeCase } from "lodash" diff --git a/src/native/string/toTitleCase.ts b/src/native/string/toTitleCase.ts index bdfa397880..f165ebb411 100644 --- a/src/native/string/toTitleCase.ts +++ b/src/native/string/toTitleCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import lodash from "lodash" diff --git a/src/native/string/toUpperCase.ts b/src/native/string/toUpperCase.ts index 10bb212a46..12fa49282d 100644 --- a/src/native/string/toUpperCase.ts +++ b/src/native/string/toUpperCase.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/trim.ts b/src/native/string/trim.ts index b6d4a07209..35ca840d0d 100644 --- a/src/native/string/trim.ts +++ b/src/native/string/trim.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/trimEnd.ts b/src/native/string/trimEnd.ts index da20b9eb00..485adbf91e 100644 --- a/src/native/string/trimEnd.ts +++ b/src/native/string/trimEnd.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/trimLines.ts b/src/native/string/trimLines.ts index 230b9625b5..459cef0a91 100644 --- a/src/native/string/trimLines.ts +++ b/src/native/string/trimLines.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/string/trimStart.ts b/src/native/string/trimStart.ts index 2742325af6..591e0b7047 100644 --- a/src/native/string/trimStart.ts +++ b/src/native/string/trimStart.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/system/cpu.ts b/src/native/system/cpu.ts index 6e69126800..807600cf78 100644 --- a/src/native/system/cpu.ts +++ b/src/native/system/cpu.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + /* eslint-disable no-undef */ import { cpus, loadavg } from "os" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/system/cpuArch.ts b/src/native/system/cpuArch.ts index d17ffbb107..d511632da0 100644 --- a/src/native/system/cpuArch.ts +++ b/src/native/system/cpuArch.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/cpuCores.ts b/src/native/system/cpuCores.ts index 5fff72b0d2..9203a6fdaf 100644 --- a/src/native/system/cpuCores.ts +++ b/src/native/system/cpuCores.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/cpuModel.ts b/src/native/system/cpuModel.ts index 85abc9194f..4c2b83aacf 100644 --- a/src/native/system/cpuModel.ts +++ b/src/native/system/cpuModel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/cpuSpeed.ts b/src/native/system/cpuSpeed.ts index b75ee30037..1c290bb702 100644 --- a/src/native/system/cpuSpeed.ts +++ b/src/native/system/cpuSpeed.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/networkCardIPs.ts b/src/native/system/networkCardIPs.ts index 5a0163d707..408a0a2710 100644 --- a/src/native/system/networkCardIPs.ts +++ b/src/native/system/networkCardIPs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { networkInterfaces } from "os" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/system/networkCardNames.ts b/src/native/system/networkCardNames.ts index 4d3c9e81b6..518bce2afd 100644 --- a/src/native/system/networkCardNames.ts +++ b/src/native/system/networkCardNames.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { networkInterfaces } from "os" import { ArgType, NativeFunction, Return } from "../../structures" import array from "../../functions/array" diff --git a/src/native/system/nodeVersion.ts b/src/native/system/nodeVersion.ts index ab7088c7a8..cfcb61680b 100644 --- a/src/native/system/nodeVersion.ts +++ b/src/native/system/nodeVersion.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/system/os.ts b/src/native/system/os.ts index 740efd4b1d..a1d8e4a29f 100644 --- a/src/native/system/os.ts +++ b/src/native/system/os.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/osUptime.ts b/src/native/system/osUptime.ts index ba3445c305..fa50122a02 100644 --- a/src/native/system/osUptime.ts +++ b/src/native/system/osUptime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/system/ram.ts b/src/native/system/ram.ts index 59855adfa0..757976900c 100644 --- a/src/native/system/ram.ts +++ b/src/native/system/ram.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + /* eslint-disable no-undef */ import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/system/ramTotal.ts b/src/native/system/ramTotal.ts index c01eb27360..301c8e15a1 100644 --- a/src/native/system/ramTotal.ts +++ b/src/native/system/ramTotal.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import os from "node:os" diff --git a/src/native/time/calendarDay.ts b/src/native/time/calendarDay.ts index 193ab4463d..6f063ccb78 100644 --- a/src/native/time/calendarDay.ts +++ b/src/native/time/calendarDay.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" function getDayOfYear(date: Date) { diff --git a/src/native/time/calendarWeek.ts b/src/native/time/calendarWeek.ts index c737965a31..b777b4e746 100644 --- a/src/native/time/calendarWeek.ts +++ b/src/native/time/calendarWeek.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" function getWeekOfYear(date: Date) { diff --git a/src/native/time/clearInterval.ts b/src/native/time/clearInterval.ts index c49a35fe21..3a5ac75de7 100644 --- a/src/native/time/clearInterval.ts +++ b/src/native/time/clearInterval.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Arg, ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/clearTimeout.ts b/src/native/time/clearTimeout.ts index 84cac6181a..a3ed501dbb 100644 --- a/src/native/time/clearTimeout.ts +++ b/src/native/time/clearTimeout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/day.ts b/src/native/time/day.ts index ee6a5e3d81..69f57b1fa3 100644 --- a/src/native/time/day.ts +++ b/src/native/time/day.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { BasicTimeFormat } from "./hour" diff --git a/src/native/time/discordTimestamp.ts b/src/native/time/discordTimestamp.ts index f45b8ffbf4..b5818d8cd6 100644 --- a/src/native/time/discordTimestamp.ts +++ b/src/native/time/discordTimestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TimestampStyles, time } from "discord.js" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/time/executionTime.ts b/src/native/time/executionTime.ts index 368f90f793..aa1ab6ce71 100644 --- a/src/native/time/executionTime.ts +++ b/src/native/time/executionTime.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/getTimestamp.ts b/src/native/time/getTimestamp.ts index 0882e33a72..1aac860b0d 100644 --- a/src/native/time/getTimestamp.ts +++ b/src/native/time/getTimestamp.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/hour.ts b/src/native/time/hour.ts index 741311ea31..27f80cc85c 100644 --- a/src/native/time/hour.ts +++ b/src/native/time/hour.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum BasicTimeFormat { diff --git a/src/native/time/minute.ts b/src/native/time/minute.ts index bb86fdf2c1..33eb1ae2c7 100644 --- a/src/native/time/minute.ts +++ b/src/native/time/minute.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { BasicTimeFormat } from "./hour" diff --git a/src/native/time/month.ts b/src/native/time/month.ts index 9b2e75dc4c..e56b708e34 100644 --- a/src/native/time/month.ts +++ b/src/native/time/month.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum ExtendedTimeFormat { diff --git a/src/native/time/parseDate.ts b/src/native/time/parseDate.ts index a52266fbbc..134d21a3fc 100644 --- a/src/native/time/parseDate.ts +++ b/src/native/time/parseDate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export enum DateType { diff --git a/src/native/time/parseDigital.ts b/src/native/time/parseDigital.ts index cfe5e64122..ba92e858cc 100644 --- a/src/native/time/parseDigital.ts +++ b/src/native/time/parseDigital.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { parseDigital } from "../../functions/digital" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/time/parseMS.ts b/src/native/time/parseMS.ts index b36151d86f..1edcb660f7 100644 --- a/src/native/time/parseMS.ts +++ b/src/native/time/parseMS.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TimeParser } from "../../constants" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/time/parseString.ts b/src/native/time/parseString.ts index 55f7565a79..eb4cc2d520 100644 --- a/src/native/time/parseString.ts +++ b/src/native/time/parseString.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TimeParser } from "../../constants" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/time/second.ts b/src/native/time/second.ts index 3115c381c6..3ad0677f32 100644 --- a/src/native/time/second.ts +++ b/src/native/time/second.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { BasicTimeFormat } from "./hour" diff --git a/src/native/time/setCalendar.ts b/src/native/time/setCalendar.ts index 154a853f3d..4017cc2a10 100644 --- a/src/native/time/setCalendar.ts +++ b/src/native/time/setCalendar.ts @@ -1,13 +1,19 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { CalendarType } from "../../structures" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$setCalendar", version: "1.5.0", - aliases: ["$calendar"], description: "Sets the calendar for time functions", + aliases: ["$calendar"], unwrap: true, brackets: true, + experimental: true, args: [ { name: "type", diff --git a/src/native/time/setInterval.ts b/src/native/time/setInterval.ts index ab40c3791d..492005c8fe 100644 --- a/src/native/time/setInterval.ts +++ b/src/native/time/setInterval.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/setTimeout.ts b/src/native/time/setTimeout.ts index 4bd9a8540f..24b5435635 100644 --- a/src/native/time/setTimeout.ts +++ b/src/native/time/setTimeout.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/setTimezone.ts b/src/native/time/setTimezone.ts index a370f3c081..bb8c877fe9 100644 --- a/src/native/time/setTimezone.ts +++ b/src/native/time/setTimezone.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/unparseDate.ts b/src/native/time/unparseDate.ts index 5e7d74769c..3a481bc35b 100644 --- a/src/native/time/unparseDate.ts +++ b/src/native/time/unparseDate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/time/unparseDigital.ts b/src/native/time/unparseDigital.ts index 6dd73fdc72..129cdb032e 100644 --- a/src/native/time/unparseDigital.ts +++ b/src/native/time/unparseDigital.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { unparseDigital } from "../../functions/digital" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/time/wait.ts b/src/native/time/wait.ts index 49f4644bd1..6fe9f92147 100644 --- a/src/native/time/wait.ts +++ b/src/native/time/wait.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { setTimeout } from "timers/promises" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/time/week.ts b/src/native/time/week.ts index a9f3533552..c82115ee60 100644 --- a/src/native/time/week.ts +++ b/src/native/time/week.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" function getWeekOfMonth(date: Date) { diff --git a/src/native/time/weekday.ts b/src/native/time/weekday.ts index ac1904d788..ccb8736301 100644 --- a/src/native/time/weekday.ts +++ b/src/native/time/weekday.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { ExtendedTimeFormat } from "./month" diff --git a/src/native/time/year.ts b/src/native/time/year.ts index 203a1594b3..7d1b640522 100644 --- a/src/native/time/year.ts +++ b/src/native/time/year.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" import { BasicTimeFormat } from "./hour" diff --git a/src/native/unsafe/api.ts b/src/native/unsafe/api.ts index d3bd1a6ae6..ef2d5ca9c0 100644 --- a/src/native/unsafe/api.ts +++ b/src/native/unsafe/api.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Routes } from "discord.js" import { ArgType, NativeFunction } from "../../structures" import parseJSON from "../../functions/parseJSON" diff --git a/src/native/unsafe/coroutine.ts b/src/native/unsafe/coroutine.ts index 29cf20be05..b1e4bb34d6 100644 --- a/src/native/unsafe/coroutine.ts +++ b/src/native/unsafe/coroutine.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + /* eslint-disable no-undef */ import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/unsafe/djsEval.ts b/src/native/unsafe/djsEval.ts index 26904679ca..dffbba9339 100644 --- a/src/native/unsafe/djsEval.ts +++ b/src/native/unsafe/djsEval.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inspect } from "util" import { ErrorType } from "../../structures/forge/ForgeError" import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" diff --git a/src/native/unsafe/eval.ts b/src/native/unsafe/eval.ts index cfd6835260..2fae2d7038 100644 --- a/src/native/unsafe/eval.ts +++ b/src/native/unsafe/eval.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Interpreter, Compiler } from "../../core" import { NativeFunction, ArgType, Logger } from "../../structures" diff --git a/src/native/unsafe/exec.ts b/src/native/unsafe/exec.ts index 6c7b2a0955..ccce28aab2 100644 --- a/src/native/unsafe/exec.ts +++ b/src/native/unsafe/exec.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { execSync } from "child_process" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/unsafe/function.ts b/src/native/unsafe/function.ts index 887c50389c..f75b826faa 100644 --- a/src/native/unsafe/function.ts +++ b/src/native/unsafe/function.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/unsafe/gc.ts b/src/native/unsafe/gc.ts index ed2cb58294..35d47a7408 100644 --- a/src/native/unsafe/gc.ts +++ b/src/native/unsafe/gc.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { execArgv } from "process" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/unsafe/instanceName.ts b/src/native/unsafe/instanceName.ts index d8f59ef63d..54d167c9c3 100644 --- a/src/native/unsafe/instanceName.ts +++ b/src/native/unsafe/instanceName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadChannelContext.ts b/src/native/unsafe/loadChannelContext.ts index 447f7618cc..df29d73672 100644 --- a/src/native/unsafe/loadChannelContext.ts +++ b/src/native/unsafe/loadChannelContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadGuildContext.ts b/src/native/unsafe/loadGuildContext.ts index 3fdf883f87..5d7ca2e881 100644 --- a/src/native/unsafe/loadGuildContext.ts +++ b/src/native/unsafe/loadGuildContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadMemberContext.ts b/src/native/unsafe/loadMemberContext.ts index 693725e205..3619cd89ec 100644 --- a/src/native/unsafe/loadMemberContext.ts +++ b/src/native/unsafe/loadMemberContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadMessageContext.ts b/src/native/unsafe/loadMessageContext.ts index 485fe873ef..f13e97e7a4 100644 --- a/src/native/unsafe/loadMessageContext.ts +++ b/src/native/unsafe/loadMessageContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadRoleContext.ts b/src/native/unsafe/loadRoleContext.ts index c90a97ea7c..6b1d793265 100644 --- a/src/native/unsafe/loadRoleContext.ts +++ b/src/native/unsafe/loadRoleContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadStickerContext.ts b/src/native/unsafe/loadStickerContext.ts index 294e13c502..f6cf5b01b7 100644 --- a/src/native/unsafe/loadStickerContext.ts +++ b/src/native/unsafe/loadStickerContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/unsafe/loadUserContext.ts b/src/native/unsafe/loadUserContext.ts index 862e0da224..ee426b594a 100644 --- a/src/native/unsafe/loadUserContext.ts +++ b/src/native/unsafe/loadUserContext.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/authorID.ts b/src/native/user/authorID.ts index 7416a9a8a5..51566b6cb6 100644 --- a/src/native/user/authorID.ts +++ b/src/native/user/authorID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" import { Return } from "../../structures/@internal/Return" diff --git a/src/native/user/discriminator.ts b/src/native/user/discriminator.ts index f6816ef395..0319d7734a 100644 --- a/src/native/user/discriminator.ts +++ b/src/native/user/discriminator.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/isBot.ts b/src/native/user/isBot.ts index 5898966f86..df06b3d609 100644 --- a/src/native/user/isBot.ts +++ b/src/native/user/isBot.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/isBotVerified.ts b/src/native/user/isBotVerified.ts index f6566fb824..b68796b310 100644 --- a/src/native/user/isBotVerified.ts +++ b/src/native/user/isBotVerified.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/isUserDMEnabled.ts b/src/native/user/isUserDMEnabled.ts index 44daa579ac..4f3141051f 100644 --- a/src/native/user/isUserDMEnabled.ts +++ b/src/native/user/isUserDMEnabled.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { DiscordAPIError } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/randomUserID.ts b/src/native/user/randomUserID.ts index 261dad2b33..684eb32b29 100644 --- a/src/native/user/randomUserID.ts +++ b/src/native/user/randomUserID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/sendDM.ts b/src/native/user/sendDM.ts index 069976ba3c..181fad197f 100644 --- a/src/native/user/sendDM.ts +++ b/src/native/user/sendDM.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userAccentColor.ts b/src/native/user/userAccentColor.ts index ed59d84912..b41cf83ff8 100644 --- a/src/native/user/userAccentColor.ts +++ b/src/native/user/userAccentColor.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userAvatar.ts b/src/native/user/userAvatar.ts index 86ee8d4f20..b4ce0b1004 100644 --- a/src/native/user/userAvatar.ts +++ b/src/native/user/userAvatar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userAvatarDecoration.ts b/src/native/user/userAvatarDecoration.ts index 40b4a978c8..b7b62f2c0f 100644 --- a/src/native/user/userAvatarDecoration.ts +++ b/src/native/user/userAvatarDecoration.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userBadges.ts b/src/native/user/userBadges.ts index 06cad53637..80989dde43 100644 --- a/src/native/user/userBadges.ts +++ b/src/native/user/userBadges.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { UserFlags } from "discord.js" import array from "../../functions/array" import noop from "../../functions/noop" diff --git a/src/native/user/userBanner.ts b/src/native/user/userBanner.ts index 937a1bf69b..c483b1aa04 100644 --- a/src/native/user/userBanner.ts +++ b/src/native/user/userBanner.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userCount.ts b/src/native/user/userCount.ts index e02529b56b..97f5457d72 100644 --- a/src/native/user/userCount.ts +++ b/src/native/user/userCount.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userCreatedAt.ts b/src/native/user/userCreatedAt.ts index 05ab3f26bf..c199aebaed 100644 --- a/src/native/user/userCreatedAt.ts +++ b/src/native/user/userCreatedAt.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userDefaultAvatar.ts b/src/native/user/userDefaultAvatar.ts index ed76fc1e8f..716af0cbf5 100644 --- a/src/native/user/userDefaultAvatar.ts +++ b/src/native/user/userDefaultAvatar.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userDisplayName.ts b/src/native/user/userDisplayName.ts index f00495ce79..1b1a5f5d2c 100644 --- a/src/native/user/userDisplayName.ts +++ b/src/native/user/userDisplayName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userExists.ts b/src/native/user/userExists.ts index bfd7c44d06..16549c88b9 100644 --- a/src/native/user/userExists.ts +++ b/src/native/user/userExists.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userGlobalName.ts b/src/native/user/userGlobalName.ts index 7c64f98ece..64924f166f 100644 --- a/src/native/user/userGlobalName.ts +++ b/src/native/user/userGlobalName.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userGuildBadge.ts b/src/native/user/userGuildBadge.ts index 3f33aa87e8..df4e936555 100644 --- a/src/native/user/userGuildBadge.ts +++ b/src/native/user/userGuildBadge.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ImageExtension, ImageSize } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userGuildEnabled.ts b/src/native/user/userGuildEnabled.ts index 56279dc1e7..2dbe78578b 100644 --- a/src/native/user/userGuildEnabled.ts +++ b/src/native/user/userGuildEnabled.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userGuildID.ts b/src/native/user/userGuildID.ts index 027b1fab7c..e1e48b7867 100644 --- a/src/native/user/userGuildID.ts +++ b/src/native/user/userGuildID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userGuildTag.ts b/src/native/user/userGuildTag.ts index 0f64e55355..da1e3adb47 100644 --- a/src/native/user/userGuildTag.ts +++ b/src/native/user/userGuildTag.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userIDs.ts b/src/native/user/userIDs.ts index dcd5eefb02..7205af873d 100644 --- a/src/native/user/userIDs.ts +++ b/src/native/user/userIDs.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import array from "../../functions/array" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/native/user/userRawData.ts b/src/native/user/userRawData.ts index 595d67df8b..bb9574d079 100644 --- a/src/native/user/userRawData.ts +++ b/src/native/user/userRawData.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/userReferenceID.ts b/src/native/user/userReferenceID.ts index 12157474dd..4397100fd0 100644 --- a/src/native/user/userReferenceID.ts +++ b/src/native/user/userReferenceID.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, MessageResolvable, TextBasedChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/user/userTag.ts b/src/native/user/userTag.ts index 1717b6730e..c0b3169d07 100644 --- a/src/native/user/userTag.ts +++ b/src/native/user/userTag.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/user/username.ts b/src/native/user/username.ts index 8134aa4404..186000f657 100644 --- a/src/native/user/username.ts +++ b/src/native/user/username.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/variable/delete.ts b/src/native/variable/delete.ts index de843951dc..951e95a312 100644 --- a/src/native/variable/delete.ts +++ b/src/native/variable/delete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/variable/env.ts b/src/native/variable/env.ts index aeea094cb7..d8495cb1b0 100644 --- a/src/native/variable/env.ts +++ b/src/native/variable/env.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/variable/get.ts b/src/native/variable/get.ts index 9e8aed0e66..e243767cd5 100644 --- a/src/native/variable/get.ts +++ b/src/native/variable/get.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/variable/has.ts b/src/native/variable/has.ts index 87f93474b3..3446c14a8f 100644 --- a/src/native/variable/has.ts +++ b/src/native/variable/has.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/variable/let.ts b/src/native/variable/let.ts index 16de4c695b..81955b88f9 100644 --- a/src/native/variable/let.ts +++ b/src/native/variable/let.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction" export default new NativeFunction({ diff --git a/src/native/variable/letDivide.ts b/src/native/variable/letDivide.ts index ccab4b9f75..97102677ca 100644 --- a/src/native/variable/letDivide.ts +++ b/src/native/variable/letDivide.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/variable/letMulti.ts b/src/native/variable/letMulti.ts index ffcf136651..8f74c39d5b 100644 --- a/src/native/variable/letMulti.ts +++ b/src/native/variable/letMulti.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/variable/letSub.ts b/src/native/variable/letSub.ts index ccde499128..3554ac1af7 100644 --- a/src/native/variable/letSub.ts +++ b/src/native/variable/letSub.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/variable/letSum.ts b/src/native/variable/letSum.ts index a6efc7107a..f68549a8ed 100644 --- a/src/native/variable/letSum.ts +++ b/src/native/variable/letSum.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/webhook/getWebhook.ts b/src/native/webhook/getWebhook.ts new file mode 100644 index 0000000000..3f175ad3e8 --- /dev/null +++ b/src/native/webhook/getWebhook.ts @@ -0,0 +1,39 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { WebhookProperties, WebhookProperty } from "../../properties/webhook" +import { ArgType, NativeFunction, Return } from "../../structures" + +export default new NativeFunction({ + name: "$getWebhook", + version: "2.6.0", + description: "Returns a webhook from a channel", + brackets: true, + unwrap: true, + args: [ + { + name: "webhook ID", + description: "The webhook to get", + rest: false, + type: ArgType.Webhook, + required: true, + }, + { + name: "property", + description: "The property of the webhook to return", + rest: false, + type: ArgType.Enum, + enum: WebhookProperty + }, + ], + output: [ + ArgType.Json, + ArgType.Unknown + ], + execute(ctx, [web, prop]) { + if (prop) return this.success(WebhookProperties[prop](web)) + return this.successJSON(web) + }, +}) diff --git a/src/native/webhook/webhookCreate.ts b/src/native/webhook/webhookCreate.ts index 4c5a9e5a1a..92e0e1cc5d 100644 --- a/src/native/webhook/webhookCreate.ts +++ b/src/native/webhook/webhookCreate.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, TextChannel } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/webhook/webhookDelete.ts b/src/native/webhook/webhookDelete.ts index 458e59e5e6..e93c9cafd7 100644 --- a/src/native/webhook/webhookDelete.ts +++ b/src/native/webhook/webhookDelete.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -8,8 +13,8 @@ export default new NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to delete", rest: false, type: ArgType.Webhook, required: true, diff --git a/src/native/webhook/webhookEdit.ts b/src/native/webhook/webhookEdit.ts index 42b4753d21..cfd3b8dd6d 100644 --- a/src/native/webhook/webhookEdit.ts +++ b/src/native/webhook/webhookEdit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -6,11 +11,10 @@ export default new NativeFunction({ description: "Edits webhook with given id, returns bool", brackets: true, unwrap: true, - output: ArgType.Boolean, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to edit", rest: false, type: ArgType.Webhook, required: true, @@ -28,6 +32,7 @@ export default new NativeFunction({ type: ArgType.String, }, ], + output: ArgType.Boolean, async execute(ctx, [web, name, avatar]) { const edit = await web .edit({ diff --git a/src/native/webhook/webhookEditMessage.ts b/src/native/webhook/webhookEditMessage.ts index 196fcecafa..6a37d67c2d 100644 --- a/src/native/webhook/webhookEditMessage.ts +++ b/src/native/webhook/webhookEditMessage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { BaseChannel, Message, WebhookClient } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" diff --git a/src/native/webhook/webhookExists.ts b/src/native/webhook/webhookExists.ts index 5f22dd5478..dab9b45e84 100644 --- a/src/native/webhook/webhookExists.ts +++ b/src/native/webhook/webhookExists.ts @@ -1,22 +1,27 @@ -import { ArgType, NativeFunction, Return } from "../../structures" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { ArgType, CompiledFunction, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$webhookExists", version: "1.0.0", - description: "Checks whether given webhook id eixsts", + description: "Checks whether given webhook id exists", brackets: true, unwrap: true, - output: ArgType.Boolean, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook id to check for", rest: false, type: ArgType.String, required: true, }, ], + output: ArgType.Boolean, async execute(ctx, [id]) { - return this.success((await ctx.client.fetchWebhook(id).catch(() => false)) !== false) + return this.success(CompiledFunction.IdRegex.test(id) && (await ctx.client.fetchWebhook(id).catch(() => false)) !== false) }, }) \ No newline at end of file diff --git a/src/native/webhook/webhookIsUserCreated.ts b/src/native/webhook/webhookIsUserCreated.ts index 36eacb2ee2..c2d06fd719 100644 --- a/src/native/webhook/webhookIsUserCreated.ts +++ b/src/native/webhook/webhookIsUserCreated.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ @@ -8,15 +13,15 @@ export default new NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, type: ArgType.Webhook, required: true, }, ], output: ArgType.Boolean, - async execute(ctx, [web]) { + execute(ctx, [web]) { return this.success(web.isUserCreated()) }, }) \ No newline at end of file diff --git a/src/native/webhook/webhookSend.ts b/src/native/webhook/webhookSend.ts index 33325a8205..cd264dae55 100644 --- a/src/native/webhook/webhookSend.ts +++ b/src/native/webhook/webhookSend.ts @@ -1,4 +1,9 @@ -import { BaseChannel, Message, ThreadChannelResolvable, WebhookClient } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { BaseChannel, Message, WebhookClient } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ diff --git a/src/native/webhook/webhookToken.ts b/src/native/webhook/webhookToken.ts index 0a72d56ffb..4b798d9bea 100644 --- a/src/native/webhook/webhookToken.ts +++ b/src/native/webhook/webhookToken.ts @@ -1,23 +1,27 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$webhookToken", version: "1.0.0", - description: "Gets webhook token of given id", + description: "Returns the token of a webhook", brackets: true, - output: ArgType.String, unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, - type: ArgType.String, + type: ArgType.Webhook, required: true, }, ], - async execute(ctx, [id]) { - const web = await ctx.client.fetchWebhook(id).catch(ctx.noop) - return this.success(web ? web.token : web) + output: ArgType.String, + execute(ctx, [web]) { + return this.success(web.token) }, }) diff --git a/src/native/webhook/webhookType.ts b/src/native/webhook/webhookType.ts index fe2d6b8982..76197292c7 100644 --- a/src/native/webhook/webhookType.ts +++ b/src/native/webhook/webhookType.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { WebhookType } from "discord.js" import { ArgType, NativeFunction, Return } from "../../structures" @@ -9,15 +14,15 @@ export default new NativeFunction({ unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, type: ArgType.Webhook, required: true, }, ], output: WebhookType, - async execute(ctx, [web]) { + execute(ctx, [web]) { return this.success(WebhookType[web.type]) }, }) \ No newline at end of file diff --git a/src/native/webhook/webhookURL.ts b/src/native/webhook/webhookURL.ts index 8cfc7b957f..8268ef7274 100644 --- a/src/native/webhook/webhookURL.ts +++ b/src/native/webhook/webhookURL.ts @@ -1,23 +1,27 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction, Return } from "../../structures" export default new NativeFunction({ name: "$webhookURL", version: "1.0.0", - description: "Gets webhook url with given id", + description: "Returns the url of a webhook", brackets: true, - output: ArgType.URL, unwrap: true, args: [ { - name: "id", - description: "The webhook id", + name: "webhook ID", + description: "The webhook to pull data from", rest: false, - type: ArgType.String, + type: ArgType.Webhook, required: true, }, ], - async execute(ctx, [id]) { - const web = await ctx.client.fetchWebhook(id).catch(ctx.noop) - return this.success(web ? web.url : web) + output: ArgType.URL, + execute(ctx, [web]) { + return this.success(web.url) }, }) diff --git a/src/native/websocket/ws.ts b/src/native/websocket/ws.ts index 73b9198720..1993e5be0c 100644 --- a/src/native/websocket/ws.ts +++ b/src/native/websocket/ws.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" import { WebSocket } from "ws" diff --git a/src/native/websocket/wsClose.ts b/src/native/websocket/wsClose.ts index 589851343a..c961caaeef 100644 --- a/src/native/websocket/wsClose.ts +++ b/src/native/websocket/wsClose.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/websocket/wsOn.ts b/src/native/websocket/wsOn.ts index 73052bf32d..50c08cbacd 100644 --- a/src/native/websocket/wsOn.ts +++ b/src/native/websocket/wsOn.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import parseJSON from "../../functions/parseJSON" import { ArgType, IExtendedCompiledFunctionField, NativeFunction } from "../../structures" diff --git a/src/native/websocket/wsSend.ts b/src/native/websocket/wsSend.ts index 27896428f0..e426a389dd 100644 --- a/src/native/websocket/wsSend.ts +++ b/src/native/websocket/wsSend.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, IExtendedCompiledFunctionField, NativeFunction } from "../../structures" export default new NativeFunction({ diff --git a/src/native/websocket/wsState.ts b/src/native/websocket/wsState.ts index 70070aea06..6757a9ccdf 100644 --- a/src/native/websocket/wsState.ts +++ b/src/native/websocket/wsState.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import ws from "ws" import { ArgType, NativeFunction } from "../../structures" diff --git a/src/properties/activity.ts b/src/properties/activity.ts index ce9a400901..a782f4c12a 100644 --- a/src/properties/activity.ts +++ b/src/properties/activity.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Activity, ActivityType } from "discord.js" import defineProperties from "../functions/defineProperties" @@ -30,7 +35,7 @@ export const ActivityProperties = defineProperties i?.timestamps?.end?.getTime(), startTimestamp: (i) => i?.timestamps?.start?.getTime(), partyID: (i) => i?.party?.id, - partySize: (i) => i?.party?.size[0], + partySize: (i) => i?.party?.size?.[0], syncID: (i) => i?.syncId, url: (i) => i?.url, largeText: (i) => i?.assets?.largeText, diff --git a/src/properties/applicationEmoji.ts b/src/properties/applicationEmoji.ts index 6c9687c776..b0ccc1cada 100644 --- a/src/properties/applicationEmoji.ts +++ b/src/properties/applicationEmoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationEmoji } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/audit.ts b/src/properties/audit.ts index 4c43e2806b..8bdb008425 100644 --- a/src/properties/audit.ts +++ b/src/properties/audit.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AuditLogEvent, GuildAuditLogsEntry } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/automodRule.ts b/src/properties/automodRule.ts index 9ef5331d25..d70920c716 100644 --- a/src/properties/automodRule.ts +++ b/src/properties/automodRule.ts @@ -1,4 +1,9 @@ -import { AutoModerationRule, AutoModerationRuleEventType, AutoModerationRuleKeywordPresetType, AutoModerationRuleTriggerType } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { AutoModerationAction, AutoModerationActionType, AutoModerationRule, AutoModerationRuleEventType, AutoModerationRuleKeywordPresetType, AutoModerationRuleTriggerType } from "discord.js" import defineProperties from "../functions/defineProperties" export enum AutomodRuleProperty { @@ -37,4 +42,18 @@ export const AutomodRuleProperties = defineProperties i?.triggerMetadata.allowList.join(sep ?? ", "), mentionTotalLimit: (i) => i?.triggerMetadata.mentionTotalLimit, mentionRaidProtectionEnabled: (i) => i?.triggerMetadata.mentionRaidProtectionEnabled +}) + +export enum AutomodRuleActionProperty { + type = "type", + channelID = "channelID", + durationSeconds = "durationSeconds", + customMessage = "customMessage", +} + +export const AutomodRuleActionProperties = defineProperties({ + type: (i) => AutoModerationActionType[i?.type!], + channelID: (i) => i?.metadata.channelId, + durationSeconds: (i) => i?.metadata.durationSeconds, + customMessage: (i) => i?.metadata.customMessage, }) \ No newline at end of file diff --git a/src/properties/bulk.ts b/src/properties/bulk.ts index 730e799e6e..7f4bfe5c0d 100644 --- a/src/properties/bulk.ts +++ b/src/properties/bulk.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import defineProperties from "../functions/defineProperties" import { IStates } from "../core" import { Message } from "discord.js" diff --git a/src/properties/channel.ts b/src/properties/channel.ts index c3578efbbb..9b5681b40a 100644 --- a/src/properties/channel.ts +++ b/src/properties/channel.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Channel, ChannelType, Collection, GuildMember } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/component.ts b/src/properties/component.ts index c96899c09c..b857160be7 100644 --- a/src/properties/component.ts +++ b/src/properties/component.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ButtonStyle, ComponentInContainer, diff --git a/src/properties/embed.ts b/src/properties/embed.ts index 36d900ca25..184a229921 100644 --- a/src/properties/embed.ts +++ b/src/properties/embed.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EmbedBuilder } from "@discordjs/builders" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/emoji.ts b/src/properties/emoji.ts index 07bd677f8f..7b32e00831 100644 --- a/src/properties/emoji.ts +++ b/src/properties/emoji.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildEmoji } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/entitlement.ts b/src/properties/entitlement.ts index 806e6364df..d6573bb0b9 100644 --- a/src/properties/entitlement.ts +++ b/src/properties/entitlement.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { EntitlementType } from "discord.js" import defineProperties from "../functions/defineProperties" import { IStates } from "../core" diff --git a/src/properties/forumTag.ts b/src/properties/forumTag.ts index dd82c4322d..9e51910f43 100644 --- a/src/properties/forumTag.ts +++ b/src/properties/forumTag.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildForumTag } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/guild.ts b/src/properties/guild.ts index 0fbb20811c..0f313f9da5 100644 --- a/src/properties/guild.ts +++ b/src/properties/guild.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Guild, GuildPreview } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/invite.ts b/src/properties/invite.ts index 0b80d8468a..4a0f0c1020 100644 --- a/src/properties/invite.ts +++ b/src/properties/invite.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Invite, InviteTargetType, InviteType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/member.ts b/src/properties/member.ts index dab7534f78..3b316c2d2c 100644 --- a/src/properties/member.ts +++ b/src/properties/member.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { APIInteractionGuildMember, CDN, GuildMember, GuildMemberFlagsBitField, PermissionsBitField, userMention } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/message.ts b/src/properties/message.ts index 0d0f8ba6ef..03f9e19bf0 100644 --- a/src/properties/message.ts +++ b/src/properties/message.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Message, MessageSnapshot, MessageType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/permissionOverwrites.ts b/src/properties/permissionOverwrites.ts index 54b21fdc72..d422cec462 100644 --- a/src/properties/permissionOverwrites.ts +++ b/src/properties/permissionOverwrites.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { OverwriteType, PermissionOverwrites } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/poll.ts b/src/properties/poll.ts index 943b0983fc..8649726e30 100644 --- a/src/properties/poll.ts +++ b/src/properties/poll.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Poll, PollAnswer, PollLayoutType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/presence.ts b/src/properties/presence.ts index fa12e7340e..bcaeaa84e1 100644 --- a/src/properties/presence.ts +++ b/src/properties/presence.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Presence } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/reaction.ts b/src/properties/reaction.ts index e28c44a0d1..aa67cf85f5 100644 --- a/src/properties/reaction.ts +++ b/src/properties/reaction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { MessageReaction } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/role.ts b/src/properties/role.ts index a44173be0b..2e468e2eb6 100644 --- a/src/properties/role.ts +++ b/src/properties/role.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Role } from "discord.js" import defineProperties from "../functions/defineProperties" import { int2hex } from "../functions/hex" diff --git a/src/properties/scheduledEvent.ts b/src/properties/scheduledEvent.ts index 5f79a330bd..0755cd62b2 100644 --- a/src/properties/scheduledEvent.ts +++ b/src/properties/scheduledEvent.ts @@ -1,4 +1,9 @@ -import { GuildScheduledEvent } from "discord.js" +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + +import { GuildScheduledEvent, GuildScheduledEventEntityType, GuildScheduledEventPrivacyLevel, GuildScheduledEventStatus } from "discord.js" import defineProperties from "../functions/defineProperties" export enum ScheduledEventProperty { @@ -16,7 +21,9 @@ export enum ScheduledEventProperty { cover = "cover", entityID = "entityID", location = "location", - entityType = "entityType" + entityType = "entityType", + privacyLevel = "privacyLevel", + status = "status" } export const ScheduledEventProperties = defineProperties({ @@ -34,5 +41,7 @@ export const ScheduledEventProperties = defineProperties i?.coverImageURL(), entityID: i => i?.entityId, location: i => i?.entityMetadata?.location, - entityType: i => i?.entityType -}) + entityType: i => GuildScheduledEventEntityType[i?.entityType!], + privacyLevel: i => GuildScheduledEventPrivacyLevel[i?.privacyLevel!], + status: i => GuildScheduledEventStatus[i?.status!] +}) \ No newline at end of file diff --git a/src/properties/sound.ts b/src/properties/sound.ts index 9fa53899ce..7bdd5dbf19 100644 --- a/src/properties/sound.ts +++ b/src/properties/sound.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { GuildSoundboardSound, PartialSoundboardSound, SoundboardSound } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/stage.ts b/src/properties/stage.ts index 9a240f8a22..50836ceeed 100644 --- a/src/properties/stage.ts +++ b/src/properties/stage.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { StageInstance, StageInstancePrivacyLevel } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/sticker.ts b/src/properties/sticker.ts index 1059890621..7bcf5889bd 100644 --- a/src/properties/sticker.ts +++ b/src/properties/sticker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Sticker, StickerFormatType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/subscription.ts b/src/properties/subscription.ts index 5123839ffc..4999552ceb 100644 --- a/src/properties/subscription.ts +++ b/src/properties/subscription.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Subscription, SubscriptionStatus } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/teamMember.ts b/src/properties/teamMember.ts index a81670edb7..4da2897a34 100644 --- a/src/properties/teamMember.ts +++ b/src/properties/teamMember.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { TeamMember, TeamMemberMembershipState, TeamMemberRole } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/user.ts b/src/properties/user.ts index bb72a97021..8720e3ea81 100644 --- a/src/properties/user.ts +++ b/src/properties/user.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { User } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/voiceEffect.ts b/src/properties/voiceEffect.ts index e9150dffcf..4fe83f5371 100644 --- a/src/properties/voiceEffect.ts +++ b/src/properties/voiceEffect.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceChannelEffect, VoiceChannelEffectSendAnimationType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/voiceState.ts b/src/properties/voiceState.ts index a28cc4e2c1..f71170c2ae 100644 --- a/src/properties/voiceState.ts +++ b/src/properties/voiceState.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { VoiceState } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/properties/webhook.ts b/src/properties/webhook.ts index 95c6a3c6aa..e3fa8cdfe8 100644 --- a/src/properties/webhook.ts +++ b/src/properties/webhook.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { Webhook, WebhookType } from "discord.js" import defineProperties from "../functions/defineProperties" diff --git a/src/structures/@internal/Arg.ts b/src/structures/@internal/Arg.ts index 96913fc75f..a1363311cf 100644 --- a/src/structures/@internal/Arg.ts +++ b/src/structures/@internal/Arg.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, EnumLike, IArg, NativeFunction } from "./NativeFunction" export class Arg { diff --git a/src/structures/@internal/CompiledFunction.ts b/src/structures/@internal/CompiledFunction.ts index 7a4e1f40b1..f04bce3cc7 100644 --- a/src/structures/@internal/CompiledFunction.ts +++ b/src/structures/@internal/CompiledFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { PermissionFlagsBits, TextChannel, diff --git a/src/structures/@internal/Container.ts b/src/structures/@internal/Container.ts index ed22056f10..a2e380c574 100644 --- a/src/structures/@internal/Container.ts +++ b/src/structures/@internal/Container.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + /* eslint-disable indent */ import { ActionRowBuilder, @@ -45,6 +50,8 @@ import { import noop from "../../functions/noop" import { MessageFlags } from "discord.js" +const mentions: MessageMentionTypes[] = ["everyone", "roles", "users"] + export type Sendable = | {} | Sticker @@ -77,6 +84,7 @@ export class Container { public reply = false public followUp = false public edit = false + public silent = false public ephemeral = false public tts = false public update = false @@ -172,9 +180,14 @@ export class Container { return (this.embeds[index] ??= new EmbedBuilder()) } - public unparseMention(type: MessageMentionTypes) { - this.allowedMentions.parse ??= ["everyone", "roles", "users"] - return (this.allowedMentions.parse = this.allowedMentions.parse.filter((x) => x !== type)) + public parseMentions(type?: MessageMentionTypes) { + this.allowedMentions.parse = type + ? [...new Set([...(this.allowedMentions.parse ?? []), type])] + : [...mentions] + } + + public unparseMentions(type: MessageMentionTypes) { + this.allowedMentions.parse = (this.allowedMentions.parse ?? mentions).filter((x) => x !== type) } /** @@ -205,6 +218,7 @@ export class Container { this.update = false this.ephemeral = false this.withResponse = false + this.silent = false this.edit = false this.tts = false this.isComponentsV2 = false @@ -225,6 +239,7 @@ export class Container { const flags = new Array() if (this.ephemeral) flags.push(MessageFlags.Ephemeral) + if (this.silent) flags.push(MessageFlags.SuppressNotifications) if (this.isComponentsV2) flags.push(MessageFlags.IsComponentsV2) return ( diff --git a/src/structures/@internal/Context.ts b/src/structures/@internal/Context.ts index fc30359e8e..3013667a1f 100644 --- a/src/structures/@internal/Context.ts +++ b/src/structures/@internal/Context.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { AnySelectMenuInteraction, AutoModerationActionExecution, @@ -11,7 +16,9 @@ import { Entitlement, Guild, GuildMember, + GuildScheduledEventEntityMetadataOptions, Interaction, + LabelBuilder, MediaGalleryBuilder, Message, MessageReaction, @@ -21,6 +28,7 @@ import { Sticker, Subscription, User, + VoiceBasedChannel, } from "discord.js" import { CompiledFunction, IExtendedCompiledFunctionField } from "./CompiledFunction" import { Container, Sendable } from "./Container" @@ -60,6 +68,11 @@ export interface IAutomodRuleOptions { exemptChannels?: string[] } +export interface IScheduledEventOptions { + channel?: VoiceBasedChannel + entityMetadata?: GuildScheduledEventEntityMetadataOptions +} + export interface ILocalFunctionData { code: IExtendedCompiledFunctionField args: string[] @@ -68,6 +81,8 @@ export interface ILocalFunctionData { export interface IComponentOptions { section: SectionBuilder gallery: MediaGalleryBuilder + label: LabelBuilder + required?: boolean } export enum CalendarType { @@ -123,14 +138,14 @@ export class Context { executionTimestamp!: number http: Partial = {} automodRule: Partial = {} + scheduledEvent: Partial = {} component: Partial = {} timezone: string = "UTC" calendar?: CalendarType - localFunctions: Map = new Map() - #keywords: Record = {} #environment: Record = {} + #localFunctions: Record = {} private _reason?: string @@ -140,6 +155,7 @@ export class Context { public constructor(public readonly runtime: IRunnable) { if (runtime.environment) this.#environment = runtime.environment if (runtime.keywords) this.#keywords = runtime.keywords + if (runtime.localFunctions) this.#localFunctions = runtime.localFunctions this.container = runtime.container ??= new Container() } @@ -318,6 +334,10 @@ export class Context { this.automodRule = {} } + public clearScheduledEventOptions() { + this.scheduledEvent = {} + } + /** * Fetches all emojis of the application. * @param once Whether to fetch only when the collection is empty. @@ -338,7 +358,7 @@ export class Context { public traverseDeleteEnvironmentKey(...keys: string[]) { let data = this.#environment - for (let i = 0, len = keys.length - 1;i < len;i++) { + for (let i = 0, len = keys.length - 1; i < len; i++) { const key = keys[i] if (!(key in data)) return false @@ -353,7 +373,7 @@ export class Context { public traverseAddEnvironmentKey(value: unknown, ...keys: string[]) { let data = this.#environment - for (let i = 0, len = keys.length - 1;i < len;i++) { + for (let i = 0, len = keys.length - 1; i < len; i++) { const key = keys[i] if (!(key in data)) return false @@ -373,7 +393,7 @@ export class Context { public static traverseGetValue(previous: object, ...args: string[]) { if (!previous) return previous - + for (let i = 0, len = args.length; i < len; i++) { const key = args[i] if (!(key in previous)) return @@ -404,6 +424,18 @@ export class Context { return name in this.#keywords } + public getLocalFunction(name: string) { + return this.#localFunctions[name] + } + + public deleteLocalFunction(name: string) { + return delete this.#localFunctions[name] + } + + public setLocalFunction(name: string, data: ILocalFunctionData) { + return (this.#localFunctions[name] = data) + } + public clearKeywords() { this.#keywords = {} } @@ -456,33 +488,35 @@ export class Context { } public cloneEmpty() { - return new Context({...this.runtime}) + return new Context({ ...this.runtime }) } /** - * Clones keywords and environment vars + * Clones keywords, environment vars, and local functions. * @returns */ public clone(props?: Partial, syncVars = false) { const empty = this.cloneEmpty() - empty.#keywords = syncVars ? this.#keywords : {...this.#keywords} - empty.#environment = syncVars ? this.#environment : {...this.#environment} + empty.#keywords = syncVars ? this.#keywords : { ...this.#keywords } + empty.#environment = syncVars ? this.#environment : { ...this.#environment } + empty.#localFunctions = syncVars ? this.#localFunctions : { ...this.#localFunctions } if (props) { const keys = Object.keys(props) - for (let i = 0, len = keys.length;i < len;i++) { + for (let i = 0, len = keys.length; i < len; i++) { const key = keys[i] Reflect.set(empty.runtime, key, props[key as keyof IRunnable]) } } - + return empty } - public cloneRuntime() : IRunnable { - this.runtime.keywords = this.#keywords as Record + public cloneRuntime(): IRunnable { + this.runtime.keywords = this.#keywords this.runtime.environment = this.#environment + this.runtime.localFunctions = this.#localFunctions return this.runtime } diff --git a/src/structures/@internal/Logger.ts b/src/structures/@internal/Logger.ts index 078529fe05..4af23e67af 100644 --- a/src/structures/@internal/Logger.ts +++ b/src/structures/@internal/Logger.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import clc, { Chalk } from "chalk" import { stdout } from "process" import { inspect } from "util" diff --git a/src/structures/@internal/NativeFunction.ts b/src/structures/@internal/NativeFunction.ts index f5697b2edf..0ba45ffa01 100644 --- a/src/structures/@internal/NativeFunction.ts +++ b/src/structures/@internal/NativeFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ApplicationEmoji, AttachmentBuilder, @@ -93,12 +98,12 @@ export interface IArg< check?: (i: GetArgType) => boolean /** - * Defaults to false + * Defaults to `false`. */ required?: Required /** - * Whether this argument is an array of values + * Whether this argument is an array of values. */ rest: Rest } @@ -110,10 +115,14 @@ export type NativeFunctionExecutor { name: `$${string}` description: string - examples?: string[] experimental?: boolean deprecated?: boolean + /** + * @deprecated Not being used. + */ + examples?: string[] + /** * Resolves all arguments and are passed through execute params. */ @@ -127,16 +136,16 @@ export interface INativeFunction diff --git a/src/structures/@internal/Output.ts b/src/structures/@internal/Output.ts index c90c8c98b9..ef2ea4b837 100644 --- a/src/structures/@internal/Output.ts +++ b/src/structures/@internal/Output.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ReturnType } from "./Return" export class Output { diff --git a/src/structures/@internal/Return.ts b/src/structures/@internal/Return.ts index 910411e947..0edf478097 100644 --- a/src/structures/@internal/Return.ts +++ b/src/structures/@internal/Return.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { inspect } from "util" import { ForgeError } from "../forge/ForgeError" diff --git a/src/structures/base/ApplicationCommand.ts b/src/structures/base/ApplicationCommand.ts index 79c8a6fd24..fa28138b44 100644 --- a/src/structures/base/ApplicationCommand.ts +++ b/src/structures/base/ApplicationCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { RESTPostAPIApplicationCommandsJSONBody } from "discord.js" import { Compiler, IExtendedCompilationResult } from "../../core" import { IApplicationCommandData, RegistrationType } from "../../managers/ApplicationCommandManager" diff --git a/src/structures/base/BaseCommand.ts b/src/structures/base/BaseCommand.ts index d18126f5a3..d07b728eb5 100644 --- a/src/structures/base/BaseCommand.ts +++ b/src/structures/base/BaseCommand.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents, Interaction } from "discord.js" import { Context } from ".." import { IExtendedCompilationResult, Compiler, ForgeClient } from "../../core" diff --git a/src/structures/base/BaseEventHandler.ts b/src/structures/base/BaseEventHandler.ts index 7ba8d53609..78e700418a 100644 --- a/src/structures/base/BaseEventHandler.ts +++ b/src/structures/base/BaseEventHandler.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents, GatewayIntentsString } from "discord.js" import { type ForgeClient } from "../../core/ForgeClient" diff --git a/src/structures/extended/DiscordEventHandler.ts b/src/structures/extended/DiscordEventHandler.ts index e01c6f758e..00e3ab15e7 100644 --- a/src/structures/extended/DiscordEventHandler.ts +++ b/src/structures/extended/DiscordEventHandler.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { type ClientEvents, GatewayIntentsString } from "discord.js" import { type ForgeClient } from "../../core/ForgeClient" import { BaseEventHandler } from "../base/BaseEventHandler" diff --git a/src/structures/forge/ForgeError.ts b/src/structures/forge/ForgeError.ts index c6f1693ee3..d80efa0fde 100644 --- a/src/structures/forge/ForgeError.ts +++ b/src/structures/forge/ForgeError.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { CompiledFunction } from "../@internal/CompiledFunction" export type GetErrorArgs = T extends `${infer L}$${infer R}` ? [unknown, ...GetErrorArgs] : [] diff --git a/src/structures/forge/ForgeExtension.ts b/src/structures/forge/ForgeExtension.ts index 57aab5cceb..8b75a9f04d 100644 --- a/src/structures/forge/ForgeExtension.ts +++ b/src/structures/forge/ForgeExtension.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ForgeClient } from "../../core" import getVersionNumber from "../../functions/getVersionNumber" import { BaseCommandManager, FunctionManager } from "../../managers" diff --git a/src/structures/forge/ForgeFunction.ts b/src/structures/forge/ForgeFunction.ts index 8425d55f34..a5209189ad 100644 --- a/src/structures/forge/ForgeFunction.ts +++ b/src/structures/forge/ForgeFunction.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ArgType, Context, IArg, IExtendedCompiledFunctionConditionField, NativeFunction } from ".." import { IExtendedCompilationResult, Compiler, Interpreter } from "../../core" import isTrue from "../../functions/isTrue" diff --git a/src/structures/index.ts b/src/structures/index.ts index 690840a178..2d0eff746a 100644 --- a/src/structures/index.ts +++ b/src/structures/index.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + export * from "./base/BaseCommand" export * from "./@internal/CompiledFunction" export * from "./@internal/Container" diff --git a/src/structures/trackers/InviteTracker.ts b/src/structures/trackers/InviteTracker.ts index d4adea53e7..06a5e773ac 100644 --- a/src/structures/trackers/InviteTracker.ts +++ b/src/structures/trackers/InviteTracker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ClientEvents, Collection, diff --git a/src/structures/trackers/VoiceTracker.ts b/src/structures/trackers/VoiceTracker.ts index 4764cc8a1e..7e6d24bec1 100644 --- a/src/structures/trackers/VoiceTracker.ts +++ b/src/structures/trackers/VoiceTracker.ts @@ -1,3 +1,8 @@ +/* +* SPDX-License-Identifier: GPL-3.0-or-later +* Copyright © 2025 BotForge +*/ + import { ForgeClient } from "../../core" import { Logger } from "../@internal/Logger" diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 0000000000..40f3b80388 --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "jsx": "react", + "target": "es2022", + "module": "commonjs", + "rootDir": "./src/@build", + "outDir": "./dist/@build", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "strict": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "skipLibCheck": true + }, + "include": ["./src/@build"] +} \ No newline at end of file