Adding new code-generator (Butcher) (#1069)

* Re-generate types

* Re-generate methods (only attributes)

* Added enums

* Base init generator

* Added butcher configs

* Fixed tests, bump butcher

* Added changelog

* Added enum docs

* Added templates for docs index

* Re-generate bot class, remove deprecated methods
This commit is contained in:
Alex Root Junior 2022-11-21 01:06:55 +02:00 committed by GitHub
parent c7779abc50
commit d034c1ba9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
387 changed files with 32036 additions and 3144 deletions

View file

@ -0,0 +1,139 @@
{
"meta": {
"deprecated": false
},
"group": {
"title": "Inline mode",
"anchor": "inline-mode"
},
"object": {
"anchor": "inlinequeryresultvideo",
"name": "InlineQueryResultVideo",
"description": "Represents a link to a page containing an embedded video player or a video file. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the video.\nIf an InlineQueryResultVideo message contains an embedded video (e.g., YouTube), you must replace its content using input_message_content.",
"html_description": "<p>Represents a link to a page containing an embedded video player or a video file. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use <em>input_message_content</em> to send a message with the specified content instead of the video.</p><blockquote>\n<p>If an InlineQueryResultVideo message contains an embedded video (e.g., YouTube), you <strong>must</strong> replace its content using <em>input_message_content</em>.</p>\n</blockquote>",
"rst_description": "Represents a link to a page containing an embedded video player or a video file. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use *input_message_content* to send a message with the specified content instead of the video.\n\n If an InlineQueryResultVideo message contains an embedded video (e.g., YouTube), you **must** replace its content using *input_message_content*.",
"annotations": [
{
"type": "String",
"description": "Type of the result, must be video",
"html_description": "<td>Type of the result, must be <em>video</em></td>",
"rst_description": "Type of the result, must be *video*\n",
"name": "type",
"required": true
},
{
"type": "String",
"description": "Unique identifier for this result, 1-64 bytes",
"html_description": "<td>Unique identifier for this result, 1-64 bytes</td>",
"rst_description": "Unique identifier for this result, 1-64 bytes\n",
"name": "id",
"required": true
},
{
"type": "String",
"description": "A valid URL for the embedded video player or video file",
"html_description": "<td>A valid URL for the embedded video player or video file</td>",
"rst_description": "A valid URL for the embedded video player or video file\n",
"name": "video_url",
"required": true
},
{
"type": "String",
"description": "MIME type of the content of the video URL, 'text/html' or 'video/mp4'",
"html_description": "<td>MIME type of the content of the video URL, &#8220;text/html&#8221; or &#8220;video/mp4&#8221;</td>",
"rst_description": "MIME type of the content of the video URL, 'text/html' or 'video/mp4'\n",
"name": "mime_type",
"required": true
},
{
"type": "String",
"description": "URL of the thumbnail (JPEG only) for the video",
"html_description": "<td>URL of the thumbnail (JPEG only) for the video</td>",
"rst_description": "URL of the thumbnail (JPEG only) for the video\n",
"name": "thumb_url",
"required": true
},
{
"type": "String",
"description": "Title for the result",
"html_description": "<td>Title for the result</td>",
"rst_description": "Title for the result\n",
"name": "title",
"required": true
},
{
"type": "String",
"description": "Caption of the video to be sent, 0-1024 characters after entities parsing",
"html_description": "<td><em>Optional</em>. Caption of the video to be sent, 0-1024 characters after entities parsing</td>",
"rst_description": "*Optional*. Caption of the video to be sent, 0-1024 characters after entities parsing\n",
"name": "caption",
"required": false
},
{
"type": "String",
"description": "Mode for parsing entities in the video caption. See formatting options for more details.",
"html_description": "<td><em>Optional</em>. Mode for parsing entities in the video caption. See <a href=\"#formatting-options\">formatting options</a> for more details.</td>",
"rst_description": "*Optional*. Mode for parsing entities in the video caption. See `formatting options <https://core.telegram.org/bots/api#formatting-options>`_ for more details.\n",
"name": "parse_mode",
"required": false
},
{
"type": "Array of MessageEntity",
"description": "List of special entities that appear in the caption, which can be specified instead of parse_mode",
"html_description": "<td><em>Optional</em>. List of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em></td>",
"rst_description": "*Optional*. List of special entities that appear in the caption, which can be specified instead of *parse_mode*\n",
"name": "caption_entities",
"required": false
},
{
"type": "Integer",
"description": "Video width",
"html_description": "<td><em>Optional</em>. Video width</td>",
"rst_description": "*Optional*. Video width\n",
"name": "video_width",
"required": false
},
{
"type": "Integer",
"description": "Video height",
"html_description": "<td><em>Optional</em>. Video height</td>",
"rst_description": "*Optional*. Video height\n",
"name": "video_height",
"required": false
},
{
"type": "Integer",
"description": "Video duration in seconds",
"html_description": "<td><em>Optional</em>. Video duration in seconds</td>",
"rst_description": "*Optional*. Video duration in seconds\n",
"name": "video_duration",
"required": false
},
{
"type": "String",
"description": "Short description of the result",
"html_description": "<td><em>Optional</em>. Short description of the result</td>",
"rst_description": "*Optional*. Short description of the result\n",
"name": "description",
"required": false
},
{
"type": "InlineKeyboardMarkup",
"description": "Inline keyboard attached to the message",
"html_description": "<td><em>Optional</em>. <a href=\"/bots/features#inline-keyboards\">Inline keyboard</a> attached to the message</td>",
"rst_description": "*Optional*. `Inline keyboard <https://core.telegram.org/bots/features#inline-keyboards>`_ attached to the message\n",
"name": "reply_markup",
"required": false
},
{
"type": "InputMessageContent",
"description": "Content of the message to be sent instead of the video. This field is required if InlineQueryResultVideo is used to send an HTML-page as a result (e.g., a YouTube video).",
"html_description": "<td><em>Optional</em>. Content of the message to be sent instead of the video. This field is <strong>required</strong> if InlineQueryResultVideo is used to send an HTML-page as a result (e.g., a YouTube video).</td>",
"rst_description": "*Optional*. Content of the message to be sent instead of the video. This field is **required** if InlineQueryResultVideo is used to send an HTML-page as a result (e.g., a YouTube video).\n",
"name": "input_message_content",
"required": false
}
],
"category": "types"
}
}

View file

@ -0,0 +1,6 @@
bases:
- InlineQueryResult
annotations:
parse_mode:
value: UNSET