signal-sdk 0.0.4 → 0.0.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/README.md +34 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
# Signal SDK - TypeScript SDK for Signal Messenger
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<div align="center">
|
|
4
|
+
<img src="logo.png" alt="Signal SDK Logo" width="200"/>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
<p>
|
|
9
|
+
A comprehensive TypeScript SDK for interacting with
|
|
10
|
+
<a href="https://github.com/AsamK/signal-cli" target="_blank">signal-cli</a>
|
|
11
|
+
<br>
|
|
12
|
+
providing JSON-RPC communication and a powerful bot framework.
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
[](https://badge.fury.io/js/signal-sdk)
|
|
16
|
+
[](https://opensource.org/licenses/MIT)
|
|
17
|
+
[](https://github.com/AsamK/signal-cli)
|
|
18
|
+
[](https://www.typescriptlang.org/)
|
|
19
|
+
[](https://nodejs.org/)
|
|
20
|
+
[](https://liberapay.com/devbyben/donate)
|
|
21
|
+
|
|
22
|
+
</div>
|
|
4
23
|
|
|
5
|
-
[](https://badge.fury.io/js/signal-sdk)
|
|
6
|
-
[](https://opensource.org/licenses/MIT)
|
|
7
|
-
[](https://github.com/AsamK/signal-cli)
|
|
8
|
-
[](https://www.typescriptlang.org/)
|
|
9
|
-
[](https://nodejs.org/)
|
|
10
24
|
|
|
11
25
|
## Features
|
|
12
26
|
|
|
@@ -442,26 +456,6 @@ This project is licensed under the MIT License - see the [LICENSE](./LICENSE) fi
|
|
|
442
456
|
|
|
443
457
|
---
|
|
444
458
|
|
|
445
|
-
## Development Status
|
|
446
|
-
|
|
447
|
-
### Current Coverage: 39/39 signal-cli commands (100%) ✅
|
|
448
|
-
|
|
449
|
-
The SDK now provides **complete feature parity** with signal-cli, implementing all available commands and functionality.
|
|
450
|
-
|
|
451
|
-
**Latest Updates:**
|
|
452
|
-
|
|
453
|
-
- ✅ **Contact Management**: Complete removal with options (hide/forget)
|
|
454
|
-
- ✅ **User Status**: Check Signal registration status
|
|
455
|
-
- ✅ **Payment Notifications**: Send payment receipts and notes
|
|
456
|
-
- ✅ **Custom Stickers**: Upload and manage sticker packs
|
|
457
|
-
- ✅ **Rate Limit Recovery**: Handle rate limiting with captcha challenges
|
|
458
|
-
- ✅ **Phone Number Changes**: Change registered phone numbers
|
|
459
|
-
- ✅ **Enhanced Messaging**: Progress tracking for large file uploads
|
|
460
|
-
|
|
461
|
-
[**View Complete Feature Coverage Analysis →**](./FEATURE_COVERAGE.md)
|
|
462
|
-
[**View Implementation Details →**](./IMPLEMENTATION_PLAN.md)
|
|
463
|
-
|
|
464
|
-
---
|
|
465
459
|
|
|
466
460
|
## API Methods
|
|
467
461
|
|
|
@@ -492,3 +486,17 @@ Compatible with signal-cli v0.13.17 - **100% Feature Coverage**
|
|
|
492
486
|
| | `sendMessageWithProgress` | Enhanced messaging with progress | ✅ |
|
|
493
487
|
|
|
494
488
|
[Complete API documentation](./docs/api-reference.md)
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
### Support the Project
|
|
493
|
+
|
|
494
|
+
If you find signal sdk useful, consider supporting its development:
|
|
495
|
+
|
|
496
|
+
[](https://liberapay.com/devbyben/donate)
|
|
497
|
+
|
|
498
|
+
Your support helps maintain and improve signal-sdk
|
|
499
|
+
|
|
500
|
+
---
|
|
501
|
+
|
|
502
|
+
Made with ❤️ for the Signal community
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signal-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "A comprehensive TypeScript SDK for Signal Messenger with native JSON-RPC support, providing high-performance messaging, bot framework, and full signal-cli integration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|