telegram-bot-api-nodejs 1.0.76 → 1.0.77
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 +10 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -245,10 +245,18 @@ export interface Giveaway {
|
|
|
245
245
|
premium_subscription_month_count?: number;
|
|
246
246
|
}
|
|
247
247
|
export interface GiveawayWinners {
|
|
248
|
-
|
|
248
|
+
chat: Chat;
|
|
249
|
+
giveaway_message_id: number;
|
|
250
|
+
winners_selection_date: number;
|
|
251
|
+
winner_count: number;
|
|
252
|
+
winners: User[];
|
|
253
|
+
additional_chat_count?: number;
|
|
249
254
|
prize_star_count?: number;
|
|
255
|
+
premium_subscription_month_count?: number;
|
|
256
|
+
unclaimed_prize_count?: number;
|
|
257
|
+
only_new_members?: boolean;
|
|
258
|
+
was_refunded?: boolean;
|
|
250
259
|
prize_description?: string;
|
|
251
|
-
winners_selection_date?: string;
|
|
252
260
|
}
|
|
253
261
|
export interface VideoChatScheduled {
|
|
254
262
|
start_date: number;
|