teleproto 1.222.1 → 1.223.1
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 +15 -3
- package/Version.d.ts +1 -1
- package/Version.js +1 -1
- package/package.json +1 -1
- package/tl/generated/api-definitions.js +1 -1
- package/tl/generated/api.d.ts +210 -44
- package/tl/runtime/patches/messages.js +0 -12
- package/tl/runtime/registry.d.ts +1 -1
- package/tl/runtime/registry.js +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
<img src="https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen" alt="node version">
|
|
6
6
|
<img src="https://img.shields.io/badge/language-TypeScript-3178c6" alt="typescript">
|
|
7
7
|
<img src="https://img.shields.io/badge/license-MIT-blue" alt="license">
|
|
8
|
+
<a href="https://t.me/teleproto"><img src="https://img.shields.io/badge/Telegram-Chat-26A5E4?logo=telegram" alt="telegram chat"></a>
|
|
8
9
|
</p>
|
|
9
10
|
|
|
10
11
|
Modern Telegram MTProto client for Node.js, written in TypeScript.
|
|
@@ -20,7 +21,7 @@ Modern Telegram MTProto client for Node.js, written in TypeScript.
|
|
|
20
21
|
|
|
21
22
|
## Installation
|
|
22
23
|
|
|
23
|
-
```bash
|
|
24
|
+
```bash
|
|
24
25
|
npm i teleproto
|
|
25
26
|
```
|
|
26
27
|
|
|
@@ -130,8 +131,19 @@ npx ts-node --transpile-only teleproto_examples/print_updates.ts
|
|
|
130
131
|
|
|
131
132
|
## Community
|
|
132
133
|
|
|
133
|
-
- Telegram
|
|
134
|
-
- Issues
|
|
134
|
+
- [Telegram Chat](https://t.me/teleproto) — questions, discussions, updates
|
|
135
|
+
- [GitHub Issues](https://github.com/sanyok12345/teleproto/issues) — bug reports and feature requests
|
|
136
|
+
|
|
137
|
+
## Support the project ☕
|
|
138
|
+
|
|
139
|
+
If teleproto saves you time or powers your product — consider buying me a coffee.
|
|
140
|
+
Every donation keeps the lights on and the commits flowing.
|
|
141
|
+
|
|
142
|
+
| Network | Address |
|
|
143
|
+
|---------|---------|
|
|
144
|
+
| **TON** | `sanyok12345.ton` |
|
|
145
|
+
| **TRX** | `TXCtN1UrxST9ovq5tDN3Zb96eNF4164nK5` |
|
|
146
|
+
| **SOL** | `B3XcKmAR9aG2nBiWSMDe76GGa55hPNgLQ92QR2SjRR6F` |
|
|
135
147
|
|
|
136
148
|
## License
|
|
137
149
|
|
package/Version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.
|
|
1
|
+
export declare const version = "1.223.1";
|
package/Version.js
CHANGED