@abdarrahmanabdelnasir/relay-node 0.1.13 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,10 @@ const botId = getEnv('BOT_ID');
18
18
  const baseUrl = process.env.COMMANDLESS_SERVICE_URL; // Optional - defaults to Commandless backend
19
19
  const hmacSecret = process.env.COMMANDLESS_HMAC_SECRET;
20
20
 
21
+ // Log API key for debugging (first 15 chars only)
22
+ console.log(`[commandless] Using API key: ${apiKey.substring(0, 15)}... (full length: ${apiKey.length})`);
23
+ console.log(`[commandless] Using BOT_ID: ${botId}`);
24
+
21
25
  const client = new Client({
22
26
  intents: [
23
27
  GatewayIntentBits.Guilds,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abdarrahmanabdelnasir/relay-node",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.js",