tgplus 1.0.0
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/LICENSE +52 -0
- package/README.md +1512 -0
- package/dist/adapters.d.ts +46 -0
- package/dist/adapters.js +83 -0
- package/dist/adapters.js.map +1 -0
- package/dist/bot.d.ts +50 -0
- package/dist/bot.js +180 -0
- package/dist/bot.js.map +1 -0
- package/dist/client.d.ts +1139 -0
- package/dist/client.js +529 -0
- package/dist/client.js.map +1 -0
- package/dist/composer.d.ts +88 -0
- package/dist/composer.js +233 -0
- package/dist/composer.js.map +1 -0
- package/dist/context.d.ts +72 -0
- package/dist/context.js +149 -0
- package/dist/context.js.map +1 -0
- package/dist/decorators.d.ts +33 -0
- package/dist/decorators.js +39 -0
- package/dist/decorators.js.map +1 -0
- package/dist/filters.d.ts +19 -0
- package/dist/filters.js +81 -0
- package/dist/filters.js.map +1 -0
- package/dist/i18n.d.ts +30 -0
- package/dist/i18n.js +41 -0
- package/dist/i18n.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +95 -0
- package/dist/index.js.map +1 -0
- package/dist/keyboard.d.ts +62 -0
- package/dist/keyboard.js +96 -0
- package/dist/keyboard.js.map +1 -0
- package/dist/rateLimit.d.ts +19 -0
- package/dist/rateLimit.js +32 -0
- package/dist/rateLimit.js.map +1 -0
- package/dist/richMessage.d.ts +111 -0
- package/dist/richMessage.js +221 -0
- package/dist/richMessage.js.map +1 -0
- package/dist/scenes.d.ts +57 -0
- package/dist/scenes.js +105 -0
- package/dist/scenes.js.map +1 -0
- package/dist/session-redis.d.ts +27 -0
- package/dist/session-redis.js +36 -0
- package/dist/session-redis.js.map +1 -0
- package/dist/session-sqlite.d.ts +29 -0
- package/dist/session-sqlite.js +34 -0
- package/dist/session-sqlite.js.map +1 -0
- package/dist/session.d.ts +30 -0
- package/dist/session.js +35 -0
- package/dist/session.js.map +1 -0
- package/dist/types.d.ts +2485 -0
- package/dist/types.js +11 -0
- package/dist/types.js.map +1 -0
- package/package.json +42 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Copyright (c) 2026 crysnovax. All Rights Reserved.
|
|
2
|
+
|
|
3
|
+
PROPRIETARY LICENSE — ALL RIGHTS RESERVED
|
|
4
|
+
|
|
5
|
+
This software and its accompanying source code, documentation, assets, and any
|
|
6
|
+
other associated files (collectively, the "Software") are the exclusive
|
|
7
|
+
proprietary property of crysnovax (the "Author"). The Software is protected by
|
|
8
|
+
copyright and other intellectual property laws.
|
|
9
|
+
|
|
10
|
+
No license, right, or permission of any kind is granted to you by the Author
|
|
11
|
+
except as expressly stated in writing by the Author.
|
|
12
|
+
|
|
13
|
+
STRICTLY PROHIBITED WITHOUT PRIOR WRITTEN PERMISSION FROM THE AUTHOR:
|
|
14
|
+
|
|
15
|
+
1. USE — You may not use, run, execute, host, deploy, or otherwise operate
|
|
16
|
+
the Software, in whole or in part, for any purpose.
|
|
17
|
+
|
|
18
|
+
2. REPRODUCTION — You may not copy, reproduce, download, store, mirror, or
|
|
19
|
+
duplicate the Software, in whole or in part, by any means.
|
|
20
|
+
|
|
21
|
+
3. DISTRIBUTION — You may not publish, distribute, sublicense, transfer,
|
|
22
|
+
sell, rent, lease, lend, share, or otherwise make the Software available
|
|
23
|
+
to any third party, in whole or in part, in any form.
|
|
24
|
+
|
|
25
|
+
4. MODIFICATION — You may not modify, adapt, translate, alter, create
|
|
26
|
+
derivative works of, decompile, disassemble, or reverse engineer the
|
|
27
|
+
Software, in whole or in part.
|
|
28
|
+
|
|
29
|
+
5. COMMERCIAL EXPLOITATION — You may not use the Software, or any part of
|
|
30
|
+
it, for any commercial purpose, including as part of any product or
|
|
31
|
+
service offered to others.
|
|
32
|
+
|
|
33
|
+
6. REMOVAL OF NOTICES — You may not remove, obscure, or alter this license
|
|
34
|
+
or any copyright, trademark, or other proprietary notices contained in
|
|
35
|
+
or on the Software.
|
|
36
|
+
|
|
37
|
+
Any use, reproduction, distribution, modification, or other exploitation of the
|
|
38
|
+
Software outside the terms expressly granted in writing by the Author is
|
|
39
|
+
unauthorized, constitutes an infringement of the Author's exclusive rights, and
|
|
40
|
+
may result in civil and criminal liability.
|
|
41
|
+
|
|
42
|
+
NO WARRANTY
|
|
43
|
+
|
|
44
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
45
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
46
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
47
|
+
AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
|
|
48
|
+
ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
|
|
49
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
50
|
+
|
|
51
|
+
For licensing inquiries or to request written permission, contact the Author:
|
|
52
|
+
https://github.com/crysnovax
|