@xpla/xpla-react 1.8.2 → 1.9.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 (2317) hide show
  1. package/dist/amino/amino.cjs +0 -0
  2. package/dist/amino/amino.d.ts +1 -0
  3. package/dist/amino/amino.js +0 -0
  4. package/dist/binary.cjs +305 -0
  5. package/dist/binary.d.ts +132 -0
  6. package/dist/binary.js +302 -0
  7. package/dist/cosmos/app/runtime/v1alpha1/module.cjs +269 -0
  8. package/dist/cosmos/app/runtime/v1alpha1/module.d.ts +245 -0
  9. package/dist/cosmos/app/runtime/v1alpha1/module.js +267 -0
  10. package/dist/cosmos/app/v1alpha1/config.cjs +296 -0
  11. package/dist/cosmos/app/v1alpha1/config.d.ts +250 -0
  12. package/dist/cosmos/app/v1alpha1/config.js +293 -0
  13. package/dist/cosmos/app/v1alpha1/module.cjs +276 -0
  14. package/dist/cosmos/app/v1alpha1/module.d.ts +290 -0
  15. package/dist/cosmos/app/v1alpha1/module.js +273 -0
  16. package/dist/cosmos/app/v1alpha1/query.cjs +157 -0
  17. package/dist/cosmos/app/v1alpha1/query.d.ts +107 -0
  18. package/dist/cosmos/app/v1alpha1/query.js +155 -0
  19. package/dist/cosmos/app/v1alpha1/query.rpc.func.cjs +22 -0
  20. package/dist/cosmos/app/v1alpha1/query.rpc.func.d.ts +15 -0
  21. package/dist/cosmos/app/v1alpha1/query.rpc.func.js +21 -0
  22. package/dist/cosmos/app/v1alpha1/query.rpc.react.cjs +19 -0
  23. package/dist/cosmos/app/v1alpha1/query.rpc.react.d.ts +21 -0
  24. package/dist/cosmos/app/v1alpha1/query.rpc.react.js +18 -0
  25. package/dist/cosmos/auth/module/v1/module.cjs +204 -0
  26. package/dist/cosmos/auth/module/v1/module.d.ts +154 -0
  27. package/dist/cosmos/auth/module/v1/module.js +202 -0
  28. package/dist/cosmos/auth/v1beta1/auth.cjs +423 -0
  29. package/dist/cosmos/auth/v1beta1/auth.d.ts +243 -0
  30. package/dist/cosmos/auth/v1beta1/auth.js +418 -0
  31. package/dist/cosmos/auth/v1beta1/genesis.cjs +97 -0
  32. package/dist/cosmos/auth/v1beta1/genesis.d.ts +71 -0
  33. package/dist/cosmos/auth/v1beta1/genesis.js +96 -0
  34. package/dist/cosmos/auth/v1beta1/query.cjs +1589 -0
  35. package/dist/cosmos/auth/v1beta1/query.d.ts +1070 -0
  36. package/dist/cosmos/auth/v1beta1/query.js +1568 -0
  37. package/dist/cosmos/auth/v1beta1/query.rpc.func.cjs +150 -0
  38. package/dist/cosmos/auth/v1beta1/query.rpc.func.d.ts +80 -0
  39. package/dist/cosmos/auth/v1beta1/query.rpc.func.js +140 -0
  40. package/dist/cosmos/auth/v1beta1/query.rpc.react.cjs +120 -0
  41. package/dist/cosmos/auth/v1beta1/query.rpc.react.d.ts +131 -0
  42. package/dist/cosmos/auth/v1beta1/query.rpc.react.js +110 -0
  43. package/dist/cosmos/auth/v1beta1/tx.cjs +168 -0
  44. package/dist/cosmos/auth/v1beta1/tx.d.ts +122 -0
  45. package/dist/cosmos/auth/v1beta1/tx.js +166 -0
  46. package/dist/cosmos/auth/v1beta1/tx.registry.cjs +29 -0
  47. package/dist/cosmos/auth/v1beta1/tx.registry.d.ts +27 -0
  48. package/dist/cosmos/auth/v1beta1/tx.registry.js +27 -0
  49. package/dist/cosmos/auth/v1beta1/tx.rpc.func.cjs +16 -0
  50. package/dist/cosmos/auth/v1beta1/tx.rpc.func.d.ts +17 -0
  51. package/dist/cosmos/auth/v1beta1/tx.rpc.func.js +15 -0
  52. package/dist/cosmos/auth/v1beta1/tx.rpc.react.cjs +16 -0
  53. package/dist/cosmos/auth/v1beta1/tx.rpc.react.d.ts +21 -0
  54. package/dist/cosmos/auth/v1beta1/tx.rpc.react.js +15 -0
  55. package/dist/cosmos/authz/module/v1/module.cjs +74 -0
  56. package/dist/cosmos/authz/module/v1/module.d.ts +51 -0
  57. package/dist/cosmos/authz/module/v1/module.js +73 -0
  58. package/dist/cosmos/authz/v1beta1/authz.cjs +388 -0
  59. package/dist/cosmos/authz/v1beta1/authz.d.ts +252 -0
  60. package/dist/cosmos/authz/v1beta1/authz.js +384 -0
  61. package/dist/cosmos/authz/v1beta1/event.cjs +198 -0
  62. package/dist/cosmos/authz/v1beta1/event.d.ts +148 -0
  63. package/dist/cosmos/authz/v1beta1/event.js +196 -0
  64. package/dist/cosmos/authz/v1beta1/genesis.cjs +90 -0
  65. package/dist/cosmos/authz/v1beta1/genesis.d.ts +56 -0
  66. package/dist/cosmos/authz/v1beta1/genesis.js +89 -0
  67. package/dist/cosmos/authz/v1beta1/query.cjs +577 -0
  68. package/dist/cosmos/authz/v1beta1/query.d.ts +378 -0
  69. package/dist/cosmos/authz/v1beta1/query.js +571 -0
  70. package/dist/cosmos/authz/v1beta1/query.rpc.func.cjs +49 -0
  71. package/dist/cosmos/authz/v1beta1/query.rpc.func.d.ts +28 -0
  72. package/dist/cosmos/authz/v1beta1/query.rpc.func.js +46 -0
  73. package/dist/cosmos/authz/v1beta1/query.rpc.react.cjs +40 -0
  74. package/dist/cosmos/authz/v1beta1/query.rpc.react.d.ts +44 -0
  75. package/dist/cosmos/authz/v1beta1/query.rpc.react.js +37 -0
  76. package/dist/cosmos/authz/v1beta1/tx.cjs +514 -0
  77. package/dist/cosmos/authz/v1beta1/tx.d.ts +334 -0
  78. package/dist/cosmos/authz/v1beta1/tx.js +507 -0
  79. package/dist/cosmos/authz/v1beta1/tx.registry.cjs +75 -0
  80. package/dist/cosmos/authz/v1beta1/tx.registry.d.ts +51 -0
  81. package/dist/cosmos/authz/v1beta1/tx.registry.js +73 -0
  82. package/dist/cosmos/authz/v1beta1/tx.rpc.func.cjs +37 -0
  83. package/dist/cosmos/authz/v1beta1/tx.rpc.func.d.ts +36 -0
  84. package/dist/cosmos/authz/v1beta1/tx.rpc.func.js +34 -0
  85. package/dist/cosmos/authz/v1beta1/tx.rpc.react.cjs +37 -0
  86. package/dist/cosmos/authz/v1beta1/tx.rpc.react.d.ts +46 -0
  87. package/dist/cosmos/authz/v1beta1/tx.rpc.react.js +34 -0
  88. package/dist/cosmos/autocli/v1/options.cjs +795 -0
  89. package/dist/cosmos/autocli/v1/options.d.ts +637 -0
  90. package/dist/cosmos/autocli/v1/options.js +788 -0
  91. package/dist/cosmos/autocli/v1/query.cjs +242 -0
  92. package/dist/cosmos/autocli/v1/query.d.ts +153 -0
  93. package/dist/cosmos/autocli/v1/query.js +239 -0
  94. package/dist/cosmos/autocli/v1/query.rpc.func.cjs +21 -0
  95. package/dist/cosmos/autocli/v1/query.rpc.func.d.ts +14 -0
  96. package/dist/cosmos/autocli/v1/query.rpc.func.js +20 -0
  97. package/dist/cosmos/autocli/v1/query.rpc.react.cjs +18 -0
  98. package/dist/cosmos/autocli/v1/query.rpc.react.d.ts +20 -0
  99. package/dist/cosmos/autocli/v1/query.rpc.react.js +17 -0
  100. package/dist/cosmos/bank/module/v1/module.cjs +104 -0
  101. package/dist/cosmos/bank/module/v1/module.d.ts +87 -0
  102. package/dist/cosmos/bank/module/v1/module.js +103 -0
  103. package/dist/cosmos/bank/v1beta1/authz.cjs +104 -0
  104. package/dist/cosmos/bank/v1beta1/authz.d.ts +69 -0
  105. package/dist/cosmos/bank/v1beta1/authz.js +103 -0
  106. package/dist/cosmos/bank/v1beta1/bank.cjs +699 -0
  107. package/dist/cosmos/bank/v1beta1/bank.d.ts +484 -0
  108. package/dist/cosmos/bank/v1beta1/bank.js +692 -0
  109. package/dist/cosmos/bank/v1beta1/genesis.cjs +225 -0
  110. package/dist/cosmos/bank/v1beta1/genesis.d.ts +163 -0
  111. package/dist/cosmos/bank/v1beta1/genesis.js +223 -0
  112. package/dist/cosmos/bank/v1beta1/query.cjs +2359 -0
  113. package/dist/cosmos/bank/v1beta1/query.d.ts +1649 -0
  114. package/dist/cosmos/bank/v1beta1/query.js +2332 -0
  115. package/dist/cosmos/bank/v1beta1/query.rpc.func.cjs +216 -0
  116. package/dist/cosmos/bank/v1beta1/query.rpc.func.d.ts +125 -0
  117. package/dist/cosmos/bank/v1beta1/query.rpc.func.js +203 -0
  118. package/dist/cosmos/bank/v1beta1/query.rpc.react.cjs +177 -0
  119. package/dist/cosmos/bank/v1beta1/query.rpc.react.d.ts +191 -0
  120. package/dist/cosmos/bank/v1beta1/query.rpc.react.js +164 -0
  121. package/dist/cosmos/bank/v1beta1/tx.cjs +672 -0
  122. package/dist/cosmos/bank/v1beta1/tx.d.ts +459 -0
  123. package/dist/cosmos/bank/v1beta1/tx.js +664 -0
  124. package/dist/cosmos/bank/v1beta1/tx.registry.cjs +94 -0
  125. package/dist/cosmos/bank/v1beta1/tx.registry.d.ts +63 -0
  126. package/dist/cosmos/bank/v1beta1/tx.registry.js +92 -0
  127. package/dist/cosmos/bank/v1beta1/tx.rpc.func.cjs +43 -0
  128. package/dist/cosmos/bank/v1beta1/tx.rpc.func.d.ts +41 -0
  129. package/dist/cosmos/bank/v1beta1/tx.rpc.func.js +39 -0
  130. package/dist/cosmos/bank/v1beta1/tx.rpc.react.cjs +43 -0
  131. package/dist/cosmos/bank/v1beta1/tx.rpc.react.d.ts +54 -0
  132. package/dist/cosmos/bank/v1beta1/tx.rpc.react.js +39 -0
  133. package/dist/cosmos/base/abci/v1beta1/abci.cjs +1192 -0
  134. package/dist/cosmos/base/abci/v1beta1/abci.d.ts +865 -0
  135. package/dist/cosmos/base/abci/v1beta1/abci.js +1180 -0
  136. package/dist/cosmos/base/node/v1beta1/query.cjs +361 -0
  137. package/dist/cosmos/base/node/v1beta1/query.d.ts +238 -0
  138. package/dist/cosmos/base/node/v1beta1/query.js +356 -0
  139. package/dist/cosmos/base/node/v1beta1/query.rpc.func.cjs +35 -0
  140. package/dist/cosmos/base/node/v1beta1/query.rpc.func.d.ts +21 -0
  141. package/dist/cosmos/base/node/v1beta1/query.rpc.func.js +33 -0
  142. package/dist/cosmos/base/node/v1beta1/query.rpc.react.cjs +29 -0
  143. package/dist/cosmos/base/node/v1beta1/query.rpc.react.d.ts +32 -0
  144. package/dist/cosmos/base/node/v1beta1/query.rpc.react.js +27 -0
  145. package/dist/cosmos/base/query/v1beta1/pagination.cjs +220 -0
  146. package/dist/cosmos/base/query/v1beta1/pagination.d.ts +214 -0
  147. package/dist/cosmos/base/query/v1beta1/pagination.js +217 -0
  148. package/dist/cosmos/base/reflection/v1beta1/reflection.cjs +312 -0
  149. package/dist/cosmos/base/reflection/v1beta1/reflection.d.ts +216 -0
  150. package/dist/cosmos/base/reflection/v1beta1/reflection.js +308 -0
  151. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.func.cjs +37 -0
  152. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +23 -0
  153. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +35 -0
  154. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.react.cjs +31 -0
  155. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +34 -0
  156. package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +29 -0
  157. package/dist/cosmos/base/reflection/v2alpha1/reflection.cjs +2171 -0
  158. package/dist/cosmos/base/reflection/v2alpha1/reflection.d.ts +1541 -0
  159. package/dist/cosmos/base/reflection/v2alpha1/reflection.js +2145 -0
  160. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.func.cjs +93 -0
  161. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +51 -0
  162. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +87 -0
  163. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.react.cjs +75 -0
  164. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +82 -0
  165. package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +69 -0
  166. package/dist/cosmos/base/tendermint/v1beta1/query.cjs +1821 -0
  167. package/dist/cosmos/base/tendermint/v1beta1/query.d.ts +1094 -0
  168. package/dist/cosmos/base/tendermint/v1beta1/query.js +1801 -0
  169. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.func.cjs +107 -0
  170. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +58 -0
  171. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.func.js +100 -0
  172. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.react.cjs +86 -0
  173. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +94 -0
  174. package/dist/cosmos/base/tendermint/v1beta1/query.rpc.react.js +79 -0
  175. package/dist/cosmos/base/tendermint/v1beta1/types.cjs +312 -0
  176. package/dist/cosmos/base/tendermint/v1beta1/types.d.ts +212 -0
  177. package/dist/cosmos/base/tendermint/v1beta1/types.js +309 -0
  178. package/dist/cosmos/base/v1beta1/coin.cjs +347 -0
  179. package/dist/cosmos/base/v1beta1/coin.d.ts +230 -0
  180. package/dist/cosmos/base/v1beta1/coin.js +343 -0
  181. package/dist/cosmos/bundle.cjs +1211 -0
  182. package/dist/cosmos/bundle.d.ts +189 -0
  183. package/dist/cosmos/bundle.js +190 -0
  184. package/dist/cosmos/consensus/module/v1/module.cjs +84 -0
  185. package/dist/cosmos/consensus/module/v1/module.d.ts +61 -0
  186. package/dist/cosmos/consensus/module/v1/module.js +83 -0
  187. package/dist/cosmos/consensus/v1/query.cjs +157 -0
  188. package/dist/cosmos/consensus/v1/query.d.ts +111 -0
  189. package/dist/cosmos/consensus/v1/query.js +155 -0
  190. package/dist/cosmos/consensus/v1/query.rpc.func.cjs +21 -0
  191. package/dist/cosmos/consensus/v1/query.rpc.func.d.ts +14 -0
  192. package/dist/cosmos/consensus/v1/query.rpc.func.js +20 -0
  193. package/dist/cosmos/consensus/v1/query.rpc.react.cjs +18 -0
  194. package/dist/cosmos/consensus/v1/query.rpc.react.d.ts +20 -0
  195. package/dist/cosmos/consensus/v1/query.rpc.react.js +17 -0
  196. package/dist/cosmos/consensus/v1/tx.cjs +195 -0
  197. package/dist/cosmos/consensus/v1/tx.d.ts +132 -0
  198. package/dist/cosmos/consensus/v1/tx.js +193 -0
  199. package/dist/cosmos/consensus/v1/tx.registry.cjs +29 -0
  200. package/dist/cosmos/consensus/v1/tx.registry.d.ts +27 -0
  201. package/dist/cosmos/consensus/v1/tx.registry.js +27 -0
  202. package/dist/cosmos/consensus/v1/tx.rpc.func.cjs +16 -0
  203. package/dist/cosmos/consensus/v1/tx.rpc.func.d.ts +17 -0
  204. package/dist/cosmos/consensus/v1/tx.rpc.func.js +15 -0
  205. package/dist/cosmos/consensus/v1/tx.rpc.react.cjs +16 -0
  206. package/dist/cosmos/consensus/v1/tx.rpc.react.d.ts +21 -0
  207. package/dist/cosmos/consensus/v1/tx.rpc.react.js +15 -0
  208. package/dist/cosmos/crypto/multisig/v1beta1/multisig.cjs +180 -0
  209. package/dist/cosmos/crypto/multisig/v1beta1/multisig.d.ts +121 -0
  210. package/dist/cosmos/crypto/multisig/v1beta1/multisig.js +177 -0
  211. package/dist/cosmos/distribution/module/v1/module.cjs +94 -0
  212. package/dist/cosmos/distribution/module/v1/module.d.ts +63 -0
  213. package/dist/cosmos/distribution/module/v1/module.js +93 -0
  214. package/dist/cosmos/distribution/v1beta1/distribution.cjs +1160 -0
  215. package/dist/cosmos/distribution/v1beta1/distribution.d.ts +746 -0
  216. package/dist/cosmos/distribution/v1beta1/distribution.js +1148 -0
  217. package/dist/cosmos/distribution/v1beta1/genesis.cjs +850 -0
  218. package/dist/cosmos/distribution/v1beta1/genesis.d.ts +620 -0
  219. package/dist/cosmos/distribution/v1beta1/genesis.js +842 -0
  220. package/dist/cosmos/distribution/v1beta1/query.cjs +1677 -0
  221. package/dist/cosmos/distribution/v1beta1/query.d.ts +1195 -0
  222. package/dist/cosmos/distribution/v1beta1/query.js +1657 -0
  223. package/dist/cosmos/distribution/v1beta1/query.rpc.func.cjs +150 -0
  224. package/dist/cosmos/distribution/v1beta1/query.rpc.func.d.ts +80 -0
  225. package/dist/cosmos/distribution/v1beta1/query.rpc.func.js +140 -0
  226. package/dist/cosmos/distribution/v1beta1/query.rpc.react.cjs +120 -0
  227. package/dist/cosmos/distribution/v1beta1/query.rpc.react.d.ts +131 -0
  228. package/dist/cosmos/distribution/v1beta1/query.rpc.react.js +110 -0
  229. package/dist/cosmos/distribution/v1beta1/tx.cjs +1163 -0
  230. package/dist/cosmos/distribution/v1beta1/tx.d.ts +751 -0
  231. package/dist/cosmos/distribution/v1beta1/tx.js +1149 -0
  232. package/dist/cosmos/distribution/v1beta1/tx.registry.cjs +151 -0
  233. package/dist/cosmos/distribution/v1beta1/tx.registry.d.ts +99 -0
  234. package/dist/cosmos/distribution/v1beta1/tx.registry.js +149 -0
  235. package/dist/cosmos/distribution/v1beta1/tx.rpc.func.cjs +76 -0
  236. package/dist/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +71 -0
  237. package/dist/cosmos/distribution/v1beta1/tx.rpc.func.js +69 -0
  238. package/dist/cosmos/distribution/v1beta1/tx.rpc.react.cjs +76 -0
  239. package/dist/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +93 -0
  240. package/dist/cosmos/distribution/v1beta1/tx.rpc.react.js +69 -0
  241. package/dist/cosmos/evidence/module/v1/module.cjs +74 -0
  242. package/dist/cosmos/evidence/module/v1/module.d.ts +51 -0
  243. package/dist/cosmos/evidence/module/v1/module.js +73 -0
  244. package/dist/cosmos/evidence/v1beta1/evidence.cjs +113 -0
  245. package/dist/cosmos/evidence/v1beta1/evidence.d.ts +88 -0
  246. package/dist/cosmos/evidence/v1beta1/evidence.js +112 -0
  247. package/dist/cosmos/evidence/v1beta1/genesis.cjs +86 -0
  248. package/dist/cosmos/evidence/v1beta1/genesis.d.ts +62 -0
  249. package/dist/cosmos/evidence/v1beta1/genesis.js +85 -0
  250. package/dist/cosmos/evidence/v1beta1/query.cjs +352 -0
  251. package/dist/cosmos/evidence/v1beta1/query.d.ts +254 -0
  252. package/dist/cosmos/evidence/v1beta1/query.js +347 -0
  253. package/dist/cosmos/evidence/v1beta1/query.rpc.func.cjs +35 -0
  254. package/dist/cosmos/evidence/v1beta1/query.rpc.func.d.ts +21 -0
  255. package/dist/cosmos/evidence/v1beta1/query.rpc.func.js +33 -0
  256. package/dist/cosmos/evidence/v1beta1/query.rpc.react.cjs +29 -0
  257. package/dist/cosmos/evidence/v1beta1/query.rpc.react.d.ts +32 -0
  258. package/dist/cosmos/evidence/v1beta1/query.rpc.react.js +27 -0
  259. package/dist/cosmos/evidence/v1beta1/tx.cjs +177 -0
  260. package/dist/cosmos/evidence/v1beta1/tx.d.ts +134 -0
  261. package/dist/cosmos/evidence/v1beta1/tx.js +174 -0
  262. package/dist/cosmos/evidence/v1beta1/tx.registry.cjs +29 -0
  263. package/dist/cosmos/evidence/v1beta1/tx.registry.d.ts +27 -0
  264. package/dist/cosmos/evidence/v1beta1/tx.registry.js +27 -0
  265. package/dist/cosmos/evidence/v1beta1/tx.rpc.func.cjs +16 -0
  266. package/dist/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +17 -0
  267. package/dist/cosmos/evidence/v1beta1/tx.rpc.func.js +15 -0
  268. package/dist/cosmos/evidence/v1beta1/tx.rpc.react.cjs +16 -0
  269. package/dist/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +21 -0
  270. package/dist/cosmos/evidence/v1beta1/tx.rpc.react.js +15 -0
  271. package/dist/cosmos/evm/feemarket/v1/events.cjs +172 -0
  272. package/dist/cosmos/evm/feemarket/v1/events.d.ts +124 -0
  273. package/dist/cosmos/evm/feemarket/v1/events.js +170 -0
  274. package/dist/cosmos/evm/feemarket/v1/feemarket.cjs +135 -0
  275. package/dist/cosmos/evm/feemarket/v1/feemarket.d.ts +119 -0
  276. package/dist/cosmos/evm/feemarket/v1/feemarket.js +134 -0
  277. package/dist/cosmos/evm/feemarket/v1/genesis.cjs +99 -0
  278. package/dist/cosmos/evm/feemarket/v1/genesis.d.ts +72 -0
  279. package/dist/cosmos/evm/feemarket/v1/genesis.js +98 -0
  280. package/dist/cosmos/evm/feemarket/v1/query.cjs +452 -0
  281. package/dist/cosmos/evm/feemarket/v1/query.d.ts +313 -0
  282. package/dist/cosmos/evm/feemarket/v1/query.js +446 -0
  283. package/dist/cosmos/evm/feemarket/v1/query.rpc.func.cjs +49 -0
  284. package/dist/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +28 -0
  285. package/dist/cosmos/evm/feemarket/v1/query.rpc.func.js +46 -0
  286. package/dist/cosmos/evm/feemarket/v1/query.rpc.react.cjs +40 -0
  287. package/dist/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +44 -0
  288. package/dist/cosmos/evm/feemarket/v1/query.rpc.react.js +37 -0
  289. package/dist/cosmos/evm/feemarket/v1/tx.cjs +168 -0
  290. package/dist/cosmos/evm/feemarket/v1/tx.d.ts +120 -0
  291. package/dist/cosmos/evm/feemarket/v1/tx.js +166 -0
  292. package/dist/cosmos/evm/feemarket/v1/tx.registry.cjs +29 -0
  293. package/dist/cosmos/evm/feemarket/v1/tx.registry.d.ts +27 -0
  294. package/dist/cosmos/evm/feemarket/v1/tx.registry.js +27 -0
  295. package/dist/cosmos/evm/feemarket/v1/tx.rpc.func.cjs +17 -0
  296. package/dist/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +18 -0
  297. package/dist/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
  298. package/dist/cosmos/evm/feemarket/v1/tx.rpc.react.cjs +17 -0
  299. package/dist/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +22 -0
  300. package/dist/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
  301. package/dist/cosmos/evm/vm/v1/events.cjs +387 -0
  302. package/dist/cosmos/evm/vm/v1/events.d.ts +290 -0
  303. package/dist/cosmos/evm/vm/v1/events.js +383 -0
  304. package/dist/cosmos/evm/vm/v1/evm.cjs +1623 -0
  305. package/dist/cosmos/evm/vm/v1/evm.d.ts +1268 -0
  306. package/dist/cosmos/evm/vm/v1/evm.js +1605 -0
  307. package/dist/cosmos/evm/vm/v1/genesis.cjs +213 -0
  308. package/dist/cosmos/evm/vm/v1/genesis.d.ts +155 -0
  309. package/dist/cosmos/evm/vm/v1/genesis.js +211 -0
  310. package/dist/cosmos/evm/vm/v1/query.cjs +2666 -0
  311. package/dist/cosmos/evm/vm/v1/query.d.ts +1943 -0
  312. package/dist/cosmos/evm/vm/v1/query.js +2635 -0
  313. package/dist/cosmos/evm/vm/v1/query.rpc.func.cjs +226 -0
  314. package/dist/cosmos/evm/vm/v1/query.rpc.func.d.ts +121 -0
  315. package/dist/cosmos/evm/vm/v1/query.rpc.func.js +211 -0
  316. package/dist/cosmos/evm/vm/v1/query.rpc.react.cjs +180 -0
  317. package/dist/cosmos/evm/vm/v1/query.rpc.react.d.ts +197 -0
  318. package/dist/cosmos/evm/vm/v1/query.rpc.react.js +165 -0
  319. package/dist/cosmos/evm/vm/v1/tx.cjs +627 -0
  320. package/dist/cosmos/evm/vm/v1/tx.d.ts +462 -0
  321. package/dist/cosmos/evm/vm/v1/tx.js +619 -0
  322. package/dist/cosmos/evm/vm/v1/tx.registry.cjs +75 -0
  323. package/dist/cosmos/evm/vm/v1/tx.registry.d.ts +51 -0
  324. package/dist/cosmos/evm/vm/v1/tx.registry.js +73 -0
  325. package/dist/cosmos/evm/vm/v1/tx.rpc.func.cjs +35 -0
  326. package/dist/cosmos/evm/vm/v1/tx.rpc.func.d.ts +34 -0
  327. package/dist/cosmos/evm/vm/v1/tx.rpc.func.js +32 -0
  328. package/dist/cosmos/evm/vm/v1/tx.rpc.react.cjs +35 -0
  329. package/dist/cosmos/evm/vm/v1/tx.rpc.react.d.ts +44 -0
  330. package/dist/cosmos/evm/vm/v1/tx.rpc.react.js +32 -0
  331. package/dist/cosmos/feegrant/module/v1/module.cjs +74 -0
  332. package/dist/cosmos/feegrant/module/v1/module.d.ts +51 -0
  333. package/dist/cosmos/feegrant/module/v1/module.js +73 -0
  334. package/dist/cosmos/feegrant/v1beta1/feegrant.cjs +425 -0
  335. package/dist/cosmos/feegrant/v1beta1/feegrant.d.ts +323 -0
  336. package/dist/cosmos/feegrant/v1beta1/feegrant.js +421 -0
  337. package/dist/cosmos/feegrant/v1beta1/genesis.cjs +90 -0
  338. package/dist/cosmos/feegrant/v1beta1/genesis.d.ts +56 -0
  339. package/dist/cosmos/feegrant/v1beta1/genesis.js +89 -0
  340. package/dist/cosmos/feegrant/v1beta1/query.cjs +546 -0
  341. package/dist/cosmos/feegrant/v1beta1/query.d.ts +366 -0
  342. package/dist/cosmos/feegrant/v1beta1/query.js +540 -0
  343. package/dist/cosmos/feegrant/v1beta1/query.rpc.func.cjs +49 -0
  344. package/dist/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +28 -0
  345. package/dist/cosmos/feegrant/v1beta1/query.rpc.func.js +46 -0
  346. package/dist/cosmos/feegrant/v1beta1/query.rpc.react.cjs +40 -0
  347. package/dist/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +44 -0
  348. package/dist/cosmos/feegrant/v1beta1/query.rpc.react.js +37 -0
  349. package/dist/cosmos/feegrant/v1beta1/tx.cjs +481 -0
  350. package/dist/cosmos/feegrant/v1beta1/tx.d.ts +341 -0
  351. package/dist/cosmos/feegrant/v1beta1/tx.js +475 -0
  352. package/dist/cosmos/feegrant/v1beta1/tx.registry.cjs +75 -0
  353. package/dist/cosmos/feegrant/v1beta1/tx.registry.d.ts +51 -0
  354. package/dist/cosmos/feegrant/v1beta1/tx.registry.js +73 -0
  355. package/dist/cosmos/feegrant/v1beta1/tx.rpc.func.cjs +33 -0
  356. package/dist/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +32 -0
  357. package/dist/cosmos/feegrant/v1beta1/tx.rpc.func.js +30 -0
  358. package/dist/cosmos/feegrant/v1beta1/tx.rpc.react.cjs +33 -0
  359. package/dist/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +42 -0
  360. package/dist/cosmos/feegrant/v1beta1/tx.rpc.react.js +30 -0
  361. package/dist/cosmos/gov/module/v1/module.cjs +94 -0
  362. package/dist/cosmos/gov/module/v1/module.d.ts +71 -0
  363. package/dist/cosmos/gov/module/v1/module.js +93 -0
  364. package/dist/cosmos/gov/v1/genesis.cjs +164 -0
  365. package/dist/cosmos/gov/v1/genesis.d.ts +144 -0
  366. package/dist/cosmos/gov/v1/genesis.js +163 -0
  367. package/dist/cosmos/gov/v1/gov.cjs +1198 -0
  368. package/dist/cosmos/gov/v1/gov.d.ts +926 -0
  369. package/dist/cosmos/gov/v1/gov.js +1181 -0
  370. package/dist/cosmos/gov/v1/query.cjs +1569 -0
  371. package/dist/cosmos/gov/v1/query.d.ts +1103 -0
  372. package/dist/cosmos/gov/v1/query.js +1551 -0
  373. package/dist/cosmos/gov/v1/query.rpc.func.cjs +133 -0
  374. package/dist/cosmos/gov/v1/query.rpc.func.d.ts +70 -0
  375. package/dist/cosmos/gov/v1/query.rpc.func.js +124 -0
  376. package/dist/cosmos/gov/v1/query.rpc.react.cjs +106 -0
  377. package/dist/cosmos/gov/v1/query.rpc.react.d.ts +116 -0
  378. package/dist/cosmos/gov/v1/query.rpc.react.js +97 -0
  379. package/dist/cosmos/gov/v1/tx.cjs +1267 -0
  380. package/dist/cosmos/gov/v1/tx.d.ts +908 -0
  381. package/dist/cosmos/gov/v1/tx.js +1253 -0
  382. package/dist/cosmos/gov/v1/tx.registry.cjs +151 -0
  383. package/dist/cosmos/gov/v1/tx.registry.d.ts +99 -0
  384. package/dist/cosmos/gov/v1/tx.registry.js +149 -0
  385. package/dist/cosmos/gov/v1/tx.rpc.func.cjs +65 -0
  386. package/dist/cosmos/gov/v1/tx.rpc.func.d.ts +60 -0
  387. package/dist/cosmos/gov/v1/tx.rpc.func.js +58 -0
  388. package/dist/cosmos/gov/v1/tx.rpc.react.cjs +65 -0
  389. package/dist/cosmos/gov/v1/tx.rpc.react.d.ts +82 -0
  390. package/dist/cosmos/gov/v1/tx.rpc.react.js +58 -0
  391. package/dist/cosmos/gov/v1beta1/genesis.cjs +147 -0
  392. package/dist/cosmos/gov/v1beta1/genesis.d.ts +110 -0
  393. package/dist/cosmos/gov/v1beta1/genesis.js +146 -0
  394. package/dist/cosmos/gov/v1beta1/gov.cjs +1058 -0
  395. package/dist/cosmos/gov/v1beta1/gov.d.ts +758 -0
  396. package/dist/cosmos/gov/v1beta1/gov.js +1040 -0
  397. package/dist/cosmos/gov/v1beta1/query.cjs +1414 -0
  398. package/dist/cosmos/gov/v1beta1/query.d.ts +983 -0
  399. package/dist/cosmos/gov/v1beta1/query.js +1398 -0
  400. package/dist/cosmos/gov/v1beta1/query.rpc.func.cjs +119 -0
  401. package/dist/cosmos/gov/v1beta1/query.rpc.func.d.ts +63 -0
  402. package/dist/cosmos/gov/v1beta1/query.rpc.func.js +111 -0
  403. package/dist/cosmos/gov/v1beta1/query.rpc.react.cjs +95 -0
  404. package/dist/cosmos/gov/v1beta1/query.rpc.react.d.ts +104 -0
  405. package/dist/cosmos/gov/v1beta1/query.rpc.react.js +87 -0
  406. package/dist/cosmos/gov/v1beta1/tx.cjs +712 -0
  407. package/dist/cosmos/gov/v1beta1/tx.d.ts +496 -0
  408. package/dist/cosmos/gov/v1beta1/tx.js +704 -0
  409. package/dist/cosmos/gov/v1beta1/tx.registry.cjs +94 -0
  410. package/dist/cosmos/gov/v1beta1/tx.registry.d.ts +63 -0
  411. package/dist/cosmos/gov/v1beta1/tx.registry.js +92 -0
  412. package/dist/cosmos/gov/v1beta1/tx.rpc.func.cjs +39 -0
  413. package/dist/cosmos/gov/v1beta1/tx.rpc.func.d.ts +37 -0
  414. package/dist/cosmos/gov/v1beta1/tx.rpc.func.js +35 -0
  415. package/dist/cosmos/gov/v1beta1/tx.rpc.react.cjs +39 -0
  416. package/dist/cosmos/gov/v1beta1/tx.rpc.react.d.ts +50 -0
  417. package/dist/cosmos/gov/v1beta1/tx.rpc.react.js +35 -0
  418. package/dist/cosmos/ics23/v1/proofs.cjs +1542 -0
  419. package/dist/cosmos/ics23/v1/proofs.d.ts +1019 -0
  420. package/dist/cosmos/ics23/v1/proofs.js +1520 -0
  421. package/dist/cosmos/mint/module/v1/module.cjs +94 -0
  422. package/dist/cosmos/mint/module/v1/module.d.ts +63 -0
  423. package/dist/cosmos/mint/module/v1/module.js +93 -0
  424. package/dist/cosmos/mint/v1beta1/genesis.cjs +100 -0
  425. package/dist/cosmos/mint/v1beta1/genesis.d.ts +70 -0
  426. package/dist/cosmos/mint/v1beta1/genesis.js +99 -0
  427. package/dist/cosmos/mint/v1beta1/mint.cjs +215 -0
  428. package/dist/cosmos/mint/v1beta1/mint.d.ts +164 -0
  429. package/dist/cosmos/mint/v1beta1/mint.js +213 -0
  430. package/dist/cosmos/mint/v1beta1/query.cjs +454 -0
  431. package/dist/cosmos/mint/v1beta1/query.d.ts +316 -0
  432. package/dist/cosmos/mint/v1beta1/query.js +447 -0
  433. package/dist/cosmos/mint/v1beta1/query.rpc.func.cjs +49 -0
  434. package/dist/cosmos/mint/v1beta1/query.rpc.func.d.ts +28 -0
  435. package/dist/cosmos/mint/v1beta1/query.rpc.func.js +46 -0
  436. package/dist/cosmos/mint/v1beta1/query.rpc.react.cjs +40 -0
  437. package/dist/cosmos/mint/v1beta1/query.rpc.react.d.ts +44 -0
  438. package/dist/cosmos/mint/v1beta1/query.rpc.react.js +37 -0
  439. package/dist/cosmos/mint/v1beta1/tx.cjs +168 -0
  440. package/dist/cosmos/mint/v1beta1/tx.d.ts +122 -0
  441. package/dist/cosmos/mint/v1beta1/tx.js +166 -0
  442. package/dist/cosmos/mint/v1beta1/tx.registry.cjs +29 -0
  443. package/dist/cosmos/mint/v1beta1/tx.registry.d.ts +27 -0
  444. package/dist/cosmos/mint/v1beta1/tx.registry.js +27 -0
  445. package/dist/cosmos/mint/v1beta1/tx.rpc.func.cjs +16 -0
  446. package/dist/cosmos/mint/v1beta1/tx.rpc.func.d.ts +17 -0
  447. package/dist/cosmos/mint/v1beta1/tx.rpc.func.js +15 -0
  448. package/dist/cosmos/mint/v1beta1/tx.rpc.react.cjs +16 -0
  449. package/dist/cosmos/mint/v1beta1/tx.rpc.react.d.ts +21 -0
  450. package/dist/cosmos/mint/v1beta1/tx.rpc.react.js +15 -0
  451. package/dist/cosmos/msg/v1/msg.cjs +0 -0
  452. package/dist/cosmos/msg/v1/msg.d.ts +1 -0
  453. package/dist/cosmos/msg/v1/msg.js +0 -0
  454. package/dist/cosmos/params/module/v1/module.cjs +74 -0
  455. package/dist/cosmos/params/module/v1/module.d.ts +51 -0
  456. package/dist/cosmos/params/module/v1/module.js +73 -0
  457. package/dist/cosmos/params/v1beta1/params.cjs +206 -0
  458. package/dist/cosmos/params/v1beta1/params.d.ts +115 -0
  459. package/dist/cosmos/params/v1beta1/params.js +204 -0
  460. package/dist/cosmos/params/v1beta1/query.cjs +419 -0
  461. package/dist/cosmos/params/v1beta1/query.d.ts +279 -0
  462. package/dist/cosmos/params/v1beta1/query.js +414 -0
  463. package/dist/cosmos/params/v1beta1/query.rpc.func.cjs +36 -0
  464. package/dist/cosmos/params/v1beta1/query.rpc.func.d.ts +22 -0
  465. package/dist/cosmos/params/v1beta1/query.rpc.func.js +34 -0
  466. package/dist/cosmos/params/v1beta1/query.rpc.react.cjs +30 -0
  467. package/dist/cosmos/params/v1beta1/query.rpc.react.d.ts +33 -0
  468. package/dist/cosmos/params/v1beta1/query.rpc.react.js +28 -0
  469. package/dist/cosmos/query/v1/query.cjs +0 -0
  470. package/dist/cosmos/query/v1/query.d.ts +1 -0
  471. package/dist/cosmos/query/v1/query.js +0 -0
  472. package/dist/cosmos/slashing/module/v1/module.cjs +84 -0
  473. package/dist/cosmos/slashing/module/v1/module.d.ts +61 -0
  474. package/dist/cosmos/slashing/module/v1/module.js +83 -0
  475. package/dist/cosmos/slashing/v1beta1/genesis.cjs +383 -0
  476. package/dist/cosmos/slashing/v1beta1/genesis.d.ts +274 -0
  477. package/dist/cosmos/slashing/v1beta1/genesis.js +379 -0
  478. package/dist/cosmos/slashing/v1beta1/query.cjs +495 -0
  479. package/dist/cosmos/slashing/v1beta1/query.d.ts +330 -0
  480. package/dist/cosmos/slashing/v1beta1/query.js +489 -0
  481. package/dist/cosmos/slashing/v1beta1/query.rpc.func.cjs +49 -0
  482. package/dist/cosmos/slashing/v1beta1/query.rpc.func.d.ts +28 -0
  483. package/dist/cosmos/slashing/v1beta1/query.rpc.func.js +46 -0
  484. package/dist/cosmos/slashing/v1beta1/query.rpc.react.cjs +40 -0
  485. package/dist/cosmos/slashing/v1beta1/query.rpc.react.d.ts +44 -0
  486. package/dist/cosmos/slashing/v1beta1/query.rpc.react.js +37 -0
  487. package/dist/cosmos/slashing/v1beta1/slashing.cjs +243 -0
  488. package/dist/cosmos/slashing/v1beta1/slashing.d.ts +166 -0
  489. package/dist/cosmos/slashing/v1beta1/slashing.js +240 -0
  490. package/dist/cosmos/slashing/v1beta1/tx.cjs +314 -0
  491. package/dist/cosmos/slashing/v1beta1/tx.d.ts +216 -0
  492. package/dist/cosmos/slashing/v1beta1/tx.js +310 -0
  493. package/dist/cosmos/slashing/v1beta1/tx.registry.cjs +53 -0
  494. package/dist/cosmos/slashing/v1beta1/tx.registry.d.ts +39 -0
  495. package/dist/cosmos/slashing/v1beta1/tx.registry.js +51 -0
  496. package/dist/cosmos/slashing/v1beta1/tx.rpc.func.cjs +26 -0
  497. package/dist/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +26 -0
  498. package/dist/cosmos/slashing/v1beta1/tx.rpc.func.js +24 -0
  499. package/dist/cosmos/slashing/v1beta1/tx.rpc.react.cjs +26 -0
  500. package/dist/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +33 -0
  501. package/dist/cosmos/slashing/v1beta1/tx.rpc.react.js +24 -0
  502. package/dist/cosmos/staking/module/v1/module.cjs +111 -0
  503. package/dist/cosmos/staking/module/v1/module.d.ts +89 -0
  504. package/dist/cosmos/staking/module/v1/module.js +110 -0
  505. package/dist/cosmos/staking/v1beta1/authz.cjs +244 -0
  506. package/dist/cosmos/staking/v1beta1/authz.d.ts +156 -0
  507. package/dist/cosmos/staking/v1beta1/authz.js +238 -0
  508. package/dist/cosmos/staking/v1beta1/genesis.cjs +247 -0
  509. package/dist/cosmos/staking/v1beta1/genesis.d.ts +185 -0
  510. package/dist/cosmos/staking/v1beta1/genesis.js +244 -0
  511. package/dist/cosmos/staking/v1beta1/query.cjs +2454 -0
  512. package/dist/cosmos/staking/v1beta1/query.d.ts +1710 -0
  513. package/dist/cosmos/staking/v1beta1/query.js +2426 -0
  514. package/dist/cosmos/staking/v1beta1/query.rpc.func.cjs +228 -0
  515. package/dist/cosmos/staking/v1beta1/query.rpc.func.d.ts +130 -0
  516. package/dist/cosmos/staking/v1beta1/query.rpc.func.js +214 -0
  517. package/dist/cosmos/staking/v1beta1/query.rpc.react.cjs +186 -0
  518. package/dist/cosmos/staking/v1beta1/query.rpc.react.d.ts +201 -0
  519. package/dist/cosmos/staking/v1beta1/query.rpc.react.js +172 -0
  520. package/dist/cosmos/staking/v1beta1/staking.cjs +2235 -0
  521. package/dist/cosmos/staking/v1beta1/staking.d.ts +1559 -0
  522. package/dist/cosmos/staking/v1beta1/staking.js +2206 -0
  523. package/dist/cosmos/staking/v1beta1/tx.cjs +1268 -0
  524. package/dist/cosmos/staking/v1beta1/tx.d.ts +790 -0
  525. package/dist/cosmos/staking/v1beta1/tx.js +1254 -0
  526. package/dist/cosmos/staking/v1beta1/tx.registry.cjs +151 -0
  527. package/dist/cosmos/staking/v1beta1/tx.registry.d.ts +99 -0
  528. package/dist/cosmos/staking/v1beta1/tx.registry.js +149 -0
  529. package/dist/cosmos/staking/v1beta1/tx.rpc.func.cjs +68 -0
  530. package/dist/cosmos/staking/v1beta1/tx.rpc.func.d.ts +63 -0
  531. package/dist/cosmos/staking/v1beta1/tx.rpc.func.js +61 -0
  532. package/dist/cosmos/staking/v1beta1/tx.rpc.react.cjs +68 -0
  533. package/dist/cosmos/staking/v1beta1/tx.rpc.react.d.ts +85 -0
  534. package/dist/cosmos/staking/v1beta1/tx.rpc.react.js +61 -0
  535. package/dist/cosmos/tx/config/v1/config.cjs +94 -0
  536. package/dist/cosmos/tx/config/v1/config.d.ts +73 -0
  537. package/dist/cosmos/tx/config/v1/config.js +93 -0
  538. package/dist/cosmos/tx/signing/v1beta1/signing.cjs +560 -0
  539. package/dist/cosmos/tx/signing/v1beta1/signing.d.ts +390 -0
  540. package/dist/cosmos/tx/signing/v1beta1/signing.js +550 -0
  541. package/dist/cosmos/tx/v1beta1/service.cjs +1712 -0
  542. package/dist/cosmos/tx/v1beta1/service.d.ts +1199 -0
  543. package/dist/cosmos/tx/v1beta1/service.js +1685 -0
  544. package/dist/cosmos/tx/v1beta1/service.rpc.func.cjs +133 -0
  545. package/dist/cosmos/tx/v1beta1/service.rpc.func.d.ts +70 -0
  546. package/dist/cosmos/tx/v1beta1/service.rpc.func.js +124 -0
  547. package/dist/cosmos/tx/v1beta1/service.rpc.react.cjs +106 -0
  548. package/dist/cosmos/tx/v1beta1/service.rpc.react.d.ts +116 -0
  549. package/dist/cosmos/tx/v1beta1/service.rpc.react.js +97 -0
  550. package/dist/cosmos/tx/v1beta1/tx.cjs +1355 -0
  551. package/dist/cosmos/tx/v1beta1/tx.d.ts +1164 -0
  552. package/dist/cosmos/tx/v1beta1/tx.js +1341 -0
  553. package/dist/cosmos/upgrade/module/v1/module.cjs +84 -0
  554. package/dist/cosmos/upgrade/module/v1/module.d.ts +61 -0
  555. package/dist/cosmos/upgrade/module/v1/module.js +83 -0
  556. package/dist/cosmos/upgrade/v1beta1/query.cjs +787 -0
  557. package/dist/cosmos/upgrade/v1beta1/query.d.ts +561 -0
  558. package/dist/cosmos/upgrade/v1beta1/query.js +776 -0
  559. package/dist/cosmos/upgrade/v1beta1/query.rpc.func.cjs +83 -0
  560. package/dist/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +48 -0
  561. package/dist/cosmos/upgrade/v1beta1/query.rpc.func.js +78 -0
  562. package/dist/cosmos/upgrade/v1beta1/query.rpc.react.cjs +68 -0
  563. package/dist/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +74 -0
  564. package/dist/cosmos/upgrade/v1beta1/query.rpc.react.js +63 -0
  565. package/dist/cosmos/upgrade/v1beta1/tx.cjs +313 -0
  566. package/dist/cosmos/upgrade/v1beta1/tx.d.ts +215 -0
  567. package/dist/cosmos/upgrade/v1beta1/tx.js +309 -0
  568. package/dist/cosmos/upgrade/v1beta1/tx.registry.cjs +53 -0
  569. package/dist/cosmos/upgrade/v1beta1/tx.registry.d.ts +39 -0
  570. package/dist/cosmos/upgrade/v1beta1/tx.registry.js +51 -0
  571. package/dist/cosmos/upgrade/v1beta1/tx.rpc.func.cjs +24 -0
  572. package/dist/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +24 -0
  573. package/dist/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -0
  574. package/dist/cosmos/upgrade/v1beta1/tx.rpc.react.cjs +24 -0
  575. package/dist/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +31 -0
  576. package/dist/cosmos/upgrade/v1beta1/tx.rpc.react.js +22 -0
  577. package/dist/cosmos/upgrade/v1beta1/upgrade.cjs +411 -0
  578. package/dist/cosmos/upgrade/v1beta1/upgrade.d.ts +341 -0
  579. package/dist/cosmos/upgrade/v1beta1/upgrade.js +407 -0
  580. package/dist/cosmos_proto/bundle.cjs +7 -0
  581. package/dist/cosmos_proto/bundle.d.ts +2 -0
  582. package/dist/cosmos_proto/bundle.js +3 -0
  583. package/dist/cosmos_proto/cosmos.cjs +221 -0
  584. package/dist/cosmos_proto/cosmos.d.ts +190 -0
  585. package/dist/cosmos_proto/cosmos.js +215 -0
  586. package/dist/cosmwasm/bundle.cjs +185 -0
  587. package/dist/cosmwasm/bundle.d.ts +13 -0
  588. package/dist/cosmwasm/bundle.js +14 -0
  589. package/dist/cosmwasm/wasm/v1/authz.cjs +968 -0
  590. package/dist/cosmwasm/wasm/v1/authz.d.ts +703 -0
  591. package/dist/cosmwasm/wasm/v1/authz.js +957 -0
  592. package/dist/cosmwasm/wasm/v1/genesis.cjs +429 -0
  593. package/dist/cosmwasm/wasm/v1/genesis.d.ts +229 -0
  594. package/dist/cosmwasm/wasm/v1/genesis.js +424 -0
  595. package/dist/cosmwasm/wasm/v1/ibc.cjs +336 -0
  596. package/dist/cosmwasm/wasm/v1/ibc.d.ts +240 -0
  597. package/dist/cosmwasm/wasm/v1/ibc.js +331 -0
  598. package/dist/cosmwasm/wasm/v1/proposal_legacy.cjs +1655 -0
  599. package/dist/cosmwasm/wasm/v1/proposal_legacy.d.ts +1362 -0
  600. package/dist/cosmwasm/wasm/v1/proposal_legacy.js +1642 -0
  601. package/dist/cosmwasm/wasm/v1/query.cjs +2557 -0
  602. package/dist/cosmwasm/wasm/v1/query.d.ts +1730 -0
  603. package/dist/cosmwasm/wasm/v1/query.js +2528 -0
  604. package/dist/cosmwasm/wasm/v1/query.rpc.func.cjs +204 -0
  605. package/dist/cosmwasm/wasm/v1/query.rpc.func.d.ts +106 -0
  606. package/dist/cosmwasm/wasm/v1/query.rpc.func.js +190 -0
  607. package/dist/cosmwasm/wasm/v1/query.rpc.react.cjs +162 -0
  608. package/dist/cosmwasm/wasm/v1/query.rpc.react.d.ts +177 -0
  609. package/dist/cosmwasm/wasm/v1/query.rpc.react.js +148 -0
  610. package/dist/cosmwasm/wasm/v1/tx.cjs +3130 -0
  611. package/dist/cosmwasm/wasm/v1/tx.d.ts +2340 -0
  612. package/dist/cosmwasm/wasm/v1/tx.js +3096 -0
  613. package/dist/cosmwasm/wasm/v1/tx.registry.cjs +341 -0
  614. package/dist/cosmwasm/wasm/v1/tx.registry.d.ts +219 -0
  615. package/dist/cosmwasm/wasm/v1/tx.registry.js +339 -0
  616. package/dist/cosmwasm/wasm/v1/tx.rpc.func.cjs +169 -0
  617. package/dist/cosmwasm/wasm/v1/tx.rpc.func.d.ts +154 -0
  618. package/dist/cosmwasm/wasm/v1/tx.rpc.func.js +152 -0
  619. package/dist/cosmwasm/wasm/v1/tx.rpc.react.cjs +169 -0
  620. package/dist/cosmwasm/wasm/v1/tx.rpc.react.d.ts +206 -0
  621. package/dist/cosmwasm/wasm/v1/tx.rpc.react.js +152 -0
  622. package/dist/cosmwasm/wasm/v1/types.cjs +861 -0
  623. package/dist/cosmwasm/wasm/v1/types.d.ts +563 -0
  624. package/dist/cosmwasm/wasm/v1/types.js +845 -0
  625. package/dist/ethermint/bundle.cjs +131 -0
  626. package/dist/ethermint/bundle.d.ts +26 -0
  627. package/dist/ethermint/bundle.js +27 -0
  628. package/dist/ethermint/crypto/v1/ethsecp256k1/keys.cjs +153 -0
  629. package/dist/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +121 -0
  630. package/dist/ethermint/crypto/v1/ethsecp256k1/keys.js +150 -0
  631. package/dist/ethermint/evm/v1/events.cjs +359 -0
  632. package/dist/ethermint/evm/v1/events.d.ts +282 -0
  633. package/dist/ethermint/evm/v1/events.js +355 -0
  634. package/dist/ethermint/evm/v1/evm.cjs +1021 -0
  635. package/dist/ethermint/evm/v1/evm.d.ts +866 -0
  636. package/dist/ethermint/evm/v1/evm.js +1012 -0
  637. package/dist/ethermint/evm/v1/genesis.cjs +189 -0
  638. package/dist/ethermint/evm/v1/genesis.d.ts +143 -0
  639. package/dist/ethermint/evm/v1/genesis.js +187 -0
  640. package/dist/ethermint/evm/v1/query.cjs +1943 -0
  641. package/dist/ethermint/evm/v1/query.d.ts +1484 -0
  642. package/dist/ethermint/evm/v1/query.js +1918 -0
  643. package/dist/ethermint/evm/v1/query.rpc.func.cjs +179 -0
  644. package/dist/ethermint/evm/v1/query.rpc.func.d.ts +95 -0
  645. package/dist/ethermint/evm/v1/query.rpc.func.js +167 -0
  646. package/dist/ethermint/evm/v1/query.rpc.react.cjs +142 -0
  647. package/dist/ethermint/evm/v1/query.rpc.react.d.ts +156 -0
  648. package/dist/ethermint/evm/v1/query.rpc.react.js +130 -0
  649. package/dist/ethermint/evm/v1/tx.cjs +904 -0
  650. package/dist/ethermint/evm/v1/tx.d.ts +735 -0
  651. package/dist/ethermint/evm/v1/tx.js +895 -0
  652. package/dist/ethermint/evm/v1/tx.registry.cjs +53 -0
  653. package/dist/ethermint/evm/v1/tx.registry.d.ts +39 -0
  654. package/dist/ethermint/evm/v1/tx.registry.js +51 -0
  655. package/dist/ethermint/evm/v1/tx.rpc.func.cjs +24 -0
  656. package/dist/ethermint/evm/v1/tx.rpc.func.d.ts +24 -0
  657. package/dist/ethermint/evm/v1/tx.rpc.func.js +22 -0
  658. package/dist/ethermint/evm/v1/tx.rpc.react.cjs +24 -0
  659. package/dist/ethermint/evm/v1/tx.rpc.react.d.ts +31 -0
  660. package/dist/ethermint/evm/v1/tx.rpc.react.js +22 -0
  661. package/dist/ethermint/feemarket/v1/events.cjs +158 -0
  662. package/dist/ethermint/feemarket/v1/events.d.ts +120 -0
  663. package/dist/ethermint/feemarket/v1/events.js +156 -0
  664. package/dist/ethermint/feemarket/v1/feemarket.cjs +135 -0
  665. package/dist/ethermint/feemarket/v1/feemarket.d.ts +115 -0
  666. package/dist/ethermint/feemarket/v1/feemarket.js +134 -0
  667. package/dist/ethermint/feemarket/v1/genesis.cjs +92 -0
  668. package/dist/ethermint/feemarket/v1/genesis.d.ts +70 -0
  669. package/dist/ethermint/feemarket/v1/genesis.js +91 -0
  670. package/dist/ethermint/feemarket/v1/query.cjs +409 -0
  671. package/dist/ethermint/feemarket/v1/query.d.ts +301 -0
  672. package/dist/ethermint/feemarket/v1/query.js +403 -0
  673. package/dist/ethermint/feemarket/v1/query.rpc.func.cjs +49 -0
  674. package/dist/ethermint/feemarket/v1/query.rpc.func.d.ts +28 -0
  675. package/dist/ethermint/feemarket/v1/query.rpc.func.js +46 -0
  676. package/dist/ethermint/feemarket/v1/query.rpc.react.cjs +40 -0
  677. package/dist/ethermint/feemarket/v1/query.rpc.react.d.ts +44 -0
  678. package/dist/ethermint/feemarket/v1/query.rpc.react.js +37 -0
  679. package/dist/ethermint/feemarket/v1/tx.cjs +161 -0
  680. package/dist/ethermint/feemarket/v1/tx.d.ts +118 -0
  681. package/dist/ethermint/feemarket/v1/tx.js +159 -0
  682. package/dist/ethermint/feemarket/v1/tx.registry.cjs +29 -0
  683. package/dist/ethermint/feemarket/v1/tx.registry.d.ts +27 -0
  684. package/dist/ethermint/feemarket/v1/tx.registry.js +27 -0
  685. package/dist/ethermint/feemarket/v1/tx.rpc.func.cjs +16 -0
  686. package/dist/ethermint/feemarket/v1/tx.rpc.func.d.ts +17 -0
  687. package/dist/ethermint/feemarket/v1/tx.rpc.func.js +15 -0
  688. package/dist/ethermint/feemarket/v1/tx.rpc.react.cjs +16 -0
  689. package/dist/ethermint/feemarket/v1/tx.rpc.react.d.ts +21 -0
  690. package/dist/ethermint/feemarket/v1/tx.rpc.react.js +15 -0
  691. package/dist/ethermint/types/v1/account.cjs +94 -0
  692. package/dist/ethermint/types/v1/account.d.ts +71 -0
  693. package/dist/ethermint/types/v1/account.js +93 -0
  694. package/dist/ethermint/types/v1/dynamic_fee.cjs +77 -0
  695. package/dist/ethermint/types/v1/dynamic_fee.d.ts +59 -0
  696. package/dist/ethermint/types/v1/dynamic_fee.js +76 -0
  697. package/dist/ethermint/types/v1/indexer.cjs +127 -0
  698. package/dist/ethermint/types/v1/indexer.d.ts +113 -0
  699. package/dist/ethermint/types/v1/indexer.js +126 -0
  700. package/dist/ethermint/types/v1/web3.cjs +98 -0
  701. package/dist/ethermint/types/v1/web3.d.ts +84 -0
  702. package/dist/ethermint/types/v1/web3.js +96 -0
  703. package/dist/extern.cjs +32 -0
  704. package/dist/extern.d.ts +11 -0
  705. package/dist/extern.js +29 -0
  706. package/dist/gogoproto/gogo.cjs +0 -0
  707. package/dist/gogoproto/gogo.d.ts +1 -0
  708. package/dist/gogoproto/gogo.js +0 -0
  709. package/dist/google/api/annotations.cjs +0 -0
  710. package/dist/google/api/annotations.d.ts +1 -0
  711. package/dist/google/api/annotations.js +0 -0
  712. package/dist/google/api/http.cjs +588 -0
  713. package/dist/google/api/http.d.ts +1100 -0
  714. package/dist/google/api/http.js +585 -0
  715. package/dist/google/bundle.cjs +127 -0
  716. package/dist/google/bundle.d.ts +6 -0
  717. package/dist/google/bundle.js +7 -0
  718. package/dist/google/protobuf/any.cjs +116 -0
  719. package/dist/google/protobuf/any.d.ts +210 -0
  720. package/dist/google/protobuf/any.js +115 -0
  721. package/dist/google/protobuf/descriptor.cjs +4680 -0
  722. package/dist/google/protobuf/descriptor.d.ts +3713 -0
  723. package/dist/google/protobuf/descriptor.js +4565 -0
  724. package/dist/google/protobuf/duration.cjs +142 -0
  725. package/dist/google/protobuf/duration.d.ts +236 -0
  726. package/dist/google/protobuf/duration.js +141 -0
  727. package/dist/google/protobuf/timestamp.cjs +170 -0
  728. package/dist/google/protobuf/timestamp.d.ts +328 -0
  729. package/dist/google/protobuf/timestamp.js +169 -0
  730. package/dist/helper-func-types.cjs +41 -0
  731. package/dist/helper-func-types.d.ts +39 -0
  732. package/dist/helper-func-types.js +39 -0
  733. package/dist/helpers.cjs +87 -0
  734. package/dist/helpers.d.ts +75 -0
  735. package/dist/helpers.js +65 -0
  736. package/dist/ibc/applications/interchain_accounts/controller/v1/controller.cjs +85 -0
  737. package/dist/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +64 -0
  738. package/dist/ibc/applications/interchain_accounts/controller/v1/controller.js +84 -0
  739. package/dist/ibc/applications/interchain_accounts/controller/v1/query.cjs +323 -0
  740. package/dist/ibc/applications/interchain_accounts/controller/v1/query.d.ts +207 -0
  741. package/dist/ibc/applications/interchain_accounts/controller/v1/query.js +319 -0
  742. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.cjs +35 -0
  743. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +21 -0
  744. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +33 -0
  745. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.cjs +29 -0
  746. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +32 -0
  747. package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +27 -0
  748. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.cjs +546 -0
  749. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +339 -0
  750. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.js +540 -0
  751. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.registry.cjs +75 -0
  752. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +51 -0
  753. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +73 -0
  754. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.cjs +31 -0
  755. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +30 -0
  756. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +28 -0
  757. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.cjs +31 -0
  758. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +40 -0
  759. package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +28 -0
  760. package/dist/ibc/applications/interchain_accounts/genesis/v1/genesis.cjs +525 -0
  761. package/dist/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +280 -0
  762. package/dist/ibc/applications/interchain_accounts/genesis/v1/genesis.js +520 -0
  763. package/dist/ibc/applications/interchain_accounts/host/v1/host.cjs +187 -0
  764. package/dist/ibc/applications/interchain_accounts/host/v1/host.d.ts +142 -0
  765. package/dist/ibc/applications/interchain_accounts/host/v1/host.js +184 -0
  766. package/dist/ibc/applications/interchain_accounts/host/v1/query.cjs +157 -0
  767. package/dist/ibc/applications/interchain_accounts/host/v1/query.d.ts +107 -0
  768. package/dist/ibc/applications/interchain_accounts/host/v1/query.js +155 -0
  769. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.func.cjs +21 -0
  770. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +14 -0
  771. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +20 -0
  772. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.react.cjs +18 -0
  773. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +20 -0
  774. package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +17 -0
  775. package/dist/ibc/applications/interchain_accounts/host/v1/tx.cjs +350 -0
  776. package/dist/ibc/applications/interchain_accounts/host/v1/tx.d.ts +245 -0
  777. package/dist/ibc/applications/interchain_accounts/host/v1/tx.js +345 -0
  778. package/dist/ibc/applications/interchain_accounts/host/v1/tx.registry.cjs +53 -0
  779. package/dist/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +39 -0
  780. package/dist/ibc/applications/interchain_accounts/host/v1/tx.registry.js +51 -0
  781. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.cjs +23 -0
  782. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +23 -0
  783. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +21 -0
  784. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.cjs +23 -0
  785. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +30 -0
  786. package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +21 -0
  787. package/dist/ibc/applications/interchain_accounts/v1/account.cjs +101 -0
  788. package/dist/ibc/applications/interchain_accounts/v1/account.d.ts +58 -0
  789. package/dist/ibc/applications/interchain_accounts/v1/account.js +100 -0
  790. package/dist/ibc/applications/interchain_accounts/v1/metadata.cjs +127 -0
  791. package/dist/ibc/applications/interchain_accounts/v1/metadata.d.ts +106 -0
  792. package/dist/ibc/applications/interchain_accounts/v1/metadata.js +126 -0
  793. package/dist/ibc/applications/interchain_accounts/v1/packet.cjs +218 -0
  794. package/dist/ibc/applications/interchain_accounts/v1/packet.d.ts +123 -0
  795. package/dist/ibc/applications/interchain_accounts/v1/packet.js +211 -0
  796. package/dist/ibc/applications/transfer/v1/authz.cjs +211 -0
  797. package/dist/ibc/applications/transfer/v1/authz.d.ts +154 -0
  798. package/dist/ibc/applications/transfer/v1/authz.js +209 -0
  799. package/dist/ibc/applications/transfer/v1/denomtrace.cjs +96 -0
  800. package/dist/ibc/applications/transfer/v1/denomtrace.d.ts +77 -0
  801. package/dist/ibc/applications/transfer/v1/denomtrace.js +95 -0
  802. package/dist/ibc/applications/transfer/v1/genesis.cjs +121 -0
  803. package/dist/ibc/applications/transfer/v1/genesis.d.ts +72 -0
  804. package/dist/ibc/applications/transfer/v1/genesis.js +120 -0
  805. package/dist/ibc/applications/transfer/v1/packet.cjs +120 -0
  806. package/dist/ibc/applications/transfer/v1/packet.d.ts +99 -0
  807. package/dist/ibc/applications/transfer/v1/packet.js +119 -0
  808. package/dist/ibc/applications/transfer/v1/query.cjs +980 -0
  809. package/dist/ibc/applications/transfer/v1/query.d.ts +682 -0
  810. package/dist/ibc/applications/transfer/v1/query.js +968 -0
  811. package/dist/ibc/applications/transfer/v1/query.rpc.func.cjs +91 -0
  812. package/dist/ibc/applications/transfer/v1/query.rpc.func.d.ts +49 -0
  813. package/dist/ibc/applications/transfer/v1/query.rpc.func.js +85 -0
  814. package/dist/ibc/applications/transfer/v1/query.rpc.react.cjs +73 -0
  815. package/dist/ibc/applications/transfer/v1/query.rpc.react.d.ts +80 -0
  816. package/dist/ibc/applications/transfer/v1/query.rpc.react.js +67 -0
  817. package/dist/ibc/applications/transfer/v1/token.cjs +278 -0
  818. package/dist/ibc/applications/transfer/v1/token.d.ts +183 -0
  819. package/dist/ibc/applications/transfer/v1/token.js +275 -0
  820. package/dist/ibc/applications/transfer/v1/transfer.cjs +97 -0
  821. package/dist/ibc/applications/transfer/v1/transfer.d.ts +82 -0
  822. package/dist/ibc/applications/transfer/v1/transfer.js +96 -0
  823. package/dist/ibc/applications/transfer/v1/tx.cjs +397 -0
  824. package/dist/ibc/applications/transfer/v1/tx.d.ts +311 -0
  825. package/dist/ibc/applications/transfer/v1/tx.js +393 -0
  826. package/dist/ibc/applications/transfer/v1/tx.registry.cjs +53 -0
  827. package/dist/ibc/applications/transfer/v1/tx.registry.d.ts +39 -0
  828. package/dist/ibc/applications/transfer/v1/tx.registry.js +51 -0
  829. package/dist/ibc/applications/transfer/v1/tx.rpc.func.cjs +23 -0
  830. package/dist/ibc/applications/transfer/v1/tx.rpc.func.d.ts +23 -0
  831. package/dist/ibc/applications/transfer/v1/tx.rpc.func.js +21 -0
  832. package/dist/ibc/applications/transfer/v1/tx.rpc.react.cjs +23 -0
  833. package/dist/ibc/applications/transfer/v1/tx.rpc.react.d.ts +30 -0
  834. package/dist/ibc/applications/transfer/v1/tx.rpc.react.js +21 -0
  835. package/dist/ibc/bundle.cjs +594 -0
  836. package/dist/ibc/bundle.d.ts +95 -0
  837. package/dist/ibc/bundle.js +96 -0
  838. package/dist/ibc/core/channel/v1/channel.cjs +974 -0
  839. package/dist/ibc/core/channel/v1/channel.d.ts +733 -0
  840. package/dist/ibc/core/channel/v1/channel.js +957 -0
  841. package/dist/ibc/core/channel/v1/genesis.cjs +253 -0
  842. package/dist/ibc/core/channel/v1/genesis.d.ts +132 -0
  843. package/dist/ibc/core/channel/v1/genesis.js +251 -0
  844. package/dist/ibc/core/channel/v1/query.cjs +2778 -0
  845. package/dist/ibc/core/channel/v1/query.d.ts +2025 -0
  846. package/dist/ibc/core/channel/v1/query.js +2749 -0
  847. package/dist/ibc/core/channel/v1/query.rpc.func.cjs +211 -0
  848. package/dist/ibc/core/channel/v1/query.rpc.func.d.ts +113 -0
  849. package/dist/ibc/core/channel/v1/query.rpc.func.js +197 -0
  850. package/dist/ibc/core/channel/v1/query.rpc.react.cjs +169 -0
  851. package/dist/ibc/core/channel/v1/query.rpc.react.d.ts +184 -0
  852. package/dist/ibc/core/channel/v1/query.rpc.react.js +155 -0
  853. package/dist/ibc/core/channel/v1/tx.cjs +1973 -0
  854. package/dist/ibc/core/channel/v1/tx.d.ts +1112 -0
  855. package/dist/ibc/core/channel/v1/tx.js +1948 -0
  856. package/dist/ibc/core/channel/v1/tx.registry.cjs +208 -0
  857. package/dist/ibc/core/channel/v1/tx.registry.d.ts +135 -0
  858. package/dist/ibc/core/channel/v1/tx.registry.js +206 -0
  859. package/dist/ibc/core/channel/v1/tx.rpc.func.cjs +88 -0
  860. package/dist/ibc/core/channel/v1/tx.rpc.func.d.ts +80 -0
  861. package/dist/ibc/core/channel/v1/tx.rpc.func.js +78 -0
  862. package/dist/ibc/core/channel/v1/tx.rpc.react.cjs +88 -0
  863. package/dist/ibc/core/channel/v1/tx.rpc.react.d.ts +111 -0
  864. package/dist/ibc/core/channel/v1/tx.rpc.react.js +78 -0
  865. package/dist/ibc/core/channel/v2/genesis.cjs +317 -0
  866. package/dist/ibc/core/channel/v2/genesis.d.ts +206 -0
  867. package/dist/ibc/core/channel/v2/genesis.js +313 -0
  868. package/dist/ibc/core/channel/v2/packet.cjs +450 -0
  869. package/dist/ibc/core/channel/v2/packet.d.ts +326 -0
  870. package/dist/ibc/core/channel/v2/packet.js +441 -0
  871. package/dist/ibc/core/channel/v2/query.cjs +1536 -0
  872. package/dist/ibc/core/channel/v2/query.d.ts +1071 -0
  873. package/dist/ibc/core/channel/v2/query.js +1519 -0
  874. package/dist/ibc/core/channel/v2/query.rpc.func.cjs +119 -0
  875. package/dist/ibc/core/channel/v2/query.rpc.func.d.ts +63 -0
  876. package/dist/ibc/core/channel/v2/query.rpc.func.js +111 -0
  877. package/dist/ibc/core/channel/v2/query.rpc.react.cjs +95 -0
  878. package/dist/ibc/core/channel/v2/query.rpc.react.d.ts +104 -0
  879. package/dist/ibc/core/channel/v2/query.rpc.react.js +87 -0
  880. package/dist/ibc/core/channel/v2/tx.cjs +805 -0
  881. package/dist/ibc/core/channel/v2/tx.d.ts +441 -0
  882. package/dist/ibc/core/channel/v2/tx.js +792 -0
  883. package/dist/ibc/core/channel/v2/tx.registry.cjs +94 -0
  884. package/dist/ibc/core/channel/v2/tx.registry.d.ts +63 -0
  885. package/dist/ibc/core/channel/v2/tx.registry.js +92 -0
  886. package/dist/ibc/core/channel/v2/tx.rpc.func.cjs +39 -0
  887. package/dist/ibc/core/channel/v2/tx.rpc.func.d.ts +37 -0
  888. package/dist/ibc/core/channel/v2/tx.rpc.func.js +35 -0
  889. package/dist/ibc/core/channel/v2/tx.rpc.react.cjs +39 -0
  890. package/dist/ibc/core/channel/v2/tx.rpc.react.d.ts +50 -0
  891. package/dist/ibc/core/channel/v2/tx.rpc.react.js +35 -0
  892. package/dist/ibc/core/client/v1/client.cjs +458 -0
  893. package/dist/ibc/core/client/v1/client.d.ts +363 -0
  894. package/dist/ibc/core/client/v1/client.js +453 -0
  895. package/dist/ibc/core/client/v1/genesis.cjs +321 -0
  896. package/dist/ibc/core/client/v1/genesis.d.ts +220 -0
  897. package/dist/ibc/core/client/v1/genesis.js +317 -0
  898. package/dist/ibc/core/client/v1/query.cjs +1920 -0
  899. package/dist/ibc/core/client/v1/query.d.ts +1396 -0
  900. package/dist/ibc/core/client/v1/query.js +1897 -0
  901. package/dist/ibc/core/client/v1/query.rpc.func.cjs +163 -0
  902. package/dist/ibc/core/client/v1/query.rpc.func.d.ts +86 -0
  903. package/dist/ibc/core/client/v1/query.rpc.func.js +152 -0
  904. package/dist/ibc/core/client/v1/query.rpc.react.cjs +130 -0
  905. package/dist/ibc/core/client/v1/query.rpc.react.d.ts +142 -0
  906. package/dist/ibc/core/client/v1/query.rpc.react.js +119 -0
  907. package/dist/ibc/core/client/v1/tx.cjs +1351 -0
  908. package/dist/ibc/core/client/v1/tx.d.ts +985 -0
  909. package/dist/ibc/core/client/v1/tx.js +1334 -0
  910. package/dist/ibc/core/client/v1/tx.registry.cjs +170 -0
  911. package/dist/ibc/core/client/v1/tx.registry.d.ts +111 -0
  912. package/dist/ibc/core/client/v1/tx.registry.js +168 -0
  913. package/dist/ibc/core/client/v1/tx.rpc.func.cjs +71 -0
  914. package/dist/ibc/core/client/v1/tx.rpc.func.d.ts +65 -0
  915. package/dist/ibc/core/client/v1/tx.rpc.func.js +63 -0
  916. package/dist/ibc/core/client/v1/tx.rpc.react.cjs +71 -0
  917. package/dist/ibc/core/client/v1/tx.rpc.react.d.ts +90 -0
  918. package/dist/ibc/core/client/v1/tx.rpc.react.js +63 -0
  919. package/dist/ibc/core/client/v2/config.cjs +88 -0
  920. package/dist/ibc/core/client/v2/config.d.ts +70 -0
  921. package/dist/ibc/core/client/v2/config.js +87 -0
  922. package/dist/ibc/core/client/v2/counterparty.cjs +97 -0
  923. package/dist/ibc/core/client/v2/counterparty.d.ts +69 -0
  924. package/dist/ibc/core/client/v2/counterparty.js +95 -0
  925. package/dist/ibc/core/client/v2/genesis.cjs +181 -0
  926. package/dist/ibc/core/client/v2/genesis.d.ts +125 -0
  927. package/dist/ibc/core/client/v2/genesis.js +179 -0
  928. package/dist/ibc/core/client/v2/query.cjs +329 -0
  929. package/dist/ibc/core/client/v2/query.d.ts +222 -0
  930. package/dist/ibc/core/client/v2/query.js +325 -0
  931. package/dist/ibc/core/client/v2/query.rpc.func.cjs +35 -0
  932. package/dist/ibc/core/client/v2/query.rpc.func.d.ts +21 -0
  933. package/dist/ibc/core/client/v2/query.rpc.func.js +33 -0
  934. package/dist/ibc/core/client/v2/query.rpc.react.cjs +29 -0
  935. package/dist/ibc/core/client/v2/query.rpc.react.d.ts +32 -0
  936. package/dist/ibc/core/client/v2/query.rpc.react.js +27 -0
  937. package/dist/ibc/core/client/v2/tx.cjs +350 -0
  938. package/dist/ibc/core/client/v2/tx.d.ts +251 -0
  939. package/dist/ibc/core/client/v2/tx.js +345 -0
  940. package/dist/ibc/core/client/v2/tx.registry.cjs +53 -0
  941. package/dist/ibc/core/client/v2/tx.registry.d.ts +39 -0
  942. package/dist/ibc/core/client/v2/tx.registry.js +51 -0
  943. package/dist/ibc/core/client/v2/tx.rpc.func.cjs +23 -0
  944. package/dist/ibc/core/client/v2/tx.rpc.func.d.ts +23 -0
  945. package/dist/ibc/core/client/v2/tx.rpc.func.js +21 -0
  946. package/dist/ibc/core/client/v2/tx.rpc.react.cjs +23 -0
  947. package/dist/ibc/core/client/v2/tx.rpc.react.d.ts +30 -0
  948. package/dist/ibc/core/client/v2/tx.rpc.react.js +21 -0
  949. package/dist/ibc/core/commitment/v1/commitment.cjs +255 -0
  950. package/dist/ibc/core/commitment/v1/commitment.d.ts +175 -0
  951. package/dist/ibc/core/commitment/v1/commitment.js +251 -0
  952. package/dist/ibc/core/commitment/v2/commitment.cjs +117 -0
  953. package/dist/ibc/core/commitment/v2/commitment.d.ts +145 -0
  954. package/dist/ibc/core/commitment/v2/commitment.js +115 -0
  955. package/dist/ibc/core/connection/v1/connection.cjs +737 -0
  956. package/dist/ibc/core/connection/v1/connection.d.ts +548 -0
  957. package/dist/ibc/core/connection/v1/connection.js +726 -0
  958. package/dist/ibc/core/connection/v1/genesis.cjs +119 -0
  959. package/dist/ibc/core/connection/v1/genesis.d.ts +68 -0
  960. package/dist/ibc/core/connection/v1/genesis.js +118 -0
  961. package/dist/ibc/core/connection/v1/query.cjs +1093 -0
  962. package/dist/ibc/core/connection/v1/query.d.ts +779 -0
  963. package/dist/ibc/core/connection/v1/query.js +1080 -0
  964. package/dist/ibc/core/connection/v1/query.rpc.func.cjs +94 -0
  965. package/dist/ibc/core/connection/v1/query.rpc.func.d.ts +52 -0
  966. package/dist/ibc/core/connection/v1/query.rpc.func.js +88 -0
  967. package/dist/ibc/core/connection/v1/query.rpc.react.cjs +76 -0
  968. package/dist/ibc/core/connection/v1/query.rpc.react.d.ts +83 -0
  969. package/dist/ibc/core/connection/v1/query.rpc.react.js +70 -0
  970. package/dist/ibc/core/connection/v1/tx.cjs +1017 -0
  971. package/dist/ibc/core/connection/v1/tx.d.ts +683 -0
  972. package/dist/ibc/core/connection/v1/tx.js +1006 -0
  973. package/dist/ibc/core/connection/v1/tx.registry.cjs +113 -0
  974. package/dist/ibc/core/connection/v1/tx.registry.d.ts +75 -0
  975. package/dist/ibc/core/connection/v1/tx.registry.js +111 -0
  976. package/dist/ibc/core/connection/v1/tx.rpc.func.cjs +49 -0
  977. package/dist/ibc/core/connection/v1/tx.rpc.func.d.ts +46 -0
  978. package/dist/ibc/core/connection/v1/tx.rpc.func.js +44 -0
  979. package/dist/ibc/core/connection/v1/tx.rpc.react.cjs +49 -0
  980. package/dist/ibc/core/connection/v1/tx.rpc.react.d.ts +62 -0
  981. package/dist/ibc/core/connection/v1/tx.rpc.react.js +44 -0
  982. package/dist/ibc/core/types/v1/genesis.cjs +131 -0
  983. package/dist/ibc/core/types/v1/genesis.d.ts +98 -0
  984. package/dist/ibc/core/types/v1/genesis.js +130 -0
  985. package/dist/ibc/lightclients/solomachine/v2/solomachine.cjs +1613 -0
  986. package/dist/ibc/lightclients/solomachine/v2/solomachine.d.ts +984 -0
  987. package/dist/ibc/lightclients/solomachine/v2/solomachine.js +1592 -0
  988. package/dist/ibc/lightclients/solomachine/v3/solomachine.cjs +806 -0
  989. package/dist/ibc/lightclients/solomachine/v3/solomachine.d.ts +523 -0
  990. package/dist/ibc/lightclients/solomachine/v3/solomachine.js +797 -0
  991. package/dist/ibc/lightclients/tendermint/v1/tendermint.cjs +592 -0
  992. package/dist/ibc/lightclients/tendermint/v1/tendermint.d.ts +429 -0
  993. package/dist/ibc/lightclients/tendermint/v1/tendermint.js +586 -0
  994. package/dist/ibc/lightclients/wasm/v1/genesis.cjs +169 -0
  995. package/dist/ibc/lightclients/wasm/v1/genesis.d.ts +116 -0
  996. package/dist/ibc/lightclients/wasm/v1/genesis.js +166 -0
  997. package/dist/ibc/lightclients/wasm/v1/query.cjs +339 -0
  998. package/dist/ibc/lightclients/wasm/v1/query.d.ts +229 -0
  999. package/dist/ibc/lightclients/wasm/v1/query.js +334 -0
  1000. package/dist/ibc/lightclients/wasm/v1/query.rpc.func.cjs +35 -0
  1001. package/dist/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +21 -0
  1002. package/dist/ibc/lightclients/wasm/v1/query.rpc.func.js +33 -0
  1003. package/dist/ibc/lightclients/wasm/v1/query.rpc.react.cjs +29 -0
  1004. package/dist/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +32 -0
  1005. package/dist/ibc/lightclients/wasm/v1/query.rpc.react.js +27 -0
  1006. package/dist/ibc/lightclients/wasm/v1/tx.cjs +502 -0
  1007. package/dist/ibc/lightclients/wasm/v1/tx.d.ts +356 -0
  1008. package/dist/ibc/lightclients/wasm/v1/tx.js +495 -0
  1009. package/dist/ibc/lightclients/wasm/v1/tx.registry.cjs +75 -0
  1010. package/dist/ibc/lightclients/wasm/v1/tx.registry.d.ts +51 -0
  1011. package/dist/ibc/lightclients/wasm/v1/tx.registry.js +73 -0
  1012. package/dist/ibc/lightclients/wasm/v1/tx.rpc.func.cjs +31 -0
  1013. package/dist/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +30 -0
  1014. package/dist/ibc/lightclients/wasm/v1/tx.rpc.func.js +28 -0
  1015. package/dist/ibc/lightclients/wasm/v1/tx.rpc.react.cjs +31 -0
  1016. package/dist/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +40 -0
  1017. package/dist/ibc/lightclients/wasm/v1/tx.rpc.react.js +28 -0
  1018. package/dist/ibc/lightclients/wasm/v1/wasm.cjs +348 -0
  1019. package/dist/ibc/lightclients/wasm/v1/wasm.d.ts +235 -0
  1020. package/dist/ibc/lightclients/wasm/v1/wasm.js +343 -0
  1021. package/dist/index.cjs +2494 -0
  1022. package/dist/index.d.ts +380 -0
  1023. package/dist/index.js +379 -0
  1024. package/dist/react-query.cjs +70 -0
  1025. package/dist/react-query.d.ts +64 -0
  1026. package/dist/react-query.js +62 -0
  1027. package/dist/registry.cjs +128 -0
  1028. package/dist/registry.d.ts +34 -0
  1029. package/dist/registry.js +127 -0
  1030. package/dist/tendermint/abci/types.cjs +4790 -0
  1031. package/dist/tendermint/abci/types.d.ts +2759 -0
  1032. package/dist/tendermint/abci/types.js +4718 -0
  1033. package/dist/tendermint/bundle.cjs +117 -0
  1034. package/dist/tendermint/bundle.d.ts +11 -0
  1035. package/dist/tendermint/bundle.js +12 -0
  1036. package/dist/tendermint/crypto/keys.cjs +89 -0
  1037. package/dist/tendermint/crypto/keys.d.ts +55 -0
  1038. package/dist/tendermint/crypto/keys.js +87 -0
  1039. package/dist/tendermint/crypto/proof.cjs +443 -0
  1040. package/dist/tendermint/crypto/proof.d.ts +266 -0
  1041. package/dist/tendermint/crypto/proof.js +437 -0
  1042. package/dist/tendermint/p2p/types.cjs +397 -0
  1043. package/dist/tendermint/p2p/types.d.ts +206 -0
  1044. package/dist/tendermint/p2p/types.js +392 -0
  1045. package/dist/tendermint/types/block.cjs +111 -0
  1046. package/dist/tendermint/types/block.d.ts +58 -0
  1047. package/dist/tendermint/types/block.js +110 -0
  1048. package/dist/tendermint/types/evidence.cjs +387 -0
  1049. package/dist/tendermint/types/evidence.d.ts +208 -0
  1050. package/dist/tendermint/types/evidence.js +383 -0
  1051. package/dist/tendermint/types/params.cjs +589 -0
  1052. package/dist/tendermint/types/params.d.ts +438 -0
  1053. package/dist/tendermint/types/params.js +582 -0
  1054. package/dist/tendermint/types/types.cjs +1608 -0
  1055. package/dist/tendermint/types/types.d.ts +944 -0
  1056. package/dist/tendermint/types/types.js +1588 -0
  1057. package/dist/tendermint/types/validator.cjs +324 -0
  1058. package/dist/tendermint/types/validator.d.ts +165 -0
  1059. package/dist/tendermint/types/validator.js +316 -0
  1060. package/dist/tendermint/version/types.cjs +172 -0
  1061. package/dist/tendermint/version/types.d.ts +116 -0
  1062. package/dist/tendermint/version/types.js +170 -0
  1063. package/dist/types.cjs +0 -0
  1064. package/dist/types.d.ts +72 -0
  1065. package/dist/types.js +0 -0
  1066. package/dist/utf8.cjs +95 -0
  1067. package/dist/utf8.d.ts +30 -0
  1068. package/dist/utf8.js +89 -0
  1069. package/dist/varint.cjs +321 -0
  1070. package/dist/varint.d.ts +107 -0
  1071. package/dist/varint.js +304 -0
  1072. package/dist/xpla/bundle.cjs +86 -0
  1073. package/dist/xpla/bundle.d.ts +29 -0
  1074. package/dist/xpla/bundle.js +30 -0
  1075. package/dist/xpla/burn/v1beta1/burn.cjs +101 -0
  1076. package/dist/xpla/burn/v1beta1/burn.d.ts +58 -0
  1077. package/dist/xpla/burn/v1beta1/burn.js +100 -0
  1078. package/dist/xpla/burn/v1beta1/genesis.cjs +83 -0
  1079. package/dist/xpla/burn/v1beta1/genesis.d.ts +60 -0
  1080. package/dist/xpla/burn/v1beta1/genesis.js +82 -0
  1081. package/dist/xpla/burn/v1beta1/query.cjs +305 -0
  1082. package/dist/xpla/burn/v1beta1/query.d.ts +206 -0
  1083. package/dist/xpla/burn/v1beta1/query.js +301 -0
  1084. package/dist/xpla/burn/v1beta1/query.rpc.func.cjs +35 -0
  1085. package/dist/xpla/burn/v1beta1/query.rpc.func.d.ts +21 -0
  1086. package/dist/xpla/burn/v1beta1/query.rpc.func.js +33 -0
  1087. package/dist/xpla/burn/v1beta1/query.rpc.react.cjs +29 -0
  1088. package/dist/xpla/burn/v1beta1/query.rpc.react.d.ts +32 -0
  1089. package/dist/xpla/burn/v1beta1/query.rpc.react.js +27 -0
  1090. package/dist/xpla/burn/v1beta1/tx.cjs +161 -0
  1091. package/dist/xpla/burn/v1beta1/tx.d.ts +107 -0
  1092. package/dist/xpla/burn/v1beta1/tx.js +159 -0
  1093. package/dist/xpla/burn/v1beta1/tx.registry.cjs +29 -0
  1094. package/dist/xpla/burn/v1beta1/tx.registry.d.ts +27 -0
  1095. package/dist/xpla/burn/v1beta1/tx.registry.js +27 -0
  1096. package/dist/xpla/burn/v1beta1/tx.rpc.func.cjs +15 -0
  1097. package/dist/xpla/burn/v1beta1/tx.rpc.func.d.ts +16 -0
  1098. package/dist/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  1099. package/dist/xpla/burn/v1beta1/tx.rpc.react.cjs +15 -0
  1100. package/dist/xpla/burn/v1beta1/tx.rpc.react.d.ts +20 -0
  1101. package/dist/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
  1102. package/dist/xpla/reward/v1beta1/genesis.cjs +82 -0
  1103. package/dist/xpla/reward/v1beta1/genesis.d.ts +60 -0
  1104. package/dist/xpla/reward/v1beta1/genesis.js +81 -0
  1105. package/dist/xpla/reward/v1beta1/query.cjs +282 -0
  1106. package/dist/xpla/reward/v1beta1/query.d.ts +206 -0
  1107. package/dist/xpla/reward/v1beta1/query.js +278 -0
  1108. package/dist/xpla/reward/v1beta1/query.rpc.func.cjs +35 -0
  1109. package/dist/xpla/reward/v1beta1/query.rpc.func.d.ts +21 -0
  1110. package/dist/xpla/reward/v1beta1/query.rpc.func.js +33 -0
  1111. package/dist/xpla/reward/v1beta1/query.rpc.react.cjs +29 -0
  1112. package/dist/xpla/reward/v1beta1/query.rpc.react.d.ts +32 -0
  1113. package/dist/xpla/reward/v1beta1/query.rpc.react.js +27 -0
  1114. package/dist/xpla/reward/v1beta1/reward.cjs +119 -0
  1115. package/dist/xpla/reward/v1beta1/reward.d.ts +63 -0
  1116. package/dist/xpla/reward/v1beta1/reward.js +118 -0
  1117. package/dist/xpla/reward/v1beta1/tx.cjs +318 -0
  1118. package/dist/xpla/reward/v1beta1/tx.d.ts +222 -0
  1119. package/dist/xpla/reward/v1beta1/tx.js +314 -0
  1120. package/dist/xpla/reward/v1beta1/tx.registry.cjs +53 -0
  1121. package/dist/xpla/reward/v1beta1/tx.registry.d.ts +39 -0
  1122. package/dist/xpla/reward/v1beta1/tx.registry.js +51 -0
  1123. package/dist/xpla/reward/v1beta1/tx.rpc.func.cjs +26 -0
  1124. package/dist/xpla/reward/v1beta1/tx.rpc.func.d.ts +26 -0
  1125. package/dist/xpla/reward/v1beta1/tx.rpc.func.js +24 -0
  1126. package/dist/xpla/reward/v1beta1/tx.rpc.react.cjs +26 -0
  1127. package/dist/xpla/reward/v1beta1/tx.rpc.react.d.ts +33 -0
  1128. package/dist/xpla/reward/v1beta1/tx.rpc.react.js +24 -0
  1129. package/dist/xpla/volunteer/v1beta1/genesis.cjs +83 -0
  1130. package/dist/xpla/volunteer/v1beta1/genesis.d.ts +54 -0
  1131. package/dist/xpla/volunteer/v1beta1/genesis.js +82 -0
  1132. package/dist/xpla/volunteer/v1beta1/proposal.cjs +485 -0
  1133. package/dist/xpla/volunteer/v1beta1/proposal.d.ts +259 -0
  1134. package/dist/xpla/volunteer/v1beta1/proposal.js +481 -0
  1135. package/dist/xpla/volunteer/v1beta1/query.cjs +139 -0
  1136. package/dist/xpla/volunteer/v1beta1/query.d.ts +96 -0
  1137. package/dist/xpla/volunteer/v1beta1/query.js +137 -0
  1138. package/dist/xpla/volunteer/v1beta1/query.rpc.func.cjs +21 -0
  1139. package/dist/xpla/volunteer/v1beta1/query.rpc.func.d.ts +14 -0
  1140. package/dist/xpla/volunteer/v1beta1/query.rpc.func.js +20 -0
  1141. package/dist/xpla/volunteer/v1beta1/query.rpc.react.cjs +18 -0
  1142. package/dist/xpla/volunteer/v1beta1/query.rpc.react.d.ts +20 -0
  1143. package/dist/xpla/volunteer/v1beta1/query.rpc.react.js +17 -0
  1144. package/dist/xpla/volunteer/v1beta1/tx.cjs +348 -0
  1145. package/dist/xpla/volunteer/v1beta1/tx.d.ts +232 -0
  1146. package/dist/xpla/volunteer/v1beta1/tx.js +344 -0
  1147. package/dist/xpla/volunteer/v1beta1/tx.registry.cjs +53 -0
  1148. package/dist/xpla/volunteer/v1beta1/tx.registry.d.ts +39 -0
  1149. package/dist/xpla/volunteer/v1beta1/tx.registry.js +51 -0
  1150. package/dist/xpla/volunteer/v1beta1/tx.rpc.func.cjs +24 -0
  1151. package/dist/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +24 -0
  1152. package/dist/xpla/volunteer/v1beta1/tx.rpc.func.js +22 -0
  1153. package/dist/xpla/volunteer/v1beta1/tx.rpc.react.cjs +24 -0
  1154. package/dist/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +31 -0
  1155. package/dist/xpla/volunteer/v1beta1/tx.rpc.react.js +22 -0
  1156. package/dist/xpla/volunteer/v1beta1/volunteervalidator.cjs +87 -0
  1157. package/dist/xpla/volunteer/v1beta1/volunteervalidator.d.ts +67 -0
  1158. package/dist/xpla/volunteer/v1beta1/volunteervalidator.js +86 -0
  1159. package/package.json +28 -27
  1160. package/amino/amino.d.ts +0 -1
  1161. package/amino/amino.js +0 -2
  1162. package/binary.d.ts +0 -130
  1163. package/binary.js +0 -370
  1164. package/cosmos/app/runtime/v1alpha1/module.d.ts +0 -217
  1165. package/cosmos/app/runtime/v1alpha1/module.js +0 -309
  1166. package/cosmos/app/v1alpha1/config.d.ts +0 -246
  1167. package/cosmos/app/v1alpha1/config.js +0 -329
  1168. package/cosmos/app/v1alpha1/module.d.ts +0 -286
  1169. package/cosmos/app/v1alpha1/module.js +0 -303
  1170. package/cosmos/app/v1alpha1/query.d.ts +0 -105
  1171. package/cosmos/app/v1alpha1/query.js +0 -164
  1172. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +0 -8
  1173. package/cosmos/app/v1alpha1/query.rpc.func.js +0 -18
  1174. package/cosmos/app/v1alpha1/query.rpc.react.d.ts +0 -8
  1175. package/cosmos/app/v1alpha1/query.rpc.react.js +0 -15
  1176. package/cosmos/auth/module/v1/module.d.ts +0 -138
  1177. package/cosmos/auth/module/v1/module.js +0 -218
  1178. package/cosmos/auth/v1beta1/auth.d.ts +0 -245
  1179. package/cosmos/auth/v1beta1/auth.js +0 -482
  1180. package/cosmos/auth/v1beta1/genesis.d.ts +0 -67
  1181. package/cosmos/auth/v1beta1/genesis.js +0 -104
  1182. package/cosmos/auth/v1beta1/query.d.ts +0 -1160
  1183. package/cosmos/auth/v1beta1/query.js +0 -1727
  1184. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +0 -88
  1185. package/cosmos/auth/v1beta1/query.rpc.func.js +0 -152
  1186. package/cosmos/auth/v1beta1/query.rpc.react.d.ts +0 -88
  1187. package/cosmos/auth/v1beta1/query.rpc.react.js +0 -122
  1188. package/cosmos/auth/v1beta1/tx.d.ts +0 -132
  1189. package/cosmos/auth/v1beta1/tx.js +0 -181
  1190. package/cosmos/auth/v1beta1/tx.registry.d.ts +0 -23
  1191. package/cosmos/auth/v1beta1/tx.registry.js +0 -31
  1192. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +0 -11
  1193. package/cosmos/auth/v1beta1/tx.rpc.func.js +0 -17
  1194. package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +0 -11
  1195. package/cosmos/auth/v1beta1/tx.rpc.react.js +0 -17
  1196. package/cosmos/authz/module/v1/module.d.ts +0 -49
  1197. package/cosmos/authz/module/v1/module.js +0 -74
  1198. package/cosmos/authz/v1beta1/authz.d.ts +0 -248
  1199. package/cosmos/authz/v1beta1/authz.js +0 -426
  1200. package/cosmos/authz/v1beta1/event.d.ts +0 -144
  1201. package/cosmos/authz/v1beta1/event.js +0 -218
  1202. package/cosmos/authz/v1beta1/genesis.d.ts +0 -52
  1203. package/cosmos/authz/v1beta1/genesis.js +0 -97
  1204. package/cosmos/authz/v1beta1/query.d.ts +0 -374
  1205. package/cosmos/authz/v1beta1/query.js +0 -643
  1206. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +0 -26
  1207. package/cosmos/authz/v1beta1/query.rpc.func.js +0 -48
  1208. package/cosmos/authz/v1beta1/query.rpc.react.d.ts +0 -26
  1209. package/cosmos/authz/v1beta1/query.rpc.react.js +0 -39
  1210. package/cosmos/authz/v1beta1/tx.d.ts +0 -334
  1211. package/cosmos/authz/v1beta1/tx.js +0 -555
  1212. package/cosmos/authz/v1beta1/tx.registry.d.ts +0 -47
  1213. package/cosmos/authz/v1beta1/tx.registry.js +0 -67
  1214. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +0 -28
  1215. package/cosmos/authz/v1beta1/tx.rpc.func.js +0 -38
  1216. package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +0 -28
  1217. package/cosmos/authz/v1beta1/tx.rpc.react.js +0 -38
  1218. package/cosmos/autocli/v1/options.d.ts +0 -589
  1219. package/cosmos/autocli/v1/options.js +0 -896
  1220. package/cosmos/autocli/v1/query.d.ts +0 -151
  1221. package/cosmos/autocli/v1/query.js +0 -260
  1222. package/cosmos/autocli/v1/query.rpc.func.d.ts +0 -8
  1223. package/cosmos/autocli/v1/query.rpc.func.js +0 -18
  1224. package/cosmos/autocli/v1/query.rpc.react.d.ts +0 -8
  1225. package/cosmos/autocli/v1/query.rpc.react.js +0 -15
  1226. package/cosmos/bank/module/v1/module.d.ts +0 -83
  1227. package/cosmos/bank/module/v1/module.js +0 -117
  1228. package/cosmos/bank/v1beta1/authz.d.ts +0 -75
  1229. package/cosmos/bank/v1beta1/authz.js +0 -117
  1230. package/cosmos/bank/v1beta1/bank.d.ts +0 -496
  1231. package/cosmos/bank/v1beta1/bank.js +0 -794
  1232. package/cosmos/bank/v1beta1/genesis.d.ts +0 -163
  1233. package/cosmos/bank/v1beta1/genesis.js +0 -263
  1234. package/cosmos/bank/v1beta1/query.d.ts +0 -1719
  1235. package/cosmos/bank/v1beta1/query.js +0 -2601
  1236. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +0 -129
  1237. package/cosmos/bank/v1beta1/query.rpc.func.js +0 -211
  1238. package/cosmos/bank/v1beta1/query.rpc.react.d.ts +0 -129
  1239. package/cosmos/bank/v1beta1/query.rpc.react.js +0 -172
  1240. package/cosmos/bank/v1beta1/tx.d.ts +0 -487
  1241. package/cosmos/bank/v1beta1/tx.js +0 -740
  1242. package/cosmos/bank/v1beta1/tx.registry.d.ts +0 -59
  1243. package/cosmos/bank/v1beta1/tx.registry.js +0 -85
  1244. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +0 -37
  1245. package/cosmos/bank/v1beta1/tx.rpc.func.js +0 -49
  1246. package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +0 -37
  1247. package/cosmos/bank/v1beta1/tx.rpc.react.js +0 -49
  1248. package/cosmos/base/abci/v1beta1/abci.d.ts +0 -873
  1249. package/cosmos/base/abci/v1beta1/abci.js +0 -1386
  1250. package/cosmos/base/node/v1beta1/query.d.ts +0 -238
  1251. package/cosmos/base/node/v1beta1/query.js +0 -396
  1252. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +0 -15
  1253. package/cosmos/base/node/v1beta1/query.rpc.func.js +0 -31
  1254. package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +0 -15
  1255. package/cosmos/base/node/v1beta1/query.rpc.react.js +0 -25
  1256. package/cosmos/base/query/v1beta1/pagination.d.ts +0 -214
  1257. package/cosmos/base/query/v1beta1/pagination.js +0 -243
  1258. package/cosmos/base/reflection/v1beta1/reflection.d.ts +0 -214
  1259. package/cosmos/base/reflection/v1beta1/reflection.js +0 -331
  1260. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +0 -17
  1261. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +0 -33
  1262. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +0 -17
  1263. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +0 -27
  1264. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +0 -1549
  1265. package/cosmos/base/reflection/v2alpha1/reflection.js +0 -2367
  1266. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +0 -45
  1267. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +0 -85
  1268. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +0 -45
  1269. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +0 -67
  1270. package/cosmos/base/tendermint/v1beta1/query.d.ts +0 -1116
  1271. package/cosmos/base/tendermint/v1beta1/query.js +0 -2048
  1272. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +0 -54
  1273. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +0 -100
  1274. package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +0 -54
  1275. package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +0 -79
  1276. package/cosmos/base/tendermint/v1beta1/types.d.ts +0 -208
  1277. package/cosmos/base/tendermint/v1beta1/types.js +0 -383
  1278. package/cosmos/base/v1beta1/coin.d.ts +0 -226
  1279. package/cosmos/base/v1beta1/coin.js +0 -369
  1280. package/cosmos/bundle.d.ts +0 -188
  1281. package/cosmos/bundle.js +0 -990
  1282. package/cosmos/consensus/module/v1/module.d.ts +0 -57
  1283. package/cosmos/consensus/module/v1/module.js +0 -87
  1284. package/cosmos/consensus/v1/query.d.ts +0 -109
  1285. package/cosmos/consensus/v1/query.js +0 -164
  1286. package/cosmos/consensus/v1/query.rpc.func.d.ts +0 -8
  1287. package/cosmos/consensus/v1/query.rpc.func.js +0 -18
  1288. package/cosmos/consensus/v1/query.rpc.react.d.ts +0 -8
  1289. package/cosmos/consensus/v1/query.rpc.react.js +0 -15
  1290. package/cosmos/consensus/v1/tx.d.ts +0 -136
  1291. package/cosmos/consensus/v1/tx.js +0 -216
  1292. package/cosmos/consensus/v1/tx.registry.d.ts +0 -23
  1293. package/cosmos/consensus/v1/tx.registry.js +0 -31
  1294. package/cosmos/consensus/v1/tx.rpc.func.d.ts +0 -11
  1295. package/cosmos/consensus/v1/tx.rpc.func.js +0 -17
  1296. package/cosmos/consensus/v1/tx.rpc.react.d.ts +0 -11
  1297. package/cosmos/consensus/v1/tx.rpc.react.js +0 -17
  1298. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +0 -117
  1299. package/cosmos/crypto/multisig/v1beta1/multisig.js +0 -191
  1300. package/cosmos/distribution/module/v1/module.d.ts +0 -59
  1301. package/cosmos/distribution/module/v1/module.js +0 -99
  1302. package/cosmos/distribution/v1beta1/distribution.d.ts +0 -742
  1303. package/cosmos/distribution/v1beta1/distribution.js +0 -1300
  1304. package/cosmos/distribution/v1beta1/genesis.d.ts +0 -616
  1305. package/cosmos/distribution/v1beta1/genesis.js +0 -982
  1306. package/cosmos/distribution/v1beta1/query.d.ts +0 -1195
  1307. package/cosmos/distribution/v1beta1/query.js +0 -1825
  1308. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +0 -72
  1309. package/cosmos/distribution/v1beta1/query.rpc.func.js +0 -136
  1310. package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +0 -72
  1311. package/cosmos/distribution/v1beta1/query.rpc.react.js +0 -106
  1312. package/cosmos/distribution/v1beta1/tx.d.ts +0 -805
  1313. package/cosmos/distribution/v1beta1/tx.js +0 -1270
  1314. package/cosmos/distribution/v1beta1/tx.registry.d.ts +0 -95
  1315. package/cosmos/distribution/v1beta1/tx.registry.js +0 -139
  1316. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +0 -65
  1317. package/cosmos/distribution/v1beta1/tx.rpc.func.js +0 -83
  1318. package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +0 -65
  1319. package/cosmos/distribution/v1beta1/tx.rpc.react.js +0 -83
  1320. package/cosmos/evidence/module/v1/module.d.ts +0 -49
  1321. package/cosmos/evidence/module/v1/module.js +0 -74
  1322. package/cosmos/evidence/v1beta1/evidence.d.ts +0 -84
  1323. package/cosmos/evidence/v1beta1/evidence.js +0 -126
  1324. package/cosmos/evidence/v1beta1/genesis.d.ts +0 -58
  1325. package/cosmos/evidence/v1beta1/genesis.js +0 -91
  1326. package/cosmos/evidence/v1beta1/query.d.ts +0 -254
  1327. package/cosmos/evidence/v1beta1/query.js +0 -379
  1328. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +0 -15
  1329. package/cosmos/evidence/v1beta1/query.rpc.func.js +0 -31
  1330. package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +0 -15
  1331. package/cosmos/evidence/v1beta1/query.rpc.react.js +0 -25
  1332. package/cosmos/evidence/v1beta1/tx.d.ts +0 -130
  1333. package/cosmos/evidence/v1beta1/tx.js +0 -186
  1334. package/cosmos/evidence/v1beta1/tx.registry.d.ts +0 -23
  1335. package/cosmos/evidence/v1beta1/tx.registry.js +0 -31
  1336. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +0 -9
  1337. package/cosmos/evidence/v1beta1/tx.rpc.func.js +0 -15
  1338. package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +0 -9
  1339. package/cosmos/evidence/v1beta1/tx.rpc.react.js +0 -15
  1340. package/cosmos/evm/feemarket/v1/events.d.ts +0 -120
  1341. package/cosmos/evm/feemarket/v1/events.js +0 -182
  1342. package/cosmos/evm/feemarket/v1/feemarket.d.ts +0 -115
  1343. package/cosmos/evm/feemarket/v1/feemarket.js +0 -160
  1344. package/cosmos/evm/feemarket/v1/genesis.d.ts +0 -68
  1345. package/cosmos/evm/feemarket/v1/genesis.js +0 -106
  1346. package/cosmos/evm/feemarket/v1/query.d.ts +0 -315
  1347. package/cosmos/evm/feemarket/v1/query.js +0 -473
  1348. package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +0 -22
  1349. package/cosmos/evm/feemarket/v1/query.rpc.func.js +0 -44
  1350. package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +0 -22
  1351. package/cosmos/evm/feemarket/v1/query.rpc.react.js +0 -35
  1352. package/cosmos/evm/feemarket/v1/tx.d.ts +0 -118
  1353. package/cosmos/evm/feemarket/v1/tx.js +0 -177
  1354. package/cosmos/evm/feemarket/v1/tx.registry.d.ts +0 -23
  1355. package/cosmos/evm/feemarket/v1/tx.registry.js +0 -31
  1356. package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +0 -10
  1357. package/cosmos/evm/feemarket/v1/tx.rpc.func.js +0 -16
  1358. package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +0 -10
  1359. package/cosmos/evm/feemarket/v1/tx.rpc.react.js +0 -16
  1360. package/cosmos/evm/vm/v1/events.d.ts +0 -286
  1361. package/cosmos/evm/vm/v1/events.js +0 -435
  1362. package/cosmos/evm/vm/v1/evm.d.ts +0 -1090
  1363. package/cosmos/evm/vm/v1/evm.js +0 -1617
  1364. package/cosmos/evm/vm/v1/genesis.d.ts +0 -143
  1365. package/cosmos/evm/vm/v1/genesis.js +0 -227
  1366. package/cosmos/evm/vm/v1/query.d.ts +0 -1773
  1367. package/cosmos/evm/vm/v1/query.js +0 -2680
  1368. package/cosmos/evm/vm/v1/query.rpc.func.d.ts +0 -108
  1369. package/cosmos/evm/vm/v1/query.rpc.func.js +0 -196
  1370. package/cosmos/evm/vm/v1/query.rpc.react.d.ts +0 -108
  1371. package/cosmos/evm/vm/v1/query.rpc.react.js +0 -153
  1372. package/cosmos/evm/vm/v1/tx.d.ts +0 -747
  1373. package/cosmos/evm/vm/v1/tx.js +0 -1132
  1374. package/cosmos/evm/vm/v1/tx.registry.d.ts +0 -35
  1375. package/cosmos/evm/vm/v1/tx.registry.js +0 -49
  1376. package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +0 -17
  1377. package/cosmos/evm/vm/v1/tx.rpc.func.js +0 -25
  1378. package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +0 -17
  1379. package/cosmos/evm/vm/v1/tx.rpc.react.js +0 -25
  1380. package/cosmos/feegrant/module/v1/module.d.ts +0 -49
  1381. package/cosmos/feegrant/module/v1/module.js +0 -74
  1382. package/cosmos/feegrant/v1beta1/feegrant.d.ts +0 -319
  1383. package/cosmos/feegrant/v1beta1/feegrant.js +0 -483
  1384. package/cosmos/feegrant/v1beta1/genesis.d.ts +0 -52
  1385. package/cosmos/feegrant/v1beta1/genesis.js +0 -97
  1386. package/cosmos/feegrant/v1beta1/query.d.ts +0 -374
  1387. package/cosmos/feegrant/v1beta1/query.js +0 -602
  1388. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +0 -24
  1389. package/cosmos/feegrant/v1beta1/query.rpc.func.js +0 -46
  1390. package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +0 -24
  1391. package/cosmos/feegrant/v1beta1/query.rpc.react.js +0 -37
  1392. package/cosmos/feegrant/v1beta1/tx.d.ts +0 -355
  1393. package/cosmos/feegrant/v1beta1/tx.js +0 -514
  1394. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +0 -47
  1395. package/cosmos/feegrant/v1beta1/tx.registry.js +0 -67
  1396. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +0 -26
  1397. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +0 -36
  1398. package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +0 -26
  1399. package/cosmos/feegrant/v1beta1/tx.rpc.react.js +0 -36
  1400. package/cosmos/gov/module/v1/module.d.ts +0 -67
  1401. package/cosmos/gov/module/v1/module.js +0 -99
  1402. package/cosmos/gov/v1/genesis.d.ts +0 -148
  1403. package/cosmos/gov/v1/genesis.js +0 -205
  1404. package/cosmos/gov/v1/gov.d.ts +0 -968
  1405. package/cosmos/gov/v1/gov.js +0 -1441
  1406. package/cosmos/gov/v1/query.d.ts +0 -1105
  1407. package/cosmos/gov/v1/query.js +0 -1716
  1408. package/cosmos/gov/v1/query.rpc.func.d.ts +0 -64
  1409. package/cosmos/gov/v1/query.rpc.func.js +0 -122
  1410. package/cosmos/gov/v1/query.rpc.react.d.ts +0 -64
  1411. package/cosmos/gov/v1/query.rpc.react.js +0 -95
  1412. package/cosmos/gov/v1/tx.d.ts +0 -950
  1413. package/cosmos/gov/v1/tx.js +0 -1406
  1414. package/cosmos/gov/v1/tx.registry.d.ts +0 -95
  1415. package/cosmos/gov/v1/tx.registry.js +0 -139
  1416. package/cosmos/gov/v1/tx.rpc.func.d.ts +0 -56
  1417. package/cosmos/gov/v1/tx.rpc.func.js +0 -74
  1418. package/cosmos/gov/v1/tx.rpc.react.d.ts +0 -56
  1419. package/cosmos/gov/v1/tx.rpc.react.js +0 -74
  1420. package/cosmos/gov/v1beta1/genesis.d.ts +0 -106
  1421. package/cosmos/gov/v1beta1/genesis.js +0 -180
  1422. package/cosmos/gov/v1beta1/gov.d.ts +0 -764
  1423. package/cosmos/gov/v1beta1/gov.js +0 -1214
  1424. package/cosmos/gov/v1beta1/query.d.ts +0 -979
  1425. package/cosmos/gov/v1beta1/query.js +0 -1550
  1426. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +0 -57
  1427. package/cosmos/gov/v1beta1/query.rpc.func.js +0 -109
  1428. package/cosmos/gov/v1beta1/query.rpc.react.d.ts +0 -57
  1429. package/cosmos/gov/v1beta1/query.rpc.react.js +0 -85
  1430. package/cosmos/gov/v1beta1/tx.d.ts +0 -510
  1431. package/cosmos/gov/v1beta1/tx.js +0 -781
  1432. package/cosmos/gov/v1beta1/tx.registry.d.ts +0 -59
  1433. package/cosmos/gov/v1beta1/tx.registry.js +0 -85
  1434. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +0 -31
  1435. package/cosmos/gov/v1beta1/tx.rpc.func.js +0 -43
  1436. package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +0 -31
  1437. package/cosmos/gov/v1beta1/tx.rpc.react.js +0 -43
  1438. package/cosmos/ics23/v1/proofs.d.ts +0 -1015
  1439. package/cosmos/ics23/v1/proofs.js +0 -1788
  1440. package/cosmos/mint/module/v1/module.d.ts +0 -59
  1441. package/cosmos/mint/module/v1/module.js +0 -99
  1442. package/cosmos/mint/v1beta1/genesis.d.ts +0 -66
  1443. package/cosmos/mint/v1beta1/genesis.js +0 -107
  1444. package/cosmos/mint/v1beta1/mint.d.ts +0 -160
  1445. package/cosmos/mint/v1beta1/mint.js +0 -243
  1446. package/cosmos/mint/v1beta1/query.d.ts +0 -318
  1447. package/cosmos/mint/v1beta1/query.js +0 -474
  1448. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +0 -22
  1449. package/cosmos/mint/v1beta1/query.rpc.func.js +0 -44
  1450. package/cosmos/mint/v1beta1/query.rpc.react.d.ts +0 -22
  1451. package/cosmos/mint/v1beta1/query.rpc.react.js +0 -35
  1452. package/cosmos/mint/v1beta1/tx.d.ts +0 -132
  1453. package/cosmos/mint/v1beta1/tx.js +0 -181
  1454. package/cosmos/mint/v1beta1/tx.registry.d.ts +0 -23
  1455. package/cosmos/mint/v1beta1/tx.registry.js +0 -31
  1456. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +0 -11
  1457. package/cosmos/mint/v1beta1/tx.rpc.func.js +0 -17
  1458. package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +0 -11
  1459. package/cosmos/mint/v1beta1/tx.rpc.react.js +0 -17
  1460. package/cosmos/msg/v1/msg.d.ts +0 -1
  1461. package/cosmos/msg/v1/msg.js +0 -2
  1462. package/cosmos/params/module/v1/module.d.ts +0 -49
  1463. package/cosmos/params/module/v1/module.js +0 -74
  1464. package/cosmos/params/v1beta1/params.d.ts +0 -111
  1465. package/cosmos/params/v1beta1/params.js +0 -230
  1466. package/cosmos/params/v1beta1/query.d.ts +0 -295
  1467. package/cosmos/params/v1beta1/query.js +0 -457
  1468. package/cosmos/params/v1beta1/query.rpc.func.d.ts +0 -18
  1469. package/cosmos/params/v1beta1/query.rpc.func.js +0 -34
  1470. package/cosmos/params/v1beta1/query.rpc.react.d.ts +0 -18
  1471. package/cosmos/params/v1beta1/query.rpc.react.js +0 -28
  1472. package/cosmos/query/v1/query.d.ts +0 -1
  1473. package/cosmos/query/v1/query.js +0 -2
  1474. package/cosmos/slashing/module/v1/module.d.ts +0 -57
  1475. package/cosmos/slashing/module/v1/module.js +0 -87
  1476. package/cosmos/slashing/v1beta1/genesis.d.ts +0 -270
  1477. package/cosmos/slashing/v1beta1/genesis.js +0 -425
  1478. package/cosmos/slashing/v1beta1/query.d.ts +0 -328
  1479. package/cosmos/slashing/v1beta1/query.js +0 -532
  1480. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +0 -22
  1481. package/cosmos/slashing/v1beta1/query.rpc.func.js +0 -44
  1482. package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +0 -22
  1483. package/cosmos/slashing/v1beta1/query.rpc.react.js +0 -35
  1484. package/cosmos/slashing/v1beta1/slashing.d.ts +0 -162
  1485. package/cosmos/slashing/v1beta1/slashing.js +0 -282
  1486. package/cosmos/slashing/v1beta1/tx.d.ts +0 -228
  1487. package/cosmos/slashing/v1beta1/tx.js +0 -334
  1488. package/cosmos/slashing/v1beta1/tx.registry.d.ts +0 -35
  1489. package/cosmos/slashing/v1beta1/tx.registry.js +0 -49
  1490. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +0 -20
  1491. package/cosmos/slashing/v1beta1/tx.rpc.func.js +0 -28
  1492. package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +0 -20
  1493. package/cosmos/slashing/v1beta1/tx.rpc.react.js +0 -28
  1494. package/cosmos/staking/module/v1/module.d.ts +0 -85
  1495. package/cosmos/staking/module/v1/module.js +0 -126
  1496. package/cosmos/staking/v1beta1/authz.d.ts +0 -162
  1497. package/cosmos/staking/v1beta1/authz.js +0 -284
  1498. package/cosmos/staking/v1beta1/genesis.d.ts +0 -181
  1499. package/cosmos/staking/v1beta1/genesis.js +0 -294
  1500. package/cosmos/staking/v1beta1/query.d.ts +0 -1710
  1501. package/cosmos/staking/v1beta1/query.js +0 -2684
  1502. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +0 -124
  1503. package/cosmos/staking/v1beta1/query.rpc.func.js +0 -212
  1504. package/cosmos/staking/v1beta1/query.rpc.react.d.ts +0 -124
  1505. package/cosmos/staking/v1beta1/query.rpc.react.js +0 -170
  1506. package/cosmos/staking/v1beta1/staking.d.ts +0 -1559
  1507. package/cosmos/staking/v1beta1/staking.js +0 -2563
  1508. package/cosmos/staking/v1beta1/tx.d.ts +0 -824
  1509. package/cosmos/staking/v1beta1/tx.js +0 -1413
  1510. package/cosmos/staking/v1beta1/tx.registry.d.ts +0 -95
  1511. package/cosmos/staking/v1beta1/tx.registry.js +0 -139
  1512. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +0 -58
  1513. package/cosmos/staking/v1beta1/tx.rpc.func.js +0 -76
  1514. package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +0 -58
  1515. package/cosmos/staking/v1beta1/tx.rpc.react.js +0 -76
  1516. package/cosmos/tx/config/v1/config.d.ts +0 -69
  1517. package/cosmos/tx/config/v1/config.js +0 -99
  1518. package/cosmos/tx/signing/v1beta1/signing.d.ts +0 -386
  1519. package/cosmos/tx/signing/v1beta1/signing.js +0 -620
  1520. package/cosmos/tx/v1beta1/service.d.ts +0 -1263
  1521. package/cosmos/tx/v1beta1/service.js +0 -1913
  1522. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +0 -74
  1523. package/cosmos/tx/v1beta1/service.rpc.func.js +0 -132
  1524. package/cosmos/tx/v1beta1/service.rpc.react.d.ts +0 -74
  1525. package/cosmos/tx/v1beta1/service.rpc.react.js +0 -105
  1526. package/cosmos/tx/v1beta1/tx.d.ts +0 -1126
  1527. package/cosmos/tx/v1beta1/tx.js +0 -1534
  1528. package/cosmos/upgrade/module/v1/module.d.ts +0 -57
  1529. package/cosmos/upgrade/module/v1/module.js +0 -87
  1530. package/cosmos/upgrade/v1beta1/query.d.ts +0 -591
  1531. package/cosmos/upgrade/v1beta1/query.js +0 -842
  1532. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +0 -46
  1533. package/cosmos/upgrade/v1beta1/query.rpc.func.js +0 -80
  1534. package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +0 -46
  1535. package/cosmos/upgrade/v1beta1/query.rpc.react.js +0 -65
  1536. package/cosmos/upgrade/v1beta1/tx.d.ts +0 -239
  1537. package/cosmos/upgrade/v1beta1/tx.js +0 -337
  1538. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +0 -35
  1539. package/cosmos/upgrade/v1beta1/tx.registry.js +0 -49
  1540. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +0 -20
  1541. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +0 -28
  1542. package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +0 -20
  1543. package/cosmos/upgrade/v1beta1/tx.rpc.react.js +0 -28
  1544. package/cosmos/upgrade/v1beta1/upgrade.d.ts +0 -343
  1545. package/cosmos/upgrade/v1beta1/upgrade.js +0 -459
  1546. package/cosmos_proto/bundle.d.ts +0 -1
  1547. package/cosmos_proto/bundle.js +0 -8
  1548. package/cosmos_proto/cosmos.d.ts +0 -186
  1549. package/cosmos_proto/cosmos.js +0 -252
  1550. package/cosmwasm/bundle.d.ts +0 -12
  1551. package/cosmwasm/bundle.js +0 -174
  1552. package/cosmwasm/wasm/v1/authz.d.ts +0 -701
  1553. package/cosmwasm/wasm/v1/authz.js +0 -1064
  1554. package/cosmwasm/wasm/v1/genesis.d.ts +0 -225
  1555. package/cosmwasm/wasm/v1/genesis.js +0 -494
  1556. package/cosmwasm/wasm/v1/ibc.d.ts +0 -238
  1557. package/cosmwasm/wasm/v1/ibc.js +0 -360
  1558. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +0 -1358
  1559. package/cosmwasm/wasm/v1/proposal_legacy.js +0 -1982
  1560. package/cosmwasm/wasm/v1/query.d.ts +0 -1730
  1561. package/cosmwasm/wasm/v1/query.js +0 -2803
  1562. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +0 -100
  1563. package/cosmwasm/wasm/v1/query.rpc.func.js +0 -188
  1564. package/cosmwasm/wasm/v1/query.rpc.react.d.ts +0 -100
  1565. package/cosmwasm/wasm/v1/query.rpc.react.js +0 -146
  1566. package/cosmwasm/wasm/v1/tx.d.ts +0 -2354
  1567. package/cosmwasm/wasm/v1/tx.js +0 -3485
  1568. package/cosmwasm/wasm/v1/tx.registry.d.ts +0 -215
  1569. package/cosmwasm/wasm/v1/tx.registry.js +0 -319
  1570. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +0 -146
  1571. package/cosmwasm/wasm/v1/tx.rpc.func.js +0 -184
  1572. package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +0 -146
  1573. package/cosmwasm/wasm/v1/tx.rpc.react.js +0 -184
  1574. package/cosmwasm/wasm/v1/types.d.ts +0 -559
  1575. package/cosmwasm/wasm/v1/types.js +0 -973
  1576. package/esm/amino/amino.js +0 -1
  1577. package/esm/binary.js +0 -365
  1578. package/esm/cosmos/app/runtime/v1alpha1/module.js +0 -306
  1579. package/esm/cosmos/app/v1alpha1/config.js +0 -326
  1580. package/esm/cosmos/app/v1alpha1/module.js +0 -300
  1581. package/esm/cosmos/app/v1alpha1/query.js +0 -161
  1582. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +0 -15
  1583. package/esm/cosmos/app/v1alpha1/query.rpc.react.js +0 -12
  1584. package/esm/cosmos/auth/module/v1/module.js +0 -215
  1585. package/esm/cosmos/auth/v1beta1/auth.js +0 -479
  1586. package/esm/cosmos/auth/v1beta1/genesis.js +0 -101
  1587. package/esm/cosmos/auth/v1beta1/query.js +0 -1724
  1588. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +0 -149
  1589. package/esm/cosmos/auth/v1beta1/query.rpc.react.js +0 -119
  1590. package/esm/cosmos/auth/v1beta1/tx.js +0 -178
  1591. package/esm/cosmos/auth/v1beta1/tx.registry.js +0 -28
  1592. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +0 -14
  1593. package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +0 -14
  1594. package/esm/cosmos/authz/module/v1/module.js +0 -71
  1595. package/esm/cosmos/authz/v1beta1/authz.js +0 -423
  1596. package/esm/cosmos/authz/v1beta1/event.js +0 -215
  1597. package/esm/cosmos/authz/v1beta1/genesis.js +0 -94
  1598. package/esm/cosmos/authz/v1beta1/query.js +0 -640
  1599. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +0 -45
  1600. package/esm/cosmos/authz/v1beta1/query.rpc.react.js +0 -36
  1601. package/esm/cosmos/authz/v1beta1/tx.js +0 -552
  1602. package/esm/cosmos/authz/v1beta1/tx.registry.js +0 -64
  1603. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +0 -35
  1604. package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +0 -35
  1605. package/esm/cosmos/autocli/v1/options.js +0 -893
  1606. package/esm/cosmos/autocli/v1/query.js +0 -257
  1607. package/esm/cosmos/autocli/v1/query.rpc.func.js +0 -15
  1608. package/esm/cosmos/autocli/v1/query.rpc.react.js +0 -12
  1609. package/esm/cosmos/bank/module/v1/module.js +0 -114
  1610. package/esm/cosmos/bank/v1beta1/authz.js +0 -114
  1611. package/esm/cosmos/bank/v1beta1/bank.js +0 -791
  1612. package/esm/cosmos/bank/v1beta1/genesis.js +0 -260
  1613. package/esm/cosmos/bank/v1beta1/query.js +0 -2598
  1614. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +0 -208
  1615. package/esm/cosmos/bank/v1beta1/query.rpc.react.js +0 -169
  1616. package/esm/cosmos/bank/v1beta1/tx.js +0 -737
  1617. package/esm/cosmos/bank/v1beta1/tx.registry.js +0 -82
  1618. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +0 -46
  1619. package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +0 -46
  1620. package/esm/cosmos/base/abci/v1beta1/abci.js +0 -1383
  1621. package/esm/cosmos/base/node/v1beta1/query.js +0 -393
  1622. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +0 -28
  1623. package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +0 -22
  1624. package/esm/cosmos/base/query/v1beta1/pagination.js +0 -240
  1625. package/esm/cosmos/base/reflection/v1beta1/reflection.js +0 -328
  1626. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +0 -30
  1627. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +0 -24
  1628. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +0 -2364
  1629. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +0 -82
  1630. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +0 -64
  1631. package/esm/cosmos/base/tendermint/v1beta1/query.js +0 -2045
  1632. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +0 -97
  1633. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +0 -76
  1634. package/esm/cosmos/base/tendermint/v1beta1/types.js +0 -380
  1635. package/esm/cosmos/base/v1beta1/coin.js +0 -366
  1636. package/esm/cosmos/bundle.js +0 -188
  1637. package/esm/cosmos/consensus/module/v1/module.js +0 -84
  1638. package/esm/cosmos/consensus/v1/query.js +0 -161
  1639. package/esm/cosmos/consensus/v1/query.rpc.func.js +0 -15
  1640. package/esm/cosmos/consensus/v1/query.rpc.react.js +0 -12
  1641. package/esm/cosmos/consensus/v1/tx.js +0 -213
  1642. package/esm/cosmos/consensus/v1/tx.registry.js +0 -28
  1643. package/esm/cosmos/consensus/v1/tx.rpc.func.js +0 -14
  1644. package/esm/cosmos/consensus/v1/tx.rpc.react.js +0 -14
  1645. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +0 -188
  1646. package/esm/cosmos/distribution/module/v1/module.js +0 -96
  1647. package/esm/cosmos/distribution/v1beta1/distribution.js +0 -1297
  1648. package/esm/cosmos/distribution/v1beta1/genesis.js +0 -979
  1649. package/esm/cosmos/distribution/v1beta1/query.js +0 -1822
  1650. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +0 -133
  1651. package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +0 -103
  1652. package/esm/cosmos/distribution/v1beta1/tx.js +0 -1267
  1653. package/esm/cosmos/distribution/v1beta1/tx.registry.js +0 -136
  1654. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +0 -80
  1655. package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +0 -80
  1656. package/esm/cosmos/evidence/module/v1/module.js +0 -71
  1657. package/esm/cosmos/evidence/v1beta1/evidence.js +0 -123
  1658. package/esm/cosmos/evidence/v1beta1/genesis.js +0 -88
  1659. package/esm/cosmos/evidence/v1beta1/query.js +0 -376
  1660. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +0 -28
  1661. package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +0 -22
  1662. package/esm/cosmos/evidence/v1beta1/tx.js +0 -183
  1663. package/esm/cosmos/evidence/v1beta1/tx.registry.js +0 -28
  1664. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +0 -12
  1665. package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +0 -12
  1666. package/esm/cosmos/evm/feemarket/v1/events.js +0 -179
  1667. package/esm/cosmos/evm/feemarket/v1/feemarket.js +0 -157
  1668. package/esm/cosmos/evm/feemarket/v1/genesis.js +0 -103
  1669. package/esm/cosmos/evm/feemarket/v1/query.js +0 -470
  1670. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +0 -41
  1671. package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +0 -32
  1672. package/esm/cosmos/evm/feemarket/v1/tx.js +0 -174
  1673. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +0 -28
  1674. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +0 -13
  1675. package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +0 -13
  1676. package/esm/cosmos/evm/vm/v1/events.js +0 -432
  1677. package/esm/cosmos/evm/vm/v1/evm.js +0 -1612
  1678. package/esm/cosmos/evm/vm/v1/genesis.js +0 -224
  1679. package/esm/cosmos/evm/vm/v1/query.js +0 -2677
  1680. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +0 -193
  1681. package/esm/cosmos/evm/vm/v1/query.rpc.react.js +0 -150
  1682. package/esm/cosmos/evm/vm/v1/tx.js +0 -1129
  1683. package/esm/cosmos/evm/vm/v1/tx.registry.js +0 -46
  1684. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +0 -22
  1685. package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +0 -22
  1686. package/esm/cosmos/feegrant/module/v1/module.js +0 -71
  1687. package/esm/cosmos/feegrant/v1beta1/feegrant.js +0 -480
  1688. package/esm/cosmos/feegrant/v1beta1/genesis.js +0 -94
  1689. package/esm/cosmos/feegrant/v1beta1/query.js +0 -599
  1690. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +0 -43
  1691. package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +0 -34
  1692. package/esm/cosmos/feegrant/v1beta1/tx.js +0 -511
  1693. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +0 -64
  1694. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +0 -33
  1695. package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +0 -33
  1696. package/esm/cosmos/gov/module/v1/module.js +0 -96
  1697. package/esm/cosmos/gov/v1/genesis.js +0 -202
  1698. package/esm/cosmos/gov/v1/gov.js +0 -1434
  1699. package/esm/cosmos/gov/v1/query.js +0 -1713
  1700. package/esm/cosmos/gov/v1/query.rpc.func.js +0 -119
  1701. package/esm/cosmos/gov/v1/query.rpc.react.js +0 -92
  1702. package/esm/cosmos/gov/v1/tx.js +0 -1403
  1703. package/esm/cosmos/gov/v1/tx.registry.js +0 -136
  1704. package/esm/cosmos/gov/v1/tx.rpc.func.js +0 -71
  1705. package/esm/cosmos/gov/v1/tx.rpc.react.js +0 -71
  1706. package/esm/cosmos/gov/v1beta1/genesis.js +0 -177
  1707. package/esm/cosmos/gov/v1beta1/gov.js +0 -1207
  1708. package/esm/cosmos/gov/v1beta1/query.js +0 -1547
  1709. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +0 -106
  1710. package/esm/cosmos/gov/v1beta1/query.rpc.react.js +0 -82
  1711. package/esm/cosmos/gov/v1beta1/tx.js +0 -778
  1712. package/esm/cosmos/gov/v1beta1/tx.registry.js +0 -82
  1713. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +0 -40
  1714. package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +0 -40
  1715. package/esm/cosmos/ics23/v1/proofs.js +0 -1781
  1716. package/esm/cosmos/mint/module/v1/module.js +0 -96
  1717. package/esm/cosmos/mint/v1beta1/genesis.js +0 -104
  1718. package/esm/cosmos/mint/v1beta1/mint.js +0 -240
  1719. package/esm/cosmos/mint/v1beta1/query.js +0 -471
  1720. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +0 -41
  1721. package/esm/cosmos/mint/v1beta1/query.rpc.react.js +0 -32
  1722. package/esm/cosmos/mint/v1beta1/tx.js +0 -178
  1723. package/esm/cosmos/mint/v1beta1/tx.registry.js +0 -28
  1724. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +0 -14
  1725. package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +0 -14
  1726. package/esm/cosmos/msg/v1/msg.js +0 -1
  1727. package/esm/cosmos/params/module/v1/module.js +0 -71
  1728. package/esm/cosmos/params/v1beta1/params.js +0 -227
  1729. package/esm/cosmos/params/v1beta1/query.js +0 -454
  1730. package/esm/cosmos/params/v1beta1/query.rpc.func.js +0 -31
  1731. package/esm/cosmos/params/v1beta1/query.rpc.react.js +0 -25
  1732. package/esm/cosmos/query/v1/query.js +0 -1
  1733. package/esm/cosmos/slashing/module/v1/module.js +0 -84
  1734. package/esm/cosmos/slashing/v1beta1/genesis.js +0 -422
  1735. package/esm/cosmos/slashing/v1beta1/query.js +0 -529
  1736. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +0 -41
  1737. package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +0 -32
  1738. package/esm/cosmos/slashing/v1beta1/slashing.js +0 -279
  1739. package/esm/cosmos/slashing/v1beta1/tx.js +0 -331
  1740. package/esm/cosmos/slashing/v1beta1/tx.registry.js +0 -46
  1741. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +0 -25
  1742. package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +0 -25
  1743. package/esm/cosmos/staking/module/v1/module.js +0 -123
  1744. package/esm/cosmos/staking/v1beta1/authz.js +0 -279
  1745. package/esm/cosmos/staking/v1beta1/genesis.js +0 -291
  1746. package/esm/cosmos/staking/v1beta1/query.js +0 -2681
  1747. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +0 -209
  1748. package/esm/cosmos/staking/v1beta1/query.rpc.react.js +0 -167
  1749. package/esm/cosmos/staking/v1beta1/staking.js +0 -2556
  1750. package/esm/cosmos/staking/v1beta1/tx.js +0 -1410
  1751. package/esm/cosmos/staking/v1beta1/tx.registry.js +0 -136
  1752. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +0 -73
  1753. package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +0 -73
  1754. package/esm/cosmos/tx/config/v1/config.js +0 -96
  1755. package/esm/cosmos/tx/signing/v1beta1/signing.js +0 -615
  1756. package/esm/cosmos/tx/v1beta1/service.js +0 -1906
  1757. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +0 -129
  1758. package/esm/cosmos/tx/v1beta1/service.rpc.react.js +0 -102
  1759. package/esm/cosmos/tx/v1beta1/tx.js +0 -1531
  1760. package/esm/cosmos/upgrade/module/v1/module.js +0 -84
  1761. package/esm/cosmos/upgrade/v1beta1/query.js +0 -839
  1762. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +0 -77
  1763. package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +0 -62
  1764. package/esm/cosmos/upgrade/v1beta1/tx.js +0 -334
  1765. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +0 -46
  1766. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +0 -25
  1767. package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +0 -25
  1768. package/esm/cosmos/upgrade/v1beta1/upgrade.js +0 -456
  1769. package/esm/cosmos_proto/bundle.js +0 -1
  1770. package/esm/cosmos_proto/cosmos.js +0 -247
  1771. package/esm/cosmwasm/bundle.js +0 -12
  1772. package/esm/cosmwasm/wasm/v1/authz.js +0 -1061
  1773. package/esm/cosmwasm/wasm/v1/genesis.js +0 -491
  1774. package/esm/cosmwasm/wasm/v1/ibc.js +0 -357
  1775. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +0 -1979
  1776. package/esm/cosmwasm/wasm/v1/query.js +0 -2800
  1777. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +0 -185
  1778. package/esm/cosmwasm/wasm/v1/query.rpc.react.js +0 -143
  1779. package/esm/cosmwasm/wasm/v1/tx.js +0 -3482
  1780. package/esm/cosmwasm/wasm/v1/tx.registry.js +0 -316
  1781. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +0 -181
  1782. package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +0 -181
  1783. package/esm/cosmwasm/wasm/v1/types.js +0 -966
  1784. package/esm/ethermint/bundle.js +0 -25
  1785. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +0 -157
  1786. package/esm/ethermint/evm/v1/events.js +0 -404
  1787. package/esm/ethermint/evm/v1/evm.js +0 -1256
  1788. package/esm/ethermint/evm/v1/genesis.js +0 -210
  1789. package/esm/ethermint/evm/v1/query.js +0 -2149
  1790. package/esm/ethermint/evm/v1/query.rpc.func.js +0 -162
  1791. package/esm/ethermint/evm/v1/query.rpc.react.js +0 -125
  1792. package/esm/ethermint/evm/v1/tx.js +0 -1084
  1793. package/esm/ethermint/evm/v1/tx.registry.js +0 -46
  1794. package/esm/ethermint/evm/v1/tx.rpc.func.js +0 -21
  1795. package/esm/ethermint/evm/v1/tx.rpc.react.js +0 -21
  1796. package/esm/ethermint/feemarket/v1/events.js +0 -165
  1797. package/esm/ethermint/feemarket/v1/feemarket.js +0 -157
  1798. package/esm/ethermint/feemarket/v1/genesis.js +0 -96
  1799. package/esm/ethermint/feemarket/v1/query.js +0 -427
  1800. package/esm/ethermint/feemarket/v1/query.rpc.func.js +0 -41
  1801. package/esm/ethermint/feemarket/v1/query.rpc.react.js +0 -32
  1802. package/esm/ethermint/feemarket/v1/tx.js +0 -167
  1803. package/esm/ethermint/feemarket/v1/tx.registry.js +0 -28
  1804. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +0 -12
  1805. package/esm/ethermint/feemarket/v1/tx.rpc.react.js +0 -12
  1806. package/esm/ethermint/types/v1/account.js +0 -98
  1807. package/esm/ethermint/types/v1/dynamic_fee.js +0 -77
  1808. package/esm/ethermint/types/v1/indexer.js +0 -149
  1809. package/esm/ethermint/types/v1/web3.js +0 -103
  1810. package/esm/extern.js +0 -40
  1811. package/esm/gogoproto/gogo.js +0 -1
  1812. package/esm/google/api/annotations.js +0 -1
  1813. package/esm/google/api/http.js +0 -644
  1814. package/esm/google/bundle.js +0 -5
  1815. package/esm/google/protobuf/any.js +0 -169
  1816. package/esm/google/protobuf/descriptor.js +0 -5678
  1817. package/esm/google/protobuf/duration.js +0 -140
  1818. package/esm/google/protobuf/timestamp.js +0 -168
  1819. package/esm/helper-func-types.js +0 -52
  1820. package/esm/helpers.js +0 -99
  1821. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +0 -85
  1822. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +0 -339
  1823. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +0 -28
  1824. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +0 -22
  1825. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +0 -596
  1826. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +0 -64
  1827. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +0 -29
  1828. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +0 -29
  1829. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +0 -599
  1830. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +0 -197
  1831. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +0 -161
  1832. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +0 -15
  1833. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +0 -12
  1834. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +0 -375
  1835. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +0 -46
  1836. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +0 -20
  1837. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +0 -20
  1838. package/esm/ibc/applications/interchain_accounts/v1/account.js +0 -105
  1839. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +0 -145
  1840. package/esm/ibc/applications/interchain_accounts/v1/packet.js +0 -234
  1841. package/esm/ibc/applications/transfer/v1/authz.js +0 -242
  1842. package/esm/ibc/applications/transfer/v1/denomtrace.js +0 -98
  1843. package/esm/ibc/applications/transfer/v1/genesis.js +0 -137
  1844. package/esm/ibc/applications/transfer/v1/packet.js +0 -134
  1845. package/esm/ibc/applications/transfer/v1/query.js +0 -1048
  1846. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +0 -80
  1847. package/esm/ibc/applications/transfer/v1/query.rpc.react.js +0 -62
  1848. package/esm/ibc/applications/transfer/v1/token.js +0 -300
  1849. package/esm/ibc/applications/transfer/v1/transfer.js +0 -99
  1850. package/esm/ibc/applications/transfer/v1/tx.js +0 -445
  1851. package/esm/ibc/applications/transfer/v1/tx.registry.js +0 -46
  1852. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +0 -20
  1853. package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +0 -20
  1854. package/esm/ibc/bundle.js +0 -94
  1855. package/esm/ibc/core/channel/v1/channel.js +0 -1120
  1856. package/esm/ibc/core/channel/v1/genesis.js +0 -306
  1857. package/esm/ibc/core/channel/v1/query.js +0 -3137
  1858. package/esm/ibc/core/channel/v1/query.rpc.func.js +0 -192
  1859. package/esm/ibc/core/channel/v1/query.rpc.react.js +0 -150
  1860. package/esm/ibc/core/channel/v1/tx.js +0 -2225
  1861. package/esm/ibc/core/channel/v1/tx.registry.js +0 -190
  1862. package/esm/ibc/core/channel/v1/tx.rpc.func.js +0 -93
  1863. package/esm/ibc/core/channel/v1/tx.rpc.react.js +0 -93
  1864. package/esm/ibc/core/channel/v2/genesis.js +0 -360
  1865. package/esm/ibc/core/channel/v2/packet.js +0 -508
  1866. package/esm/ibc/core/channel/v2/query.js +0 -1727
  1867. package/esm/ibc/core/channel/v2/query.rpc.func.js +0 -106
  1868. package/esm/ibc/core/channel/v2/query.rpc.react.js +0 -82
  1869. package/esm/ibc/core/channel/v2/tx.js +0 -901
  1870. package/esm/ibc/core/channel/v2/tx.registry.js +0 -82
  1871. package/esm/ibc/core/channel/v2/tx.rpc.func.js +0 -38
  1872. package/esm/ibc/core/channel/v2/tx.rpc.react.js +0 -38
  1873. package/esm/ibc/core/client/v1/client.js +0 -488
  1874. package/esm/ibc/core/client/v1/genesis.js +0 -364
  1875. package/esm/ibc/core/client/v1/query.js +0 -2095
  1876. package/esm/ibc/core/client/v1/query.rpc.func.js +0 -147
  1877. package/esm/ibc/core/client/v1/query.rpc.react.js +0 -114
  1878. package/esm/ibc/core/client/v1/tx.js +0 -1458
  1879. package/esm/ibc/core/client/v1/tx.registry.js +0 -154
  1880. package/esm/ibc/core/client/v1/tx.rpc.func.js +0 -74
  1881. package/esm/ibc/core/client/v1/tx.rpc.react.js +0 -74
  1882. package/esm/ibc/core/client/v2/config.js +0 -90
  1883. package/esm/ibc/core/client/v2/counterparty.js +0 -100
  1884. package/esm/ibc/core/client/v2/genesis.js +0 -194
  1885. package/esm/ibc/core/client/v2/query.js +0 -348
  1886. package/esm/ibc/core/client/v2/query.rpc.func.js +0 -28
  1887. package/esm/ibc/core/client/v2/query.rpc.react.js +0 -22
  1888. package/esm/ibc/core/client/v2/tx.js +0 -378
  1889. package/esm/ibc/core/client/v2/tx.registry.js +0 -46
  1890. package/esm/ibc/core/client/v2/tx.rpc.func.js +0 -20
  1891. package/esm/ibc/core/client/v2/tx.rpc.react.js +0 -20
  1892. package/esm/ibc/core/commitment/v1/commitment.js +0 -268
  1893. package/esm/ibc/core/commitment/v2/commitment.js +0 -118
  1894. package/esm/ibc/core/connection/v1/connection.js +0 -833
  1895. package/esm/ibc/core/connection/v1/genesis.js +0 -135
  1896. package/esm/ibc/core/connection/v1/query.js +0 -1202
  1897. package/esm/ibc/core/connection/v1/query.rpc.func.js +0 -83
  1898. package/esm/ibc/core/connection/v1/query.rpc.react.js +0 -65
  1899. package/esm/ibc/core/connection/v1/tx.js +0 -1168
  1900. package/esm/ibc/core/connection/v1/tx.registry.js +0 -100
  1901. package/esm/ibc/core/connection/v1/tx.rpc.func.js +0 -49
  1902. package/esm/ibc/core/connection/v1/tx.rpc.react.js +0 -49
  1903. package/esm/ibc/core/types/v1/genesis.js +0 -147
  1904. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +0 -1797
  1905. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +0 -900
  1906. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +0 -685
  1907. package/esm/ibc/lightclients/wasm/v1/genesis.js +0 -177
  1908. package/esm/ibc/lightclients/wasm/v1/query.js +0 -361
  1909. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +0 -28
  1910. package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +0 -22
  1911. package/esm/ibc/lightclients/wasm/v1/tx.js +0 -534
  1912. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +0 -64
  1913. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +0 -29
  1914. package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +0 -29
  1915. package/esm/ibc/lightclients/wasm/v1/wasm.js +0 -372
  1916. package/esm/index.js +0 -21
  1917. package/esm/react-query.js +0 -90
  1918. package/esm/registry.js +0 -162
  1919. package/esm/tendermint/abci/types.js +0 -5622
  1920. package/esm/tendermint/bundle.js +0 -10
  1921. package/esm/tendermint/crypto/keys.js +0 -90
  1922. package/esm/tendermint/crypto/proof.js +0 -494
  1923. package/esm/tendermint/p2p/types.js +0 -453
  1924. package/esm/tendermint/types/block.js +0 -123
  1925. package/esm/tendermint/types/evidence.js +0 -444
  1926. package/esm/tendermint/types/params.js +0 -647
  1927. package/esm/tendermint/types/types.js +0 -1897
  1928. package/esm/tendermint/types/validator.js +0 -367
  1929. package/esm/tendermint/version/types.js +0 -181
  1930. package/esm/types.js +0 -6
  1931. package/esm/utf8.js +0 -136
  1932. package/esm/varint.js +0 -407
  1933. package/esm/xpla/bundle.js +0 -28
  1934. package/esm/xpla/burn/v1beta1/burn.js +0 -111
  1935. package/esm/xpla/burn/v1beta1/genesis.js +0 -87
  1936. package/esm/xpla/burn/v1beta1/query.js +0 -327
  1937. package/esm/xpla/burn/v1beta1/query.rpc.func.js +0 -28
  1938. package/esm/xpla/burn/v1beta1/query.rpc.react.js +0 -22
  1939. package/esm/xpla/burn/v1beta1/tx.js +0 -169
  1940. package/esm/xpla/burn/v1beta1/tx.registry.js +0 -28
  1941. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +0 -11
  1942. package/esm/xpla/burn/v1beta1/tx.rpc.react.js +0 -11
  1943. package/esm/xpla/reward/v1beta1/genesis.js +0 -84
  1944. package/esm/xpla/reward/v1beta1/query.js +0 -297
  1945. package/esm/xpla/reward/v1beta1/query.rpc.func.js +0 -28
  1946. package/esm/xpla/reward/v1beta1/query.rpc.react.js +0 -22
  1947. package/esm/xpla/reward/v1beta1/reward.js +0 -133
  1948. package/esm/xpla/reward/v1beta1/tx.js +0 -337
  1949. package/esm/xpla/reward/v1beta1/tx.registry.js +0 -46
  1950. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +0 -23
  1951. package/esm/xpla/reward/v1beta1/tx.rpc.react.js +0 -23
  1952. package/esm/xpla/volunteer/v1beta1/genesis.js +0 -87
  1953. package/esm/xpla/volunteer/v1beta1/proposal.js +0 -568
  1954. package/esm/xpla/volunteer/v1beta1/query.js +0 -143
  1955. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +0 -15
  1956. package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +0 -12
  1957. package/esm/xpla/volunteer/v1beta1/tx.js +0 -379
  1958. package/esm/xpla/volunteer/v1beta1/tx.registry.js +0 -46
  1959. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +0 -21
  1960. package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +0 -21
  1961. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +0 -89
  1962. package/ethermint/bundle.d.ts +0 -25
  1963. package/ethermint/bundle.js +0 -142
  1964. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +0 -117
  1965. package/ethermint/crypto/v1/ethsecp256k1/keys.js +0 -160
  1966. package/ethermint/evm/v1/events.d.ts +0 -278
  1967. package/ethermint/evm/v1/events.js +0 -407
  1968. package/ethermint/evm/v1/evm.d.ts +0 -862
  1969. package/ethermint/evm/v1/evm.js +0 -1259
  1970. package/ethermint/evm/v1/genesis.d.ts +0 -139
  1971. package/ethermint/evm/v1/genesis.js +0 -213
  1972. package/ethermint/evm/v1/query.d.ts +0 -1484
  1973. package/ethermint/evm/v1/query.js +0 -2152
  1974. package/ethermint/evm/v1/query.rpc.func.d.ts +0 -89
  1975. package/ethermint/evm/v1/query.rpc.func.js +0 -165
  1976. package/ethermint/evm/v1/query.rpc.react.d.ts +0 -89
  1977. package/ethermint/evm/v1/query.rpc.react.js +0 -128
  1978. package/ethermint/evm/v1/tx.d.ts +0 -735
  1979. package/ethermint/evm/v1/tx.js +0 -1087
  1980. package/ethermint/evm/v1/tx.registry.d.ts +0 -35
  1981. package/ethermint/evm/v1/tx.registry.js +0 -49
  1982. package/ethermint/evm/v1/tx.rpc.func.d.ts +0 -16
  1983. package/ethermint/evm/v1/tx.rpc.func.js +0 -24
  1984. package/ethermint/evm/v1/tx.rpc.react.d.ts +0 -16
  1985. package/ethermint/evm/v1/tx.rpc.react.js +0 -24
  1986. package/ethermint/feemarket/v1/events.d.ts +0 -116
  1987. package/ethermint/feemarket/v1/events.js +0 -168
  1988. package/ethermint/feemarket/v1/feemarket.d.ts +0 -111
  1989. package/ethermint/feemarket/v1/feemarket.js +0 -160
  1990. package/ethermint/feemarket/v1/genesis.d.ts +0 -66
  1991. package/ethermint/feemarket/v1/genesis.js +0 -99
  1992. package/ethermint/feemarket/v1/query.d.ts +0 -303
  1993. package/ethermint/feemarket/v1/query.js +0 -430
  1994. package/ethermint/feemarket/v1/query.rpc.func.d.ts +0 -22
  1995. package/ethermint/feemarket/v1/query.rpc.func.js +0 -44
  1996. package/ethermint/feemarket/v1/query.rpc.react.d.ts +0 -22
  1997. package/ethermint/feemarket/v1/query.rpc.react.js +0 -35
  1998. package/ethermint/feemarket/v1/tx.d.ts +0 -116
  1999. package/ethermint/feemarket/v1/tx.js +0 -170
  2000. package/ethermint/feemarket/v1/tx.registry.d.ts +0 -23
  2001. package/ethermint/feemarket/v1/tx.registry.js +0 -31
  2002. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +0 -9
  2003. package/ethermint/feemarket/v1/tx.rpc.func.js +0 -15
  2004. package/ethermint/feemarket/v1/tx.rpc.react.d.ts +0 -9
  2005. package/ethermint/feemarket/v1/tx.rpc.react.js +0 -15
  2006. package/ethermint/types/v1/account.d.ts +0 -67
  2007. package/ethermint/types/v1/account.js +0 -101
  2008. package/ethermint/types/v1/dynamic_fee.d.ts +0 -55
  2009. package/ethermint/types/v1/dynamic_fee.js +0 -80
  2010. package/ethermint/types/v1/indexer.d.ts +0 -109
  2011. package/ethermint/types/v1/indexer.js +0 -152
  2012. package/ethermint/types/v1/web3.d.ts +0 -80
  2013. package/ethermint/types/v1/web3.js +0 -106
  2014. package/extern.d.ts +0 -11
  2015. package/extern.js +0 -46
  2016. package/gogoproto/gogo.d.ts +0 -1
  2017. package/gogoproto/gogo.js +0 -2
  2018. package/google/api/annotations.d.ts +0 -1
  2019. package/google/api/annotations.js +0 -2
  2020. package/google/api/http.d.ts +0 -1096
  2021. package/google/api/http.js +0 -647
  2022. package/google/bundle.d.ts +0 -5
  2023. package/google/bundle.js +0 -21
  2024. package/google/protobuf/any.d.ts +0 -369
  2025. package/google/protobuf/any.js +0 -172
  2026. package/google/protobuf/descriptor.d.ts +0 -3699
  2027. package/google/protobuf/descriptor.js +0 -5722
  2028. package/google/protobuf/duration.d.ts +0 -232
  2029. package/google/protobuf/duration.js +0 -143
  2030. package/google/protobuf/timestamp.d.ts +0 -323
  2031. package/google/protobuf/timestamp.js +0 -171
  2032. package/helper-func-types.d.ts +0 -40
  2033. package/helper-func-types.js +0 -56
  2034. package/helpers.d.ts +0 -80
  2035. package/helpers.js +0 -114
  2036. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +0 -60
  2037. package/ibc/applications/interchain_accounts/controller/v1/controller.js +0 -88
  2038. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +0 -205
  2039. package/ibc/applications/interchain_accounts/controller/v1/query.js +0 -342
  2040. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +0 -15
  2041. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +0 -31
  2042. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +0 -15
  2043. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +0 -25
  2044. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +0 -337
  2045. package/ibc/applications/interchain_accounts/controller/v1/tx.js +0 -599
  2046. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +0 -47
  2047. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +0 -67
  2048. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +0 -22
  2049. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +0 -32
  2050. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +0 -22
  2051. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +0 -32
  2052. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +0 -278
  2053. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +0 -602
  2054. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +0 -138
  2055. package/ibc/applications/interchain_accounts/host/v1/host.js +0 -200
  2056. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +0 -105
  2057. package/ibc/applications/interchain_accounts/host/v1/query.js +0 -164
  2058. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +0 -8
  2059. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +0 -18
  2060. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +0 -8
  2061. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +0 -15
  2062. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +0 -243
  2063. package/ibc/applications/interchain_accounts/host/v1/tx.js +0 -378
  2064. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +0 -35
  2065. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +0 -49
  2066. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +0 -15
  2067. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +0 -23
  2068. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +0 -15
  2069. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +0 -23
  2070. package/ibc/applications/interchain_accounts/v1/account.d.ts +0 -54
  2071. package/ibc/applications/interchain_accounts/v1/account.js +0 -108
  2072. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +0 -102
  2073. package/ibc/applications/interchain_accounts/v1/metadata.js +0 -148
  2074. package/ibc/applications/interchain_accounts/v1/packet.d.ts +0 -119
  2075. package/ibc/applications/interchain_accounts/v1/packet.js +0 -239
  2076. package/ibc/applications/transfer/v1/authz.d.ts +0 -150
  2077. package/ibc/applications/transfer/v1/authz.js +0 -245
  2078. package/ibc/applications/transfer/v1/denomtrace.d.ts +0 -73
  2079. package/ibc/applications/transfer/v1/denomtrace.js +0 -101
  2080. package/ibc/applications/transfer/v1/genesis.d.ts +0 -68
  2081. package/ibc/applications/transfer/v1/genesis.js +0 -140
  2082. package/ibc/applications/transfer/v1/packet.d.ts +0 -95
  2083. package/ibc/applications/transfer/v1/packet.js +0 -137
  2084. package/ibc/applications/transfer/v1/query.d.ts +0 -680
  2085. package/ibc/applications/transfer/v1/query.js +0 -1051
  2086. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +0 -43
  2087. package/ibc/applications/transfer/v1/query.rpc.func.js +0 -83
  2088. package/ibc/applications/transfer/v1/query.rpc.react.d.ts +0 -43
  2089. package/ibc/applications/transfer/v1/query.rpc.react.js +0 -65
  2090. package/ibc/applications/transfer/v1/token.d.ts +0 -179
  2091. package/ibc/applications/transfer/v1/token.js +0 -303
  2092. package/ibc/applications/transfer/v1/transfer.d.ts +0 -78
  2093. package/ibc/applications/transfer/v1/transfer.js +0 -102
  2094. package/ibc/applications/transfer/v1/tx.d.ts +0 -309
  2095. package/ibc/applications/transfer/v1/tx.js +0 -448
  2096. package/ibc/applications/transfer/v1/tx.registry.d.ts +0 -35
  2097. package/ibc/applications/transfer/v1/tx.registry.js +0 -49
  2098. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +0 -15
  2099. package/ibc/applications/transfer/v1/tx.rpc.func.js +0 -23
  2100. package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +0 -15
  2101. package/ibc/applications/transfer/v1/tx.rpc.react.js +0 -23
  2102. package/ibc/bundle.d.ts +0 -94
  2103. package/ibc/bundle.js +0 -540
  2104. package/ibc/core/channel/v1/channel.d.ts +0 -729
  2105. package/ibc/core/channel/v1/channel.js +0 -1127
  2106. package/ibc/core/channel/v1/genesis.d.ts +0 -128
  2107. package/ibc/core/channel/v1/genesis.js +0 -309
  2108. package/ibc/core/channel/v1/query.d.ts +0 -2021
  2109. package/ibc/core/channel/v1/query.js +0 -3140
  2110. package/ibc/core/channel/v1/query.rpc.func.d.ts +0 -107
  2111. package/ibc/core/channel/v1/query.rpc.func.js +0 -195
  2112. package/ibc/core/channel/v1/query.rpc.react.d.ts +0 -107
  2113. package/ibc/core/channel/v1/query.rpc.react.js +0 -153
  2114. package/ibc/core/channel/v1/tx.d.ts +0 -1116
  2115. package/ibc/core/channel/v1/tx.js +0 -2230
  2116. package/ibc/core/channel/v1/tx.registry.d.ts +0 -131
  2117. package/ibc/core/channel/v1/tx.registry.js +0 -193
  2118. package/ibc/core/channel/v1/tx.rpc.func.d.ts +0 -72
  2119. package/ibc/core/channel/v1/tx.rpc.func.js +0 -96
  2120. package/ibc/core/channel/v1/tx.rpc.react.d.ts +0 -72
  2121. package/ibc/core/channel/v1/tx.rpc.react.js +0 -96
  2122. package/ibc/core/channel/v2/genesis.d.ts +0 -202
  2123. package/ibc/core/channel/v2/genesis.js +0 -363
  2124. package/ibc/core/channel/v2/packet.d.ts +0 -322
  2125. package/ibc/core/channel/v2/packet.js +0 -513
  2126. package/ibc/core/channel/v2/query.d.ts +0 -1067
  2127. package/ibc/core/channel/v2/query.js +0 -1730
  2128. package/ibc/core/channel/v2/query.rpc.func.d.ts +0 -57
  2129. package/ibc/core/channel/v2/query.rpc.func.js +0 -109
  2130. package/ibc/core/channel/v2/query.rpc.react.d.ts +0 -57
  2131. package/ibc/core/channel/v2/query.rpc.react.js +0 -85
  2132. package/ibc/core/channel/v2/tx.d.ts +0 -437
  2133. package/ibc/core/channel/v2/tx.js +0 -906
  2134. package/ibc/core/channel/v2/tx.registry.d.ts +0 -59
  2135. package/ibc/core/channel/v2/tx.registry.js +0 -85
  2136. package/ibc/core/channel/v2/tx.rpc.func.d.ts +0 -29
  2137. package/ibc/core/channel/v2/tx.rpc.func.js +0 -41
  2138. package/ibc/core/channel/v2/tx.rpc.react.d.ts +0 -29
  2139. package/ibc/core/channel/v2/tx.rpc.react.js +0 -41
  2140. package/ibc/core/client/v1/client.d.ts +0 -359
  2141. package/ibc/core/client/v1/client.js +0 -491
  2142. package/ibc/core/client/v1/genesis.d.ts +0 -216
  2143. package/ibc/core/client/v1/genesis.js +0 -367
  2144. package/ibc/core/client/v1/query.d.ts +0 -1398
  2145. package/ibc/core/client/v1/query.js +0 -2098
  2146. package/ibc/core/client/v1/query.rpc.func.d.ts +0 -80
  2147. package/ibc/core/client/v1/query.rpc.func.js +0 -150
  2148. package/ibc/core/client/v1/query.rpc.react.d.ts +0 -80
  2149. package/ibc/core/client/v1/query.rpc.react.js +0 -117
  2150. package/ibc/core/client/v1/tx.d.ts +0 -995
  2151. package/ibc/core/client/v1/tx.js +0 -1461
  2152. package/ibc/core/client/v1/tx.registry.d.ts +0 -107
  2153. package/ibc/core/client/v1/tx.registry.js +0 -157
  2154. package/ibc/core/client/v1/tx.rpc.func.d.ts +0 -57
  2155. package/ibc/core/client/v1/tx.rpc.func.js +0 -77
  2156. package/ibc/core/client/v1/tx.rpc.react.d.ts +0 -57
  2157. package/ibc/core/client/v1/tx.rpc.react.js +0 -77
  2158. package/ibc/core/client/v2/config.d.ts +0 -66
  2159. package/ibc/core/client/v2/config.js +0 -93
  2160. package/ibc/core/client/v2/counterparty.d.ts +0 -65
  2161. package/ibc/core/client/v2/counterparty.js +0 -103
  2162. package/ibc/core/client/v2/genesis.d.ts +0 -121
  2163. package/ibc/core/client/v2/genesis.js +0 -197
  2164. package/ibc/core/client/v2/query.d.ts +0 -218
  2165. package/ibc/core/client/v2/query.js +0 -351
  2166. package/ibc/core/client/v2/query.rpc.func.d.ts +0 -15
  2167. package/ibc/core/client/v2/query.rpc.func.js +0 -31
  2168. package/ibc/core/client/v2/query.rpc.react.d.ts +0 -15
  2169. package/ibc/core/client/v2/query.rpc.react.js +0 -25
  2170. package/ibc/core/client/v2/tx.d.ts +0 -251
  2171. package/ibc/core/client/v2/tx.js +0 -381
  2172. package/ibc/core/client/v2/tx.registry.d.ts +0 -35
  2173. package/ibc/core/client/v2/tx.registry.js +0 -49
  2174. package/ibc/core/client/v2/tx.rpc.func.d.ts +0 -15
  2175. package/ibc/core/client/v2/tx.rpc.func.js +0 -23
  2176. package/ibc/core/client/v2/tx.rpc.react.d.ts +0 -15
  2177. package/ibc/core/client/v2/tx.rpc.react.js +0 -23
  2178. package/ibc/core/commitment/v1/commitment.d.ts +0 -171
  2179. package/ibc/core/commitment/v1/commitment.js +0 -271
  2180. package/ibc/core/commitment/v2/commitment.d.ts +0 -141
  2181. package/ibc/core/commitment/v2/commitment.js +0 -121
  2182. package/ibc/core/connection/v1/connection.d.ts +0 -544
  2183. package/ibc/core/connection/v1/connection.js +0 -838
  2184. package/ibc/core/connection/v1/genesis.d.ts +0 -64
  2185. package/ibc/core/connection/v1/genesis.js +0 -138
  2186. package/ibc/core/connection/v1/query.d.ts +0 -777
  2187. package/ibc/core/connection/v1/query.js +0 -1205
  2188. package/ibc/core/connection/v1/query.rpc.func.d.ts +0 -46
  2189. package/ibc/core/connection/v1/query.rpc.func.js +0 -86
  2190. package/ibc/core/connection/v1/query.rpc.react.d.ts +0 -46
  2191. package/ibc/core/connection/v1/query.rpc.react.js +0 -68
  2192. package/ibc/core/connection/v1/tx.d.ts +0 -689
  2193. package/ibc/core/connection/v1/tx.js +0 -1171
  2194. package/ibc/core/connection/v1/tx.registry.d.ts +0 -71
  2195. package/ibc/core/connection/v1/tx.registry.js +0 -103
  2196. package/ibc/core/connection/v1/tx.rpc.func.d.ts +0 -38
  2197. package/ibc/core/connection/v1/tx.rpc.func.js +0 -52
  2198. package/ibc/core/connection/v1/tx.rpc.react.d.ts +0 -38
  2199. package/ibc/core/connection/v1/tx.rpc.react.js +0 -52
  2200. package/ibc/core/types/v1/genesis.d.ts +0 -99
  2201. package/ibc/core/types/v1/genesis.js +0 -150
  2202. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +0 -980
  2203. package/ibc/lightclients/solomachine/v2/solomachine.js +0 -1802
  2204. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +0 -519
  2205. package/ibc/lightclients/solomachine/v3/solomachine.js +0 -903
  2206. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +0 -425
  2207. package/ibc/lightclients/tendermint/v1/tendermint.js +0 -688
  2208. package/ibc/lightclients/wasm/v1/genesis.d.ts +0 -112
  2209. package/ibc/lightclients/wasm/v1/genesis.js +0 -180
  2210. package/ibc/lightclients/wasm/v1/query.d.ts +0 -225
  2211. package/ibc/lightclients/wasm/v1/query.js +0 -364
  2212. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +0 -15
  2213. package/ibc/lightclients/wasm/v1/query.rpc.func.js +0 -31
  2214. package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +0 -15
  2215. package/ibc/lightclients/wasm/v1/query.rpc.react.js +0 -25
  2216. package/ibc/lightclients/wasm/v1/tx.d.ts +0 -356
  2217. package/ibc/lightclients/wasm/v1/tx.js +0 -537
  2218. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +0 -47
  2219. package/ibc/lightclients/wasm/v1/tx.registry.js +0 -67
  2220. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +0 -22
  2221. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +0 -32
  2222. package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +0 -22
  2223. package/ibc/lightclients/wasm/v1/tx.rpc.react.js +0 -32
  2224. package/ibc/lightclients/wasm/v1/wasm.d.ts +0 -231
  2225. package/ibc/lightclients/wasm/v1/wasm.js +0 -375
  2226. package/index.d.ts +0 -21
  2227. package/index.js +0 -37
  2228. package/react-query.d.ts +0 -49
  2229. package/react-query.js +0 -98
  2230. package/registry.d.ts +0 -35
  2231. package/registry.js +0 -166
  2232. package/tendermint/abci/types.d.ts +0 -2763
  2233. package/tendermint/abci/types.js +0 -5638
  2234. package/tendermint/bundle.d.ts +0 -10
  2235. package/tendermint/bundle.js +0 -115
  2236. package/tendermint/crypto/keys.d.ts +0 -51
  2237. package/tendermint/crypto/keys.js +0 -93
  2238. package/tendermint/crypto/proof.d.ts +0 -262
  2239. package/tendermint/crypto/proof.js +0 -497
  2240. package/tendermint/p2p/types.d.ts +0 -202
  2241. package/tendermint/p2p/types.js +0 -456
  2242. package/tendermint/types/block.d.ts +0 -54
  2243. package/tendermint/types/block.js +0 -126
  2244. package/tendermint/types/evidence.d.ts +0 -204
  2245. package/tendermint/types/evidence.js +0 -447
  2246. package/tendermint/types/params.d.ts +0 -434
  2247. package/tendermint/types/params.js +0 -650
  2248. package/tendermint/types/types.d.ts +0 -940
  2249. package/tendermint/types/types.js +0 -1902
  2250. package/tendermint/types/validator.d.ts +0 -161
  2251. package/tendermint/types/validator.js +0 -372
  2252. package/tendermint/version/types.d.ts +0 -112
  2253. package/tendermint/version/types.js +0 -184
  2254. package/types.d.ts +0 -74
  2255. package/types.js +0 -7
  2256. package/utf8.d.ts +0 -27
  2257. package/utf8.js +0 -140
  2258. package/varint.d.ts +0 -105
  2259. package/varint.js +0 -425
  2260. package/xpla/bundle.d.ts +0 -28
  2261. package/xpla/bundle.js +0 -71
  2262. package/xpla/burn/v1beta1/burn.d.ts +0 -54
  2263. package/xpla/burn/v1beta1/burn.js +0 -114
  2264. package/xpla/burn/v1beta1/genesis.d.ts +0 -56
  2265. package/xpla/burn/v1beta1/genesis.js +0 -90
  2266. package/xpla/burn/v1beta1/query.d.ts +0 -204
  2267. package/xpla/burn/v1beta1/query.js +0 -330
  2268. package/xpla/burn/v1beta1/query.rpc.func.d.ts +0 -15
  2269. package/xpla/burn/v1beta1/query.rpc.func.js +0 -31
  2270. package/xpla/burn/v1beta1/query.rpc.react.d.ts +0 -15
  2271. package/xpla/burn/v1beta1/query.rpc.react.js +0 -25
  2272. package/xpla/burn/v1beta1/tx.d.ts +0 -105
  2273. package/xpla/burn/v1beta1/tx.js +0 -172
  2274. package/xpla/burn/v1beta1/tx.registry.d.ts +0 -23
  2275. package/xpla/burn/v1beta1/tx.registry.js +0 -31
  2276. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +0 -8
  2277. package/xpla/burn/v1beta1/tx.rpc.func.js +0 -14
  2278. package/xpla/burn/v1beta1/tx.rpc.react.d.ts +0 -8
  2279. package/xpla/burn/v1beta1/tx.rpc.react.js +0 -14
  2280. package/xpla/reward/v1beta1/genesis.d.ts +0 -56
  2281. package/xpla/reward/v1beta1/genesis.js +0 -87
  2282. package/xpla/reward/v1beta1/query.d.ts +0 -206
  2283. package/xpla/reward/v1beta1/query.js +0 -300
  2284. package/xpla/reward/v1beta1/query.rpc.func.d.ts +0 -15
  2285. package/xpla/reward/v1beta1/query.rpc.func.js +0 -31
  2286. package/xpla/reward/v1beta1/query.rpc.react.d.ts +0 -15
  2287. package/xpla/reward/v1beta1/query.rpc.react.js +0 -25
  2288. package/xpla/reward/v1beta1/reward.d.ts +0 -59
  2289. package/xpla/reward/v1beta1/reward.js +0 -136
  2290. package/xpla/reward/v1beta1/tx.d.ts +0 -222
  2291. package/xpla/reward/v1beta1/tx.js +0 -340
  2292. package/xpla/reward/v1beta1/tx.registry.d.ts +0 -35
  2293. package/xpla/reward/v1beta1/tx.registry.js +0 -49
  2294. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +0 -18
  2295. package/xpla/reward/v1beta1/tx.rpc.func.js +0 -26
  2296. package/xpla/reward/v1beta1/tx.rpc.react.d.ts +0 -18
  2297. package/xpla/reward/v1beta1/tx.rpc.react.js +0 -26
  2298. package/xpla/volunteer/v1beta1/genesis.d.ts +0 -50
  2299. package/xpla/volunteer/v1beta1/genesis.js +0 -90
  2300. package/xpla/volunteer/v1beta1/proposal.d.ts +0 -255
  2301. package/xpla/volunteer/v1beta1/proposal.js +0 -571
  2302. package/xpla/volunteer/v1beta1/query.d.ts +0 -94
  2303. package/xpla/volunteer/v1beta1/query.js +0 -146
  2304. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +0 -8
  2305. package/xpla/volunteer/v1beta1/query.rpc.func.js +0 -18
  2306. package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +0 -8
  2307. package/xpla/volunteer/v1beta1/query.rpc.react.js +0 -15
  2308. package/xpla/volunteer/v1beta1/tx.d.ts +0 -232
  2309. package/xpla/volunteer/v1beta1/tx.js +0 -382
  2310. package/xpla/volunteer/v1beta1/tx.registry.d.ts +0 -35
  2311. package/xpla/volunteer/v1beta1/tx.registry.js +0 -49
  2312. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +0 -16
  2313. package/xpla/volunteer/v1beta1/tx.rpc.func.js +0 -24
  2314. package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +0 -16
  2315. package/xpla/volunteer/v1beta1/tx.rpc.react.js +0 -24
  2316. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +0 -63
  2317. package/xpla/volunteer/v1beta1/volunteervalidator.js +0 -92
@@ -1,3699 +0,0 @@
1
- import { BinaryReader, BinaryWriter } from "../../binary";
2
- import { DeepPartial } from "../../helpers";
3
- /** The full set of known editions. */
4
- export declare enum Edition {
5
- /** EDITION_UNKNOWN - A placeholder for an unknown edition value. */
6
- EDITION_UNKNOWN = 0,
7
- /**
8
- * EDITION_LEGACY - A placeholder edition for specifying default behaviors *before* a feature
9
- * was first introduced. This is effectively an "infinite past".
10
- */
11
- EDITION_LEGACY = 900,
12
- /**
13
- * EDITION_PROTO2 - Legacy syntax "editions". These pre-date editions, but behave much like
14
- * distinct editions. These can't be used to specify the edition of proto
15
- * files, but feature definitions must supply proto2/proto3 defaults for
16
- * backwards compatibility.
17
- */
18
- EDITION_PROTO2 = 998,
19
- EDITION_PROTO3 = 999,
20
- /**
21
- * EDITION_2023 - Editions that have been released. The specific values are arbitrary and
22
- * should not be depended on, but they will always be time-ordered for easy
23
- * comparison.
24
- */
25
- EDITION_2023 = 1000,
26
- EDITION_2024 = 1001,
27
- /**
28
- * EDITION_1_TEST_ONLY - Placeholder editions for testing feature resolution. These should not be
29
- * used or relied on outside of tests.
30
- */
31
- EDITION_1_TEST_ONLY = 1,
32
- EDITION_2_TEST_ONLY = 2,
33
- EDITION_99997_TEST_ONLY = 99997,
34
- EDITION_99998_TEST_ONLY = 99998,
35
- EDITION_99999_TEST_ONLY = 99999,
36
- /**
37
- * EDITION_MAX - Placeholder for specifying unbounded edition support. This should only
38
- * ever be used by plugins that can expect to never require any changes to
39
- * support a new edition.
40
- */
41
- EDITION_MAX = 2147483647,
42
- UNRECOGNIZED = -1
43
- }
44
- export declare const EditionAmino: typeof Edition;
45
- export declare function editionFromJSON(object: any): Edition;
46
- export declare function editionToJSON(object: Edition): string;
47
- /** The verification state of the extension range. */
48
- export declare enum ExtensionRangeOptions_VerificationState {
49
- /** DECLARATION - All the extensions of the range must be declared. */
50
- DECLARATION = 0,
51
- UNVERIFIED = 1,
52
- UNRECOGNIZED = -1
53
- }
54
- export declare const ExtensionRangeOptions_VerificationStateAmino: typeof ExtensionRangeOptions_VerificationState;
55
- export declare function extensionRangeOptions_VerificationStateFromJSON(object: any): ExtensionRangeOptions_VerificationState;
56
- export declare function extensionRangeOptions_VerificationStateToJSON(object: ExtensionRangeOptions_VerificationState): string;
57
- export declare enum FieldDescriptorProto_Type {
58
- /**
59
- * TYPE_DOUBLE - 0 is reserved for errors.
60
- * Order is weird for historical reasons.
61
- */
62
- TYPE_DOUBLE = 1,
63
- TYPE_FLOAT = 2,
64
- /**
65
- * TYPE_INT64 - Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
66
- * negative values are likely.
67
- */
68
- TYPE_INT64 = 3,
69
- TYPE_UINT64 = 4,
70
- /**
71
- * TYPE_INT32 - Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
72
- * negative values are likely.
73
- */
74
- TYPE_INT32 = 5,
75
- TYPE_FIXED64 = 6,
76
- TYPE_FIXED32 = 7,
77
- TYPE_BOOL = 8,
78
- TYPE_STRING = 9,
79
- /**
80
- * TYPE_GROUP - Tag-delimited aggregate.
81
- * Group type is deprecated and not supported after google.protobuf. However, Proto3
82
- * implementations should still be able to parse the group wire format and
83
- * treat group fields as unknown fields. In Editions, the group wire format
84
- * can be enabled via the `message_encoding` feature.
85
- */
86
- TYPE_GROUP = 10,
87
- /** TYPE_MESSAGE - Length-delimited aggregate. */
88
- TYPE_MESSAGE = 11,
89
- /** TYPE_BYTES - New in version 2. */
90
- TYPE_BYTES = 12,
91
- TYPE_UINT32 = 13,
92
- TYPE_ENUM = 14,
93
- TYPE_SFIXED32 = 15,
94
- TYPE_SFIXED64 = 16,
95
- /** TYPE_SINT32 - Uses ZigZag encoding. */
96
- TYPE_SINT32 = 17,
97
- /** TYPE_SINT64 - Uses ZigZag encoding. */
98
- TYPE_SINT64 = 18,
99
- UNRECOGNIZED = -1
100
- }
101
- export declare const FieldDescriptorProto_TypeAmino: typeof FieldDescriptorProto_Type;
102
- export declare function fieldDescriptorProto_TypeFromJSON(object: any): FieldDescriptorProto_Type;
103
- export declare function fieldDescriptorProto_TypeToJSON(object: FieldDescriptorProto_Type): string;
104
- export declare enum FieldDescriptorProto_Label {
105
- /** LABEL_OPTIONAL - 0 is reserved for errors */
106
- LABEL_OPTIONAL = 1,
107
- LABEL_REPEATED = 3,
108
- /**
109
- * LABEL_REQUIRED - The required label is only allowed in google.protobuf. In proto3 and Editions
110
- * it's explicitly prohibited. In Editions, the `field_presence` feature
111
- * can be used to get this behavior.
112
- */
113
- LABEL_REQUIRED = 2,
114
- UNRECOGNIZED = -1
115
- }
116
- export declare const FieldDescriptorProto_LabelAmino: typeof FieldDescriptorProto_Label;
117
- export declare function fieldDescriptorProto_LabelFromJSON(object: any): FieldDescriptorProto_Label;
118
- export declare function fieldDescriptorProto_LabelToJSON(object: FieldDescriptorProto_Label): string;
119
- /** Generated classes can be optimized for speed or code size. */
120
- export declare enum FileOptions_OptimizeMode {
121
- /** SPEED - Generate complete code for parsing, serialization, */
122
- SPEED = 1,
123
- /** CODE_SIZE - etc. */
124
- CODE_SIZE = 2,
125
- /** LITE_RUNTIME - Generate code using MessageLite and the lite runtime. */
126
- LITE_RUNTIME = 3,
127
- UNRECOGNIZED = -1
128
- }
129
- export declare const FileOptions_OptimizeModeAmino: typeof FileOptions_OptimizeMode;
130
- export declare function fileOptions_OptimizeModeFromJSON(object: any): FileOptions_OptimizeMode;
131
- export declare function fileOptions_OptimizeModeToJSON(object: FileOptions_OptimizeMode): string;
132
- export declare enum FieldOptions_CType {
133
- /** STRING - Default mode. */
134
- STRING = 0,
135
- /**
136
- * CORD - The option [ctype=CORD] may be applied to a non-repeated field of type
137
- * "bytes". It indicates that in C++, the data should be stored in a Cord
138
- * instead of a string. For very large strings, this may reduce memory
139
- * fragmentation. It may also allow better performance when parsing from a
140
- * Cord, or when parsing with aliasing enabled, as the parsed Cord may then
141
- * alias the original buffer.
142
- */
143
- CORD = 1,
144
- STRING_PIECE = 2,
145
- UNRECOGNIZED = -1
146
- }
147
- export declare const FieldOptions_CTypeAmino: typeof FieldOptions_CType;
148
- export declare function fieldOptions_CTypeFromJSON(object: any): FieldOptions_CType;
149
- export declare function fieldOptions_CTypeToJSON(object: FieldOptions_CType): string;
150
- export declare enum FieldOptions_JSType {
151
- /** JS_NORMAL - Use the default type. */
152
- JS_NORMAL = 0,
153
- /** JS_STRING - Use JavaScript strings. */
154
- JS_STRING = 1,
155
- /** JS_NUMBER - Use JavaScript numbers. */
156
- JS_NUMBER = 2,
157
- UNRECOGNIZED = -1
158
- }
159
- export declare const FieldOptions_JSTypeAmino: typeof FieldOptions_JSType;
160
- export declare function fieldOptions_JSTypeFromJSON(object: any): FieldOptions_JSType;
161
- export declare function fieldOptions_JSTypeToJSON(object: FieldOptions_JSType): string;
162
- /** If set to RETENTION_SOURCE, the option will be omitted from the binary. */
163
- export declare enum FieldOptions_OptionRetention {
164
- RETENTION_UNKNOWN = 0,
165
- RETENTION_RUNTIME = 1,
166
- RETENTION_SOURCE = 2,
167
- UNRECOGNIZED = -1
168
- }
169
- export declare const FieldOptions_OptionRetentionAmino: typeof FieldOptions_OptionRetention;
170
- export declare function fieldOptions_OptionRetentionFromJSON(object: any): FieldOptions_OptionRetention;
171
- export declare function fieldOptions_OptionRetentionToJSON(object: FieldOptions_OptionRetention): string;
172
- /**
173
- * This indicates the types of entities that the field may apply to when used
174
- * as an option. If it is unset, then the field may be freely used as an
175
- * option on any kind of entity.
176
- */
177
- export declare enum FieldOptions_OptionTargetType {
178
- TARGET_TYPE_UNKNOWN = 0,
179
- TARGET_TYPE_FILE = 1,
180
- TARGET_TYPE_EXTENSION_RANGE = 2,
181
- TARGET_TYPE_MESSAGE = 3,
182
- TARGET_TYPE_FIELD = 4,
183
- TARGET_TYPE_ONEOF = 5,
184
- TARGET_TYPE_ENUM = 6,
185
- TARGET_TYPE_ENUM_ENTRY = 7,
186
- TARGET_TYPE_SERVICE = 8,
187
- TARGET_TYPE_METHOD = 9,
188
- UNRECOGNIZED = -1
189
- }
190
- export declare const FieldOptions_OptionTargetTypeAmino: typeof FieldOptions_OptionTargetType;
191
- export declare function fieldOptions_OptionTargetTypeFromJSON(object: any): FieldOptions_OptionTargetType;
192
- export declare function fieldOptions_OptionTargetTypeToJSON(object: FieldOptions_OptionTargetType): string;
193
- /**
194
- * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
195
- * or neither? HTTP based RPC implementation may choose GET verb for safe
196
- * methods, and PUT verb for idempotent methods instead of the default POST.
197
- */
198
- export declare enum MethodOptions_IdempotencyLevel {
199
- IDEMPOTENCY_UNKNOWN = 0,
200
- /** NO_SIDE_EFFECTS - implies idempotent */
201
- NO_SIDE_EFFECTS = 1,
202
- /** IDEMPOTENT - idempotent, but may have side effects */
203
- IDEMPOTENT = 2,
204
- UNRECOGNIZED = -1
205
- }
206
- export declare const MethodOptions_IdempotencyLevelAmino: typeof MethodOptions_IdempotencyLevel;
207
- export declare function methodOptions_IdempotencyLevelFromJSON(object: any): MethodOptions_IdempotencyLevel;
208
- export declare function methodOptions_IdempotencyLevelToJSON(object: MethodOptions_IdempotencyLevel): string;
209
- export declare enum FeatureSet_FieldPresence {
210
- FIELD_PRESENCE_UNKNOWN = 0,
211
- EXPLICIT = 1,
212
- IMPLICIT = 2,
213
- LEGACY_REQUIRED = 3,
214
- UNRECOGNIZED = -1
215
- }
216
- export declare const FeatureSet_FieldPresenceAmino: typeof FeatureSet_FieldPresence;
217
- export declare function featureSet_FieldPresenceFromJSON(object: any): FeatureSet_FieldPresence;
218
- export declare function featureSet_FieldPresenceToJSON(object: FeatureSet_FieldPresence): string;
219
- export declare enum FeatureSet_EnumType {
220
- ENUM_TYPE_UNKNOWN = 0,
221
- OPEN = 1,
222
- CLOSED = 2,
223
- UNRECOGNIZED = -1
224
- }
225
- export declare const FeatureSet_EnumTypeAmino: typeof FeatureSet_EnumType;
226
- export declare function featureSet_EnumTypeFromJSON(object: any): FeatureSet_EnumType;
227
- export declare function featureSet_EnumTypeToJSON(object: FeatureSet_EnumType): string;
228
- export declare enum FeatureSet_RepeatedFieldEncoding {
229
- REPEATED_FIELD_ENCODING_UNKNOWN = 0,
230
- PACKED = 1,
231
- EXPANDED = 2,
232
- UNRECOGNIZED = -1
233
- }
234
- export declare const FeatureSet_RepeatedFieldEncodingAmino: typeof FeatureSet_RepeatedFieldEncoding;
235
- export declare function featureSet_RepeatedFieldEncodingFromJSON(object: any): FeatureSet_RepeatedFieldEncoding;
236
- export declare function featureSet_RepeatedFieldEncodingToJSON(object: FeatureSet_RepeatedFieldEncoding): string;
237
- export declare enum FeatureSet_Utf8Validation {
238
- UTF8_VALIDATION_UNKNOWN = 0,
239
- VERIFY = 2,
240
- NONE = 3,
241
- UNRECOGNIZED = -1
242
- }
243
- export declare const FeatureSet_Utf8ValidationAmino: typeof FeatureSet_Utf8Validation;
244
- export declare function featureSet_Utf8ValidationFromJSON(object: any): FeatureSet_Utf8Validation;
245
- export declare function featureSet_Utf8ValidationToJSON(object: FeatureSet_Utf8Validation): string;
246
- export declare enum FeatureSet_MessageEncoding {
247
- MESSAGE_ENCODING_UNKNOWN = 0,
248
- LENGTH_PREFIXED = 1,
249
- DELIMITED = 2,
250
- UNRECOGNIZED = -1
251
- }
252
- export declare const FeatureSet_MessageEncodingAmino: typeof FeatureSet_MessageEncoding;
253
- export declare function featureSet_MessageEncodingFromJSON(object: any): FeatureSet_MessageEncoding;
254
- export declare function featureSet_MessageEncodingToJSON(object: FeatureSet_MessageEncoding): string;
255
- export declare enum FeatureSet_JsonFormat {
256
- JSON_FORMAT_UNKNOWN = 0,
257
- ALLOW = 1,
258
- LEGACY_BEST_EFFORT = 2,
259
- UNRECOGNIZED = -1
260
- }
261
- export declare const FeatureSet_JsonFormatAmino: typeof FeatureSet_JsonFormat;
262
- export declare function featureSet_JsonFormatFromJSON(object: any): FeatureSet_JsonFormat;
263
- export declare function featureSet_JsonFormatToJSON(object: FeatureSet_JsonFormat): string;
264
- export declare enum FeatureSet_EnforceNamingStyle {
265
- ENFORCE_NAMING_STYLE_UNKNOWN = 0,
266
- STYLE2024 = 1,
267
- STYLE_LEGACY = 2,
268
- UNRECOGNIZED = -1
269
- }
270
- export declare const FeatureSet_EnforceNamingStyleAmino: typeof FeatureSet_EnforceNamingStyle;
271
- export declare function featureSet_EnforceNamingStyleFromJSON(object: any): FeatureSet_EnforceNamingStyle;
272
- export declare function featureSet_EnforceNamingStyleToJSON(object: FeatureSet_EnforceNamingStyle): string;
273
- export declare enum FeatureSet_VisibilityFeature_DefaultSymbolVisibility {
274
- DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
275
- /** EXPORT_ALL - Default pre-EDITION_2024, all UNSET visibility are export. */
276
- EXPORT_ALL = 1,
277
- /** EXPORT_TOP_LEVEL - All top-level symbols default to export, nested default to local. */
278
- EXPORT_TOP_LEVEL = 2,
279
- /** LOCAL_ALL - All symbols default to local. */
280
- LOCAL_ALL = 3,
281
- /**
282
- * STRICT - All symbols local by default. Nested types cannot be exported.
283
- * With special case caveat for message { enum {} reserved 1 to max; }
284
- * This is the recommended setting for new protos.
285
- */
286
- STRICT = 4,
287
- UNRECOGNIZED = -1
288
- }
289
- export declare const FeatureSet_VisibilityFeature_DefaultSymbolVisibilityAmino: typeof FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
290
- export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object: any): FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
291
- export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(object: FeatureSet_VisibilityFeature_DefaultSymbolVisibility): string;
292
- /**
293
- * Represents the identified object's effect on the element in the original
294
- * .proto file.
295
- */
296
- export declare enum GeneratedCodeInfo_Annotation_Semantic {
297
- /** NONE - There is no effect or the effect is indescribable. */
298
- NONE = 0,
299
- /** SET - The element is set or otherwise mutated. */
300
- SET = 1,
301
- /** ALIAS - An alias to the element is returned. */
302
- ALIAS = 2,
303
- UNRECOGNIZED = -1
304
- }
305
- export declare const GeneratedCodeInfo_Annotation_SemanticAmino: typeof GeneratedCodeInfo_Annotation_Semantic;
306
- export declare function generatedCodeInfo_Annotation_SemanticFromJSON(object: any): GeneratedCodeInfo_Annotation_Semantic;
307
- export declare function generatedCodeInfo_Annotation_SemanticToJSON(object: GeneratedCodeInfo_Annotation_Semantic): string;
308
- /**
309
- * Describes the 'visibility' of a symbol with respect to the proto import
310
- * system. Symbols can only be imported when the visibility rules do not prevent
311
- * it (ex: local symbols cannot be imported). Visibility modifiers can only set
312
- * on `message` and `enum` as they are the only types available to be referenced
313
- * from other files.
314
- */
315
- export declare enum SymbolVisibility {
316
- VISIBILITY_UNSET = 0,
317
- VISIBILITY_LOCAL = 1,
318
- VISIBILITY_EXPORT = 2,
319
- UNRECOGNIZED = -1
320
- }
321
- export declare const SymbolVisibilityAmino: typeof SymbolVisibility;
322
- export declare function symbolVisibilityFromJSON(object: any): SymbolVisibility;
323
- export declare function symbolVisibilityToJSON(object: SymbolVisibility): string;
324
- /**
325
- * The protocol compiler can output a FileDescriptorSet containing the .proto
326
- * files it parses.
327
- * @name FileDescriptorSet
328
- * @package google.protobuf
329
- * @see proto type: google.protobuf.FileDescriptorSet
330
- */
331
- export interface FileDescriptorSet {
332
- file: FileDescriptorProto[];
333
- }
334
- export interface FileDescriptorSetProtoMsg {
335
- typeUrl: "/google.protobuf.FileDescriptorSet";
336
- value: Uint8Array;
337
- }
338
- /**
339
- * The protocol compiler can output a FileDescriptorSet containing the .proto
340
- * files it parses.
341
- * @name FileDescriptorSetAmino
342
- * @package google.protobuf
343
- * @see proto type: google.protobuf.FileDescriptorSet
344
- */
345
- export interface FileDescriptorSetAmino {
346
- file: FileDescriptorProtoAmino[];
347
- }
348
- export interface FileDescriptorSetAminoMsg {
349
- type: "/google.protobuf.FileDescriptorSet";
350
- value: FileDescriptorSetAmino;
351
- }
352
- /**
353
- * Describes a complete .proto file.
354
- * @name FileDescriptorProto
355
- * @package google.protobuf
356
- * @see proto type: google.protobuf.FileDescriptorProto
357
- */
358
- export interface FileDescriptorProto {
359
- /**
360
- * file name, relative to root of source tree
361
- */
362
- name: string;
363
- /**
364
- * e.g. "foo", "foo.bar", etc.
365
- */
366
- package: string;
367
- /**
368
- * Names of files imported by this file.
369
- */
370
- dependency: string[];
371
- /**
372
- * Indexes of the public imported files in the dependency list above.
373
- */
374
- publicDependency: number[];
375
- /**
376
- * Indexes of the weak imported files in the dependency list.
377
- * For Google-internal migration only. Do not use.
378
- */
379
- weakDependency: number[];
380
- /**
381
- * Names of files imported by this file purely for the purpose of providing
382
- * option extensions. These are excluded from the dependency list above.
383
- */
384
- optionDependency: string[];
385
- /**
386
- * All top-level definitions in this file.
387
- */
388
- messageType: DescriptorProto[];
389
- enumType: EnumDescriptorProto[];
390
- service: ServiceDescriptorProto[];
391
- extension: FieldDescriptorProto[];
392
- options?: FileOptions;
393
- /**
394
- * This field contains optional information about the original source code.
395
- * You may safely remove this entire field without harming runtime
396
- * functionality of the descriptors -- the information is needed only by
397
- * development tools.
398
- */
399
- sourceCodeInfo?: SourceCodeInfo;
400
- /**
401
- * The syntax of the proto file.
402
- * The supported values are "proto2", "proto3", and "editions".
403
- *
404
- * If `edition` is present, this value must be "editions".
405
- * WARNING: This field should only be used by protobuf plugins or special
406
- * cases like the proto compiler. Other uses are discouraged and
407
- * developers should rely on the protoreflect APIs for their client language.
408
- */
409
- syntax: string;
410
- /**
411
- * The edition of the proto file.
412
- * WARNING: This field should only be used by protobuf plugins or special
413
- * cases like the proto compiler. Other uses are discouraged and
414
- * developers should rely on the protoreflect APIs for their client language.
415
- */
416
- edition: Edition;
417
- }
418
- export interface FileDescriptorProtoProtoMsg {
419
- typeUrl: "/google.protobuf.FileDescriptorProto";
420
- value: Uint8Array;
421
- }
422
- /**
423
- * Describes a complete .proto file.
424
- * @name FileDescriptorProtoAmino
425
- * @package google.protobuf
426
- * @see proto type: google.protobuf.FileDescriptorProto
427
- */
428
- export interface FileDescriptorProtoAmino {
429
- /**
430
- * file name, relative to root of source tree
431
- */
432
- name: string;
433
- /**
434
- * e.g. "foo", "foo.bar", etc.
435
- */
436
- package: string;
437
- /**
438
- * Names of files imported by this file.
439
- */
440
- dependency: string[];
441
- /**
442
- * Indexes of the public imported files in the dependency list above.
443
- */
444
- public_dependency: number[];
445
- /**
446
- * Indexes of the weak imported files in the dependency list.
447
- * For Google-internal migration only. Do not use.
448
- */
449
- weak_dependency: number[];
450
- /**
451
- * Names of files imported by this file purely for the purpose of providing
452
- * option extensions. These are excluded from the dependency list above.
453
- */
454
- option_dependency: string[];
455
- /**
456
- * All top-level definitions in this file.
457
- */
458
- message_type: DescriptorProtoAmino[];
459
- enum_type: EnumDescriptorProtoAmino[];
460
- service: ServiceDescriptorProtoAmino[];
461
- extension: FieldDescriptorProtoAmino[];
462
- options?: FileOptionsAmino;
463
- /**
464
- * This field contains optional information about the original source code.
465
- * You may safely remove this entire field without harming runtime
466
- * functionality of the descriptors -- the information is needed only by
467
- * development tools.
468
- */
469
- source_code_info?: SourceCodeInfoAmino;
470
- /**
471
- * The syntax of the proto file.
472
- * The supported values are "proto2", "proto3", and "editions".
473
- *
474
- * If `edition` is present, this value must be "editions".
475
- * WARNING: This field should only be used by protobuf plugins or special
476
- * cases like the proto compiler. Other uses are discouraged and
477
- * developers should rely on the protoreflect APIs for their client language.
478
- */
479
- syntax: string;
480
- /**
481
- * The edition of the proto file.
482
- * WARNING: This field should only be used by protobuf plugins or special
483
- * cases like the proto compiler. Other uses are discouraged and
484
- * developers should rely on the protoreflect APIs for their client language.
485
- */
486
- edition: Edition;
487
- }
488
- export interface FileDescriptorProtoAminoMsg {
489
- type: "/google.protobuf.FileDescriptorProto";
490
- value: FileDescriptorProtoAmino;
491
- }
492
- /**
493
- * Describes a message type.
494
- * @name DescriptorProto
495
- * @package google.protobuf
496
- * @see proto type: google.protobuf.DescriptorProto
497
- */
498
- export interface DescriptorProto {
499
- name: string;
500
- field: FieldDescriptorProto[];
501
- extension: FieldDescriptorProto[];
502
- nestedType: DescriptorProto[];
503
- enumType: EnumDescriptorProto[];
504
- extensionRange: DescriptorProto_ExtensionRange[];
505
- oneofDecl: OneofDescriptorProto[];
506
- options?: MessageOptions;
507
- reservedRange: DescriptorProto_ReservedRange[];
508
- /**
509
- * Reserved field names, which may not be used by fields in the same message.
510
- * A given name may only be reserved once.
511
- */
512
- reservedName: string[];
513
- /**
514
- * Support for `export` and `local` keywords on enums.
515
- */
516
- visibility: SymbolVisibility;
517
- }
518
- export interface DescriptorProtoProtoMsg {
519
- typeUrl: "/google.protobuf.DescriptorProto";
520
- value: Uint8Array;
521
- }
522
- /**
523
- * Describes a message type.
524
- * @name DescriptorProtoAmino
525
- * @package google.protobuf
526
- * @see proto type: google.protobuf.DescriptorProto
527
- */
528
- export interface DescriptorProtoAmino {
529
- name: string;
530
- field: FieldDescriptorProtoAmino[];
531
- extension: FieldDescriptorProtoAmino[];
532
- nested_type: DescriptorProtoAmino[];
533
- enum_type: EnumDescriptorProtoAmino[];
534
- extension_range: DescriptorProto_ExtensionRangeAmino[];
535
- oneof_decl: OneofDescriptorProtoAmino[];
536
- options?: MessageOptionsAmino;
537
- reserved_range: DescriptorProto_ReservedRangeAmino[];
538
- /**
539
- * Reserved field names, which may not be used by fields in the same message.
540
- * A given name may only be reserved once.
541
- */
542
- reserved_name: string[];
543
- /**
544
- * Support for `export` and `local` keywords on enums.
545
- */
546
- visibility: SymbolVisibility;
547
- }
548
- export interface DescriptorProtoAminoMsg {
549
- type: "/google.protobuf.DescriptorProto";
550
- value: DescriptorProtoAmino;
551
- }
552
- /**
553
- * @name DescriptorProto_ExtensionRange
554
- * @package google.protobuf
555
- * @see proto type: google.protobuf.ExtensionRange
556
- */
557
- export interface DescriptorProto_ExtensionRange {
558
- /**
559
- * Inclusive.
560
- */
561
- start: number;
562
- /**
563
- * Exclusive.
564
- */
565
- end: number;
566
- options?: ExtensionRangeOptions;
567
- }
568
- export interface DescriptorProto_ExtensionRangeProtoMsg {
569
- typeUrl: "/google.protobuf.ExtensionRange";
570
- value: Uint8Array;
571
- }
572
- /**
573
- * @name DescriptorProto_ExtensionRangeAmino
574
- * @package google.protobuf
575
- * @see proto type: google.protobuf.DescriptorProto_ExtensionRange
576
- */
577
- export interface DescriptorProto_ExtensionRangeAmino {
578
- /**
579
- * Inclusive.
580
- */
581
- start: number;
582
- /**
583
- * Exclusive.
584
- */
585
- end: number;
586
- options?: ExtensionRangeOptionsAmino;
587
- }
588
- export interface DescriptorProto_ExtensionRangeAminoMsg {
589
- type: "/google.protobuf.ExtensionRange";
590
- value: DescriptorProto_ExtensionRangeAmino;
591
- }
592
- /**
593
- * Range of reserved tag numbers. Reserved tag numbers may not be used by
594
- * fields or extension ranges in the same message. Reserved ranges may
595
- * not overlap.
596
- * @name DescriptorProto_ReservedRange
597
- * @package google.protobuf
598
- * @see proto type: google.protobuf.ReservedRange
599
- */
600
- export interface DescriptorProto_ReservedRange {
601
- /**
602
- * Inclusive.
603
- */
604
- start: number;
605
- /**
606
- * Exclusive.
607
- */
608
- end: number;
609
- }
610
- export interface DescriptorProto_ReservedRangeProtoMsg {
611
- typeUrl: "/google.protobuf.ReservedRange";
612
- value: Uint8Array;
613
- }
614
- /**
615
- * Range of reserved tag numbers. Reserved tag numbers may not be used by
616
- * fields or extension ranges in the same message. Reserved ranges may
617
- * not overlap.
618
- * @name DescriptorProto_ReservedRangeAmino
619
- * @package google.protobuf
620
- * @see proto type: google.protobuf.DescriptorProto_ReservedRange
621
- */
622
- export interface DescriptorProto_ReservedRangeAmino {
623
- /**
624
- * Inclusive.
625
- */
626
- start: number;
627
- /**
628
- * Exclusive.
629
- */
630
- end: number;
631
- }
632
- export interface DescriptorProto_ReservedRangeAminoMsg {
633
- type: "/google.protobuf.ReservedRange";
634
- value: DescriptorProto_ReservedRangeAmino;
635
- }
636
- /**
637
- * @name ExtensionRangeOptions
638
- * @package google.protobuf
639
- * @see proto type: google.protobuf.ExtensionRangeOptions
640
- */
641
- export interface ExtensionRangeOptions {
642
- /**
643
- * The parser stores options it doesn't recognize here. See above.
644
- */
645
- uninterpretedOption: UninterpretedOption[];
646
- /**
647
- * For external users: DO NOT USE. We are in the process of open sourcing
648
- * extension declaration and executing internal cleanups before it can be
649
- * used externally.
650
- */
651
- declaration: ExtensionRangeOptions_Declaration[];
652
- /**
653
- * Any features defined in the specific edition.
654
- */
655
- features?: FeatureSet;
656
- /**
657
- * The verification state of the range.
658
- * TODO: flip the default to DECLARATION once all empty ranges
659
- * are marked as UNVERIFIED.
660
- */
661
- verification: ExtensionRangeOptions_VerificationState;
662
- }
663
- export interface ExtensionRangeOptionsProtoMsg {
664
- typeUrl: "/google.protobuf.ExtensionRangeOptions";
665
- value: Uint8Array;
666
- }
667
- /**
668
- * @name ExtensionRangeOptionsAmino
669
- * @package google.protobuf
670
- * @see proto type: google.protobuf.ExtensionRangeOptions
671
- */
672
- export interface ExtensionRangeOptionsAmino {
673
- /**
674
- * The parser stores options it doesn't recognize here. See above.
675
- */
676
- uninterpreted_option: UninterpretedOptionAmino[];
677
- /**
678
- * For external users: DO NOT USE. We are in the process of open sourcing
679
- * extension declaration and executing internal cleanups before it can be
680
- * used externally.
681
- */
682
- declaration: ExtensionRangeOptions_DeclarationAmino[];
683
- /**
684
- * Any features defined in the specific edition.
685
- */
686
- features?: FeatureSetAmino;
687
- /**
688
- * The verification state of the range.
689
- * TODO: flip the default to DECLARATION once all empty ranges
690
- * are marked as UNVERIFIED.
691
- */
692
- verification: ExtensionRangeOptions_VerificationState;
693
- }
694
- export interface ExtensionRangeOptionsAminoMsg {
695
- type: "/google.protobuf.ExtensionRangeOptions";
696
- value: ExtensionRangeOptionsAmino;
697
- }
698
- /**
699
- * @name ExtensionRangeOptions_Declaration
700
- * @package google.protobuf
701
- * @see proto type: google.protobuf.Declaration
702
- */
703
- export interface ExtensionRangeOptions_Declaration {
704
- /**
705
- * The extension number declared within the extension range.
706
- */
707
- number: number;
708
- /**
709
- * The fully-qualified name of the extension field. There must be a leading
710
- * dot in front of the full name.
711
- */
712
- fullName: string;
713
- /**
714
- * The fully-qualified type name of the extension field. Unlike
715
- * Metadata.type, Declaration.type must have a leading dot for messages
716
- * and enums.
717
- */
718
- type: string;
719
- /**
720
- * If true, indicates that the number is reserved in the extension range,
721
- * and any extension field with the number will fail to compile. Set this
722
- * when a declared extension field is deleted.
723
- */
724
- reserved: boolean;
725
- /**
726
- * If true, indicates that the extension must be defined as repeated.
727
- * Otherwise the extension must be defined as optional.
728
- */
729
- repeated: boolean;
730
- }
731
- export interface ExtensionRangeOptions_DeclarationProtoMsg {
732
- typeUrl: "/google.protobuf.Declaration";
733
- value: Uint8Array;
734
- }
735
- /**
736
- * @name ExtensionRangeOptions_DeclarationAmino
737
- * @package google.protobuf
738
- * @see proto type: google.protobuf.ExtensionRangeOptions_Declaration
739
- */
740
- export interface ExtensionRangeOptions_DeclarationAmino {
741
- /**
742
- * The extension number declared within the extension range.
743
- */
744
- number: number;
745
- /**
746
- * The fully-qualified name of the extension field. There must be a leading
747
- * dot in front of the full name.
748
- */
749
- full_name: string;
750
- /**
751
- * The fully-qualified type name of the extension field. Unlike
752
- * Metadata.type, Declaration.type must have a leading dot for messages
753
- * and enums.
754
- */
755
- type: string;
756
- /**
757
- * If true, indicates that the number is reserved in the extension range,
758
- * and any extension field with the number will fail to compile. Set this
759
- * when a declared extension field is deleted.
760
- */
761
- reserved: boolean;
762
- /**
763
- * If true, indicates that the extension must be defined as repeated.
764
- * Otherwise the extension must be defined as optional.
765
- */
766
- repeated: boolean;
767
- }
768
- export interface ExtensionRangeOptions_DeclarationAminoMsg {
769
- type: "/google.protobuf.Declaration";
770
- value: ExtensionRangeOptions_DeclarationAmino;
771
- }
772
- /**
773
- * Describes a field within a message.
774
- * @name FieldDescriptorProto
775
- * @package google.protobuf
776
- * @see proto type: google.protobuf.FieldDescriptorProto
777
- */
778
- export interface FieldDescriptorProto {
779
- name: string;
780
- number: number;
781
- label: FieldDescriptorProto_Label;
782
- /**
783
- * If type_name is set, this need not be set. If both this and type_name
784
- * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
785
- */
786
- type: FieldDescriptorProto_Type;
787
- /**
788
- * For message and enum types, this is the name of the type. If the name
789
- * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
790
- * rules are used to find the type (i.e. first the nested types within this
791
- * message are searched, then within the parent, on up to the root
792
- * namespace).
793
- */
794
- typeName: string;
795
- /**
796
- * For extensions, this is the name of the type being extended. It is
797
- * resolved in the same manner as type_name.
798
- */
799
- extendee: string;
800
- /**
801
- * For numeric types, contains the original text representation of the value.
802
- * For booleans, "true" or "false".
803
- * For strings, contains the default text contents (not escaped in any way).
804
- * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
805
- */
806
- defaultValue: string;
807
- /**
808
- * If set, gives the index of a oneof in the containing type's oneof_decl
809
- * list. This field is a member of that oneof.
810
- */
811
- oneofIndex: number;
812
- /**
813
- * JSON name of this field. The value is set by protocol compiler. If the
814
- * user has set a "json_name" option on this field, that option's value
815
- * will be used. Otherwise, it's deduced from the field's name by converting
816
- * it to camelCase.
817
- */
818
- jsonName: string;
819
- options?: FieldOptions;
820
- /**
821
- * If true, this is a proto3 "optional". When a proto3 field is optional, it
822
- * tracks presence regardless of field type.
823
- *
824
- * When proto3_optional is true, this field must belong to a oneof to signal
825
- * to old proto3 clients that presence is tracked for this field. This oneof
826
- * is known as a "synthetic" oneof, and this field must be its sole member
827
- * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
828
- * exist in the descriptor only, and do not generate any API. Synthetic oneofs
829
- * must be ordered after all "real" oneofs.
830
- *
831
- * For message fields, proto3_optional doesn't create any semantic change,
832
- * since non-repeated message fields always track presence. However it still
833
- * indicates the semantic detail of whether the user wrote "optional" or not.
834
- * This can be useful for round-tripping the .proto file. For consistency we
835
- * give message fields a synthetic oneof also, even though it is not required
836
- * to track presence. This is especially important because the parser can't
837
- * tell if a field is a message or an enum, so it must always create a
838
- * synthetic oneof.
839
- *
840
- * Proto2 optional fields do not set this flag, because they already indicate
841
- * optional with `LABEL_OPTIONAL`.
842
- */
843
- proto3Optional: boolean;
844
- }
845
- export interface FieldDescriptorProtoProtoMsg {
846
- typeUrl: "/google.protobuf.FieldDescriptorProto";
847
- value: Uint8Array;
848
- }
849
- /**
850
- * Describes a field within a message.
851
- * @name FieldDescriptorProtoAmino
852
- * @package google.protobuf
853
- * @see proto type: google.protobuf.FieldDescriptorProto
854
- */
855
- export interface FieldDescriptorProtoAmino {
856
- name: string;
857
- number: number;
858
- label: FieldDescriptorProto_Label;
859
- /**
860
- * If type_name is set, this need not be set. If both this and type_name
861
- * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
862
- */
863
- type: FieldDescriptorProto_Type;
864
- /**
865
- * For message and enum types, this is the name of the type. If the name
866
- * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
867
- * rules are used to find the type (i.e. first the nested types within this
868
- * message are searched, then within the parent, on up to the root
869
- * namespace).
870
- */
871
- type_name: string;
872
- /**
873
- * For extensions, this is the name of the type being extended. It is
874
- * resolved in the same manner as type_name.
875
- */
876
- extendee: string;
877
- /**
878
- * For numeric types, contains the original text representation of the value.
879
- * For booleans, "true" or "false".
880
- * For strings, contains the default text contents (not escaped in any way).
881
- * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
882
- */
883
- default_value: string;
884
- /**
885
- * If set, gives the index of a oneof in the containing type's oneof_decl
886
- * list. This field is a member of that oneof.
887
- */
888
- oneof_index: number;
889
- /**
890
- * JSON name of this field. The value is set by protocol compiler. If the
891
- * user has set a "json_name" option on this field, that option's value
892
- * will be used. Otherwise, it's deduced from the field's name by converting
893
- * it to camelCase.
894
- */
895
- json_name: string;
896
- options?: FieldOptionsAmino;
897
- /**
898
- * If true, this is a proto3 "optional". When a proto3 field is optional, it
899
- * tracks presence regardless of field type.
900
- *
901
- * When proto3_optional is true, this field must belong to a oneof to signal
902
- * to old proto3 clients that presence is tracked for this field. This oneof
903
- * is known as a "synthetic" oneof, and this field must be its sole member
904
- * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
905
- * exist in the descriptor only, and do not generate any API. Synthetic oneofs
906
- * must be ordered after all "real" oneofs.
907
- *
908
- * For message fields, proto3_optional doesn't create any semantic change,
909
- * since non-repeated message fields always track presence. However it still
910
- * indicates the semantic detail of whether the user wrote "optional" or not.
911
- * This can be useful for round-tripping the .proto file. For consistency we
912
- * give message fields a synthetic oneof also, even though it is not required
913
- * to track presence. This is especially important because the parser can't
914
- * tell if a field is a message or an enum, so it must always create a
915
- * synthetic oneof.
916
- *
917
- * Proto2 optional fields do not set this flag, because they already indicate
918
- * optional with `LABEL_OPTIONAL`.
919
- */
920
- proto3_optional: boolean;
921
- }
922
- export interface FieldDescriptorProtoAminoMsg {
923
- type: "/google.protobuf.FieldDescriptorProto";
924
- value: FieldDescriptorProtoAmino;
925
- }
926
- /**
927
- * Describes a oneof.
928
- * @name OneofDescriptorProto
929
- * @package google.protobuf
930
- * @see proto type: google.protobuf.OneofDescriptorProto
931
- */
932
- export interface OneofDescriptorProto {
933
- name: string;
934
- options?: OneofOptions;
935
- }
936
- export interface OneofDescriptorProtoProtoMsg {
937
- typeUrl: "/google.protobuf.OneofDescriptorProto";
938
- value: Uint8Array;
939
- }
940
- /**
941
- * Describes a oneof.
942
- * @name OneofDescriptorProtoAmino
943
- * @package google.protobuf
944
- * @see proto type: google.protobuf.OneofDescriptorProto
945
- */
946
- export interface OneofDescriptorProtoAmino {
947
- name: string;
948
- options?: OneofOptionsAmino;
949
- }
950
- export interface OneofDescriptorProtoAminoMsg {
951
- type: "/google.protobuf.OneofDescriptorProto";
952
- value: OneofDescriptorProtoAmino;
953
- }
954
- /**
955
- * Describes an enum type.
956
- * @name EnumDescriptorProto
957
- * @package google.protobuf
958
- * @see proto type: google.protobuf.EnumDescriptorProto
959
- */
960
- export interface EnumDescriptorProto {
961
- name: string;
962
- value: EnumValueDescriptorProto[];
963
- options?: EnumOptions;
964
- /**
965
- * Range of reserved numeric values. Reserved numeric values may not be used
966
- * by enum values in the same enum declaration. Reserved ranges may not
967
- * overlap.
968
- */
969
- reservedRange: EnumDescriptorProto_EnumReservedRange[];
970
- /**
971
- * Reserved enum value names, which may not be reused. A given name may only
972
- * be reserved once.
973
- */
974
- reservedName: string[];
975
- /**
976
- * Support for `export` and `local` keywords on enums.
977
- */
978
- visibility: SymbolVisibility;
979
- }
980
- export interface EnumDescriptorProtoProtoMsg {
981
- typeUrl: "/google.protobuf.EnumDescriptorProto";
982
- value: Uint8Array;
983
- }
984
- /**
985
- * Describes an enum type.
986
- * @name EnumDescriptorProtoAmino
987
- * @package google.protobuf
988
- * @see proto type: google.protobuf.EnumDescriptorProto
989
- */
990
- export interface EnumDescriptorProtoAmino {
991
- name: string;
992
- value: EnumValueDescriptorProtoAmino[];
993
- options?: EnumOptionsAmino;
994
- /**
995
- * Range of reserved numeric values. Reserved numeric values may not be used
996
- * by enum values in the same enum declaration. Reserved ranges may not
997
- * overlap.
998
- */
999
- reserved_range: EnumDescriptorProto_EnumReservedRangeAmino[];
1000
- /**
1001
- * Reserved enum value names, which may not be reused. A given name may only
1002
- * be reserved once.
1003
- */
1004
- reserved_name: string[];
1005
- /**
1006
- * Support for `export` and `local` keywords on enums.
1007
- */
1008
- visibility: SymbolVisibility;
1009
- }
1010
- export interface EnumDescriptorProtoAminoMsg {
1011
- type: "/google.protobuf.EnumDescriptorProto";
1012
- value: EnumDescriptorProtoAmino;
1013
- }
1014
- /**
1015
- * Range of reserved numeric values. Reserved values may not be used by
1016
- * entries in the same enum. Reserved ranges may not overlap.
1017
- *
1018
- * Note that this is distinct from DescriptorProto.ReservedRange in that it
1019
- * is inclusive such that it can appropriately represent the entire int32
1020
- * domain.
1021
- * @name EnumDescriptorProto_EnumReservedRange
1022
- * @package google.protobuf
1023
- * @see proto type: google.protobuf.EnumReservedRange
1024
- */
1025
- export interface EnumDescriptorProto_EnumReservedRange {
1026
- /**
1027
- * Inclusive.
1028
- */
1029
- start: number;
1030
- /**
1031
- * Inclusive.
1032
- */
1033
- end: number;
1034
- }
1035
- export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
1036
- typeUrl: "/google.protobuf.EnumReservedRange";
1037
- value: Uint8Array;
1038
- }
1039
- /**
1040
- * Range of reserved numeric values. Reserved values may not be used by
1041
- * entries in the same enum. Reserved ranges may not overlap.
1042
- *
1043
- * Note that this is distinct from DescriptorProto.ReservedRange in that it
1044
- * is inclusive such that it can appropriately represent the entire int32
1045
- * domain.
1046
- * @name EnumDescriptorProto_EnumReservedRangeAmino
1047
- * @package google.protobuf
1048
- * @see proto type: google.protobuf.EnumDescriptorProto_EnumReservedRange
1049
- */
1050
- export interface EnumDescriptorProto_EnumReservedRangeAmino {
1051
- /**
1052
- * Inclusive.
1053
- */
1054
- start: number;
1055
- /**
1056
- * Inclusive.
1057
- */
1058
- end: number;
1059
- }
1060
- export interface EnumDescriptorProto_EnumReservedRangeAminoMsg {
1061
- type: "/google.protobuf.EnumReservedRange";
1062
- value: EnumDescriptorProto_EnumReservedRangeAmino;
1063
- }
1064
- /**
1065
- * Describes a value within an enum.
1066
- * @name EnumValueDescriptorProto
1067
- * @package google.protobuf
1068
- * @see proto type: google.protobuf.EnumValueDescriptorProto
1069
- */
1070
- export interface EnumValueDescriptorProto {
1071
- name: string;
1072
- number: number;
1073
- options?: EnumValueOptions;
1074
- }
1075
- export interface EnumValueDescriptorProtoProtoMsg {
1076
- typeUrl: "/google.protobuf.EnumValueDescriptorProto";
1077
- value: Uint8Array;
1078
- }
1079
- /**
1080
- * Describes a value within an enum.
1081
- * @name EnumValueDescriptorProtoAmino
1082
- * @package google.protobuf
1083
- * @see proto type: google.protobuf.EnumValueDescriptorProto
1084
- */
1085
- export interface EnumValueDescriptorProtoAmino {
1086
- name: string;
1087
- number: number;
1088
- options?: EnumValueOptionsAmino;
1089
- }
1090
- export interface EnumValueDescriptorProtoAminoMsg {
1091
- type: "/google.protobuf.EnumValueDescriptorProto";
1092
- value: EnumValueDescriptorProtoAmino;
1093
- }
1094
- /**
1095
- * Describes a service.
1096
- * @name ServiceDescriptorProto
1097
- * @package google.protobuf
1098
- * @see proto type: google.protobuf.ServiceDescriptorProto
1099
- */
1100
- export interface ServiceDescriptorProto {
1101
- name: string;
1102
- method: MethodDescriptorProto[];
1103
- options?: ServiceOptions;
1104
- }
1105
- export interface ServiceDescriptorProtoProtoMsg {
1106
- typeUrl: "/google.protobuf.ServiceDescriptorProto";
1107
- value: Uint8Array;
1108
- }
1109
- /**
1110
- * Describes a service.
1111
- * @name ServiceDescriptorProtoAmino
1112
- * @package google.protobuf
1113
- * @see proto type: google.protobuf.ServiceDescriptorProto
1114
- */
1115
- export interface ServiceDescriptorProtoAmino {
1116
- name: string;
1117
- method: MethodDescriptorProtoAmino[];
1118
- options?: ServiceOptionsAmino;
1119
- }
1120
- export interface ServiceDescriptorProtoAminoMsg {
1121
- type: "/google.protobuf.ServiceDescriptorProto";
1122
- value: ServiceDescriptorProtoAmino;
1123
- }
1124
- /**
1125
- * Describes a method of a service.
1126
- * @name MethodDescriptorProto
1127
- * @package google.protobuf
1128
- * @see proto type: google.protobuf.MethodDescriptorProto
1129
- */
1130
- export interface MethodDescriptorProto {
1131
- name: string;
1132
- /**
1133
- * Input and output type names. These are resolved in the same way as
1134
- * FieldDescriptorProto.type_name, but must refer to a message type.
1135
- */
1136
- inputType: string;
1137
- outputType: string;
1138
- options?: MethodOptions;
1139
- /**
1140
- * Identifies if client streams multiple client messages
1141
- */
1142
- clientStreaming: boolean;
1143
- /**
1144
- * Identifies if server streams multiple server messages
1145
- */
1146
- serverStreaming: boolean;
1147
- }
1148
- export interface MethodDescriptorProtoProtoMsg {
1149
- typeUrl: "/google.protobuf.MethodDescriptorProto";
1150
- value: Uint8Array;
1151
- }
1152
- /**
1153
- * Describes a method of a service.
1154
- * @name MethodDescriptorProtoAmino
1155
- * @package google.protobuf
1156
- * @see proto type: google.protobuf.MethodDescriptorProto
1157
- */
1158
- export interface MethodDescriptorProtoAmino {
1159
- name: string;
1160
- /**
1161
- * Input and output type names. These are resolved in the same way as
1162
- * FieldDescriptorProto.type_name, but must refer to a message type.
1163
- */
1164
- input_type: string;
1165
- output_type: string;
1166
- options?: MethodOptionsAmino;
1167
- /**
1168
- * Identifies if client streams multiple client messages
1169
- */
1170
- client_streaming: boolean;
1171
- /**
1172
- * Identifies if server streams multiple server messages
1173
- */
1174
- server_streaming: boolean;
1175
- }
1176
- export interface MethodDescriptorProtoAminoMsg {
1177
- type: "/google.protobuf.MethodDescriptorProto";
1178
- value: MethodDescriptorProtoAmino;
1179
- }
1180
- /**
1181
- * @name FileOptions
1182
- * @package google.protobuf
1183
- * @see proto type: google.protobuf.FileOptions
1184
- */
1185
- export interface FileOptions {
1186
- /**
1187
- * Sets the Java package where classes generated from this .proto will be
1188
- * placed. By default, the proto package is used, but this is often
1189
- * inappropriate because proto packages do not normally start with backwards
1190
- * domain names.
1191
- */
1192
- javaPackage: string;
1193
- /**
1194
- * Controls the name of the wrapper Java class generated for the .proto file.
1195
- * That class will always contain the .proto file's getDescriptor() method as
1196
- * well as any top-level extensions defined in the .proto file.
1197
- * If java_multiple_files is disabled, then all the other classes from the
1198
- * .proto file will be nested inside the single wrapper outer class.
1199
- */
1200
- javaOuterClassname: string;
1201
- /**
1202
- * If enabled, then the Java code generator will generate a separate .java
1203
- * file for each top-level message, enum, and service defined in the .proto
1204
- * file. Thus, these types will *not* be nested inside the wrapper class
1205
- * named by java_outer_classname. However, the wrapper class will still be
1206
- * generated to contain the file's getDescriptor() method as well as any
1207
- * top-level extensions defined in the file.
1208
- */
1209
- javaMultipleFiles: boolean;
1210
- /**
1211
- * This option does nothing.
1212
- * @deprecated
1213
- */
1214
- javaGenerateEqualsAndHash: boolean;
1215
- /**
1216
- * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
1217
- * which will throw an exception if invalid UTF-8 is parsed from the wire or
1218
- * assigned to a string field.
1219
- *
1220
- * TODO: clarify exactly what kinds of field types this option
1221
- * applies to, and update these docs accordingly.
1222
- *
1223
- * Proto3 files already perform these checks. Setting the option explicitly to
1224
- * false has no effect: it cannot be used to opt proto3 files out of UTF-8
1225
- * checks.
1226
- */
1227
- javaStringCheckUtf8: boolean;
1228
- optimizeFor: FileOptions_OptimizeMode;
1229
- /**
1230
- * Sets the Go package where structs generated from this .proto will be
1231
- * placed. If omitted, the Go package will be derived from the following:
1232
- * - The basename of the package import path, if provided.
1233
- * - Otherwise, the package statement in the .proto file, if present.
1234
- * - Otherwise, the basename of the .proto file, without extension.
1235
- */
1236
- goPackage: string;
1237
- /**
1238
- * Should generic services be generated in each language? "Generic" services
1239
- * are not specific to any particular RPC system. They are generated by the
1240
- * main code generators in each language (without additional plugins).
1241
- * Generic services were the only kind of service generation supported by
1242
- * early versions of google.protobuf.
1243
- *
1244
- * Generic services are now considered deprecated in favor of using plugins
1245
- * that generate code specific to your particular RPC system. Therefore,
1246
- * these default to false. Old code which depends on generic services should
1247
- * explicitly set them to true.
1248
- */
1249
- ccGenericServices: boolean;
1250
- javaGenericServices: boolean;
1251
- pyGenericServices: boolean;
1252
- /**
1253
- * Is this file deprecated?
1254
- * Depending on the target platform, this can emit Deprecated annotations
1255
- * for everything in the file, or it will be completely ignored; in the very
1256
- * least, this is a formalization for deprecating files.
1257
- */
1258
- deprecated: boolean;
1259
- /**
1260
- * Enables the use of arenas for the proto messages in this file. This applies
1261
- * only to generated classes for C++.
1262
- */
1263
- ccEnableArenas: boolean;
1264
- /**
1265
- * Sets the objective c class prefix which is prepended to all objective c
1266
- * generated classes from this .proto. There is no default.
1267
- */
1268
- objcClassPrefix: string;
1269
- /**
1270
- * Namespace for generated classes; defaults to the package.
1271
- */
1272
- csharpNamespace: string;
1273
- /**
1274
- * By default Swift generators will take the proto package and CamelCase it
1275
- * replacing '.' with underscore and use that to prefix the types/symbols
1276
- * defined. When this options is provided, they will use this value instead
1277
- * to prefix the types/symbols defined.
1278
- */
1279
- swiftPrefix: string;
1280
- /**
1281
- * Sets the php class prefix which is prepended to all php generated classes
1282
- * from this .proto. Default is empty.
1283
- */
1284
- phpClassPrefix: string;
1285
- /**
1286
- * Use this option to change the namespace of php generated classes. Default
1287
- * is empty. When this option is empty, the package name will be used for
1288
- * determining the namespace.
1289
- */
1290
- phpNamespace: string;
1291
- /**
1292
- * Use this option to change the namespace of php generated metadata classes.
1293
- * Default is empty. When this option is empty, the proto file name will be
1294
- * used for determining the namespace.
1295
- */
1296
- phpMetadataNamespace: string;
1297
- /**
1298
- * Use this option to change the package of ruby generated classes. Default
1299
- * is empty. When this option is not set, the package name will be used for
1300
- * determining the ruby package.
1301
- */
1302
- rubyPackage: string;
1303
- /**
1304
- * Any features defined in the specific edition.
1305
- * WARNING: This field should only be used by protobuf plugins or special
1306
- * cases like the proto compiler. Other uses are discouraged and
1307
- * developers should rely on the protoreflect APIs for their client language.
1308
- */
1309
- features?: FeatureSet;
1310
- /**
1311
- * The parser stores options it doesn't recognize here.
1312
- * See the documentation for the "Options" section above.
1313
- */
1314
- uninterpretedOption: UninterpretedOption[];
1315
- }
1316
- export interface FileOptionsProtoMsg {
1317
- typeUrl: "/google.protobuf.FileOptions";
1318
- value: Uint8Array;
1319
- }
1320
- /**
1321
- * @name FileOptionsAmino
1322
- * @package google.protobuf
1323
- * @see proto type: google.protobuf.FileOptions
1324
- */
1325
- export interface FileOptionsAmino {
1326
- /**
1327
- * Sets the Java package where classes generated from this .proto will be
1328
- * placed. By default, the proto package is used, but this is often
1329
- * inappropriate because proto packages do not normally start with backwards
1330
- * domain names.
1331
- */
1332
- java_package: string;
1333
- /**
1334
- * Controls the name of the wrapper Java class generated for the .proto file.
1335
- * That class will always contain the .proto file's getDescriptor() method as
1336
- * well as any top-level extensions defined in the .proto file.
1337
- * If java_multiple_files is disabled, then all the other classes from the
1338
- * .proto file will be nested inside the single wrapper outer class.
1339
- */
1340
- java_outer_classname: string;
1341
- /**
1342
- * If enabled, then the Java code generator will generate a separate .java
1343
- * file for each top-level message, enum, and service defined in the .proto
1344
- * file. Thus, these types will *not* be nested inside the wrapper class
1345
- * named by java_outer_classname. However, the wrapper class will still be
1346
- * generated to contain the file's getDescriptor() method as well as any
1347
- * top-level extensions defined in the file.
1348
- */
1349
- java_multiple_files: boolean;
1350
- /**
1351
- * This option does nothing.
1352
- * @deprecated
1353
- */
1354
- java_generate_equals_and_hash: boolean;
1355
- /**
1356
- * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
1357
- * which will throw an exception if invalid UTF-8 is parsed from the wire or
1358
- * assigned to a string field.
1359
- *
1360
- * TODO: clarify exactly what kinds of field types this option
1361
- * applies to, and update these docs accordingly.
1362
- *
1363
- * Proto3 files already perform these checks. Setting the option explicitly to
1364
- * false has no effect: it cannot be used to opt proto3 files out of UTF-8
1365
- * checks.
1366
- */
1367
- java_string_check_utf8: boolean;
1368
- optimize_for: FileOptions_OptimizeMode;
1369
- /**
1370
- * Sets the Go package where structs generated from this .proto will be
1371
- * placed. If omitted, the Go package will be derived from the following:
1372
- * - The basename of the package import path, if provided.
1373
- * - Otherwise, the package statement in the .proto file, if present.
1374
- * - Otherwise, the basename of the .proto file, without extension.
1375
- */
1376
- go_package: string;
1377
- /**
1378
- * Should generic services be generated in each language? "Generic" services
1379
- * are not specific to any particular RPC system. They are generated by the
1380
- * main code generators in each language (without additional plugins).
1381
- * Generic services were the only kind of service generation supported by
1382
- * early versions of google.protobuf.
1383
- *
1384
- * Generic services are now considered deprecated in favor of using plugins
1385
- * that generate code specific to your particular RPC system. Therefore,
1386
- * these default to false. Old code which depends on generic services should
1387
- * explicitly set them to true.
1388
- */
1389
- cc_generic_services: boolean;
1390
- java_generic_services: boolean;
1391
- py_generic_services: boolean;
1392
- /**
1393
- * Is this file deprecated?
1394
- * Depending on the target platform, this can emit Deprecated annotations
1395
- * for everything in the file, or it will be completely ignored; in the very
1396
- * least, this is a formalization for deprecating files.
1397
- */
1398
- deprecated: boolean;
1399
- /**
1400
- * Enables the use of arenas for the proto messages in this file. This applies
1401
- * only to generated classes for C++.
1402
- */
1403
- cc_enable_arenas: boolean;
1404
- /**
1405
- * Sets the objective c class prefix which is prepended to all objective c
1406
- * generated classes from this .proto. There is no default.
1407
- */
1408
- objc_class_prefix: string;
1409
- /**
1410
- * Namespace for generated classes; defaults to the package.
1411
- */
1412
- csharp_namespace: string;
1413
- /**
1414
- * By default Swift generators will take the proto package and CamelCase it
1415
- * replacing '.' with underscore and use that to prefix the types/symbols
1416
- * defined. When this options is provided, they will use this value instead
1417
- * to prefix the types/symbols defined.
1418
- */
1419
- swift_prefix: string;
1420
- /**
1421
- * Sets the php class prefix which is prepended to all php generated classes
1422
- * from this .proto. Default is empty.
1423
- */
1424
- php_class_prefix: string;
1425
- /**
1426
- * Use this option to change the namespace of php generated classes. Default
1427
- * is empty. When this option is empty, the package name will be used for
1428
- * determining the namespace.
1429
- */
1430
- php_namespace: string;
1431
- /**
1432
- * Use this option to change the namespace of php generated metadata classes.
1433
- * Default is empty. When this option is empty, the proto file name will be
1434
- * used for determining the namespace.
1435
- */
1436
- php_metadata_namespace: string;
1437
- /**
1438
- * Use this option to change the package of ruby generated classes. Default
1439
- * is empty. When this option is not set, the package name will be used for
1440
- * determining the ruby package.
1441
- */
1442
- ruby_package: string;
1443
- /**
1444
- * Any features defined in the specific edition.
1445
- * WARNING: This field should only be used by protobuf plugins or special
1446
- * cases like the proto compiler. Other uses are discouraged and
1447
- * developers should rely on the protoreflect APIs for their client language.
1448
- */
1449
- features?: FeatureSetAmino;
1450
- /**
1451
- * The parser stores options it doesn't recognize here.
1452
- * See the documentation for the "Options" section above.
1453
- */
1454
- uninterpreted_option: UninterpretedOptionAmino[];
1455
- }
1456
- export interface FileOptionsAminoMsg {
1457
- type: "/google.protobuf.FileOptions";
1458
- value: FileOptionsAmino;
1459
- }
1460
- /**
1461
- * @name MessageOptions
1462
- * @package google.protobuf
1463
- * @see proto type: google.protobuf.MessageOptions
1464
- */
1465
- export interface MessageOptions {
1466
- /**
1467
- * Set true to use the old proto1 MessageSet wire format for extensions.
1468
- * This is provided for backwards-compatibility with the MessageSet wire
1469
- * format. You should not use this for any other reason: It's less
1470
- * efficient, has fewer features, and is more complicated.
1471
- *
1472
- * The message must be defined exactly as follows:
1473
- * message Foo {
1474
- * option message_set_wire_format = true;
1475
- * extensions 4 to max;
1476
- * }
1477
- * Note that the message cannot have any defined fields; MessageSets only
1478
- * have extensions.
1479
- *
1480
- * All extensions of your type must be singular messages; e.g. they cannot
1481
- * be int32s, enums, or repeated messages.
1482
- *
1483
- * Because this is an option, the above two restrictions are not enforced by
1484
- * the protocol compiler.
1485
- */
1486
- messageSetWireFormat: boolean;
1487
- /**
1488
- * Disables the generation of the standard "descriptor()" accessor, which can
1489
- * conflict with a field of the same name. This is meant to make migration
1490
- * from proto1 easier; new code should avoid fields named "descriptor".
1491
- */
1492
- noStandardDescriptorAccessor: boolean;
1493
- /**
1494
- * Is this message deprecated?
1495
- * Depending on the target platform, this can emit Deprecated annotations
1496
- * for the message, or it will be completely ignored; in the very least,
1497
- * this is a formalization for deprecating messages.
1498
- */
1499
- deprecated: boolean;
1500
- /**
1501
- * Whether the message is an automatically generated map entry type for the
1502
- * maps field.
1503
- *
1504
- * For maps fields:
1505
- * map<KeyType, ValueType> map_field = 1;
1506
- * The parsed descriptor looks like:
1507
- * message MapFieldEntry {
1508
- * option map_entry = true;
1509
- * optional KeyType key = 1;
1510
- * optional ValueType value = 2;
1511
- * }
1512
- * repeated MapFieldEntry map_field = 1;
1513
- *
1514
- * Implementations may choose not to generate the map_entry=true message, but
1515
- * use a native map in the target language to hold the keys and values.
1516
- * The reflection APIs in such implementations still need to work as
1517
- * if the field is a repeated message field.
1518
- *
1519
- * NOTE: Do not set the option in .proto files. Always use the maps syntax
1520
- * instead. The option should only be implicitly set by the proto compiler
1521
- * parser.
1522
- */
1523
- mapEntry: boolean;
1524
- /**
1525
- * Enable the legacy handling of JSON field name conflicts. This lowercases
1526
- * and strips underscored from the fields before comparison in proto3 only.
1527
- * The new behavior takes `json_name` into account and applies to proto2 as
1528
- * well.
1529
- *
1530
- * This should only be used as a temporary measure against broken builds due
1531
- * to the change in behavior for JSON field name conflicts.
1532
- *
1533
- * TODO This is legacy behavior we plan to remove once downstream
1534
- * teams have had time to migrate.
1535
- * @deprecated
1536
- */
1537
- deprecatedLegacyJsonFieldConflicts: boolean;
1538
- /**
1539
- * Any features defined in the specific edition.
1540
- * WARNING: This field should only be used by protobuf plugins or special
1541
- * cases like the proto compiler. Other uses are discouraged and
1542
- * developers should rely on the protoreflect APIs for their client language.
1543
- */
1544
- features?: FeatureSet;
1545
- /**
1546
- * The parser stores options it doesn't recognize here. See above.
1547
- */
1548
- uninterpretedOption: UninterpretedOption[];
1549
- }
1550
- export interface MessageOptionsProtoMsg {
1551
- typeUrl: "/google.protobuf.MessageOptions";
1552
- value: Uint8Array;
1553
- }
1554
- /**
1555
- * @name MessageOptionsAmino
1556
- * @package google.protobuf
1557
- * @see proto type: google.protobuf.MessageOptions
1558
- */
1559
- export interface MessageOptionsAmino {
1560
- /**
1561
- * Set true to use the old proto1 MessageSet wire format for extensions.
1562
- * This is provided for backwards-compatibility with the MessageSet wire
1563
- * format. You should not use this for any other reason: It's less
1564
- * efficient, has fewer features, and is more complicated.
1565
- *
1566
- * The message must be defined exactly as follows:
1567
- * message Foo {
1568
- * option message_set_wire_format = true;
1569
- * extensions 4 to max;
1570
- * }
1571
- * Note that the message cannot have any defined fields; MessageSets only
1572
- * have extensions.
1573
- *
1574
- * All extensions of your type must be singular messages; e.g. they cannot
1575
- * be int32s, enums, or repeated messages.
1576
- *
1577
- * Because this is an option, the above two restrictions are not enforced by
1578
- * the protocol compiler.
1579
- */
1580
- message_set_wire_format: boolean;
1581
- /**
1582
- * Disables the generation of the standard "descriptor()" accessor, which can
1583
- * conflict with a field of the same name. This is meant to make migration
1584
- * from proto1 easier; new code should avoid fields named "descriptor".
1585
- */
1586
- no_standard_descriptor_accessor: boolean;
1587
- /**
1588
- * Is this message deprecated?
1589
- * Depending on the target platform, this can emit Deprecated annotations
1590
- * for the message, or it will be completely ignored; in the very least,
1591
- * this is a formalization for deprecating messages.
1592
- */
1593
- deprecated: boolean;
1594
- /**
1595
- * Whether the message is an automatically generated map entry type for the
1596
- * maps field.
1597
- *
1598
- * For maps fields:
1599
- * map<KeyType, ValueType> map_field = 1;
1600
- * The parsed descriptor looks like:
1601
- * message MapFieldEntry {
1602
- * option map_entry = true;
1603
- * optional KeyType key = 1;
1604
- * optional ValueType value = 2;
1605
- * }
1606
- * repeated MapFieldEntry map_field = 1;
1607
- *
1608
- * Implementations may choose not to generate the map_entry=true message, but
1609
- * use a native map in the target language to hold the keys and values.
1610
- * The reflection APIs in such implementations still need to work as
1611
- * if the field is a repeated message field.
1612
- *
1613
- * NOTE: Do not set the option in .proto files. Always use the maps syntax
1614
- * instead. The option should only be implicitly set by the proto compiler
1615
- * parser.
1616
- */
1617
- map_entry: boolean;
1618
- /**
1619
- * Enable the legacy handling of JSON field name conflicts. This lowercases
1620
- * and strips underscored from the fields before comparison in proto3 only.
1621
- * The new behavior takes `json_name` into account and applies to proto2 as
1622
- * well.
1623
- *
1624
- * This should only be used as a temporary measure against broken builds due
1625
- * to the change in behavior for JSON field name conflicts.
1626
- *
1627
- * TODO This is legacy behavior we plan to remove once downstream
1628
- * teams have had time to migrate.
1629
- * @deprecated
1630
- */
1631
- deprecated_legacy_json_field_conflicts: boolean;
1632
- /**
1633
- * Any features defined in the specific edition.
1634
- * WARNING: This field should only be used by protobuf plugins or special
1635
- * cases like the proto compiler. Other uses are discouraged and
1636
- * developers should rely on the protoreflect APIs for their client language.
1637
- */
1638
- features?: FeatureSetAmino;
1639
- /**
1640
- * The parser stores options it doesn't recognize here. See above.
1641
- */
1642
- uninterpreted_option: UninterpretedOptionAmino[];
1643
- }
1644
- export interface MessageOptionsAminoMsg {
1645
- type: "/google.protobuf.MessageOptions";
1646
- value: MessageOptionsAmino;
1647
- }
1648
- /**
1649
- * @name FieldOptions
1650
- * @package google.protobuf
1651
- * @see proto type: google.protobuf.FieldOptions
1652
- */
1653
- export interface FieldOptions {
1654
- /**
1655
- * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
1656
- * The ctype option instructs the C++ code generator to use a different
1657
- * representation of the field than it normally would. See the specific
1658
- * options below. This option is only implemented to support use of
1659
- * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1660
- * type "bytes" in the open source release.
1661
- * TODO: make ctype actually deprecated.
1662
- */
1663
- ctype: FieldOptions_CType;
1664
- /**
1665
- * The packed option can be enabled for repeated primitive fields to enable
1666
- * a more efficient representation on the wire. Rather than repeatedly
1667
- * writing the tag and type for each element, the entire array is encoded as
1668
- * a single length-delimited blob. In proto3, only explicit setting it to
1669
- * false will avoid using packed encoding. This option is prohibited in
1670
- * Editions, but the `repeated_field_encoding` feature can be used to control
1671
- * the behavior.
1672
- */
1673
- packed: boolean;
1674
- /**
1675
- * The jstype option determines the JavaScript type used for values of the
1676
- * field. The option is permitted only for 64 bit integral and fixed types
1677
- * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1678
- * is represented as JavaScript string, which avoids loss of precision that
1679
- * can happen when a large value is converted to a floating point JavaScript.
1680
- * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1681
- * use the JavaScript "number" type. The behavior of the default option
1682
- * JS_NORMAL is implementation dependent.
1683
- *
1684
- * This option is an enum to permit additional types to be added, e.g.
1685
- * goog.math.Integer.
1686
- */
1687
- jstype: FieldOptions_JSType;
1688
- /**
1689
- * Should this field be parsed lazily? Lazy applies only to message-type
1690
- * fields. It means that when the outer message is initially parsed, the
1691
- * inner message's contents will not be parsed but instead stored in encoded
1692
- * form. The inner message will actually be parsed when it is first accessed.
1693
- *
1694
- * This is only a hint. Implementations are free to choose whether to use
1695
- * eager or lazy parsing regardless of the value of this option. However,
1696
- * setting this option true suggests that the protocol author believes that
1697
- * using lazy parsing on this field is worth the additional bookkeeping
1698
- * overhead typically needed to implement it.
1699
- *
1700
- * This option does not affect the public interface of any generated code;
1701
- * all method signatures remain the same. Furthermore, thread-safety of the
1702
- * interface is not affected by this option; const methods remain safe to
1703
- * call from multiple threads concurrently, while non-const methods continue
1704
- * to require exclusive access.
1705
- *
1706
- * Note that lazy message fields are still eagerly verified to check
1707
- * ill-formed wireformat or missing required fields. Calling IsInitialized()
1708
- * on the outer message would fail if the inner message has missing required
1709
- * fields. Failed verification would result in parsing failure (except when
1710
- * uninitialized messages are acceptable).
1711
- */
1712
- lazy: boolean;
1713
- /**
1714
- * unverified_lazy does no correctness checks on the byte stream. This should
1715
- * only be used where lazy with verification is prohibitive for performance
1716
- * reasons.
1717
- */
1718
- unverifiedLazy: boolean;
1719
- /**
1720
- * Is this field deprecated?
1721
- * Depending on the target platform, this can emit Deprecated annotations
1722
- * for accessors, or it will be completely ignored; in the very least, this
1723
- * is a formalization for deprecating fields.
1724
- */
1725
- deprecated: boolean;
1726
- /**
1727
- * DEPRECATED. DO NOT USE!
1728
- * For Google-internal migration only. Do not use.
1729
- * @deprecated
1730
- */
1731
- weak: boolean;
1732
- /**
1733
- * Indicate that the field value should not be printed out when using debug
1734
- * formats, e.g. when the field contains sensitive credentials.
1735
- */
1736
- debugRedact: boolean;
1737
- retention: FieldOptions_OptionRetention;
1738
- targets: FieldOptions_OptionTargetType[];
1739
- editionDefaults: FieldOptions_EditionDefault[];
1740
- /**
1741
- * Any features defined in the specific edition.
1742
- * WARNING: This field should only be used by protobuf plugins or special
1743
- * cases like the proto compiler. Other uses are discouraged and
1744
- * developers should rely on the protoreflect APIs for their client language.
1745
- */
1746
- features?: FeatureSet;
1747
- featureSupport?: FieldOptions_FeatureSupport;
1748
- /**
1749
- * The parser stores options it doesn't recognize here. See above.
1750
- */
1751
- uninterpretedOption: UninterpretedOption[];
1752
- }
1753
- export interface FieldOptionsProtoMsg {
1754
- typeUrl: "/google.protobuf.FieldOptions";
1755
- value: Uint8Array;
1756
- }
1757
- /**
1758
- * @name FieldOptionsAmino
1759
- * @package google.protobuf
1760
- * @see proto type: google.protobuf.FieldOptions
1761
- */
1762
- export interface FieldOptionsAmino {
1763
- /**
1764
- * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
1765
- * The ctype option instructs the C++ code generator to use a different
1766
- * representation of the field than it normally would. See the specific
1767
- * options below. This option is only implemented to support use of
1768
- * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1769
- * type "bytes" in the open source release.
1770
- * TODO: make ctype actually deprecated.
1771
- */
1772
- ctype: FieldOptions_CType;
1773
- /**
1774
- * The packed option can be enabled for repeated primitive fields to enable
1775
- * a more efficient representation on the wire. Rather than repeatedly
1776
- * writing the tag and type for each element, the entire array is encoded as
1777
- * a single length-delimited blob. In proto3, only explicit setting it to
1778
- * false will avoid using packed encoding. This option is prohibited in
1779
- * Editions, but the `repeated_field_encoding` feature can be used to control
1780
- * the behavior.
1781
- */
1782
- packed: boolean;
1783
- /**
1784
- * The jstype option determines the JavaScript type used for values of the
1785
- * field. The option is permitted only for 64 bit integral and fixed types
1786
- * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1787
- * is represented as JavaScript string, which avoids loss of precision that
1788
- * can happen when a large value is converted to a floating point JavaScript.
1789
- * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1790
- * use the JavaScript "number" type. The behavior of the default option
1791
- * JS_NORMAL is implementation dependent.
1792
- *
1793
- * This option is an enum to permit additional types to be added, e.g.
1794
- * goog.math.Integer.
1795
- */
1796
- jstype: FieldOptions_JSType;
1797
- /**
1798
- * Should this field be parsed lazily? Lazy applies only to message-type
1799
- * fields. It means that when the outer message is initially parsed, the
1800
- * inner message's contents will not be parsed but instead stored in encoded
1801
- * form. The inner message will actually be parsed when it is first accessed.
1802
- *
1803
- * This is only a hint. Implementations are free to choose whether to use
1804
- * eager or lazy parsing regardless of the value of this option. However,
1805
- * setting this option true suggests that the protocol author believes that
1806
- * using lazy parsing on this field is worth the additional bookkeeping
1807
- * overhead typically needed to implement it.
1808
- *
1809
- * This option does not affect the public interface of any generated code;
1810
- * all method signatures remain the same. Furthermore, thread-safety of the
1811
- * interface is not affected by this option; const methods remain safe to
1812
- * call from multiple threads concurrently, while non-const methods continue
1813
- * to require exclusive access.
1814
- *
1815
- * Note that lazy message fields are still eagerly verified to check
1816
- * ill-formed wireformat or missing required fields. Calling IsInitialized()
1817
- * on the outer message would fail if the inner message has missing required
1818
- * fields. Failed verification would result in parsing failure (except when
1819
- * uninitialized messages are acceptable).
1820
- */
1821
- lazy: boolean;
1822
- /**
1823
- * unverified_lazy does no correctness checks on the byte stream. This should
1824
- * only be used where lazy with verification is prohibitive for performance
1825
- * reasons.
1826
- */
1827
- unverified_lazy: boolean;
1828
- /**
1829
- * Is this field deprecated?
1830
- * Depending on the target platform, this can emit Deprecated annotations
1831
- * for accessors, or it will be completely ignored; in the very least, this
1832
- * is a formalization for deprecating fields.
1833
- */
1834
- deprecated: boolean;
1835
- /**
1836
- * DEPRECATED. DO NOT USE!
1837
- * For Google-internal migration only. Do not use.
1838
- * @deprecated
1839
- */
1840
- weak: boolean;
1841
- /**
1842
- * Indicate that the field value should not be printed out when using debug
1843
- * formats, e.g. when the field contains sensitive credentials.
1844
- */
1845
- debug_redact: boolean;
1846
- retention: FieldOptions_OptionRetention;
1847
- targets: FieldOptions_OptionTargetType[];
1848
- edition_defaults: FieldOptions_EditionDefaultAmino[];
1849
- /**
1850
- * Any features defined in the specific edition.
1851
- * WARNING: This field should only be used by protobuf plugins or special
1852
- * cases like the proto compiler. Other uses are discouraged and
1853
- * developers should rely on the protoreflect APIs for their client language.
1854
- */
1855
- features?: FeatureSetAmino;
1856
- feature_support?: FieldOptions_FeatureSupportAmino;
1857
- /**
1858
- * The parser stores options it doesn't recognize here. See above.
1859
- */
1860
- uninterpreted_option: UninterpretedOptionAmino[];
1861
- }
1862
- export interface FieldOptionsAminoMsg {
1863
- type: "/google.protobuf.FieldOptions";
1864
- value: FieldOptionsAmino;
1865
- }
1866
- /**
1867
- * @name FieldOptions_EditionDefault
1868
- * @package google.protobuf
1869
- * @see proto type: google.protobuf.EditionDefault
1870
- */
1871
- export interface FieldOptions_EditionDefault {
1872
- edition: Edition;
1873
- /**
1874
- * Textproto value.
1875
- */
1876
- value: string;
1877
- }
1878
- export interface FieldOptions_EditionDefaultProtoMsg {
1879
- typeUrl: "/google.protobuf.EditionDefault";
1880
- value: Uint8Array;
1881
- }
1882
- /**
1883
- * @name FieldOptions_EditionDefaultAmino
1884
- * @package google.protobuf
1885
- * @see proto type: google.protobuf.FieldOptions_EditionDefault
1886
- */
1887
- export interface FieldOptions_EditionDefaultAmino {
1888
- edition: Edition;
1889
- /**
1890
- * Textproto value.
1891
- */
1892
- value: string;
1893
- }
1894
- export interface FieldOptions_EditionDefaultAminoMsg {
1895
- type: "/google.protobuf.EditionDefault";
1896
- value: FieldOptions_EditionDefaultAmino;
1897
- }
1898
- /**
1899
- * Information about the support window of a feature.
1900
- * @name FieldOptions_FeatureSupport
1901
- * @package google.protobuf
1902
- * @see proto type: google.protobuf.FeatureSupport
1903
- */
1904
- export interface FieldOptions_FeatureSupport {
1905
- /**
1906
- * The edition that this feature was first available in. In editions
1907
- * earlier than this one, the default assigned to EDITION_LEGACY will be
1908
- * used, and proto files will not be able to override it.
1909
- */
1910
- editionIntroduced: Edition;
1911
- /**
1912
- * The edition this feature becomes deprecated in. Using this after this
1913
- * edition may trigger warnings.
1914
- */
1915
- editionDeprecated: Edition;
1916
- /**
1917
- * The deprecation warning text if this feature is used after the edition it
1918
- * was marked deprecated in.
1919
- */
1920
- deprecationWarning: string;
1921
- /**
1922
- * The edition this feature is no longer available in. In editions after
1923
- * this one, the last default assigned will be used, and proto files will
1924
- * not be able to override it.
1925
- */
1926
- editionRemoved: Edition;
1927
- }
1928
- export interface FieldOptions_FeatureSupportProtoMsg {
1929
- typeUrl: "/google.protobuf.FeatureSupport";
1930
- value: Uint8Array;
1931
- }
1932
- /**
1933
- * Information about the support window of a feature.
1934
- * @name FieldOptions_FeatureSupportAmino
1935
- * @package google.protobuf
1936
- * @see proto type: google.protobuf.FieldOptions_FeatureSupport
1937
- */
1938
- export interface FieldOptions_FeatureSupportAmino {
1939
- /**
1940
- * The edition that this feature was first available in. In editions
1941
- * earlier than this one, the default assigned to EDITION_LEGACY will be
1942
- * used, and proto files will not be able to override it.
1943
- */
1944
- edition_introduced: Edition;
1945
- /**
1946
- * The edition this feature becomes deprecated in. Using this after this
1947
- * edition may trigger warnings.
1948
- */
1949
- edition_deprecated: Edition;
1950
- /**
1951
- * The deprecation warning text if this feature is used after the edition it
1952
- * was marked deprecated in.
1953
- */
1954
- deprecation_warning: string;
1955
- /**
1956
- * The edition this feature is no longer available in. In editions after
1957
- * this one, the last default assigned will be used, and proto files will
1958
- * not be able to override it.
1959
- */
1960
- edition_removed: Edition;
1961
- }
1962
- export interface FieldOptions_FeatureSupportAminoMsg {
1963
- type: "/google.protobuf.FeatureSupport";
1964
- value: FieldOptions_FeatureSupportAmino;
1965
- }
1966
- /**
1967
- * @name OneofOptions
1968
- * @package google.protobuf
1969
- * @see proto type: google.protobuf.OneofOptions
1970
- */
1971
- export interface OneofOptions {
1972
- /**
1973
- * Any features defined in the specific edition.
1974
- * WARNING: This field should only be used by protobuf plugins or special
1975
- * cases like the proto compiler. Other uses are discouraged and
1976
- * developers should rely on the protoreflect APIs for their client language.
1977
- */
1978
- features?: FeatureSet;
1979
- /**
1980
- * The parser stores options it doesn't recognize here. See above.
1981
- */
1982
- uninterpretedOption: UninterpretedOption[];
1983
- }
1984
- export interface OneofOptionsProtoMsg {
1985
- typeUrl: "/google.protobuf.OneofOptions";
1986
- value: Uint8Array;
1987
- }
1988
- /**
1989
- * @name OneofOptionsAmino
1990
- * @package google.protobuf
1991
- * @see proto type: google.protobuf.OneofOptions
1992
- */
1993
- export interface OneofOptionsAmino {
1994
- /**
1995
- * Any features defined in the specific edition.
1996
- * WARNING: This field should only be used by protobuf plugins or special
1997
- * cases like the proto compiler. Other uses are discouraged and
1998
- * developers should rely on the protoreflect APIs for their client language.
1999
- */
2000
- features?: FeatureSetAmino;
2001
- /**
2002
- * The parser stores options it doesn't recognize here. See above.
2003
- */
2004
- uninterpreted_option: UninterpretedOptionAmino[];
2005
- }
2006
- export interface OneofOptionsAminoMsg {
2007
- type: "/google.protobuf.OneofOptions";
2008
- value: OneofOptionsAmino;
2009
- }
2010
- /**
2011
- * @name EnumOptions
2012
- * @package google.protobuf
2013
- * @see proto type: google.protobuf.EnumOptions
2014
- */
2015
- export interface EnumOptions {
2016
- /**
2017
- * Set this option to true to allow mapping different tag names to the same
2018
- * value.
2019
- */
2020
- allowAlias: boolean;
2021
- /**
2022
- * Is this enum deprecated?
2023
- * Depending on the target platform, this can emit Deprecated annotations
2024
- * for the enum, or it will be completely ignored; in the very least, this
2025
- * is a formalization for deprecating enums.
2026
- */
2027
- deprecated: boolean;
2028
- /**
2029
- * Enable the legacy handling of JSON field name conflicts. This lowercases
2030
- * and strips underscored from the fields before comparison in proto3 only.
2031
- * The new behavior takes `json_name` into account and applies to proto2 as
2032
- * well.
2033
- * TODO Remove this legacy behavior once downstream teams have
2034
- * had time to migrate.
2035
- * @deprecated
2036
- */
2037
- deprecatedLegacyJsonFieldConflicts: boolean;
2038
- /**
2039
- * Any features defined in the specific edition.
2040
- * WARNING: This field should only be used by protobuf plugins or special
2041
- * cases like the proto compiler. Other uses are discouraged and
2042
- * developers should rely on the protoreflect APIs for their client language.
2043
- */
2044
- features?: FeatureSet;
2045
- /**
2046
- * The parser stores options it doesn't recognize here. See above.
2047
- */
2048
- uninterpretedOption: UninterpretedOption[];
2049
- }
2050
- export interface EnumOptionsProtoMsg {
2051
- typeUrl: "/google.protobuf.EnumOptions";
2052
- value: Uint8Array;
2053
- }
2054
- /**
2055
- * @name EnumOptionsAmino
2056
- * @package google.protobuf
2057
- * @see proto type: google.protobuf.EnumOptions
2058
- */
2059
- export interface EnumOptionsAmino {
2060
- /**
2061
- * Set this option to true to allow mapping different tag names to the same
2062
- * value.
2063
- */
2064
- allow_alias: boolean;
2065
- /**
2066
- * Is this enum deprecated?
2067
- * Depending on the target platform, this can emit Deprecated annotations
2068
- * for the enum, or it will be completely ignored; in the very least, this
2069
- * is a formalization for deprecating enums.
2070
- */
2071
- deprecated: boolean;
2072
- /**
2073
- * Enable the legacy handling of JSON field name conflicts. This lowercases
2074
- * and strips underscored from the fields before comparison in proto3 only.
2075
- * The new behavior takes `json_name` into account and applies to proto2 as
2076
- * well.
2077
- * TODO Remove this legacy behavior once downstream teams have
2078
- * had time to migrate.
2079
- * @deprecated
2080
- */
2081
- deprecated_legacy_json_field_conflicts: boolean;
2082
- /**
2083
- * Any features defined in the specific edition.
2084
- * WARNING: This field should only be used by protobuf plugins or special
2085
- * cases like the proto compiler. Other uses are discouraged and
2086
- * developers should rely on the protoreflect APIs for their client language.
2087
- */
2088
- features?: FeatureSetAmino;
2089
- /**
2090
- * The parser stores options it doesn't recognize here. See above.
2091
- */
2092
- uninterpreted_option: UninterpretedOptionAmino[];
2093
- }
2094
- export interface EnumOptionsAminoMsg {
2095
- type: "/google.protobuf.EnumOptions";
2096
- value: EnumOptionsAmino;
2097
- }
2098
- /**
2099
- * @name EnumValueOptions
2100
- * @package google.protobuf
2101
- * @see proto type: google.protobuf.EnumValueOptions
2102
- */
2103
- export interface EnumValueOptions {
2104
- /**
2105
- * Is this enum value deprecated?
2106
- * Depending on the target platform, this can emit Deprecated annotations
2107
- * for the enum value, or it will be completely ignored; in the very least,
2108
- * this is a formalization for deprecating enum values.
2109
- */
2110
- deprecated: boolean;
2111
- /**
2112
- * Any features defined in the specific edition.
2113
- * WARNING: This field should only be used by protobuf plugins or special
2114
- * cases like the proto compiler. Other uses are discouraged and
2115
- * developers should rely on the protoreflect APIs for their client language.
2116
- */
2117
- features?: FeatureSet;
2118
- /**
2119
- * Indicate that fields annotated with this enum value should not be printed
2120
- * out when using debug formats, e.g. when the field contains sensitive
2121
- * credentials.
2122
- */
2123
- debugRedact: boolean;
2124
- /**
2125
- * Information about the support window of a feature value.
2126
- */
2127
- featureSupport?: FieldOptions_FeatureSupport;
2128
- /**
2129
- * The parser stores options it doesn't recognize here. See above.
2130
- */
2131
- uninterpretedOption: UninterpretedOption[];
2132
- }
2133
- export interface EnumValueOptionsProtoMsg {
2134
- typeUrl: "/google.protobuf.EnumValueOptions";
2135
- value: Uint8Array;
2136
- }
2137
- /**
2138
- * @name EnumValueOptionsAmino
2139
- * @package google.protobuf
2140
- * @see proto type: google.protobuf.EnumValueOptions
2141
- */
2142
- export interface EnumValueOptionsAmino {
2143
- /**
2144
- * Is this enum value deprecated?
2145
- * Depending on the target platform, this can emit Deprecated annotations
2146
- * for the enum value, or it will be completely ignored; in the very least,
2147
- * this is a formalization for deprecating enum values.
2148
- */
2149
- deprecated: boolean;
2150
- /**
2151
- * Any features defined in the specific edition.
2152
- * WARNING: This field should only be used by protobuf plugins or special
2153
- * cases like the proto compiler. Other uses are discouraged and
2154
- * developers should rely on the protoreflect APIs for their client language.
2155
- */
2156
- features?: FeatureSetAmino;
2157
- /**
2158
- * Indicate that fields annotated with this enum value should not be printed
2159
- * out when using debug formats, e.g. when the field contains sensitive
2160
- * credentials.
2161
- */
2162
- debug_redact: boolean;
2163
- /**
2164
- * Information about the support window of a feature value.
2165
- */
2166
- feature_support?: FieldOptions_FeatureSupportAmino;
2167
- /**
2168
- * The parser stores options it doesn't recognize here. See above.
2169
- */
2170
- uninterpreted_option: UninterpretedOptionAmino[];
2171
- }
2172
- export interface EnumValueOptionsAminoMsg {
2173
- type: "/google.protobuf.EnumValueOptions";
2174
- value: EnumValueOptionsAmino;
2175
- }
2176
- /**
2177
- * @name ServiceOptions
2178
- * @package google.protobuf
2179
- * @see proto type: google.protobuf.ServiceOptions
2180
- */
2181
- export interface ServiceOptions {
2182
- /**
2183
- * Any features defined in the specific edition.
2184
- * WARNING: This field should only be used by protobuf plugins or special
2185
- * cases like the proto compiler. Other uses are discouraged and
2186
- * developers should rely on the protoreflect APIs for their client language.
2187
- */
2188
- features?: FeatureSet;
2189
- /**
2190
- * Is this service deprecated?
2191
- * Depending on the target platform, this can emit Deprecated annotations
2192
- * for the service, or it will be completely ignored; in the very least,
2193
- * this is a formalization for deprecating services.
2194
- */
2195
- deprecated: boolean;
2196
- /**
2197
- * The parser stores options it doesn't recognize here. See above.
2198
- */
2199
- uninterpretedOption: UninterpretedOption[];
2200
- }
2201
- export interface ServiceOptionsProtoMsg {
2202
- typeUrl: "/google.protobuf.ServiceOptions";
2203
- value: Uint8Array;
2204
- }
2205
- /**
2206
- * @name ServiceOptionsAmino
2207
- * @package google.protobuf
2208
- * @see proto type: google.protobuf.ServiceOptions
2209
- */
2210
- export interface ServiceOptionsAmino {
2211
- /**
2212
- * Any features defined in the specific edition.
2213
- * WARNING: This field should only be used by protobuf plugins or special
2214
- * cases like the proto compiler. Other uses are discouraged and
2215
- * developers should rely on the protoreflect APIs for their client language.
2216
- */
2217
- features?: FeatureSetAmino;
2218
- /**
2219
- * Is this service deprecated?
2220
- * Depending on the target platform, this can emit Deprecated annotations
2221
- * for the service, or it will be completely ignored; in the very least,
2222
- * this is a formalization for deprecating services.
2223
- */
2224
- deprecated: boolean;
2225
- /**
2226
- * The parser stores options it doesn't recognize here. See above.
2227
- */
2228
- uninterpreted_option: UninterpretedOptionAmino[];
2229
- }
2230
- export interface ServiceOptionsAminoMsg {
2231
- type: "/google.protobuf.ServiceOptions";
2232
- value: ServiceOptionsAmino;
2233
- }
2234
- /**
2235
- * @name MethodOptions
2236
- * @package google.protobuf
2237
- * @see proto type: google.protobuf.MethodOptions
2238
- */
2239
- export interface MethodOptions {
2240
- /**
2241
- * Is this method deprecated?
2242
- * Depending on the target platform, this can emit Deprecated annotations
2243
- * for the method, or it will be completely ignored; in the very least,
2244
- * this is a formalization for deprecating methods.
2245
- */
2246
- deprecated: boolean;
2247
- idempotencyLevel: MethodOptions_IdempotencyLevel;
2248
- /**
2249
- * Any features defined in the specific edition.
2250
- * WARNING: This field should only be used by protobuf plugins or special
2251
- * cases like the proto compiler. Other uses are discouraged and
2252
- * developers should rely on the protoreflect APIs for their client language.
2253
- */
2254
- features?: FeatureSet;
2255
- /**
2256
- * The parser stores options it doesn't recognize here. See above.
2257
- */
2258
- uninterpretedOption: UninterpretedOption[];
2259
- }
2260
- export interface MethodOptionsProtoMsg {
2261
- typeUrl: "/google.protobuf.MethodOptions";
2262
- value: Uint8Array;
2263
- }
2264
- /**
2265
- * @name MethodOptionsAmino
2266
- * @package google.protobuf
2267
- * @see proto type: google.protobuf.MethodOptions
2268
- */
2269
- export interface MethodOptionsAmino {
2270
- /**
2271
- * Is this method deprecated?
2272
- * Depending on the target platform, this can emit Deprecated annotations
2273
- * for the method, or it will be completely ignored; in the very least,
2274
- * this is a formalization for deprecating methods.
2275
- */
2276
- deprecated: boolean;
2277
- idempotency_level: MethodOptions_IdempotencyLevel;
2278
- /**
2279
- * Any features defined in the specific edition.
2280
- * WARNING: This field should only be used by protobuf plugins or special
2281
- * cases like the proto compiler. Other uses are discouraged and
2282
- * developers should rely on the protoreflect APIs for their client language.
2283
- */
2284
- features?: FeatureSetAmino;
2285
- /**
2286
- * The parser stores options it doesn't recognize here. See above.
2287
- */
2288
- uninterpreted_option: UninterpretedOptionAmino[];
2289
- }
2290
- export interface MethodOptionsAminoMsg {
2291
- type: "/google.protobuf.MethodOptions";
2292
- value: MethodOptionsAmino;
2293
- }
2294
- /**
2295
- * A message representing a option the parser does not recognize. This only
2296
- * appears in options protos created by the compiler::Parser class.
2297
- * DescriptorPool resolves these when building Descriptor objects. Therefore,
2298
- * options protos in descriptor objects (e.g. returned by Descriptor::options(),
2299
- * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
2300
- * in them.
2301
- * @name UninterpretedOption
2302
- * @package google.protobuf
2303
- * @see proto type: google.protobuf.UninterpretedOption
2304
- */
2305
- export interface UninterpretedOption {
2306
- name: UninterpretedOption_NamePart[];
2307
- /**
2308
- * The value of the uninterpreted option, in whatever type the tokenizer
2309
- * identified it as during parsing. Exactly one of these should be set.
2310
- */
2311
- identifierValue: string;
2312
- positiveIntValue: bigint;
2313
- negativeIntValue: bigint;
2314
- doubleValue: number;
2315
- stringValue: Uint8Array;
2316
- aggregateValue: string;
2317
- }
2318
- export interface UninterpretedOptionProtoMsg {
2319
- typeUrl: "/google.protobuf.UninterpretedOption";
2320
- value: Uint8Array;
2321
- }
2322
- /**
2323
- * A message representing a option the parser does not recognize. This only
2324
- * appears in options protos created by the compiler::Parser class.
2325
- * DescriptorPool resolves these when building Descriptor objects. Therefore,
2326
- * options protos in descriptor objects (e.g. returned by Descriptor::options(),
2327
- * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
2328
- * in them.
2329
- * @name UninterpretedOptionAmino
2330
- * @package google.protobuf
2331
- * @see proto type: google.protobuf.UninterpretedOption
2332
- */
2333
- export interface UninterpretedOptionAmino {
2334
- name: UninterpretedOption_NamePartAmino[];
2335
- /**
2336
- * The value of the uninterpreted option, in whatever type the tokenizer
2337
- * identified it as during parsing. Exactly one of these should be set.
2338
- */
2339
- identifier_value: string;
2340
- positive_int_value: string;
2341
- negative_int_value: string;
2342
- double_value: number;
2343
- string_value: string;
2344
- aggregate_value: string;
2345
- }
2346
- export interface UninterpretedOptionAminoMsg {
2347
- type: "/google.protobuf.UninterpretedOption";
2348
- value: UninterpretedOptionAmino;
2349
- }
2350
- /**
2351
- * The name of the uninterpreted option. Each string represents a segment in
2352
- * a dot-separated name. is_extension is true iff a segment represents an
2353
- * extension (denoted with parentheses in options specs in .proto files).
2354
- * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
2355
- * "foo.(bar.baz).moo".
2356
- * @name UninterpretedOption_NamePart
2357
- * @package google.protobuf
2358
- * @see proto type: google.protobuf.NamePart
2359
- */
2360
- export interface UninterpretedOption_NamePart {
2361
- namePart: string;
2362
- isExtension: boolean;
2363
- }
2364
- export interface UninterpretedOption_NamePartProtoMsg {
2365
- typeUrl: "/google.protobuf.NamePart";
2366
- value: Uint8Array;
2367
- }
2368
- /**
2369
- * The name of the uninterpreted option. Each string represents a segment in
2370
- * a dot-separated name. is_extension is true iff a segment represents an
2371
- * extension (denoted with parentheses in options specs in .proto files).
2372
- * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
2373
- * "foo.(bar.baz).moo".
2374
- * @name UninterpretedOption_NamePartAmino
2375
- * @package google.protobuf
2376
- * @see proto type: google.protobuf.UninterpretedOption_NamePart
2377
- */
2378
- export interface UninterpretedOption_NamePartAmino {
2379
- name_part: string;
2380
- is_extension: boolean;
2381
- }
2382
- export interface UninterpretedOption_NamePartAminoMsg {
2383
- type: "/google.protobuf.NamePart";
2384
- value: UninterpretedOption_NamePartAmino;
2385
- }
2386
- /**
2387
- * TODO Enums in C++ gencode (and potentially other languages) are
2388
- * not well scoped. This means that each of the feature enums below can clash
2389
- * with each other. The short names we've chosen maximize call-site
2390
- * readability, but leave us very open to this scenario. A future feature will
2391
- * be designed and implemented to handle this, hopefully before we ever hit a
2392
- * conflict here.
2393
- * @name FeatureSet
2394
- * @package google.protobuf
2395
- * @see proto type: google.protobuf.FeatureSet
2396
- */
2397
- export interface FeatureSet {
2398
- fieldPresence: FeatureSet_FieldPresence;
2399
- enumType: FeatureSet_EnumType;
2400
- repeatedFieldEncoding: FeatureSet_RepeatedFieldEncoding;
2401
- utf8Validation: FeatureSet_Utf8Validation;
2402
- messageEncoding: FeatureSet_MessageEncoding;
2403
- jsonFormat: FeatureSet_JsonFormat;
2404
- enforceNamingStyle: FeatureSet_EnforceNamingStyle;
2405
- }
2406
- export interface FeatureSetProtoMsg {
2407
- typeUrl: "/google.protobuf.FeatureSet";
2408
- value: Uint8Array;
2409
- }
2410
- /**
2411
- * TODO Enums in C++ gencode (and potentially other languages) are
2412
- * not well scoped. This means that each of the feature enums below can clash
2413
- * with each other. The short names we've chosen maximize call-site
2414
- * readability, but leave us very open to this scenario. A future feature will
2415
- * be designed and implemented to handle this, hopefully before we ever hit a
2416
- * conflict here.
2417
- * @name FeatureSetAmino
2418
- * @package google.protobuf
2419
- * @see proto type: google.protobuf.FeatureSet
2420
- */
2421
- export interface FeatureSetAmino {
2422
- field_presence: FeatureSet_FieldPresence;
2423
- enum_type: FeatureSet_EnumType;
2424
- repeated_field_encoding: FeatureSet_RepeatedFieldEncoding;
2425
- utf8_validation: FeatureSet_Utf8Validation;
2426
- message_encoding: FeatureSet_MessageEncoding;
2427
- json_format: FeatureSet_JsonFormat;
2428
- enforce_naming_style: FeatureSet_EnforceNamingStyle;
2429
- }
2430
- export interface FeatureSetAminoMsg {
2431
- type: "/google.protobuf.FeatureSet";
2432
- value: FeatureSetAmino;
2433
- }
2434
- /**
2435
- * @name FeatureSet_VisibilityFeature
2436
- * @package google.protobuf
2437
- * @see proto type: google.protobuf.VisibilityFeature
2438
- */
2439
- export interface FeatureSet_VisibilityFeature {
2440
- }
2441
- export interface FeatureSet_VisibilityFeatureProtoMsg {
2442
- typeUrl: "/google.protobuf.VisibilityFeature";
2443
- value: Uint8Array;
2444
- }
2445
- /**
2446
- * @name FeatureSet_VisibilityFeatureAmino
2447
- * @package google.protobuf
2448
- * @see proto type: google.protobuf.FeatureSet_VisibilityFeature
2449
- */
2450
- export interface FeatureSet_VisibilityFeatureAmino {
2451
- }
2452
- export interface FeatureSet_VisibilityFeatureAminoMsg {
2453
- type: "/google.protobuf.VisibilityFeature";
2454
- value: FeatureSet_VisibilityFeatureAmino;
2455
- }
2456
- /**
2457
- * A compiled specification for the defaults of a set of features. These
2458
- * messages are generated from FeatureSet extensions and can be used to seed
2459
- * feature resolution. The resolution with this object becomes a simple search
2460
- * for the closest matching edition, followed by proto merges.
2461
- * @name FeatureSetDefaults
2462
- * @package google.protobuf
2463
- * @see proto type: google.protobuf.FeatureSetDefaults
2464
- */
2465
- export interface FeatureSetDefaults {
2466
- defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
2467
- /**
2468
- * The minimum supported edition (inclusive) when this was constructed.
2469
- * Editions before this will not have defaults.
2470
- */
2471
- minimumEdition: Edition;
2472
- /**
2473
- * The maximum known edition (inclusive) when this was constructed. Editions
2474
- * after this will not have reliable defaults.
2475
- */
2476
- maximumEdition: Edition;
2477
- }
2478
- export interface FeatureSetDefaultsProtoMsg {
2479
- typeUrl: "/google.protobuf.FeatureSetDefaults";
2480
- value: Uint8Array;
2481
- }
2482
- /**
2483
- * A compiled specification for the defaults of a set of features. These
2484
- * messages are generated from FeatureSet extensions and can be used to seed
2485
- * feature resolution. The resolution with this object becomes a simple search
2486
- * for the closest matching edition, followed by proto merges.
2487
- * @name FeatureSetDefaultsAmino
2488
- * @package google.protobuf
2489
- * @see proto type: google.protobuf.FeatureSetDefaults
2490
- */
2491
- export interface FeatureSetDefaultsAmino {
2492
- defaults: FeatureSetDefaults_FeatureSetEditionDefaultAmino[];
2493
- /**
2494
- * The minimum supported edition (inclusive) when this was constructed.
2495
- * Editions before this will not have defaults.
2496
- */
2497
- minimum_edition: Edition;
2498
- /**
2499
- * The maximum known edition (inclusive) when this was constructed. Editions
2500
- * after this will not have reliable defaults.
2501
- */
2502
- maximum_edition: Edition;
2503
- }
2504
- export interface FeatureSetDefaultsAminoMsg {
2505
- type: "/google.protobuf.FeatureSetDefaults";
2506
- value: FeatureSetDefaultsAmino;
2507
- }
2508
- /**
2509
- * A map from every known edition with a unique set of defaults to its
2510
- * defaults. Not all editions may be contained here. For a given edition,
2511
- * the defaults at the closest matching edition ordered at or before it should
2512
- * be used. This field must be in strict ascending order by edition.
2513
- * @name FeatureSetDefaults_FeatureSetEditionDefault
2514
- * @package google.protobuf
2515
- * @see proto type: google.protobuf.FeatureSetEditionDefault
2516
- */
2517
- export interface FeatureSetDefaults_FeatureSetEditionDefault {
2518
- edition: Edition;
2519
- /**
2520
- * Defaults of features that can be overridden in this edition.
2521
- */
2522
- overridableFeatures?: FeatureSet;
2523
- /**
2524
- * Defaults of features that can't be overridden in this edition.
2525
- */
2526
- fixedFeatures?: FeatureSet;
2527
- }
2528
- export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
2529
- typeUrl: "/google.protobuf.FeatureSetEditionDefault";
2530
- value: Uint8Array;
2531
- }
2532
- /**
2533
- * A map from every known edition with a unique set of defaults to its
2534
- * defaults. Not all editions may be contained here. For a given edition,
2535
- * the defaults at the closest matching edition ordered at or before it should
2536
- * be used. This field must be in strict ascending order by edition.
2537
- * @name FeatureSetDefaults_FeatureSetEditionDefaultAmino
2538
- * @package google.protobuf
2539
- * @see proto type: google.protobuf.FeatureSetDefaults_FeatureSetEditionDefault
2540
- */
2541
- export interface FeatureSetDefaults_FeatureSetEditionDefaultAmino {
2542
- edition: Edition;
2543
- /**
2544
- * Defaults of features that can be overridden in this edition.
2545
- */
2546
- overridable_features?: FeatureSetAmino;
2547
- /**
2548
- * Defaults of features that can't be overridden in this edition.
2549
- */
2550
- fixed_features?: FeatureSetAmino;
2551
- }
2552
- export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
2553
- type: "/google.protobuf.FeatureSetEditionDefault";
2554
- value: FeatureSetDefaults_FeatureSetEditionDefaultAmino;
2555
- }
2556
- /**
2557
- * Encapsulates information about the original source file from which a
2558
- * FileDescriptorProto was generated.
2559
- * @name SourceCodeInfo
2560
- * @package google.protobuf
2561
- * @see proto type: google.protobuf.SourceCodeInfo
2562
- */
2563
- export interface SourceCodeInfo {
2564
- /**
2565
- * A Location identifies a piece of source code in a .proto file which
2566
- * corresponds to a particular definition. This information is intended
2567
- * to be useful to IDEs, code indexers, documentation generators, and similar
2568
- * tools.
2569
- *
2570
- * For example, say we have a file like:
2571
- * message Foo {
2572
- * optional string foo = 1;
2573
- * }
2574
- * Let's look at just the field definition:
2575
- * optional string foo = 1;
2576
- * ^ ^^ ^^ ^ ^^^
2577
- * a bc de f ghi
2578
- * We have the following locations:
2579
- * span path represents
2580
- * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2581
- * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2582
- * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2583
- * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2584
- * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2585
- *
2586
- * Notes:
2587
- * - A location may refer to a repeated field itself (i.e. not to any
2588
- * particular index within it). This is used whenever a set of elements are
2589
- * logically enclosed in a single code segment. For example, an entire
2590
- * extend block (possibly containing multiple extension definitions) will
2591
- * have an outer location whose path refers to the "extensions" repeated
2592
- * field without an index.
2593
- * - Multiple locations may have the same path. This happens when a single
2594
- * logical declaration is spread out across multiple places. The most
2595
- * obvious example is the "extend" block again -- there may be multiple
2596
- * extend blocks in the same scope, each of which will have the same path.
2597
- * - A location's span is not always a subset of its parent's span. For
2598
- * example, the "extendee" of an extension declaration appears at the
2599
- * beginning of the "extend" block and is shared by all extensions within
2600
- * the block.
2601
- * - Just because a location's span is a subset of some other location's span
2602
- * does not mean that it is a descendant. For example, a "group" defines
2603
- * both a type and a field in a single declaration. Thus, the locations
2604
- * corresponding to the type and field and their components will overlap.
2605
- * - Code which tries to interpret locations should probably be designed to
2606
- * ignore those that it doesn't understand, as more types of locations could
2607
- * be recorded in the future.
2608
- */
2609
- location: SourceCodeInfo_Location[];
2610
- }
2611
- export interface SourceCodeInfoProtoMsg {
2612
- typeUrl: "/google.protobuf.SourceCodeInfo";
2613
- value: Uint8Array;
2614
- }
2615
- /**
2616
- * Encapsulates information about the original source file from which a
2617
- * FileDescriptorProto was generated.
2618
- * @name SourceCodeInfoAmino
2619
- * @package google.protobuf
2620
- * @see proto type: google.protobuf.SourceCodeInfo
2621
- */
2622
- export interface SourceCodeInfoAmino {
2623
- /**
2624
- * A Location identifies a piece of source code in a .proto file which
2625
- * corresponds to a particular definition. This information is intended
2626
- * to be useful to IDEs, code indexers, documentation generators, and similar
2627
- * tools.
2628
- *
2629
- * For example, say we have a file like:
2630
- * message Foo {
2631
- * optional string foo = 1;
2632
- * }
2633
- * Let's look at just the field definition:
2634
- * optional string foo = 1;
2635
- * ^ ^^ ^^ ^ ^^^
2636
- * a bc de f ghi
2637
- * We have the following locations:
2638
- * span path represents
2639
- * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2640
- * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2641
- * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2642
- * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2643
- * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2644
- *
2645
- * Notes:
2646
- * - A location may refer to a repeated field itself (i.e. not to any
2647
- * particular index within it). This is used whenever a set of elements are
2648
- * logically enclosed in a single code segment. For example, an entire
2649
- * extend block (possibly containing multiple extension definitions) will
2650
- * have an outer location whose path refers to the "extensions" repeated
2651
- * field without an index.
2652
- * - Multiple locations may have the same path. This happens when a single
2653
- * logical declaration is spread out across multiple places. The most
2654
- * obvious example is the "extend" block again -- there may be multiple
2655
- * extend blocks in the same scope, each of which will have the same path.
2656
- * - A location's span is not always a subset of its parent's span. For
2657
- * example, the "extendee" of an extension declaration appears at the
2658
- * beginning of the "extend" block and is shared by all extensions within
2659
- * the block.
2660
- * - Just because a location's span is a subset of some other location's span
2661
- * does not mean that it is a descendant. For example, a "group" defines
2662
- * both a type and a field in a single declaration. Thus, the locations
2663
- * corresponding to the type and field and their components will overlap.
2664
- * - Code which tries to interpret locations should probably be designed to
2665
- * ignore those that it doesn't understand, as more types of locations could
2666
- * be recorded in the future.
2667
- */
2668
- location: SourceCodeInfo_LocationAmino[];
2669
- }
2670
- export interface SourceCodeInfoAminoMsg {
2671
- type: "/google.protobuf.SourceCodeInfo";
2672
- value: SourceCodeInfoAmino;
2673
- }
2674
- /**
2675
- * @name SourceCodeInfo_Location
2676
- * @package google.protobuf
2677
- * @see proto type: google.protobuf.Location
2678
- */
2679
- export interface SourceCodeInfo_Location {
2680
- /**
2681
- * Identifies which part of the FileDescriptorProto was defined at this
2682
- * location.
2683
- *
2684
- * Each element is a field number or an index. They form a path from
2685
- * the root FileDescriptorProto to the place where the definition appears.
2686
- * For example, this path:
2687
- * [ 4, 3, 2, 7, 1 ]
2688
- * refers to:
2689
- * file.message_type(3) // 4, 3
2690
- * .field(7) // 2, 7
2691
- * .name() // 1
2692
- * This is because FileDescriptorProto.message_type has field number 4:
2693
- * repeated DescriptorProto message_type = 4;
2694
- * and DescriptorProto.field has field number 2:
2695
- * repeated FieldDescriptorProto field = 2;
2696
- * and FieldDescriptorProto.name has field number 1:
2697
- * optional string name = 1;
2698
- *
2699
- * Thus, the above path gives the location of a field name. If we removed
2700
- * the last element:
2701
- * [ 4, 3, 2, 7 ]
2702
- * this path refers to the whole field declaration (from the beginning
2703
- * of the label to the terminating semicolon).
2704
- */
2705
- path: number[];
2706
- /**
2707
- * Always has exactly three or four elements: start line, start column,
2708
- * end line (optional, otherwise assumed same as start line), end column.
2709
- * These are packed into a single field for efficiency. Note that line
2710
- * and column numbers are zero-based -- typically you will want to add
2711
- * 1 to each before displaying to a user.
2712
- */
2713
- span: number[];
2714
- /**
2715
- * If this SourceCodeInfo represents a complete declaration, these are any
2716
- * comments appearing before and after the declaration which appear to be
2717
- * attached to the declaration.
2718
- *
2719
- * A series of line comments appearing on consecutive lines, with no other
2720
- * tokens appearing on those lines, will be treated as a single comment.
2721
- *
2722
- * leading_detached_comments will keep paragraphs of comments that appear
2723
- * before (but not connected to) the current element. Each paragraph,
2724
- * separated by empty lines, will be one comment element in the repeated
2725
- * field.
2726
- *
2727
- * Only the comment content is provided; comment markers (e.g. //) are
2728
- * stripped out. For block comments, leading whitespace and an asterisk
2729
- * will be stripped from the beginning of each line other than the first.
2730
- * Newlines are included in the output.
2731
- *
2732
- * Examples:
2733
- *
2734
- * optional int32 foo = 1; // Comment attached to foo.
2735
- * // Comment attached to bar.
2736
- * optional int32 bar = 2;
2737
- *
2738
- * optional string baz = 3;
2739
- * // Comment attached to baz.
2740
- * // Another line attached to baz.
2741
- *
2742
- * // Comment attached to moo.
2743
- * //
2744
- * // Another line attached to moo.
2745
- * optional double moo = 4;
2746
- *
2747
- * // Detached comment for corge. This is not leading or trailing comments
2748
- * // to moo or corge because there are blank lines separating it from
2749
- * // both.
2750
- *
2751
- * // Detached comment for corge paragraph 2.
2752
- *
2753
- * optional string corge = 5;
2754
- * /* Block comment attached
2755
- * * to corge. Leading asterisks
2756
- * * will be removed. *\/
2757
- * /* Block comment attached to
2758
- * * grault. *\/
2759
- * optional int32 grault = 6;
2760
- *
2761
- * // ignored detached comments.
2762
- */
2763
- leadingComments: string;
2764
- trailingComments: string;
2765
- leadingDetachedComments: string[];
2766
- }
2767
- export interface SourceCodeInfo_LocationProtoMsg {
2768
- typeUrl: "/google.protobuf.Location";
2769
- value: Uint8Array;
2770
- }
2771
- /**
2772
- * @name SourceCodeInfo_LocationAmino
2773
- * @package google.protobuf
2774
- * @see proto type: google.protobuf.SourceCodeInfo_Location
2775
- */
2776
- export interface SourceCodeInfo_LocationAmino {
2777
- /**
2778
- * Identifies which part of the FileDescriptorProto was defined at this
2779
- * location.
2780
- *
2781
- * Each element is a field number or an index. They form a path from
2782
- * the root FileDescriptorProto to the place where the definition appears.
2783
- * For example, this path:
2784
- * [ 4, 3, 2, 7, 1 ]
2785
- * refers to:
2786
- * file.message_type(3) // 4, 3
2787
- * .field(7) // 2, 7
2788
- * .name() // 1
2789
- * This is because FileDescriptorProto.message_type has field number 4:
2790
- * repeated DescriptorProto message_type = 4;
2791
- * and DescriptorProto.field has field number 2:
2792
- * repeated FieldDescriptorProto field = 2;
2793
- * and FieldDescriptorProto.name has field number 1:
2794
- * optional string name = 1;
2795
- *
2796
- * Thus, the above path gives the location of a field name. If we removed
2797
- * the last element:
2798
- * [ 4, 3, 2, 7 ]
2799
- * this path refers to the whole field declaration (from the beginning
2800
- * of the label to the terminating semicolon).
2801
- */
2802
- path: number[];
2803
- /**
2804
- * Always has exactly three or four elements: start line, start column,
2805
- * end line (optional, otherwise assumed same as start line), end column.
2806
- * These are packed into a single field for efficiency. Note that line
2807
- * and column numbers are zero-based -- typically you will want to add
2808
- * 1 to each before displaying to a user.
2809
- */
2810
- span: number[];
2811
- /**
2812
- * If this SourceCodeInfo represents a complete declaration, these are any
2813
- * comments appearing before and after the declaration which appear to be
2814
- * attached to the declaration.
2815
- *
2816
- * A series of line comments appearing on consecutive lines, with no other
2817
- * tokens appearing on those lines, will be treated as a single comment.
2818
- *
2819
- * leading_detached_comments will keep paragraphs of comments that appear
2820
- * before (but not connected to) the current element. Each paragraph,
2821
- * separated by empty lines, will be one comment element in the repeated
2822
- * field.
2823
- *
2824
- * Only the comment content is provided; comment markers (e.g. //) are
2825
- * stripped out. For block comments, leading whitespace and an asterisk
2826
- * will be stripped from the beginning of each line other than the first.
2827
- * Newlines are included in the output.
2828
- *
2829
- * Examples:
2830
- *
2831
- * optional int32 foo = 1; // Comment attached to foo.
2832
- * // Comment attached to bar.
2833
- * optional int32 bar = 2;
2834
- *
2835
- * optional string baz = 3;
2836
- * // Comment attached to baz.
2837
- * // Another line attached to baz.
2838
- *
2839
- * // Comment attached to moo.
2840
- * //
2841
- * // Another line attached to moo.
2842
- * optional double moo = 4;
2843
- *
2844
- * // Detached comment for corge. This is not leading or trailing comments
2845
- * // to moo or corge because there are blank lines separating it from
2846
- * // both.
2847
- *
2848
- * // Detached comment for corge paragraph 2.
2849
- *
2850
- * optional string corge = 5;
2851
- * /* Block comment attached
2852
- * * to corge. Leading asterisks
2853
- * * will be removed. *\/
2854
- * /* Block comment attached to
2855
- * * grault. *\/
2856
- * optional int32 grault = 6;
2857
- *
2858
- * // ignored detached comments.
2859
- */
2860
- leading_comments: string;
2861
- trailing_comments: string;
2862
- leading_detached_comments: string[];
2863
- }
2864
- export interface SourceCodeInfo_LocationAminoMsg {
2865
- type: "/google.protobuf.Location";
2866
- value: SourceCodeInfo_LocationAmino;
2867
- }
2868
- /**
2869
- * Describes the relationship between generated code and its original source
2870
- * file. A GeneratedCodeInfo message is associated with only one generated
2871
- * source file, but may contain references to different source .proto files.
2872
- * @name GeneratedCodeInfo
2873
- * @package google.protobuf
2874
- * @see proto type: google.protobuf.GeneratedCodeInfo
2875
- */
2876
- export interface GeneratedCodeInfo {
2877
- /**
2878
- * An Annotation connects some span of text in generated code to an element
2879
- * of its generating .proto file.
2880
- */
2881
- annotation: GeneratedCodeInfo_Annotation[];
2882
- }
2883
- export interface GeneratedCodeInfoProtoMsg {
2884
- typeUrl: "/google.protobuf.GeneratedCodeInfo";
2885
- value: Uint8Array;
2886
- }
2887
- /**
2888
- * Describes the relationship between generated code and its original source
2889
- * file. A GeneratedCodeInfo message is associated with only one generated
2890
- * source file, but may contain references to different source .proto files.
2891
- * @name GeneratedCodeInfoAmino
2892
- * @package google.protobuf
2893
- * @see proto type: google.protobuf.GeneratedCodeInfo
2894
- */
2895
- export interface GeneratedCodeInfoAmino {
2896
- /**
2897
- * An Annotation connects some span of text in generated code to an element
2898
- * of its generating .proto file.
2899
- */
2900
- annotation: GeneratedCodeInfo_AnnotationAmino[];
2901
- }
2902
- export interface GeneratedCodeInfoAminoMsg {
2903
- type: "/google.protobuf.GeneratedCodeInfo";
2904
- value: GeneratedCodeInfoAmino;
2905
- }
2906
- /**
2907
- * @name GeneratedCodeInfo_Annotation
2908
- * @package google.protobuf
2909
- * @see proto type: google.protobuf.Annotation
2910
- */
2911
- export interface GeneratedCodeInfo_Annotation {
2912
- /**
2913
- * Identifies the element in the original source .proto file. This field
2914
- * is formatted the same as SourceCodeInfo.Location.path.
2915
- */
2916
- path: number[];
2917
- /**
2918
- * Identifies the filesystem path to the original source .proto.
2919
- */
2920
- sourceFile: string;
2921
- /**
2922
- * Identifies the starting offset in bytes in the generated code
2923
- * that relates to the identified object.
2924
- */
2925
- begin: number;
2926
- /**
2927
- * Identifies the ending offset in bytes in the generated code that
2928
- * relates to the identified object. The end offset should be one past
2929
- * the last relevant byte (so the length of the text = end - begin).
2930
- */
2931
- end: number;
2932
- semantic: GeneratedCodeInfo_Annotation_Semantic;
2933
- }
2934
- export interface GeneratedCodeInfo_AnnotationProtoMsg {
2935
- typeUrl: "/google.protobuf.Annotation";
2936
- value: Uint8Array;
2937
- }
2938
- /**
2939
- * @name GeneratedCodeInfo_AnnotationAmino
2940
- * @package google.protobuf
2941
- * @see proto type: google.protobuf.GeneratedCodeInfo_Annotation
2942
- */
2943
- export interface GeneratedCodeInfo_AnnotationAmino {
2944
- /**
2945
- * Identifies the element in the original source .proto file. This field
2946
- * is formatted the same as SourceCodeInfo.Location.path.
2947
- */
2948
- path: number[];
2949
- /**
2950
- * Identifies the filesystem path to the original source .proto.
2951
- */
2952
- source_file: string;
2953
- /**
2954
- * Identifies the starting offset in bytes in the generated code
2955
- * that relates to the identified object.
2956
- */
2957
- begin: number;
2958
- /**
2959
- * Identifies the ending offset in bytes in the generated code that
2960
- * relates to the identified object. The end offset should be one past
2961
- * the last relevant byte (so the length of the text = end - begin).
2962
- */
2963
- end: number;
2964
- semantic: GeneratedCodeInfo_Annotation_Semantic;
2965
- }
2966
- export interface GeneratedCodeInfo_AnnotationAminoMsg {
2967
- type: "/google.protobuf.Annotation";
2968
- value: GeneratedCodeInfo_AnnotationAmino;
2969
- }
2970
- /**
2971
- * The protocol compiler can output a FileDescriptorSet containing the .proto
2972
- * files it parses.
2973
- * @name FileDescriptorSet
2974
- * @package google.protobuf
2975
- * @see proto type: google.protobuf.FileDescriptorSet
2976
- */
2977
- export declare const FileDescriptorSet: {
2978
- typeUrl: string;
2979
- is(o: any): o is FileDescriptorSet;
2980
- isAmino(o: any): o is FileDescriptorSetAmino;
2981
- encode(message: FileDescriptorSet, writer?: BinaryWriter): BinaryWriter;
2982
- decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorSet;
2983
- fromPartial(object: DeepPartial<FileDescriptorSet>): FileDescriptorSet;
2984
- fromAmino(object: FileDescriptorSetAmino): FileDescriptorSet;
2985
- toAmino(message: FileDescriptorSet): FileDescriptorSetAmino;
2986
- fromAminoMsg(object: FileDescriptorSetAminoMsg): FileDescriptorSet;
2987
- fromProtoMsg(message: FileDescriptorSetProtoMsg): FileDescriptorSet;
2988
- toProto(message: FileDescriptorSet): Uint8Array;
2989
- toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg;
2990
- registerTypeUrl(): void;
2991
- };
2992
- /**
2993
- * Describes a complete .proto file.
2994
- * @name FileDescriptorProto
2995
- * @package google.protobuf
2996
- * @see proto type: google.protobuf.FileDescriptorProto
2997
- */
2998
- export declare const FileDescriptorProto: {
2999
- typeUrl: string;
3000
- is(o: any): o is FileDescriptorProto;
3001
- isAmino(o: any): o is FileDescriptorProtoAmino;
3002
- encode(message: FileDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3003
- decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorProto;
3004
- fromPartial(object: DeepPartial<FileDescriptorProto>): FileDescriptorProto;
3005
- fromAmino(object: FileDescriptorProtoAmino): FileDescriptorProto;
3006
- toAmino(message: FileDescriptorProto): FileDescriptorProtoAmino;
3007
- fromAminoMsg(object: FileDescriptorProtoAminoMsg): FileDescriptorProto;
3008
- fromProtoMsg(message: FileDescriptorProtoProtoMsg): FileDescriptorProto;
3009
- toProto(message: FileDescriptorProto): Uint8Array;
3010
- toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg;
3011
- registerTypeUrl(): void;
3012
- };
3013
- /**
3014
- * Describes a message type.
3015
- * @name DescriptorProto
3016
- * @package google.protobuf
3017
- * @see proto type: google.protobuf.DescriptorProto
3018
- */
3019
- export declare const DescriptorProto: {
3020
- typeUrl: string;
3021
- is(o: any): o is DescriptorProto;
3022
- isAmino(o: any): o is DescriptorProtoAmino;
3023
- encode(message: DescriptorProto, writer?: BinaryWriter): BinaryWriter;
3024
- decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto;
3025
- fromPartial(object: DeepPartial<DescriptorProto>): DescriptorProto;
3026
- fromAmino(object: DescriptorProtoAmino): DescriptorProto;
3027
- toAmino(message: DescriptorProto): DescriptorProtoAmino;
3028
- fromAminoMsg(object: DescriptorProtoAminoMsg): DescriptorProto;
3029
- fromProtoMsg(message: DescriptorProtoProtoMsg): DescriptorProto;
3030
- toProto(message: DescriptorProto): Uint8Array;
3031
- toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg;
3032
- registerTypeUrl(): void;
3033
- };
3034
- /**
3035
- * @name DescriptorProto_ExtensionRange
3036
- * @package google.protobuf
3037
- * @see proto type: google.protobuf.ExtensionRange
3038
- */
3039
- export declare const DescriptorProto_ExtensionRange: {
3040
- typeUrl: string;
3041
- is(o: any): o is DescriptorProto_ExtensionRange;
3042
- isAmino(o: any): o is DescriptorProto_ExtensionRangeAmino;
3043
- encode(message: DescriptorProto_ExtensionRange, writer?: BinaryWriter): BinaryWriter;
3044
- decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ExtensionRange;
3045
- fromPartial(object: DeepPartial<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
3046
- fromAmino(object: DescriptorProto_ExtensionRangeAmino): DescriptorProto_ExtensionRange;
3047
- toAmino(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeAmino;
3048
- fromAminoMsg(object: DescriptorProto_ExtensionRangeAminoMsg): DescriptorProto_ExtensionRange;
3049
- fromProtoMsg(message: DescriptorProto_ExtensionRangeProtoMsg): DescriptorProto_ExtensionRange;
3050
- toProto(message: DescriptorProto_ExtensionRange): Uint8Array;
3051
- toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg;
3052
- registerTypeUrl(): void;
3053
- };
3054
- /**
3055
- * Range of reserved tag numbers. Reserved tag numbers may not be used by
3056
- * fields or extension ranges in the same message. Reserved ranges may
3057
- * not overlap.
3058
- * @name DescriptorProto_ReservedRange
3059
- * @package google.protobuf
3060
- * @see proto type: google.protobuf.ReservedRange
3061
- */
3062
- export declare const DescriptorProto_ReservedRange: {
3063
- typeUrl: string;
3064
- is(o: any): o is DescriptorProto_ReservedRange;
3065
- isAmino(o: any): o is DescriptorProto_ReservedRangeAmino;
3066
- encode(message: DescriptorProto_ReservedRange, writer?: BinaryWriter): BinaryWriter;
3067
- decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ReservedRange;
3068
- fromPartial(object: DeepPartial<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
3069
- fromAmino(object: DescriptorProto_ReservedRangeAmino): DescriptorProto_ReservedRange;
3070
- toAmino(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeAmino;
3071
- fromAminoMsg(object: DescriptorProto_ReservedRangeAminoMsg): DescriptorProto_ReservedRange;
3072
- fromProtoMsg(message: DescriptorProto_ReservedRangeProtoMsg): DescriptorProto_ReservedRange;
3073
- toProto(message: DescriptorProto_ReservedRange): Uint8Array;
3074
- toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg;
3075
- registerTypeUrl(): void;
3076
- };
3077
- /**
3078
- * @name ExtensionRangeOptions
3079
- * @package google.protobuf
3080
- * @see proto type: google.protobuf.ExtensionRangeOptions
3081
- */
3082
- export declare const ExtensionRangeOptions: {
3083
- typeUrl: string;
3084
- is(o: any): o is ExtensionRangeOptions;
3085
- isAmino(o: any): o is ExtensionRangeOptionsAmino;
3086
- encode(message: ExtensionRangeOptions, writer?: BinaryWriter): BinaryWriter;
3087
- decode(input: BinaryReader | Uint8Array, length?: number): ExtensionRangeOptions;
3088
- fromPartial(object: DeepPartial<ExtensionRangeOptions>): ExtensionRangeOptions;
3089
- fromAmino(object: ExtensionRangeOptionsAmino): ExtensionRangeOptions;
3090
- toAmino(message: ExtensionRangeOptions): ExtensionRangeOptionsAmino;
3091
- fromAminoMsg(object: ExtensionRangeOptionsAminoMsg): ExtensionRangeOptions;
3092
- fromProtoMsg(message: ExtensionRangeOptionsProtoMsg): ExtensionRangeOptions;
3093
- toProto(message: ExtensionRangeOptions): Uint8Array;
3094
- toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg;
3095
- registerTypeUrl(): void;
3096
- };
3097
- /**
3098
- * @name ExtensionRangeOptions_Declaration
3099
- * @package google.protobuf
3100
- * @see proto type: google.protobuf.Declaration
3101
- */
3102
- export declare const ExtensionRangeOptions_Declaration: {
3103
- typeUrl: string;
3104
- is(o: any): o is ExtensionRangeOptions_Declaration;
3105
- isAmino(o: any): o is ExtensionRangeOptions_DeclarationAmino;
3106
- encode(message: ExtensionRangeOptions_Declaration, writer?: BinaryWriter): BinaryWriter;
3107
- decode(input: BinaryReader | Uint8Array, length?: number): ExtensionRangeOptions_Declaration;
3108
- fromPartial(object: DeepPartial<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
3109
- fromAmino(object: ExtensionRangeOptions_DeclarationAmino): ExtensionRangeOptions_Declaration;
3110
- toAmino(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationAmino;
3111
- fromAminoMsg(object: ExtensionRangeOptions_DeclarationAminoMsg): ExtensionRangeOptions_Declaration;
3112
- fromProtoMsg(message: ExtensionRangeOptions_DeclarationProtoMsg): ExtensionRangeOptions_Declaration;
3113
- toProto(message: ExtensionRangeOptions_Declaration): Uint8Array;
3114
- toProtoMsg(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationProtoMsg;
3115
- registerTypeUrl(): void;
3116
- };
3117
- /**
3118
- * Describes a field within a message.
3119
- * @name FieldDescriptorProto
3120
- * @package google.protobuf
3121
- * @see proto type: google.protobuf.FieldDescriptorProto
3122
- */
3123
- export declare const FieldDescriptorProto: {
3124
- typeUrl: string;
3125
- is(o: any): o is FieldDescriptorProto;
3126
- isAmino(o: any): o is FieldDescriptorProtoAmino;
3127
- encode(message: FieldDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3128
- decode(input: BinaryReader | Uint8Array, length?: number): FieldDescriptorProto;
3129
- fromPartial(object: DeepPartial<FieldDescriptorProto>): FieldDescriptorProto;
3130
- fromAmino(object: FieldDescriptorProtoAmino): FieldDescriptorProto;
3131
- toAmino(message: FieldDescriptorProto): FieldDescriptorProtoAmino;
3132
- fromAminoMsg(object: FieldDescriptorProtoAminoMsg): FieldDescriptorProto;
3133
- fromProtoMsg(message: FieldDescriptorProtoProtoMsg): FieldDescriptorProto;
3134
- toProto(message: FieldDescriptorProto): Uint8Array;
3135
- toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg;
3136
- registerTypeUrl(): void;
3137
- };
3138
- /**
3139
- * Describes a oneof.
3140
- * @name OneofDescriptorProto
3141
- * @package google.protobuf
3142
- * @see proto type: google.protobuf.OneofDescriptorProto
3143
- */
3144
- export declare const OneofDescriptorProto: {
3145
- typeUrl: string;
3146
- is(o: any): o is OneofDescriptorProto;
3147
- isAmino(o: any): o is OneofDescriptorProtoAmino;
3148
- encode(message: OneofDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3149
- decode(input: BinaryReader | Uint8Array, length?: number): OneofDescriptorProto;
3150
- fromPartial(object: DeepPartial<OneofDescriptorProto>): OneofDescriptorProto;
3151
- fromAmino(object: OneofDescriptorProtoAmino): OneofDescriptorProto;
3152
- toAmino(message: OneofDescriptorProto): OneofDescriptorProtoAmino;
3153
- fromAminoMsg(object: OneofDescriptorProtoAminoMsg): OneofDescriptorProto;
3154
- fromProtoMsg(message: OneofDescriptorProtoProtoMsg): OneofDescriptorProto;
3155
- toProto(message: OneofDescriptorProto): Uint8Array;
3156
- toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg;
3157
- registerTypeUrl(): void;
3158
- };
3159
- /**
3160
- * Describes an enum type.
3161
- * @name EnumDescriptorProto
3162
- * @package google.protobuf
3163
- * @see proto type: google.protobuf.EnumDescriptorProto
3164
- */
3165
- export declare const EnumDescriptorProto: {
3166
- typeUrl: string;
3167
- is(o: any): o is EnumDescriptorProto;
3168
- isAmino(o: any): o is EnumDescriptorProtoAmino;
3169
- encode(message: EnumDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3170
- decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto;
3171
- fromPartial(object: DeepPartial<EnumDescriptorProto>): EnumDescriptorProto;
3172
- fromAmino(object: EnumDescriptorProtoAmino): EnumDescriptorProto;
3173
- toAmino(message: EnumDescriptorProto): EnumDescriptorProtoAmino;
3174
- fromAminoMsg(object: EnumDescriptorProtoAminoMsg): EnumDescriptorProto;
3175
- fromProtoMsg(message: EnumDescriptorProtoProtoMsg): EnumDescriptorProto;
3176
- toProto(message: EnumDescriptorProto): Uint8Array;
3177
- toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg;
3178
- registerTypeUrl(): void;
3179
- };
3180
- /**
3181
- * Range of reserved numeric values. Reserved values may not be used by
3182
- * entries in the same enum. Reserved ranges may not overlap.
3183
- *
3184
- * Note that this is distinct from DescriptorProto.ReservedRange in that it
3185
- * is inclusive such that it can appropriately represent the entire int32
3186
- * domain.
3187
- * @name EnumDescriptorProto_EnumReservedRange
3188
- * @package google.protobuf
3189
- * @see proto type: google.protobuf.EnumReservedRange
3190
- */
3191
- export declare const EnumDescriptorProto_EnumReservedRange: {
3192
- typeUrl: string;
3193
- is(o: any): o is EnumDescriptorProto_EnumReservedRange;
3194
- isAmino(o: any): o is EnumDescriptorProto_EnumReservedRangeAmino;
3195
- encode(message: EnumDescriptorProto_EnumReservedRange, writer?: BinaryWriter): BinaryWriter;
3196
- decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange;
3197
- fromPartial(object: DeepPartial<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
3198
- fromAmino(object: EnumDescriptorProto_EnumReservedRangeAmino): EnumDescriptorProto_EnumReservedRange;
3199
- toAmino(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeAmino;
3200
- fromAminoMsg(object: EnumDescriptorProto_EnumReservedRangeAminoMsg): EnumDescriptorProto_EnumReservedRange;
3201
- fromProtoMsg(message: EnumDescriptorProto_EnumReservedRangeProtoMsg): EnumDescriptorProto_EnumReservedRange;
3202
- toProto(message: EnumDescriptorProto_EnumReservedRange): Uint8Array;
3203
- toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg;
3204
- registerTypeUrl(): void;
3205
- };
3206
- /**
3207
- * Describes a value within an enum.
3208
- * @name EnumValueDescriptorProto
3209
- * @package google.protobuf
3210
- * @see proto type: google.protobuf.EnumValueDescriptorProto
3211
- */
3212
- export declare const EnumValueDescriptorProto: {
3213
- typeUrl: string;
3214
- is(o: any): o is EnumValueDescriptorProto;
3215
- isAmino(o: any): o is EnumValueDescriptorProtoAmino;
3216
- encode(message: EnumValueDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3217
- decode(input: BinaryReader | Uint8Array, length?: number): EnumValueDescriptorProto;
3218
- fromPartial(object: DeepPartial<EnumValueDescriptorProto>): EnumValueDescriptorProto;
3219
- fromAmino(object: EnumValueDescriptorProtoAmino): EnumValueDescriptorProto;
3220
- toAmino(message: EnumValueDescriptorProto): EnumValueDescriptorProtoAmino;
3221
- fromAminoMsg(object: EnumValueDescriptorProtoAminoMsg): EnumValueDescriptorProto;
3222
- fromProtoMsg(message: EnumValueDescriptorProtoProtoMsg): EnumValueDescriptorProto;
3223
- toProto(message: EnumValueDescriptorProto): Uint8Array;
3224
- toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg;
3225
- registerTypeUrl(): void;
3226
- };
3227
- /**
3228
- * Describes a service.
3229
- * @name ServiceDescriptorProto
3230
- * @package google.protobuf
3231
- * @see proto type: google.protobuf.ServiceDescriptorProto
3232
- */
3233
- export declare const ServiceDescriptorProto: {
3234
- typeUrl: string;
3235
- is(o: any): o is ServiceDescriptorProto;
3236
- isAmino(o: any): o is ServiceDescriptorProtoAmino;
3237
- encode(message: ServiceDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3238
- decode(input: BinaryReader | Uint8Array, length?: number): ServiceDescriptorProto;
3239
- fromPartial(object: DeepPartial<ServiceDescriptorProto>): ServiceDescriptorProto;
3240
- fromAmino(object: ServiceDescriptorProtoAmino): ServiceDescriptorProto;
3241
- toAmino(message: ServiceDescriptorProto): ServiceDescriptorProtoAmino;
3242
- fromAminoMsg(object: ServiceDescriptorProtoAminoMsg): ServiceDescriptorProto;
3243
- fromProtoMsg(message: ServiceDescriptorProtoProtoMsg): ServiceDescriptorProto;
3244
- toProto(message: ServiceDescriptorProto): Uint8Array;
3245
- toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
3246
- registerTypeUrl(): void;
3247
- };
3248
- /**
3249
- * Describes a method of a service.
3250
- * @name MethodDescriptorProto
3251
- * @package google.protobuf
3252
- * @see proto type: google.protobuf.MethodDescriptorProto
3253
- */
3254
- export declare const MethodDescriptorProto: {
3255
- typeUrl: string;
3256
- is(o: any): o is MethodDescriptorProto;
3257
- isAmino(o: any): o is MethodDescriptorProtoAmino;
3258
- encode(message: MethodDescriptorProto, writer?: BinaryWriter): BinaryWriter;
3259
- decode(input: BinaryReader | Uint8Array, length?: number): MethodDescriptorProto;
3260
- fromPartial(object: DeepPartial<MethodDescriptorProto>): MethodDescriptorProto;
3261
- fromAmino(object: MethodDescriptorProtoAmino): MethodDescriptorProto;
3262
- toAmino(message: MethodDescriptorProto): MethodDescriptorProtoAmino;
3263
- fromAminoMsg(object: MethodDescriptorProtoAminoMsg): MethodDescriptorProto;
3264
- fromProtoMsg(message: MethodDescriptorProtoProtoMsg): MethodDescriptorProto;
3265
- toProto(message: MethodDescriptorProto): Uint8Array;
3266
- toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg;
3267
- registerTypeUrl(): void;
3268
- };
3269
- /**
3270
- * @name FileOptions
3271
- * @package google.protobuf
3272
- * @see proto type: google.protobuf.FileOptions
3273
- */
3274
- export declare const FileOptions: {
3275
- typeUrl: string;
3276
- is(o: any): o is FileOptions;
3277
- isAmino(o: any): o is FileOptionsAmino;
3278
- encode(message: FileOptions, writer?: BinaryWriter): BinaryWriter;
3279
- decode(input: BinaryReader | Uint8Array, length?: number): FileOptions;
3280
- fromPartial(object: DeepPartial<FileOptions>): FileOptions;
3281
- fromAmino(object: FileOptionsAmino): FileOptions;
3282
- toAmino(message: FileOptions): FileOptionsAmino;
3283
- fromAminoMsg(object: FileOptionsAminoMsg): FileOptions;
3284
- fromProtoMsg(message: FileOptionsProtoMsg): FileOptions;
3285
- toProto(message: FileOptions): Uint8Array;
3286
- toProtoMsg(message: FileOptions): FileOptionsProtoMsg;
3287
- registerTypeUrl(): void;
3288
- };
3289
- /**
3290
- * @name MessageOptions
3291
- * @package google.protobuf
3292
- * @see proto type: google.protobuf.MessageOptions
3293
- */
3294
- export declare const MessageOptions: {
3295
- typeUrl: string;
3296
- is(o: any): o is MessageOptions;
3297
- isAmino(o: any): o is MessageOptionsAmino;
3298
- encode(message: MessageOptions, writer?: BinaryWriter): BinaryWriter;
3299
- decode(input: BinaryReader | Uint8Array, length?: number): MessageOptions;
3300
- fromPartial(object: DeepPartial<MessageOptions>): MessageOptions;
3301
- fromAmino(object: MessageOptionsAmino): MessageOptions;
3302
- toAmino(message: MessageOptions): MessageOptionsAmino;
3303
- fromAminoMsg(object: MessageOptionsAminoMsg): MessageOptions;
3304
- fromProtoMsg(message: MessageOptionsProtoMsg): MessageOptions;
3305
- toProto(message: MessageOptions): Uint8Array;
3306
- toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg;
3307
- registerTypeUrl(): void;
3308
- };
3309
- /**
3310
- * @name FieldOptions
3311
- * @package google.protobuf
3312
- * @see proto type: google.protobuf.FieldOptions
3313
- */
3314
- export declare const FieldOptions: {
3315
- typeUrl: string;
3316
- is(o: any): o is FieldOptions;
3317
- isAmino(o: any): o is FieldOptionsAmino;
3318
- encode(message: FieldOptions, writer?: BinaryWriter): BinaryWriter;
3319
- decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions;
3320
- fromPartial(object: DeepPartial<FieldOptions>): FieldOptions;
3321
- fromAmino(object: FieldOptionsAmino): FieldOptions;
3322
- toAmino(message: FieldOptions): FieldOptionsAmino;
3323
- fromAminoMsg(object: FieldOptionsAminoMsg): FieldOptions;
3324
- fromProtoMsg(message: FieldOptionsProtoMsg): FieldOptions;
3325
- toProto(message: FieldOptions): Uint8Array;
3326
- toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg;
3327
- registerTypeUrl(): void;
3328
- };
3329
- /**
3330
- * @name FieldOptions_EditionDefault
3331
- * @package google.protobuf
3332
- * @see proto type: google.protobuf.EditionDefault
3333
- */
3334
- export declare const FieldOptions_EditionDefault: {
3335
- typeUrl: string;
3336
- is(o: any): o is FieldOptions_EditionDefault;
3337
- isAmino(o: any): o is FieldOptions_EditionDefaultAmino;
3338
- encode(message: FieldOptions_EditionDefault, writer?: BinaryWriter): BinaryWriter;
3339
- decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions_EditionDefault;
3340
- fromPartial(object: DeepPartial<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
3341
- fromAmino(object: FieldOptions_EditionDefaultAmino): FieldOptions_EditionDefault;
3342
- toAmino(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultAmino;
3343
- fromAminoMsg(object: FieldOptions_EditionDefaultAminoMsg): FieldOptions_EditionDefault;
3344
- fromProtoMsg(message: FieldOptions_EditionDefaultProtoMsg): FieldOptions_EditionDefault;
3345
- toProto(message: FieldOptions_EditionDefault): Uint8Array;
3346
- toProtoMsg(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultProtoMsg;
3347
- registerTypeUrl(): void;
3348
- };
3349
- /**
3350
- * Information about the support window of a feature.
3351
- * @name FieldOptions_FeatureSupport
3352
- * @package google.protobuf
3353
- * @see proto type: google.protobuf.FeatureSupport
3354
- */
3355
- export declare const FieldOptions_FeatureSupport: {
3356
- typeUrl: string;
3357
- is(o: any): o is FieldOptions_FeatureSupport;
3358
- isAmino(o: any): o is FieldOptions_FeatureSupportAmino;
3359
- encode(message: FieldOptions_FeatureSupport, writer?: BinaryWriter): BinaryWriter;
3360
- decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions_FeatureSupport;
3361
- fromPartial(object: DeepPartial<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
3362
- fromAmino(object: FieldOptions_FeatureSupportAmino): FieldOptions_FeatureSupport;
3363
- toAmino(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportAmino;
3364
- fromAminoMsg(object: FieldOptions_FeatureSupportAminoMsg): FieldOptions_FeatureSupport;
3365
- fromProtoMsg(message: FieldOptions_FeatureSupportProtoMsg): FieldOptions_FeatureSupport;
3366
- toProto(message: FieldOptions_FeatureSupport): Uint8Array;
3367
- toProtoMsg(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportProtoMsg;
3368
- registerTypeUrl(): void;
3369
- };
3370
- /**
3371
- * @name OneofOptions
3372
- * @package google.protobuf
3373
- * @see proto type: google.protobuf.OneofOptions
3374
- */
3375
- export declare const OneofOptions: {
3376
- typeUrl: string;
3377
- is(o: any): o is OneofOptions;
3378
- isAmino(o: any): o is OneofOptionsAmino;
3379
- encode(message: OneofOptions, writer?: BinaryWriter): BinaryWriter;
3380
- decode(input: BinaryReader | Uint8Array, length?: number): OneofOptions;
3381
- fromPartial(object: DeepPartial<OneofOptions>): OneofOptions;
3382
- fromAmino(object: OneofOptionsAmino): OneofOptions;
3383
- toAmino(message: OneofOptions): OneofOptionsAmino;
3384
- fromAminoMsg(object: OneofOptionsAminoMsg): OneofOptions;
3385
- fromProtoMsg(message: OneofOptionsProtoMsg): OneofOptions;
3386
- toProto(message: OneofOptions): Uint8Array;
3387
- toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg;
3388
- registerTypeUrl(): void;
3389
- };
3390
- /**
3391
- * @name EnumOptions
3392
- * @package google.protobuf
3393
- * @see proto type: google.protobuf.EnumOptions
3394
- */
3395
- export declare const EnumOptions: {
3396
- typeUrl: string;
3397
- is(o: any): o is EnumOptions;
3398
- isAmino(o: any): o is EnumOptionsAmino;
3399
- encode(message: EnumOptions, writer?: BinaryWriter): BinaryWriter;
3400
- decode(input: BinaryReader | Uint8Array, length?: number): EnumOptions;
3401
- fromPartial(object: DeepPartial<EnumOptions>): EnumOptions;
3402
- fromAmino(object: EnumOptionsAmino): EnumOptions;
3403
- toAmino(message: EnumOptions): EnumOptionsAmino;
3404
- fromAminoMsg(object: EnumOptionsAminoMsg): EnumOptions;
3405
- fromProtoMsg(message: EnumOptionsProtoMsg): EnumOptions;
3406
- toProto(message: EnumOptions): Uint8Array;
3407
- toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg;
3408
- registerTypeUrl(): void;
3409
- };
3410
- /**
3411
- * @name EnumValueOptions
3412
- * @package google.protobuf
3413
- * @see proto type: google.protobuf.EnumValueOptions
3414
- */
3415
- export declare const EnumValueOptions: {
3416
- typeUrl: string;
3417
- is(o: any): o is EnumValueOptions;
3418
- isAmino(o: any): o is EnumValueOptionsAmino;
3419
- encode(message: EnumValueOptions, writer?: BinaryWriter): BinaryWriter;
3420
- decode(input: BinaryReader | Uint8Array, length?: number): EnumValueOptions;
3421
- fromPartial(object: DeepPartial<EnumValueOptions>): EnumValueOptions;
3422
- fromAmino(object: EnumValueOptionsAmino): EnumValueOptions;
3423
- toAmino(message: EnumValueOptions): EnumValueOptionsAmino;
3424
- fromAminoMsg(object: EnumValueOptionsAminoMsg): EnumValueOptions;
3425
- fromProtoMsg(message: EnumValueOptionsProtoMsg): EnumValueOptions;
3426
- toProto(message: EnumValueOptions): Uint8Array;
3427
- toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg;
3428
- registerTypeUrl(): void;
3429
- };
3430
- /**
3431
- * @name ServiceOptions
3432
- * @package google.protobuf
3433
- * @see proto type: google.protobuf.ServiceOptions
3434
- */
3435
- export declare const ServiceOptions: {
3436
- typeUrl: string;
3437
- is(o: any): o is ServiceOptions;
3438
- isAmino(o: any): o is ServiceOptionsAmino;
3439
- encode(message: ServiceOptions, writer?: BinaryWriter): BinaryWriter;
3440
- decode(input: BinaryReader | Uint8Array, length?: number): ServiceOptions;
3441
- fromPartial(object: DeepPartial<ServiceOptions>): ServiceOptions;
3442
- fromAmino(object: ServiceOptionsAmino): ServiceOptions;
3443
- toAmino(message: ServiceOptions): ServiceOptionsAmino;
3444
- fromAminoMsg(object: ServiceOptionsAminoMsg): ServiceOptions;
3445
- fromProtoMsg(message: ServiceOptionsProtoMsg): ServiceOptions;
3446
- toProto(message: ServiceOptions): Uint8Array;
3447
- toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
3448
- registerTypeUrl(): void;
3449
- };
3450
- /**
3451
- * @name MethodOptions
3452
- * @package google.protobuf
3453
- * @see proto type: google.protobuf.MethodOptions
3454
- */
3455
- export declare const MethodOptions: {
3456
- typeUrl: string;
3457
- is(o: any): o is MethodOptions;
3458
- isAmino(o: any): o is MethodOptionsAmino;
3459
- encode(message: MethodOptions, writer?: BinaryWriter): BinaryWriter;
3460
- decode(input: BinaryReader | Uint8Array, length?: number): MethodOptions;
3461
- fromPartial(object: DeepPartial<MethodOptions>): MethodOptions;
3462
- fromAmino(object: MethodOptionsAmino): MethodOptions;
3463
- toAmino(message: MethodOptions): MethodOptionsAmino;
3464
- fromAminoMsg(object: MethodOptionsAminoMsg): MethodOptions;
3465
- fromProtoMsg(message: MethodOptionsProtoMsg): MethodOptions;
3466
- toProto(message: MethodOptions): Uint8Array;
3467
- toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg;
3468
- registerTypeUrl(): void;
3469
- };
3470
- /**
3471
- * A message representing a option the parser does not recognize. This only
3472
- * appears in options protos created by the compiler::Parser class.
3473
- * DescriptorPool resolves these when building Descriptor objects. Therefore,
3474
- * options protos in descriptor objects (e.g. returned by Descriptor::options(),
3475
- * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
3476
- * in them.
3477
- * @name UninterpretedOption
3478
- * @package google.protobuf
3479
- * @see proto type: google.protobuf.UninterpretedOption
3480
- */
3481
- export declare const UninterpretedOption: {
3482
- typeUrl: string;
3483
- is(o: any): o is UninterpretedOption;
3484
- isAmino(o: any): o is UninterpretedOptionAmino;
3485
- encode(message: UninterpretedOption, writer?: BinaryWriter): BinaryWriter;
3486
- decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption;
3487
- fromPartial(object: DeepPartial<UninterpretedOption>): UninterpretedOption;
3488
- fromAmino(object: UninterpretedOptionAmino): UninterpretedOption;
3489
- toAmino(message: UninterpretedOption): UninterpretedOptionAmino;
3490
- fromAminoMsg(object: UninterpretedOptionAminoMsg): UninterpretedOption;
3491
- fromProtoMsg(message: UninterpretedOptionProtoMsg): UninterpretedOption;
3492
- toProto(message: UninterpretedOption): Uint8Array;
3493
- toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg;
3494
- registerTypeUrl(): void;
3495
- };
3496
- /**
3497
- * The name of the uninterpreted option. Each string represents a segment in
3498
- * a dot-separated name. is_extension is true iff a segment represents an
3499
- * extension (denoted with parentheses in options specs in .proto files).
3500
- * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
3501
- * "foo.(bar.baz).moo".
3502
- * @name UninterpretedOption_NamePart
3503
- * @package google.protobuf
3504
- * @see proto type: google.protobuf.NamePart
3505
- */
3506
- export declare const UninterpretedOption_NamePart: {
3507
- typeUrl: string;
3508
- is(o: any): o is UninterpretedOption_NamePart;
3509
- isAmino(o: any): o is UninterpretedOption_NamePartAmino;
3510
- encode(message: UninterpretedOption_NamePart, writer?: BinaryWriter): BinaryWriter;
3511
- decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption_NamePart;
3512
- fromPartial(object: DeepPartial<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
3513
- fromAmino(object: UninterpretedOption_NamePartAmino): UninterpretedOption_NamePart;
3514
- toAmino(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartAmino;
3515
- fromAminoMsg(object: UninterpretedOption_NamePartAminoMsg): UninterpretedOption_NamePart;
3516
- fromProtoMsg(message: UninterpretedOption_NamePartProtoMsg): UninterpretedOption_NamePart;
3517
- toProto(message: UninterpretedOption_NamePart): Uint8Array;
3518
- toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg;
3519
- registerTypeUrl(): void;
3520
- };
3521
- /**
3522
- * TODO Enums in C++ gencode (and potentially other languages) are
3523
- * not well scoped. This means that each of the feature enums below can clash
3524
- * with each other. The short names we've chosen maximize call-site
3525
- * readability, but leave us very open to this scenario. A future feature will
3526
- * be designed and implemented to handle this, hopefully before we ever hit a
3527
- * conflict here.
3528
- * @name FeatureSet
3529
- * @package google.protobuf
3530
- * @see proto type: google.protobuf.FeatureSet
3531
- */
3532
- export declare const FeatureSet: {
3533
- typeUrl: string;
3534
- is(o: any): o is FeatureSet;
3535
- isAmino(o: any): o is FeatureSetAmino;
3536
- encode(message: FeatureSet, writer?: BinaryWriter): BinaryWriter;
3537
- decode(input: BinaryReader | Uint8Array, length?: number): FeatureSet;
3538
- fromPartial(object: DeepPartial<FeatureSet>): FeatureSet;
3539
- fromAmino(object: FeatureSetAmino): FeatureSet;
3540
- toAmino(message: FeatureSet): FeatureSetAmino;
3541
- fromAminoMsg(object: FeatureSetAminoMsg): FeatureSet;
3542
- fromProtoMsg(message: FeatureSetProtoMsg): FeatureSet;
3543
- toProto(message: FeatureSet): Uint8Array;
3544
- toProtoMsg(message: FeatureSet): FeatureSetProtoMsg;
3545
- registerTypeUrl(): void;
3546
- };
3547
- /**
3548
- * @name FeatureSet_VisibilityFeature
3549
- * @package google.protobuf
3550
- * @see proto type: google.protobuf.VisibilityFeature
3551
- */
3552
- export declare const FeatureSet_VisibilityFeature: {
3553
- typeUrl: string;
3554
- is(o: any): o is FeatureSet_VisibilityFeature;
3555
- isAmino(o: any): o is FeatureSet_VisibilityFeatureAmino;
3556
- encode(_: FeatureSet_VisibilityFeature, writer?: BinaryWriter): BinaryWriter;
3557
- decode(input: BinaryReader | Uint8Array, length?: number): FeatureSet_VisibilityFeature;
3558
- fromPartial(_: DeepPartial<FeatureSet_VisibilityFeature>): FeatureSet_VisibilityFeature;
3559
- fromAmino(_: FeatureSet_VisibilityFeatureAmino): FeatureSet_VisibilityFeature;
3560
- toAmino(_: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeatureAmino;
3561
- fromAminoMsg(object: FeatureSet_VisibilityFeatureAminoMsg): FeatureSet_VisibilityFeature;
3562
- fromProtoMsg(message: FeatureSet_VisibilityFeatureProtoMsg): FeatureSet_VisibilityFeature;
3563
- toProto(message: FeatureSet_VisibilityFeature): Uint8Array;
3564
- toProtoMsg(message: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeatureProtoMsg;
3565
- registerTypeUrl(): void;
3566
- };
3567
- /**
3568
- * A compiled specification for the defaults of a set of features. These
3569
- * messages are generated from FeatureSet extensions and can be used to seed
3570
- * feature resolution. The resolution with this object becomes a simple search
3571
- * for the closest matching edition, followed by proto merges.
3572
- * @name FeatureSetDefaults
3573
- * @package google.protobuf
3574
- * @see proto type: google.protobuf.FeatureSetDefaults
3575
- */
3576
- export declare const FeatureSetDefaults: {
3577
- typeUrl: string;
3578
- is(o: any): o is FeatureSetDefaults;
3579
- isAmino(o: any): o is FeatureSetDefaultsAmino;
3580
- encode(message: FeatureSetDefaults, writer?: BinaryWriter): BinaryWriter;
3581
- decode(input: BinaryReader | Uint8Array, length?: number): FeatureSetDefaults;
3582
- fromPartial(object: DeepPartial<FeatureSetDefaults>): FeatureSetDefaults;
3583
- fromAmino(object: FeatureSetDefaultsAmino): FeatureSetDefaults;
3584
- toAmino(message: FeatureSetDefaults): FeatureSetDefaultsAmino;
3585
- fromAminoMsg(object: FeatureSetDefaultsAminoMsg): FeatureSetDefaults;
3586
- fromProtoMsg(message: FeatureSetDefaultsProtoMsg): FeatureSetDefaults;
3587
- toProto(message: FeatureSetDefaults): Uint8Array;
3588
- toProtoMsg(message: FeatureSetDefaults): FeatureSetDefaultsProtoMsg;
3589
- registerTypeUrl(): void;
3590
- };
3591
- /**
3592
- * A map from every known edition with a unique set of defaults to its
3593
- * defaults. Not all editions may be contained here. For a given edition,
3594
- * the defaults at the closest matching edition ordered at or before it should
3595
- * be used. This field must be in strict ascending order by edition.
3596
- * @name FeatureSetDefaults_FeatureSetEditionDefault
3597
- * @package google.protobuf
3598
- * @see proto type: google.protobuf.FeatureSetEditionDefault
3599
- */
3600
- export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
3601
- typeUrl: string;
3602
- is(o: any): o is FeatureSetDefaults_FeatureSetEditionDefault;
3603
- isAmino(o: any): o is FeatureSetDefaults_FeatureSetEditionDefaultAmino;
3604
- encode(message: FeatureSetDefaults_FeatureSetEditionDefault, writer?: BinaryWriter): BinaryWriter;
3605
- decode(input: BinaryReader | Uint8Array, length?: number): FeatureSetDefaults_FeatureSetEditionDefault;
3606
- fromPartial(object: DeepPartial<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
3607
- fromAmino(object: FeatureSetDefaults_FeatureSetEditionDefaultAmino): FeatureSetDefaults_FeatureSetEditionDefault;
3608
- toAmino(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultAmino;
3609
- fromAminoMsg(object: FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg): FeatureSetDefaults_FeatureSetEditionDefault;
3610
- fromProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg): FeatureSetDefaults_FeatureSetEditionDefault;
3611
- toProto(message: FeatureSetDefaults_FeatureSetEditionDefault): Uint8Array;
3612
- toProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg;
3613
- registerTypeUrl(): void;
3614
- };
3615
- /**
3616
- * Encapsulates information about the original source file from which a
3617
- * FileDescriptorProto was generated.
3618
- * @name SourceCodeInfo
3619
- * @package google.protobuf
3620
- * @see proto type: google.protobuf.SourceCodeInfo
3621
- */
3622
- export declare const SourceCodeInfo: {
3623
- typeUrl: string;
3624
- is(o: any): o is SourceCodeInfo;
3625
- isAmino(o: any): o is SourceCodeInfoAmino;
3626
- encode(message: SourceCodeInfo, writer?: BinaryWriter): BinaryWriter;
3627
- decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo;
3628
- fromPartial(object: DeepPartial<SourceCodeInfo>): SourceCodeInfo;
3629
- fromAmino(object: SourceCodeInfoAmino): SourceCodeInfo;
3630
- toAmino(message: SourceCodeInfo): SourceCodeInfoAmino;
3631
- fromAminoMsg(object: SourceCodeInfoAminoMsg): SourceCodeInfo;
3632
- fromProtoMsg(message: SourceCodeInfoProtoMsg): SourceCodeInfo;
3633
- toProto(message: SourceCodeInfo): Uint8Array;
3634
- toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
3635
- registerTypeUrl(): void;
3636
- };
3637
- /**
3638
- * @name SourceCodeInfo_Location
3639
- * @package google.protobuf
3640
- * @see proto type: google.protobuf.Location
3641
- */
3642
- export declare const SourceCodeInfo_Location: {
3643
- typeUrl: string;
3644
- is(o: any): o is SourceCodeInfo_Location;
3645
- isAmino(o: any): o is SourceCodeInfo_LocationAmino;
3646
- encode(message: SourceCodeInfo_Location, writer?: BinaryWriter): BinaryWriter;
3647
- decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo_Location;
3648
- fromPartial(object: DeepPartial<SourceCodeInfo_Location>): SourceCodeInfo_Location;
3649
- fromAmino(object: SourceCodeInfo_LocationAmino): SourceCodeInfo_Location;
3650
- toAmino(message: SourceCodeInfo_Location): SourceCodeInfo_LocationAmino;
3651
- fromAminoMsg(object: SourceCodeInfo_LocationAminoMsg): SourceCodeInfo_Location;
3652
- fromProtoMsg(message: SourceCodeInfo_LocationProtoMsg): SourceCodeInfo_Location;
3653
- toProto(message: SourceCodeInfo_Location): Uint8Array;
3654
- toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg;
3655
- registerTypeUrl(): void;
3656
- };
3657
- /**
3658
- * Describes the relationship between generated code and its original source
3659
- * file. A GeneratedCodeInfo message is associated with only one generated
3660
- * source file, but may contain references to different source .proto files.
3661
- * @name GeneratedCodeInfo
3662
- * @package google.protobuf
3663
- * @see proto type: google.protobuf.GeneratedCodeInfo
3664
- */
3665
- export declare const GeneratedCodeInfo: {
3666
- typeUrl: string;
3667
- is(o: any): o is GeneratedCodeInfo;
3668
- isAmino(o: any): o is GeneratedCodeInfoAmino;
3669
- encode(message: GeneratedCodeInfo, writer?: BinaryWriter): BinaryWriter;
3670
- decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo;
3671
- fromPartial(object: DeepPartial<GeneratedCodeInfo>): GeneratedCodeInfo;
3672
- fromAmino(object: GeneratedCodeInfoAmino): GeneratedCodeInfo;
3673
- toAmino(message: GeneratedCodeInfo): GeneratedCodeInfoAmino;
3674
- fromAminoMsg(object: GeneratedCodeInfoAminoMsg): GeneratedCodeInfo;
3675
- fromProtoMsg(message: GeneratedCodeInfoProtoMsg): GeneratedCodeInfo;
3676
- toProto(message: GeneratedCodeInfo): Uint8Array;
3677
- toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg;
3678
- registerTypeUrl(): void;
3679
- };
3680
- /**
3681
- * @name GeneratedCodeInfo_Annotation
3682
- * @package google.protobuf
3683
- * @see proto type: google.protobuf.Annotation
3684
- */
3685
- export declare const GeneratedCodeInfo_Annotation: {
3686
- typeUrl: string;
3687
- is(o: any): o is GeneratedCodeInfo_Annotation;
3688
- isAmino(o: any): o is GeneratedCodeInfo_AnnotationAmino;
3689
- encode(message: GeneratedCodeInfo_Annotation, writer?: BinaryWriter): BinaryWriter;
3690
- decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation;
3691
- fromPartial(object: DeepPartial<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
3692
- fromAmino(object: GeneratedCodeInfo_AnnotationAmino): GeneratedCodeInfo_Annotation;
3693
- toAmino(message: GeneratedCodeInfo_Annotation): GeneratedCodeInfo_AnnotationAmino;
3694
- fromAminoMsg(object: GeneratedCodeInfo_AnnotationAminoMsg): GeneratedCodeInfo_Annotation;
3695
- fromProtoMsg(message: GeneratedCodeInfo_AnnotationProtoMsg): GeneratedCodeInfo_Annotation;
3696
- toProto(message: GeneratedCodeInfo_Annotation): Uint8Array;
3697
- toProtoMsg(message: GeneratedCodeInfo_Annotation): GeneratedCodeInfo_AnnotationProtoMsg;
3698
- registerTypeUrl(): void;
3699
- };