@tgsnake/skema 1.12.0 → 2.0.0-browser.0

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 (147) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +125 -16
  3. package/dist/mod.d.ts +10 -0
  4. package/dist/mod.js +10 -0
  5. package/dist/src/Logger.d.ts +20 -0
  6. package/dist/src/Logger.js +23 -0
  7. package/dist/src/deps.d.ts +29 -0
  8. package/dist/src/deps.js +34 -0
  9. package/dist/src/errors/Base.d.ts +53 -0
  10. package/dist/src/errors/Base.js +114 -0
  11. package/dist/src/errors/Client.d.ts +69 -0
  12. package/dist/src/errors/Client.js +69 -0
  13. package/dist/src/errors/File.d.ts +89 -0
  14. package/dist/src/errors/File.js +99 -0
  15. package/dist/src/errors/RpcError.d.ts +115 -0
  16. package/dist/src/errors/RpcError.js +226 -0
  17. package/dist/src/errors/SecretChat.d.ts +78 -0
  18. package/dist/src/errors/SecretChat.js +88 -0
  19. package/dist/src/errors/WebSocket.d.ts +70 -0
  20. package/dist/src/errors/WebSocket.js +80 -0
  21. package/dist/{errors → src/errors}/exceptions/All.d.ts +14 -0
  22. package/dist/{errors → src/errors}/exceptions/All.js +15 -5
  23. package/dist/{errors → src/errors}/exceptions/BadRequest400.d.ts +15 -1
  24. package/dist/src/errors/exceptions/BadRequest400.js +2683 -0
  25. package/dist/{errors → src/errors}/exceptions/Flood420.d.ts +15 -1
  26. package/dist/{errors → src/errors}/exceptions/Flood420.js +25 -24
  27. package/dist/{errors → src/errors}/exceptions/Forbidden403.d.ts +15 -1
  28. package/dist/src/errors/exceptions/Forbidden403.js +243 -0
  29. package/dist/{errors → src/errors}/exceptions/InternalServerError500.d.ts +15 -1
  30. package/dist/src/errors/exceptions/InternalServerError500.js +255 -0
  31. package/dist/{errors → src/errors}/exceptions/NotAcceptable406.d.ts +15 -1
  32. package/dist/{errors → src/errors}/exceptions/NotAcceptable406.js +51 -76
  33. package/dist/src/errors/exceptions/NotFound404.d.ts +27 -0
  34. package/dist/src/errors/exceptions/NotFound404.js +27 -0
  35. package/dist/src/errors/exceptions/SeeOther303.d.ts +39 -0
  36. package/dist/src/errors/exceptions/SeeOther303.js +39 -0
  37. package/dist/src/errors/exceptions/ServiceUnavailable503.d.ts +31 -0
  38. package/dist/src/errors/exceptions/ServiceUnavailable503.js +31 -0
  39. package/dist/{errors → src/errors}/exceptions/Unauthorized401.d.ts +15 -1
  40. package/dist/src/errors/exceptions/Unauthorized401.js +55 -0
  41. package/dist/src/errors/exceptions/index.d.ts +24 -0
  42. package/dist/src/errors/exceptions/index.js +24 -0
  43. package/dist/src/errors/index.d.ts +142 -0
  44. package/dist/src/errors/index.js +178 -0
  45. package/dist/src/helpers.d.ts +102 -0
  46. package/dist/src/helpers.js +176 -0
  47. package/dist/src/index.d.ts +12 -0
  48. package/dist/src/index.js +12 -0
  49. package/dist/{raw → src/raw}/All.d.ts +47 -5
  50. package/dist/{raw → src/raw}/All.js +48 -9
  51. package/dist/{raw → src/raw}/Raw.d.ts +17546 -9
  52. package/dist/{raw → src/raw}/Raw.js +44899 -21694
  53. package/dist/src/raw/UpdateSecretChat.d.ts +186 -0
  54. package/dist/src/raw/UpdateSecretChat.js +215 -0
  55. package/dist/src/raw/core/GzipPacked.d.ts +63 -0
  56. package/dist/src/raw/core/GzipPacked.js +76 -0
  57. package/dist/src/raw/core/Message.d.ts +68 -0
  58. package/dist/src/raw/core/Message.js +105 -0
  59. package/dist/src/raw/core/MsgContainer.d.ts +56 -0
  60. package/dist/src/raw/core/MsgContainer.js +77 -0
  61. package/dist/src/raw/core/TLObject.d.ts +108 -0
  62. package/dist/src/raw/core/TLObject.js +209 -0
  63. package/dist/src/raw/core/index.d.ts +19 -0
  64. package/dist/src/raw/core/index.js +19 -0
  65. package/dist/src/raw/core/primitive/Bool.d.ts +104 -0
  66. package/dist/src/raw/core/primitive/Bool.js +120 -0
  67. package/dist/src/raw/core/primitive/Bytes.d.ts +45 -0
  68. package/dist/src/raw/core/primitive/Bytes.js +76 -0
  69. package/dist/src/raw/core/primitive/Double.d.ts +37 -0
  70. package/dist/src/raw/core/primitive/Double.js +51 -0
  71. package/dist/src/raw/core/primitive/Float.d.ts +37 -0
  72. package/dist/src/raw/core/primitive/Float.js +51 -0
  73. package/dist/src/raw/core/primitive/Int.d.ts +144 -0
  74. package/dist/src/raw/core/primitive/Int.js +237 -0
  75. package/dist/src/raw/core/primitive/String.d.ts +37 -0
  76. package/dist/src/raw/core/primitive/String.js +42 -0
  77. package/dist/src/raw/core/primitive/Vector.d.ts +56 -0
  78. package/dist/src/raw/core/primitive/Vector.js +93 -0
  79. package/dist/src/raw/core/primitive/index.d.ts +20 -0
  80. package/dist/src/raw/core/primitive/index.js +20 -0
  81. package/dist/src/raw/index.d.ts +17 -0
  82. package/dist/src/raw/index.js +17 -0
  83. package/package.json +54 -50
  84. package/dist/Logger.d.ts +0 -3
  85. package/dist/Logger.js +0 -9
  86. package/dist/deps.d.ts +0 -8
  87. package/dist/deps.js +0 -19
  88. package/dist/errors/Base.d.ts +0 -9
  89. package/dist/errors/Base.js +0 -50
  90. package/dist/errors/Client.d.ts +0 -21
  91. package/dist/errors/Client.js +0 -29
  92. package/dist/errors/File.d.ts +0 -13
  93. package/dist/errors/File.js +0 -30
  94. package/dist/errors/RpcError.d.ts +0 -22
  95. package/dist/errors/RpcError.js +0 -120
  96. package/dist/errors/SecretChat.d.ts +0 -13
  97. package/dist/errors/SecretChat.js +0 -30
  98. package/dist/errors/WebSocket.d.ts +0 -13
  99. package/dist/errors/WebSocket.js +0 -30
  100. package/dist/errors/exceptions/BadRequest400.js +0 -3352
  101. package/dist/errors/exceptions/Forbidden403.js +0 -290
  102. package/dist/errors/exceptions/InternalServerError500.js +0 -305
  103. package/dist/errors/exceptions/NotFound404.d.ts +0 -13
  104. package/dist/errors/exceptions/NotFound404.js +0 -19
  105. package/dist/errors/exceptions/SeeOther303.d.ts +0 -25
  106. package/dist/errors/exceptions/SeeOther303.js +0 -34
  107. package/dist/errors/exceptions/ServiceUnavailable503.d.ts +0 -17
  108. package/dist/errors/exceptions/ServiceUnavailable503.js +0 -24
  109. package/dist/errors/exceptions/Unauthorized401.js +0 -54
  110. package/dist/errors/exceptions/index.d.ts +0 -10
  111. package/dist/errors/exceptions/index.js +0 -48
  112. package/dist/errors/index.d.ts +0 -31
  113. package/dist/errors/index.js +0 -111
  114. package/dist/helpers.d.ts +0 -6
  115. package/dist/helpers.js +0 -85
  116. package/dist/index.d.ts +0 -3
  117. package/dist/index.js +0 -34
  118. package/dist/raw/UpdateSecretChat.d.ts +0 -43
  119. package/dist/raw/UpdateSecretChat.js +0 -91
  120. package/dist/raw/core/GzipPacked.d.ts +0 -9
  121. package/dist/raw/core/GzipPacked.js +0 -59
  122. package/dist/raw/core/Message.d.ts +0 -12
  123. package/dist/raw/core/Message.js +0 -80
  124. package/dist/raw/core/MsgContainer.d.ts +0 -10
  125. package/dist/raw/core/MsgContainer.js +0 -68
  126. package/dist/raw/core/TLObject.d.ts +0 -18
  127. package/dist/raw/core/TLObject.js +0 -108
  128. package/dist/raw/core/index.d.ts +0 -6
  129. package/dist/raw/core/index.js +0 -46
  130. package/dist/raw/core/primitive/Bool.d.ts +0 -19
  131. package/dist/raw/core/primitive/Bool.js +0 -41
  132. package/dist/raw/core/primitive/Bytes.d.ts +0 -6
  133. package/dist/raw/core/primitive/Bytes.js +0 -41
  134. package/dist/raw/core/primitive/Double.d.ts +0 -6
  135. package/dist/raw/core/primitive/Double.js +0 -24
  136. package/dist/raw/core/primitive/Float.d.ts +0 -6
  137. package/dist/raw/core/primitive/Float.js +0 -24
  138. package/dist/raw/core/primitive/Int.d.ts +0 -22
  139. package/dist/raw/core/primitive/Int.js +0 -122
  140. package/dist/raw/core/primitive/String.d.ts +0 -6
  141. package/dist/raw/core/primitive/String.js +0 -15
  142. package/dist/raw/core/primitive/Vector.d.ts +0 -8
  143. package/dist/raw/core/primitive/Vector.js +0 -49
  144. package/dist/raw/core/primitive/index.d.ts +0 -7
  145. package/dist/raw/core/primitive/index.js +0 -22
  146. package/dist/raw/index.d.ts +0 -4
  147. package/dist/raw/index.js +0 -17
@@ -1,3 +1,17 @@
1
+ /**
2
+ * tgsnake - Telegram MTProto library for javascript or typescript.
3
+ * Copyright (C) 2026 tgsnake <https://github.com/tgsnake>
4
+ *
5
+ * THIS FILE IS PART OF TGSNAKE
6
+ *
7
+ * tgsnake is a free software: you can redistribute it and/or modify
8
+ * it under the terms of the MIT License as published.
9
+ */
10
+ /***********************************************************
11
+ * Warning!! *
12
+ * This file is auto generate. *
13
+ * All change made in this file will be lost! *
14
+ ***********************************************************/
1
15
  export declare const AllTLObject: {
2
16
  3162085175: string;
3
17
  2574415285: string;
@@ -146,7 +160,7 @@ export declare const AllTLObject: {
146
160
  935395612: string;
147
161
  476978193: string;
148
162
  2426849924: string;
149
- 988112002: string;
163
+ 2515496747: string;
150
164
  2055212554: string;
151
165
  1038967584: string;
152
166
  3793152867: string;
@@ -248,7 +262,7 @@ export declare const AllTLObject: {
248
262
  2997024355: string;
249
263
  1577067778: string;
250
264
  596704836: string;
251
- 3767884348: string;
265
+ 4169301695: string;
252
266
  782418132: string;
253
267
  1148485274: string;
254
268
  3023364792: string;
@@ -464,6 +478,8 @@ export declare const AllTLObject: {
464
478
  2886149188: string;
465
479
  3179505593: string;
466
480
  1216408986: string;
481
+ 3453225277: string;
482
+ 2349830651: string;
467
483
  2775329342: string;
468
484
  1567990072: string;
469
485
  16030880: string;
@@ -770,6 +786,7 @@ export declare const AllTLObject: {
770
786
  2822794409: string;
771
787
  4226728176: string;
772
788
  4255022060: string;
789
+ 1814361053: string;
773
790
  4219683473: string;
774
791
  3727060725: string;
775
792
  1891070632: string;
@@ -1049,7 +1066,7 @@ export declare const AllTLObject: {
1049
1066
  32192344: string;
1050
1067
  1266514026: string;
1051
1068
  429911446: string;
1052
- 3091356649: string;
1069
+ 2523803071: string;
1053
1070
  910500618: string;
1054
1071
  3128668510: string;
1055
1072
  4030849616: string;
@@ -1105,6 +1122,7 @@ export declare const AllTLObject: {
1105
1122
  3480186296: string;
1106
1123
  835375875: string;
1107
1124
  29770178: string;
1125
+ 2005007896: string;
1108
1126
  1218005070: string;
1109
1127
  4117234314: string;
1110
1128
  1042605427: string;
@@ -1255,7 +1273,7 @@ export declare const AllTLObject: {
1255
1273
  4188186315: string;
1256
1274
  494149367: string;
1257
1275
  1964968186: string;
1258
- 2612159341: string;
1276
+ 1069645911: string;
1259
1277
  2298016283: string;
1260
1278
  769727150: string;
1261
1279
  3892250250: string;
@@ -1610,6 +1628,16 @@ export declare const AllTLObject: {
1610
1628
  1012971041: string;
1611
1629
  4047224023: string;
1612
1630
  2430053882: string;
1631
+ 697941741: string;
1632
+ 535407039: string;
1633
+ 125026432: string;
1634
+ 530584407: string;
1635
+ 3489021609: string;
1636
+ 2611831828: string;
1637
+ 3254018307: string;
1638
+ 1822232318: string;
1639
+ 4057344236: string;
1640
+ 3709845395: string;
1613
1641
  3416209197: string;
1614
1642
  1036301552: string;
1615
1643
  3251461801: string;
@@ -2049,13 +2077,17 @@ export declare const AllTLObject: {
2049
2077
  2685350576: string;
2050
2078
  893610940: string;
2051
2079
  3382999819: string;
2052
- 4248988414: string;
2080
+ 3672950153: string;
2053
2081
  1080542694: string;
2054
2082
  3720140825: string;
2055
2083
  431770477: string;
2056
2084
  2894398885: string;
2057
2085
  1126722802: string;
2058
2086
  388019416: string;
2087
+ 86706395: string;
2088
+ 2696416504: string;
2089
+ 3820484652: string;
2090
+ 1442515350: string;
2059
2091
  3990128682: string;
2060
2092
  432207715: string;
2061
2093
  51854712: string;
@@ -2190,6 +2222,8 @@ export declare const AllTLObject: {
2190
2222
  3171785195: string;
2191
2223
  832742238: string;
2192
2224
  3206920179: string;
2225
+ 557339555: string;
2226
+ 830553304: string;
2193
2227
  924093883: string;
2194
2228
  611897804: string;
2195
2229
  3066622251: string;
@@ -2322,6 +2356,7 @@ export declare const AllTLObject: {
2322
2356
  3068175349: string;
2323
2357
  927985472: string;
2324
2358
  2789441270: string;
2359
+ 3263036008: string;
2325
2360
  2222081934: string;
2326
2361
  1906072670: string;
2327
2362
  1698543165: string;
@@ -2379,6 +2414,13 @@ export declare const AllTLObject: {
2379
2414
  2005766191: string;
2380
2415
  1327415076: string;
2381
2416
  3189671354: string;
2417
+ 1252538643: string;
2418
+ 2419838809: string;
2419
+ 394447793: string;
2420
+ 3711512938: string;
2421
+ 3001596419: string;
2422
+ 2882900481: string;
2423
+ 3518278420: string;
2382
2424
  528568095: string;
2383
2425
  2856858237: string;
2384
2426
  144661578: string;
@@ -1,7 +1,18 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AllTLObject = void 0;
4
- exports.AllTLObject = {
1
+ /**
2
+ * tgsnake - Telegram MTProto library for javascript or typescript.
3
+ * Copyright (C) 2026 tgsnake <https://github.com/tgsnake>
4
+ *
5
+ * THIS FILE IS PART OF TGSNAKE
6
+ *
7
+ * tgsnake is a free software: you can redistribute it and/or modify
8
+ * it under the terms of the MIT License as published.
9
+ */
10
+ /***********************************************************
11
+ * Warning!! *
12
+ * This file is auto generate. *
13
+ * All change made in this file will be lost! *
14
+ ***********************************************************/
15
+ export const AllTLObject = {
5
16
  0xbc799737: 'Primitive.BoolFalse',
6
17
  0x997275b5: 'Primitive.BoolTrue',
7
18
  0x1cb5c415: 'Primitive.Vector',
@@ -149,7 +160,7 @@ exports.AllTLObject = {
149
160
  0x37c1011c: 'Raw.ChatPhotoEmpty',
150
161
  0x1c6e1c11: 'Raw.ChatPhoto',
151
162
  0x90a6ca84: 'Raw.MessageEmpty',
152
- 0x3ae56482: 'Raw.Message',
163
+ 0x95ef6f2b: 'Raw.Message',
153
164
  0x7a800e0a: 'Raw.MessageService',
154
165
  0x3ded6320: 'Raw.MessageMediaEmpty',
155
166
  0xe216eb63: 'Raw.MessageMediaPhoto',
@@ -251,7 +262,7 @@ exports.AllTLObject = {
251
262
  0xb2a2f663: 'Raw.GeoPoint',
252
263
  0x5e002502: 'Raw.auth.SentCode',
253
264
  0x2390fe44: 'Raw.auth.SentCodeSuccess',
254
- 0xe0955a3c: 'Raw.auth.SentCodePaymentRequired',
265
+ 0xf8827ebf: 'Raw.auth.SentCodePaymentRequired',
255
266
  0x2ea2c0d4: 'Raw.auth.Authorization',
256
267
  0x44747e9a: 'Raw.auth.AuthorizationSignUpRequired',
257
268
  0xb434e2b8: 'Raw.auth.ExportedAuthorization',
@@ -467,6 +478,8 @@ exports.AllTLObject = {
467
478
  0xac072444: 'Raw.UpdateStarGiftCraftFail',
468
479
  0xbd8367b9: 'Raw.UpdateChatParticipantRank',
469
480
  0x4880ed9a: 'Raw.UpdateManagedBot',
481
+ 0xcdd4093d: 'Raw.UpdateBotGuestChatQuery',
482
+ 0x8c0f91fb: 'Raw.UpdateAiComposeTones',
470
483
  0xa56c2a3e: 'Raw.updates.State',
471
484
  0x5d75a138: 'Raw.updates.DifferenceEmpty',
472
485
  0xf49ca0: 'Raw.updates.Difference',
@@ -773,6 +786,7 @@ exports.AllTLObject = {
773
786
  0xa8406ca9: 'Raw.TopPeerCategoryForwardUsers',
774
787
  0xfbeec0f0: 'Raw.TopPeerCategoryForwardChats',
775
788
  0xfd9e7bec: 'Raw.TopPeerCategoryBotsApp',
789
+ 0x6c24f3dd: 'Raw.TopPeerCategoryBotsGuestChat',
776
790
  0xfb834291: 'Raw.TopPeerCategoryPeers',
777
791
  0xde266ef5: 'Raw.contacts.TopPeersNotModified',
778
792
  0x70b772a8: 'Raw.contacts.TopPeers',
@@ -1052,7 +1066,7 @@ exports.AllTLObject = {
1052
1066
  0x1eb3758: 'Raw.help.UserInfo',
1053
1067
  0x4b7d786a: 'Raw.PollAnswer',
1054
1068
  0x199fed96: 'Raw.InputPollAnswer',
1055
- 0xb8425be9: 'Raw.Poll',
1069
+ 0x966e2dbf: 'Raw.Poll',
1056
1070
  0x3645230a: 'Raw.PollAnswerVoters',
1057
1071
  0xba7bb15e: 'Raw.PollResults',
1058
1072
  0xf041e250: 'Raw.ChatOnlines',
@@ -1108,6 +1122,7 @@ exports.AllTLObject = {
1108
1122
  0xcf6f6db8: 'Raw.WebPageAttributeUniqueStarGift',
1109
1123
  0x31cad303: 'Raw.WebPageAttributeStarGiftCollection',
1110
1124
  0x1c641c2: 'Raw.WebPageAttributeStarGiftAuction',
1125
+ 0x7781fe18: 'Raw.WebPageAttributeAiComposeTone',
1111
1126
  0x4899484e: 'Raw.messages.VotesList',
1112
1127
  0xf568028a: 'Raw.BankCardOpenUrl',
1113
1128
  0x3e24e573: 'Raw.payments.BankCardData',
@@ -1258,7 +1273,7 @@ exports.AllTLObject = {
1258
1273
  0xf9a2a6cb: 'Raw.InputStorePaymentStarsTopup',
1259
1274
  0x1d741ef7: 'Raw.InputStorePaymentStarsGift',
1260
1275
  0x751f08fa: 'Raw.InputStorePaymentStarsGiveaway',
1261
- 0x9bb2636d: 'Raw.InputStorePaymentAuthCode',
1276
+ 0x3fc18057: 'Raw.InputStorePaymentAuthCode',
1262
1277
  0x88f8f21b: 'Raw.PaymentFormMethod',
1263
1278
  0x2de11aae: 'Raw.EmojiStatusEmpty',
1264
1279
  0xe7ff068a: 'Raw.EmojiStatus',
@@ -1613,6 +1628,16 @@ exports.AllTLObject = {
1613
1628
  0x3c60b621: 'Raw.bots.ExportedBotToken',
1614
1629
  0xf13bbcd7: 'Raw.bots.RequestedButton',
1615
1630
  0x90d7adfa: 'Raw.messages.ComposedMessageWithAI',
1631
+ 0x2999beed: 'Raw.stats.PollStats',
1632
+ 0x1fe9a9bf: 'Raw.InputAiComposeToneDefault',
1633
+ 0x773c080: 'Raw.InputAiComposeToneID',
1634
+ 0x1fa01357: 'Raw.InputAiComposeToneSlug',
1635
+ 0xcff63ea9: 'Raw.AiComposeTone',
1636
+ 0x9bad6414: 'Raw.AiComposeToneDefault',
1637
+ 0xc1f46103: 'Raw.aicompose.TonesNotModified',
1638
+ 0x6c9d0efe: 'Raw.aicompose.Tones',
1639
+ 0xf1d628ec: 'Raw.AiComposeToneExample',
1640
+ 0xdd1fbf93: 'Raw.bots.AccessSettings',
1616
1641
  0xcb9f372d: 'Raw.InvokeAfterMsg',
1617
1642
  0x3dc4b4f0: 'Raw.InvokeAfterMsgs',
1618
1643
  0xc1cd5ea9: 'Raw.InitConnection',
@@ -2052,13 +2077,17 @@ exports.AllTLObject = {
2052
2077
  0xa00f32b0: 'Raw.messages.EditChatParticipantRank',
2053
2078
  0x35436bbc: 'Raw.messages.DeclineUrlAuth',
2054
2079
  0xc9a47b0b: 'Raw.messages.CheckUrlAuthMatchCode',
2055
- 0xfd426afe: 'Raw.messages.ComposeMessageWithAI',
2080
+ 0xdaecc589: 'Raw.messages.ComposeMessageWithAI',
2056
2081
  0x4067c5e6: 'Raw.messages.ReportReadMetrics',
2057
2082
  0xddbcd819: 'Raw.messages.ReportMusicListen',
2058
2083
  0x19bc4b6d: 'Raw.messages.AddPollAnswer',
2059
2084
  0xac8505a5: 'Raw.messages.DeletePollAnswer',
2060
2085
  0x43286cf2: 'Raw.messages.GetUnreadPollVotes',
2061
2086
  0x1720b4d8: 'Raw.messages.ReadPollVotes',
2087
+ 0x52b08db: 'Raw.messages.SetBotGuestChatResult',
2088
+ 0xa0b80cf8: 'Raw.messages.DeleteParticipantReactions',
2089
+ 0xe3b7f82c: 'Raw.messages.DeleteParticipantReaction',
2090
+ 0x55fb0996: 'Raw.messages.GetPersonalChannelHistory',
2062
2091
  0xedd4882a: 'Raw.updates.GetState',
2063
2092
  0x19c2f763: 'Raw.updates.GetDifference',
2064
2093
  0x3173d78: 'Raw.updates.GetChannelDifference',
@@ -2193,6 +2222,8 @@ exports.AllTLObject = {
2193
2222
  0xbd0d99eb: 'Raw.bots.ExportBotToken',
2194
2223
  0x31a2a35e: 'Raw.bots.RequestWebViewButton',
2195
2224
  0xbf25b7f3: 'Raw.bots.GetRequestedWebViewButton',
2225
+ 0x213853a3: 'Raw.bots.GetAccessSettings',
2226
+ 0x31813cd8: 'Raw.bots.EditAccessSettings',
2196
2227
  0x37148dbb: 'Raw.payments.GetPaymentForm',
2197
2228
  0x2478d1cc: 'Raw.payments.GetPaymentReceipt',
2198
2229
  0xb6c8f12b: 'Raw.payments.ValidateRequestedInfo',
@@ -2325,6 +2356,7 @@ exports.AllTLObject = {
2325
2356
  0xb6e0a3f5: 'Raw.stats.GetMessageStats',
2326
2357
  0x374fef40: 'Raw.stats.GetStoryStats',
2327
2358
  0xa6437ef6: 'Raw.stats.GetStoryPublicForwards',
2359
+ 0xc27dfa68: 'Raw.stats.GetPollStats',
2328
2360
  0x8472478e: 'Raw.chatlists.ExportChatlistInvite',
2329
2361
  0x719c5c5e: 'Raw.chatlists.DeleteExportedInvite',
2330
2362
  0x653db63d: 'Raw.chatlists.EditExportedInvite',
@@ -2382,6 +2414,13 @@ exports.AllTLObject = {
2382
2414
  0x778d902f: 'Raw.smsjobs.GetSmsJob',
2383
2415
  0x4f1ebf24: 'Raw.smsjobs.FinishJob',
2384
2416
  0xbe1e85ba: 'Raw.fragment.GetCollectibleInfo',
2417
+ 0x4aa83913: 'Raw.aicompose.CreateTone',
2418
+ 0x903bcf59: 'Raw.aicompose.UpdateTone',
2419
+ 0x1782cbb1: 'Raw.aicompose.SaveTone',
2420
+ 0xdd39316a: 'Raw.aicompose.DeleteTone',
2421
+ 0xb2e8ba03: 'Raw.aicompose.GetTone',
2422
+ 0xabd59201: 'Raw.aicompose.GetTones',
2423
+ 0xd1b4ab14: 'Raw.aicompose.GetToneExample',
2385
2424
  0x1f814f1f: 'Raw.DecryptedMessage8',
2386
2425
  0xaa48327d: 'Raw.DecryptedMessageService8',
2387
2426
  0x89f5c4a: 'Raw.DecryptedMessageMediaEmpty8',