grammy 1.12.1 → 1.12.2

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/README.md CHANGED
@@ -241,7 +241,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
241
241
  <td align="center"><a href="https://github.com/abdoo9"><img src="https://avatars.githubusercontent.com/u/63903814?v=4?s=100" width="100px;" alt="abdoo9"/><br /><sub><b>abdoo9</b></sub></a><br /><a href="https://github.com/grammyjs/grammY/issues?q=author%3Aabdoo9" title="Bug reports">🐛</a> <a href="https://github.com/grammyjs/grammY/commits?author=abdoo9" title="Code">💻</a></td>
242
242
  </tr>
243
243
  <tr>
244
- <td align="center"><a href="http://ak4zh.com"><img src="https://avatars.githubusercontent.com/u/26350053?v=4?s=100" width="100px;" alt="ak4zh"/><br /><sub><b>ak4zh</b></sub></a><br /><a href="https://github.com/grammyjs/grammY/pulls?q=is%3Apr+reviewed-by%3Aak4zh" title="Reviewed Pull Requests">👀</a></td>
244
+ <td align="center"><a href="http://ak4zh.com"><img src="https://avatars.githubusercontent.com/u/26350053?v=4?s=100" width="100px;" alt="ak4zh"/><br /><sub><b>ak4zh</b></sub></a><br /><a href="https://github.com/grammyjs/grammY/pulls?q=is%3Apr+reviewed-by%3Aak4zh" title="Reviewed Pull Requests">👀</a> <a href="#ideas-ak4zh" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/grammyjs/grammY/commits?author=ak4zh" title="Code">💻</a></td>
245
+ <td align="center"><a href="https://github.com/nlapshin"><img src="https://avatars.githubusercontent.com/u/39495311?v=4?s=100" width="100px;" alt="Nikolay Lapshin"/><br /><sub><b>Nikolay Lapshin</b></sub></a><br /><a href="https://github.com/grammyjs/grammY/commits?author=nlapshin" title="Code">💻</a></td>
245
246
  </tr>
246
247
  </tbody>
247
248
  </table>
@@ -0,0 +1 @@
1
+ export declare const adapters: {};
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.adapters = void 0;
4
+ exports.adapters = {};
package/out/filter.d.ts CHANGED
@@ -46,7 +46,11 @@ declare const UPDATE_KEYS: {
46
46
  readonly successful_payment: {};
47
47
  readonly connected_website: {};
48
48
  readonly passport_data: {};
49
- readonly sticker: {};
49
+ readonly sticker: {
50
+ readonly is_video: {};
51
+ readonly is_animated: {};
52
+ readonly premium_animation: {};
53
+ };
50
54
  readonly video_note: {};
51
55
  readonly voice: {};
52
56
  readonly contact: {};
@@ -139,7 +143,11 @@ declare const UPDATE_KEYS: {
139
143
  readonly successful_payment: {};
140
144
  readonly connected_website: {};
141
145
  readonly passport_data: {};
142
- readonly sticker: {};
146
+ readonly sticker: {
147
+ readonly is_video: {};
148
+ readonly is_animated: {};
149
+ readonly premium_animation: {};
150
+ };
143
151
  readonly video_note: {};
144
152
  readonly voice: {};
145
153
  readonly contact: {};
@@ -214,7 +222,11 @@ declare const UPDATE_KEYS: {
214
222
  };
215
223
  readonly channel_post: {
216
224
  readonly channel_chat_created: {};
217
- readonly sticker: {};
225
+ readonly sticker: {
226
+ readonly is_video: {};
227
+ readonly is_animated: {};
228
+ readonly premium_animation: {};
229
+ };
218
230
  readonly video_note: {};
219
231
  readonly voice: {};
220
232
  readonly contact: {};
@@ -289,7 +301,11 @@ declare const UPDATE_KEYS: {
289
301
  };
290
302
  readonly edited_channel_post: {
291
303
  readonly channel_chat_created: {};
292
- readonly sticker: {};
304
+ readonly sticker: {
305
+ readonly is_video: {};
306
+ readonly is_animated: {};
307
+ readonly premium_animation: {};
308
+ };
293
309
  readonly video_note: {};
294
310
  readonly voice: {};
295
311
  readonly contact: {};
package/out/filter.js CHANGED
@@ -216,6 +216,11 @@ const USER_KEYS = {
216
216
  is_premium: {},
217
217
  added_to_attachment_menu: {},
218
218
  };
219
+ const STICKER_KEYS = {
220
+ is_video: {},
221
+ is_animated: {},
222
+ premium_animation: {},
223
+ };
219
224
  // L2
220
225
  const EDITABLE_MESSAGE_KEYS = {
221
226
  text: {},
@@ -232,7 +237,7 @@ const EDITABLE_MESSAGE_KEYS = {
232
237
  };
233
238
  const COMMON_MESSAGE_KEYS = {
234
239
  ...EDITABLE_MESSAGE_KEYS,
235
- sticker: {},
240
+ sticker: STICKER_KEYS,
236
241
  video_note: {},
237
242
  voice: {},
238
243
  contact: {},
package/out/web.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./mod";