1
0
mirror of https://github.com/danog/rpc-db.git synced 2024-11-26 20:14:40 +01:00
This commit is contained in:
Daniil Gentili 2023-10-03 20:18:13 +02:00
parent 1223316698
commit ed7b8aa6f4
7 changed files with 58 additions and 21 deletions

File diff suppressed because one or more lines are too long

View File

@ -103,7 +103,11 @@
"auth.sendCode", "auth.sendCode",
"auth.signIn", "auth.signIn",
"auth.signUp", "auth.signUp",
"bots.allowSendMessage",
"bots.canSendMessage",
"bots.invokeWebViewCustomMethod",
"channels.checkUsername", "channels.checkUsername",
"channels.clickSponsoredMessage",
"channels.convertToGigagroup", "channels.convertToGigagroup",
"channels.createChannel", "channels.createChannel",
"channels.deleteChannel", "channels.deleteChannel",
@ -384,11 +388,34 @@
"stats.loadAsyncGraph", "stats.loadAsyncGraph",
"stickers.checkShortName", "stickers.checkShortName",
"stickers.suggestShortName", "stickers.suggestShortName",
"stories.activateStealthMode",
"stories.applyBoost",
"stories.canApplyBoost",
"stories.canSendStory",
"stories.deleteStories",
"stories.editStory",
"stories.exportStoryLink",
"stories.getAllReadPeerStories",
"stories.getAllStories",
"stories.getBoostersList", "stories.getBoostersList",
"stories.getBoostsStatus", "stories.getBoostsStatus",
"stories.getChatsToSend",
"stories.getPeerMaxIDs",
"stories.getPeerStories",
"stories.getPinnedStories",
"stories.getStoriesArchive",
"stories.getStoriesByID", "stories.getStoriesByID",
"stories.getStoriesViews",
"stories.getStoryViewsList",
"stories.getUserStories", "stories.getUserStories",
"stories.incrementStoryViews",
"stories.readStories",
"stories.report",
"stories.sendReaction",
"stories.sendStory", "stories.sendStory",
"stories.toggleAllStoriesHidden",
"stories.togglePeerStoriesHidden",
"stories.togglePinned",
"upload.getCdnFile", "upload.getCdnFile",
"upload.getWebFile" "upload.getWebFile"
] ]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -121,6 +121,7 @@
"BOT_INVALID": [ "BOT_INVALID": [
"bots.allowSendMessage", "bots.allowSendMessage",
"bots.canSendMessage", "bots.canSendMessage",
"bots.invokeWebViewCustomMethod",
"bots.reorderUsernames", "bots.reorderUsernames",
"bots.toggleUsername", "bots.toggleUsername",
"messages.editMessage", "messages.editMessage",
@ -184,7 +185,8 @@
"messages.editMessage", "messages.editMessage",
"messages.sendMedia", "messages.sendMedia",
"messages.sendMessage", "messages.sendMessage",
"messages.setInlineBotResults" "messages.setInlineBotResults",
"test.test"
], ],
"BUTTON_USER_PRIVACY_RESTRICTED": [ "BUTTON_USER_PRIVACY_RESTRICTED": [
"messages.sendMessage" "messages.sendMessage"
@ -1502,12 +1504,27 @@
"stats.getMessagePublicForwards", "stats.getMessagePublicForwards",
"stats.getMessageStats", "stats.getMessageStats",
"stickers.createStickerSet", "stickers.createStickerSet",
"stories.applyBoost",
"stories.canApplyBoost",
"stories.canSendStory", "stories.canSendStory",
"stories.deleteStories",
"stories.editStory",
"stories.exportStoryLink",
"stories.getBoostersList", "stories.getBoostersList",
"stories.getBoostsStatus",
"stories.getPeerStories", "stories.getPeerStories",
"stories.getPinnedStories",
"stories.getStoriesArchive", "stories.getStoriesArchive",
"stories.getStoriesByID", "stories.getStoriesByID",
"stories.getStoriesViews",
"stories.getStoryViewsList",
"stories.incrementStoryViews",
"stories.readStories",
"stories.report",
"stories.sendReaction",
"stories.sendStory", "stories.sendStory",
"stories.togglePeerStoriesHidden",
"stories.togglePinned",
"upload.getFile" "upload.getFile"
], ],
"PEER_ID_NOT_SUPPORTED": [ "PEER_ID_NOT_SUPPORTED": [
@ -2005,6 +2022,9 @@
"TOKEN_TYPE_INVALID": [ "TOKEN_TYPE_INVALID": [
"account.registerDevice" "account.registerDevice"
], ],
"TOPIC_CLOSE_SEPARATELY": [
"channels.editForumTopic"
],
"TOPIC_CLOSED": [ "TOPIC_CLOSED": [
"messages.forwardMessages", "messages.forwardMessages",
"messages.sendMedia", "messages.sendMedia",
@ -2027,6 +2047,9 @@
"TOPIC_NOT_MODIFIED": [ "TOPIC_NOT_MODIFIED": [
"channels.editForumTopic" "channels.editForumTopic"
], ],
"TOPIC_TITLE_EMPTY": [
"channels.createForumTopic"
],
"TOPICS_EMPTY": [ "TOPICS_EMPTY": [
"channels.getForumTopicsByID" "channels.getForumTopicsByID"
], ],
@ -2747,21 +2770,6 @@
"req_pq_multi" "req_pq_multi"
] ]
}, },
"-505": {
"Nothing stored": [
"account.updateProfile",
"channels.editBanned",
"channels.joinChannel",
"channels.updateUsername",
"messages.createChat",
"messages.forwardMessages",
"messages.importChatInvite",
"updates.getChannelDifference",
"updates.getDifference",
"users.getFullUser",
"users.getUsers"
]
},
"-503": { "-503": {
"Timeout": [ "Timeout": [
"messages.getBotCallbackAnswer", "messages.getBotCallbackAnswer",
@ -3207,10 +3215,12 @@
"TOKEN_EMPTY": "The specified token is empty.", "TOKEN_EMPTY": "The specified token is empty.",
"TOKEN_INVALID": "The provided token is invalid.", "TOKEN_INVALID": "The provided token is invalid.",
"TOKEN_TYPE_INVALID": "The specified token type is invalid.", "TOKEN_TYPE_INVALID": "The specified token type is invalid.",
"TOPIC_CLOSE_SEPARATELY": "",
"TOPIC_CLOSED": "This topic was closed, you can't send messages to it anymore.", "TOPIC_CLOSED": "This topic was closed, you can't send messages to it anymore.",
"TOPIC_DELETED": "The specified topic was deleted.", "TOPIC_DELETED": "The specified topic was deleted.",
"TOPIC_ID_INVALID": "The specified topic ID is invalid.", "TOPIC_ID_INVALID": "The specified topic ID is invalid.",
"TOPIC_NOT_MODIFIED": "The updated topic info is equal to the current topic info, nothing was changed.", "TOPIC_NOT_MODIFIED": "The updated topic info is equal to the current topic info, nothing was changed.",
"TOPIC_TITLE_EMPTY": "",
"TOPICS_EMPTY": "", "TOPICS_EMPTY": "",
"TRANSCRIPTION_FAILED": "Audio transcription failed.", "TRANSCRIPTION_FAILED": "Audio transcription failed.",
"TTL_DAYS_INVALID": "The provided TTL is invalid.", "TTL_DAYS_INVALID": "The provided TTL is invalid.",