grammy 1.20.4 → 1.21.1

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/out/filter.d.ts CHANGED
@@ -29,6 +29,7 @@ export declare function parse(filter: FilterQuery | FilterQuery[]): string[][];
29
29
  export declare function preprocess(filter: string[]): string[][];
30
30
  declare const UPDATE_KEYS: {
31
31
  readonly message: {
32
+ readonly sender_boost_count: {};
32
33
  readonly new_chat_members: {
33
34
  readonly me: {};
34
35
  readonly is_bot: {};
@@ -46,6 +47,7 @@ declare const UPDATE_KEYS: {
46
47
  readonly migrate_to_chat_id: {};
47
48
  readonly migrate_from_chat_id: {};
48
49
  readonly successful_payment: {};
50
+ readonly boost_added: {};
49
51
  readonly users_shared: {};
50
52
  readonly chat_shared: {};
51
53
  readonly connected_website: {};
@@ -142,6 +144,7 @@ declare const UPDATE_KEYS: {
142
144
  readonly web_app_data: {};
143
145
  };
144
146
  readonly edited_message: {
147
+ readonly sender_boost_count: {};
145
148
  readonly new_chat_members: {
146
149
  readonly me: {};
147
150
  readonly is_bot: {};
@@ -159,6 +162,7 @@ declare const UPDATE_KEYS: {
159
162
  readonly migrate_to_chat_id: {};
160
163
  readonly migrate_from_chat_id: {};
161
164
  readonly successful_payment: {};
165
+ readonly boost_added: {};
162
166
  readonly users_shared: {};
163
167
  readonly chat_shared: {};
164
168
  readonly connected_website: {};
package/out/filter.js CHANGED
@@ -283,6 +283,7 @@ const COMMON_MESSAGE_KEYS = {
283
283
  };
284
284
  const MESSAGE_KEYS = {
285
285
  ...COMMON_MESSAGE_KEYS,
286
+ sender_boost_count: {},
286
287
  new_chat_members: USER_KEYS,
287
288
  left_chat_member: USER_KEYS,
288
289
  group_chat_created: {},
@@ -290,6 +291,7 @@ const MESSAGE_KEYS = {
290
291
  migrate_to_chat_id: {},
291
292
  migrate_from_chat_id: {},
292
293
  successful_payment: {},
294
+ boost_added: {},
293
295
  users_shared: {},
294
296
  chat_shared: {},
295
297
  connected_website: {},
package/out/web.mjs CHANGED
@@ -226,6 +226,7 @@ const COMMON_MESSAGE_KEYS = {
226
226
  };
227
227
  const MESSAGE_KEYS = {
228
228
  ...COMMON_MESSAGE_KEYS,
229
+ sender_boost_count: {},
229
230
  new_chat_members: USER_KEYS,
230
231
  left_chat_member: USER_KEYS,
231
232
  group_chat_created: {},
@@ -233,6 +234,7 @@ const MESSAGE_KEYS = {
233
234
  migrate_to_chat_id: {},
234
235
  migrate_from_chat_id: {},
235
236
  successful_payment: {},
237
+ boost_added: {},
236
238
  users_shared: {},
237
239
  chat_shared: {},
238
240
  connected_website: {},
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "grammy",
3
3
  "description": "The Telegram Bot Framework.",
4
- "version": "1.20.4",
4
+ "version": "1.21.1",
5
5
  "author": "KnorpelSenf",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -17,7 +17,7 @@
17
17
  "backport": "deno2node tsconfig.json"
18
18
  },
19
19
  "dependencies": {
20
- "@grammyjs/types": "3.4.6",
20
+ "@grammyjs/types": "3.5.2",
21
21
  "abort-controller": "^3.0.0",
22
22
  "debug": "^4.3.4",
23
23
  "node-fetch": "^2.7.0"