telegram-bot-api-nodejs 1.0.27 → 1.0.28

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/index.d.ts +5 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -214,6 +214,7 @@ export interface Message {
214
214
  video_note?: VideoNote;
215
215
  caption?: string;
216
216
  contact?: Contact;
217
+ dice?: Dice;
217
218
  location?: Location;
218
219
  venue?: Venue;
219
220
  poll?: Poll;
@@ -383,6 +384,10 @@ export interface Contact {
383
384
  user_id?: number;
384
385
  vcard?: string;
385
386
  }
387
+ export interface Dice {
388
+ emoji: string;
389
+ value: string;
390
+ }
386
391
  export interface Location {
387
392
  longitude: number;
388
393
  latitude: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telegram-bot-api-nodejs",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "Telegram Bot API client for nodejs",
5
5
  "type": "module",
6
6
  "main": "index.js",