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.
Files changed (2) hide show
  1. package/README.md +34 -26
  2. 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
- A comprehensive TypeScript SDK for interacting with [signal-cli](https://github.com/AsamK/signal-cli), providing JSON-RPC communication and a powerful bot framework.
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
+ [![npm version](https://badge.fury.io/js/signal-sdk.svg)](https://badge.fury.io/js/signal-sdk)
16
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
17
+ [![signal-cli](https://img.shields.io/badge/signal--cli-v0.13.17-blue.svg)](https://github.com/AsamK/signal-cli)
18
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.8+-blue.svg)](https://www.typescriptlang.org/)
19
+ [![Node.js](https://img.shields.io/badge/Node.js-16+-green.svg)](https://nodejs.org/)
20
+ [![Donate on Liberapay](https://img.shields.io/badge/Liberapay-Donate-yellow.svg)](https://liberapay.com/devbyben/donate)
21
+
22
+ </div>
4
23
 
5
- [![npm version](https://badge.fury.io/js/signal-sdk.svg)](https://badge.fury.io/js/signal-sdk)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
- [![signal-cli](https://img.shields.io/badge/signal--cli-v0.13.17-blue.svg)](https://github.com/AsamK/signal-cli)
8
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.8+-blue.svg)](https://www.typescriptlang.org/)
9
- [![Node.js](https://img.shields.io/badge/Node.js-16+-green.svg)](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
+ [![Donate on Liberapay](https://img.shields.io/badge/Liberapay-Donate-yellow.svg)](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.4",
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",