@tgify/types 9.2.3 → 9.2.4

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/markup.d.ts +2 -2
  2. package/package.json +1 -1
package/markup.d.ts CHANGED
@@ -12,7 +12,7 @@ export declare namespace InlineKeyboardButton {
12
12
  /** The text to be copied to the clipboard; 1-256 characters */
13
13
  style?: 'primary' | 'success' | 'danger';
14
14
  /** Style of the button. Must be one of "danger" (red), "success" (green) or "primary" (blue). If omitted, then an app-specific style is used. */
15
- customEmojiId?: string;
15
+ icon_custom_emoji_id?: string;
16
16
  }
17
17
  interface Url extends AbstractInlineKeyboard {
18
18
  /** HTTP or tg:// URL to be opened when the button is pressed. Links tg://user?id=<user_id> can be used to mention a user by their identifier without using a username, if this is allowed by their privacy settings. */
@@ -153,7 +153,7 @@ export declare namespace KeyboardButton {
153
153
  /** The text to be copied to the clipboard; 1-256 characters */
154
154
  style?: 'primary' | 'success' | 'danger';
155
155
  /** Style of the button. Must be one of "danger" (red), "success" (green) or "primary" (blue). If omitted, then an app-specific style is used. */
156
- customEmojiId?: string;
156
+ icon_custom_emoji_id?: string;
157
157
  }
158
158
  interface RequestUsers extends Common {
159
159
  /** If specified, pressing the button will open a list of suitable users. Identifiers of selected users will be sent to the bot in a “users_shared” service message. Available in private chats only. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tgify/types",
3
3
  "private": false,
4
- "version": "9.2.3",
4
+ "version": "9.2.4",
5
5
  "description": "Type declarations for the Telegram API",
6
6
  "main": "index.js",
7
7
  "repository": {