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.
- package/index.d.ts +5 -0
- 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;
|