claude-notification-plugin 1.1.3 → 1.1.5
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.
- package/bin/install.js +1 -1
- package/commit-sha +1 -1
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -475,7 +475,7 @@ Claude Notification Plugin - Setup
|
|
|
475
475
|
`);
|
|
476
476
|
|
|
477
477
|
if (existingToken) {
|
|
478
|
-
const masked = existingToken.slice(0,
|
|
478
|
+
const masked = existingToken.slice(0, 10) + '...' + existingToken.slice(-10);
|
|
479
479
|
console.log(`Telegram token found: ${masked}`);
|
|
480
480
|
const reuse = await ask(rl, 'Keep existing token? (Y/n): ');
|
|
481
481
|
if (reuse.toLowerCase() === 'n') {
|
package/commit-sha
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
69955ca8608df3f722bfa969bb78c123b4e7fba1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
3
|
"productName": "claude-notification-plugin",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.5",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|