Socket
Socket
Sign inDemoInstall

@notenoughupdates/discord-akairo

Package Overview
Dependencies
Maintainers
1
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@notenoughupdates/discord-akairo - npm Package Compare versions

Comparing version 9.0.10-dev.1644714370.AmusedGrape.1644714568.f86f362 to 9.0.10-dev.1644716050.2b9ae1a

2

dist/package.json
{
"name": "@notenoughupdates/discord-akairo",
"version": "9.0.10-dev.1644714370.AmusedGrape.1644714568.f86f362",
"version": "9.0.10-dev.1644716050.2b9ae1a",
"description": "A highly customizable bot framework for Discord.js.",

@@ -5,0 +5,0 @@ "main": "./dist/src/index.js",

@@ -254,4 +254,2 @@ "use strict";

});
console.dir(currentGlobalCommands);
console.dir(slashCommandsApp);
if (!Util_js_1.Util.deepEquals(currentGlobalCommands, slashCommandsApp)) {

@@ -311,4 +309,2 @@ this.client.emit("akairoDebug", "[registerInteractionCommands] Updating global interaction commands.", slashCommandsApp);

});
console.dir(currentGuildCommands);
console.dir(sortedCommands);
if (!Util_js_1.Util.deepEquals(currentGuildCommands, sortedCommands)) {

@@ -315,0 +311,0 @@ this.client.emit("akairoDebug", `[registerInteractionCommands] Updating guild commands for ${guild.name}.`, sortedCommands);

@@ -115,2 +115,14 @@ "use strict";

}
for (const key in newB) {
if (ignoreUndefined && newA[key] === undefined && newB[key] === undefined)
continue;
if (!(key in newA))
return false;
if (typeof newB[key] === "object" && typeof newA[key] === "object") {
if (!this.deepEquals(newA[key], newB[key], { ignoreUndefined, ignoreArrayOrder }))
return false;
}
else if (newA[key] !== newB[key])
return false;
}
return true;

@@ -117,0 +129,0 @@ }

{
"name": "@notenoughupdates/discord-akairo",
"version": "9.0.10-dev.1644714370.AmusedGrape.1644714568.f86f362",
"version": "9.0.10-dev.1644716050.2b9ae1a",
"description": "A highly customizable bot framework for Discord.js.",

@@ -5,0 +5,0 @@ "main": "./dist/src/index.js",

@@ -472,5 +472,2 @@ import {

console.dir(currentGlobalCommands);
console.dir(slashCommandsApp);
if (!Util.deepEquals(currentGlobalCommands, slashCommandsApp)) {

@@ -527,5 +524,2 @@ this.client.emit("akairoDebug", "[registerInteractionCommands] Updating global interaction commands.", slashCommandsApp);

console.dir(currentGuildCommands);
console.dir(sortedCommands);
if (!Util.deepEquals(currentGuildCommands, sortedCommands)) {

@@ -532,0 +526,0 @@ this.client.emit(

@@ -115,2 +115,9 @@ import EventEmitter from "events";

}
for (const key in newB) {
if (ignoreUndefined && newA[key] === undefined && newB[key] === undefined) continue;
if (!(key in newA)) return false;
if (typeof newB[key] === "object" && typeof newA[key] === "object") {
if (!this.deepEquals(newA[key], newB[key], { ignoreUndefined, ignoreArrayOrder })) return false;
} else if (newA[key] !== newB[key]) return false;
}
return true;

@@ -117,0 +124,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc