@autobusal/providers 1.3.3 → 1.3.4

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/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All notable changes to `@autobusal/providers` are documented here. This project
4
4
  adheres to [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.3.4] - 2026-07-25
8
+
9
+ ### Added
10
+
11
+ - `LabelSettings.telegram`: admin-managed bot config (enabled/bot_token/
12
+ bot_username) for the Telegram route-notifications feature.
13
+
7
14
  ## [1.3.3] - 2026-07-25
8
15
 
9
16
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts"
package/types/settings.ts CHANGED
@@ -145,6 +145,15 @@ export interface LabelSettings {
145
145
  secret_key?: string
146
146
  }
147
147
  }
148
+
149
+ // Edited: Ferjolt Ozuni - Date: 2026-07-25
150
+ // Admin-managed Telegram bot configuration - bot_username is captured
151
+ // automatically from a live getMe() check on save, not entered by hand.
152
+ telegram?: {
153
+ enabled: boolean
154
+ bot_token?: string
155
+ bot_username?: string
156
+ }
148
157
  }
149
158
 
150
159
  // Edited: Ferjolt Ozuni - Date: 2026-07-18