@effect-ak/tg-bot-client 1.4.0 → 1.4.2

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 (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +10 -2
  3. package/readme.md +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @effect-ak/tg-bot-client
2
2
 
3
+ ## 1.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e86bf1b: feat(api): update to Telegram Bot API 9.5
8
+ - Updated dependencies [e86bf1b]
9
+ - @effect-ak/tg-bot-api@1.3.3
10
+
11
+ ## 1.4.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 8ac8abd: Add homepage, keywords, and update documentation links to tg-bot-sdk.website
16
+ - Updated dependencies [8ac8abd]
17
+ - @effect-ak/tg-bot-api@1.3.1
18
+
3
19
  ## 1.4.0
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -2,12 +2,20 @@
2
2
  "name": "@effect-ak/tg-bot-client",
3
3
  "type": "module",
4
4
  "description": "Type-safe HTTP client for Telegram Bot API",
5
- "version": "1.4.0",
5
+ "version": "1.4.2",
6
6
  "license": "MIT",
7
+ "keywords": [
8
+ "telegram",
9
+ "telegram-bot",
10
+ "telegram-bot-api",
11
+ "http-client",
12
+ "typescript"
13
+ ],
7
14
  "author": {
8
15
  "name": "Aleksandr Kondaurov",
9
16
  "email": "kondaurov.dev@gmail.com"
10
17
  },
18
+ "homepage": "https://tg-bot-sdk.website",
11
19
  "repository": {
12
20
  "type": "git",
13
21
  "url": "https://github.com/kondaurovDev/tg-bot-sdk",
@@ -28,7 +36,7 @@
28
36
  "./dist/*": "./dist/*"
29
37
  },
30
38
  "dependencies": {
31
- "@effect-ak/tg-bot-api": "^1.3.0"
39
+ "@effect-ak/tg-bot-api": "^1.3.3"
32
40
  },
33
41
  "scripts": {
34
42
  "build": "tsup",
package/readme.md CHANGED
@@ -36,7 +36,7 @@ await client.execute("send_message", {
36
36
 
37
37
  ## Documentation
38
38
 
39
- Full documentation, usage examples, and error handling: **[tg-bot-sdk docs](https://github.com/kondaurovDev/tg-bot-sdk)**
39
+ Full documentation, usage examples, and error handling: **[tg-bot-sdk.website](https://tg-bot-sdk.website)**
40
40
 
41
41
  ## License
42
42