@xpla/xpla-react 1.7.0-beta.0 → 1.7.0-beta.10

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 (1373) hide show
  1. package/amino/amino.d.ts +1 -0
  2. package/amino/amino.js +2 -0
  3. package/binary.d.ts +130 -0
  4. package/binary.js +370 -0
  5. package/cosmos/app/runtime/v1alpha1/module.d.ts +174 -0
  6. package/cosmos/app/runtime/v1alpha1/module.js +293 -0
  7. package/cosmos/app/runtime/v2/module.d.ts +228 -0
  8. package/cosmos/app/runtime/v2/module.js +422 -0
  9. package/cosmos/app/v1alpha1/config.d.ts +181 -0
  10. package/cosmos/app/v1alpha1/config.js +297 -0
  11. package/cosmos/app/v1alpha1/module.d.ts +234 -0
  12. package/cosmos/app/v1alpha1/module.js +281 -0
  13. package/cosmos/app/v1alpha1/query.d.ts +67 -0
  14. package/cosmos/app/v1alpha1/query.js +149 -0
  15. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +4 -0
  16. package/cosmos/app/v1alpha1/query.rpc.func.js +18 -0
  17. package/cosmos/auth/module/v1/module.d.ts +88 -0
  18. package/cosmos/auth/module/v1/module.js +203 -0
  19. package/cosmos/auth/v1beta1/accounts.d.ts +104 -0
  20. package/cosmos/auth/v1beta1/accounts.js +162 -0
  21. package/cosmos/auth/v1beta1/auth.d.ts +177 -0
  22. package/cosmos/auth/v1beta1/auth.js +445 -0
  23. package/cosmos/auth/v1beta1/genesis.d.ts +42 -0
  24. package/cosmos/auth/v1beta1/genesis.js +100 -0
  25. package/cosmos/auth/v1beta1/query.d.ts +810 -0
  26. package/cosmos/auth/v1beta1/query.js +1561 -0
  27. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +22 -0
  28. package/cosmos/auth/v1beta1/query.rpc.func.js +126 -0
  29. package/cosmos/auth/v1beta1/tx.d.ts +97 -0
  30. package/cosmos/auth/v1beta1/tx.js +161 -0
  31. package/cosmos/auth/v1beta1/tx.registry.d.ts +23 -0
  32. package/cosmos/auth/v1beta1/tx.registry.js +31 -0
  33. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +4 -0
  34. package/cosmos/auth/v1beta1/tx.rpc.func.js +17 -0
  35. package/cosmos/authz/module/v1/module.d.ts +32 -0
  36. package/cosmos/authz/module/v1/module.js +70 -0
  37. package/cosmos/authz/v1beta1/authz.d.ts +181 -0
  38. package/cosmos/authz/v1beta1/authz.js +371 -0
  39. package/cosmos/authz/v1beta1/event.d.ts +86 -0
  40. package/cosmos/authz/v1beta1/event.js +209 -0
  41. package/cosmos/authz/v1beta1/genesis.d.ts +35 -0
  42. package/cosmos/authz/v1beta1/genesis.js +87 -0
  43. package/cosmos/authz/v1beta1/query.d.ts +232 -0
  44. package/cosmos/authz/v1beta1/query.js +580 -0
  45. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +8 -0
  46. package/cosmos/authz/v1beta1/query.rpc.func.js +42 -0
  47. package/cosmos/authz/v1beta1/tx.d.ts +240 -0
  48. package/cosmos/authz/v1beta1/tx.js +516 -0
  49. package/cosmos/authz/v1beta1/tx.registry.d.ts +47 -0
  50. package/cosmos/authz/v1beta1/tx.registry.js +67 -0
  51. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +8 -0
  52. package/cosmos/authz/v1beta1/tx.rpc.func.js +37 -0
  53. package/cosmos/autocli/v1/options.d.ts +412 -0
  54. package/cosmos/autocli/v1/options.js +834 -0
  55. package/cosmos/autocli/v1/query.d.ts +97 -0
  56. package/cosmos/autocli/v1/query.js +237 -0
  57. package/cosmos/autocli/v1/query.rpc.func.d.ts +4 -0
  58. package/cosmos/autocli/v1/query.rpc.func.js +18 -0
  59. package/cosmos/bank/module/v1/module.d.ts +62 -0
  60. package/cosmos/bank/module/v1/module.js +113 -0
  61. package/cosmos/bank/v1beta1/authz.d.ts +59 -0
  62. package/cosmos/bank/v1beta1/authz.js +102 -0
  63. package/cosmos/bank/v1beta1/bank.d.ts +371 -0
  64. package/cosmos/bank/v1beta1/bank.js +726 -0
  65. package/cosmos/bank/v1beta1/genesis.d.ts +112 -0
  66. package/cosmos/bank/v1beta1/genesis.js +238 -0
  67. package/cosmos/bank/v1beta1/query.d.ts +1159 -0
  68. package/cosmos/bank/v1beta1/query.js +2317 -0
  69. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +28 -0
  70. package/cosmos/bank/v1beta1/query.rpc.func.js +162 -0
  71. package/cosmos/bank/v1beta1/tx.d.ts +342 -0
  72. package/cosmos/bank/v1beta1/tx.js +666 -0
  73. package/cosmos/bank/v1beta1/tx.registry.d.ts +59 -0
  74. package/cosmos/bank/v1beta1/tx.registry.js +85 -0
  75. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +10 -0
  76. package/cosmos/bank/v1beta1/tx.rpc.func.js +47 -0
  77. package/cosmos/base/abci/v1beta1/abci.d.ts +599 -0
  78. package/cosmos/base/abci/v1beta1/abci.js +1293 -0
  79. package/cosmos/base/grpc/v2/service.d.ts +163 -0
  80. package/cosmos/base/grpc/v2/service.js +398 -0
  81. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +6 -0
  82. package/cosmos/base/grpc/v2/service.rpc.func.js +30 -0
  83. package/cosmos/base/node/v1beta1/query.d.ts +150 -0
  84. package/cosmos/base/node/v1beta1/query.js +377 -0
  85. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +6 -0
  86. package/cosmos/base/node/v1beta1/query.rpc.func.js +30 -0
  87. package/cosmos/base/query/v1beta1/pagination.d.ts +176 -0
  88. package/cosmos/base/query/v1beta1/pagination.js +222 -0
  89. package/cosmos/base/reflection/v1beta1/reflection.d.ts +144 -0
  90. package/cosmos/base/reflection/v1beta1/reflection.js +310 -0
  91. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +6 -0
  92. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +30 -0
  93. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +1008 -0
  94. package/cosmos/base/reflection/v2alpha1/reflection.js +2159 -0
  95. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +14 -0
  96. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +78 -0
  97. package/cosmos/base/tendermint/v1beta1/query.d.ts +740 -0
  98. package/cosmos/base/tendermint/v1beta1/query.js +1887 -0
  99. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +16 -0
  100. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +90 -0
  101. package/cosmos/base/tendermint/v1beta1/types.d.ts +137 -0
  102. package/cosmos/base/tendermint/v1beta1/types.js +358 -0
  103. package/cosmos/base/v1beta1/coin.d.ts +166 -0
  104. package/cosmos/base/v1beta1/coin.js +341 -0
  105. package/cosmos/circuit/module/v1/module.d.ts +36 -0
  106. package/cosmos/circuit/module/v1/module.js +83 -0
  107. package/cosmos/circuit/v1/query.d.ts +200 -0
  108. package/cosmos/circuit/v1/query.js +480 -0
  109. package/cosmos/circuit/v1/query.rpc.func.d.ts +8 -0
  110. package/cosmos/circuit/v1/query.rpc.func.js +42 -0
  111. package/cosmos/circuit/v1/tx.d.ts +251 -0
  112. package/cosmos/circuit/v1/tx.js +528 -0
  113. package/cosmos/circuit/v1/tx.registry.d.ts +47 -0
  114. package/cosmos/circuit/v1/tx.registry.js +67 -0
  115. package/cosmos/circuit/v1/tx.rpc.func.d.ts +8 -0
  116. package/cosmos/circuit/v1/tx.rpc.func.js +37 -0
  117. package/cosmos/circuit/v1/types.d.ts +151 -0
  118. package/cosmos/circuit/v1/types.js +350 -0
  119. package/cosmos/consensus/module/v1/module.d.ts +36 -0
  120. package/cosmos/consensus/module/v1/module.js +83 -0
  121. package/cosmos/consensus/v1/query.d.ts +75 -0
  122. package/cosmos/consensus/v1/query.js +149 -0
  123. package/cosmos/consensus/v1/query.rpc.func.d.ts +4 -0
  124. package/cosmos/consensus/v1/query.rpc.func.js +18 -0
  125. package/cosmos/consensus/v1/tx.d.ts +97 -0
  126. package/cosmos/consensus/v1/tx.js +197 -0
  127. package/cosmos/consensus/v1/tx.registry.d.ts +23 -0
  128. package/cosmos/consensus/v1/tx.registry.js +31 -0
  129. package/cosmos/consensus/v1/tx.rpc.func.d.ts +4 -0
  130. package/cosmos/consensus/v1/tx.rpc.func.js +17 -0
  131. package/cosmos/crisis/module/v1/module.d.ts +40 -0
  132. package/cosmos/crisis/module/v1/module.js +95 -0
  133. package/cosmos/crisis/v1beta1/genesis.d.ts +43 -0
  134. package/cosmos/crisis/v1beta1/genesis.js +84 -0
  135. package/cosmos/crisis/v1beta1/tx.d.ts +161 -0
  136. package/cosmos/crisis/v1beta1/tx.js +328 -0
  137. package/cosmos/crisis/v1beta1/tx.registry.d.ts +35 -0
  138. package/cosmos/crisis/v1beta1/tx.registry.js +49 -0
  139. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +6 -0
  140. package/cosmos/crisis/v1beta1/tx.rpc.func.js +27 -0
  141. package/cosmos/crypto/ed25519/keys.d.ts +84 -0
  142. package/cosmos/crypto/ed25519/keys.js +162 -0
  143. package/cosmos/crypto/hd/v1/hd.d.ts +58 -0
  144. package/cosmos/crypto/hd/v1/hd.js +131 -0
  145. package/cosmos/crypto/keyring/v1/record.d.ts +188 -0
  146. package/cosmos/crypto/keyring/v1/record.js +431 -0
  147. package/cosmos/crypto/multisig/keys.d.ts +45 -0
  148. package/cosmos/crypto/multisig/keys.js +99 -0
  149. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +86 -0
  150. package/cosmos/crypto/multisig/v1beta1/multisig.js +177 -0
  151. package/cosmos/crypto/secp256k1/keys.d.ts +78 -0
  152. package/cosmos/crypto/secp256k1/keys.js +162 -0
  153. package/cosmos/crypto/secp256r1/keys.d.ts +76 -0
  154. package/cosmos/crypto/secp256r1/keys.js +162 -0
  155. package/cosmos/distribution/module/v1/module.d.ts +38 -0
  156. package/cosmos/distribution/module/v1/module.js +95 -0
  157. package/cosmos/distribution/v1beta1/distribution.d.ts +541 -0
  158. package/cosmos/distribution/v1beta1/distribution.js +1158 -0
  159. package/cosmos/distribution/v1beta1/genesis.d.ts +376 -0
  160. package/cosmos/distribution/v1beta1/genesis.js +895 -0
  161. package/cosmos/distribution/v1beta1/query.d.ts +803 -0
  162. package/cosmos/distribution/v1beta1/query.js +1662 -0
  163. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +22 -0
  164. package/cosmos/distribution/v1beta1/query.rpc.func.js +126 -0
  165. package/cosmos/distribution/v1beta1/tx.d.ts +578 -0
  166. package/cosmos/distribution/v1beta1/tx.js +1145 -0
  167. package/cosmos/distribution/v1beta1/tx.registry.d.ts +95 -0
  168. package/cosmos/distribution/v1beta1/tx.registry.js +139 -0
  169. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +16 -0
  170. package/cosmos/distribution/v1beta1/tx.rpc.func.js +77 -0
  171. package/cosmos/evidence/module/v1/module.d.ts +32 -0
  172. package/cosmos/evidence/module/v1/module.js +70 -0
  173. package/cosmos/evidence/v1beta1/evidence.d.ts +54 -0
  174. package/cosmos/evidence/v1beta1/evidence.js +121 -0
  175. package/cosmos/evidence/v1beta1/genesis.d.ts +37 -0
  176. package/cosmos/evidence/v1beta1/genesis.js +87 -0
  177. package/cosmos/evidence/v1beta1/query.d.ts +176 -0
  178. package/cosmos/evidence/v1beta1/query.js +347 -0
  179. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +6 -0
  180. package/cosmos/evidence/v1beta1/query.rpc.func.js +30 -0
  181. package/cosmos/evidence/v1beta1/tx.d.ts +84 -0
  182. package/cosmos/evidence/v1beta1/tx.js +175 -0
  183. package/cosmos/evidence/v1beta1/tx.registry.d.ts +23 -0
  184. package/cosmos/evidence/v1beta1/tx.registry.js +31 -0
  185. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +4 -0
  186. package/cosmos/evidence/v1beta1/tx.rpc.func.js +17 -0
  187. package/cosmos/feegrant/module/v1/module.d.ts +32 -0
  188. package/cosmos/feegrant/module/v1/module.js +70 -0
  189. package/cosmos/feegrant/v1beta1/feegrant.d.ts +219 -0
  190. package/cosmos/feegrant/v1beta1/feegrant.js +430 -0
  191. package/cosmos/feegrant/v1beta1/genesis.d.ts +35 -0
  192. package/cosmos/feegrant/v1beta1/genesis.js +87 -0
  193. package/cosmos/feegrant/v1beta1/query.d.ts +240 -0
  194. package/cosmos/feegrant/v1beta1/query.js +541 -0
  195. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +8 -0
  196. package/cosmos/feegrant/v1beta1/query.rpc.func.js +42 -0
  197. package/cosmos/feegrant/v1beta1/tx.d.ts +233 -0
  198. package/cosmos/feegrant/v1beta1/tx.js +471 -0
  199. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +47 -0
  200. package/cosmos/feegrant/v1beta1/tx.registry.js +67 -0
  201. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +8 -0
  202. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +37 -0
  203. package/cosmos/genutil/module/v1/module.d.ts +32 -0
  204. package/cosmos/genutil/module/v1/module.js +70 -0
  205. package/cosmos/genutil/v1beta1/genesis.d.ts +36 -0
  206. package/cosmos/genutil/v1beta1/genesis.js +87 -0
  207. package/cosmos/gov/module/v1/module.d.ts +46 -0
  208. package/cosmos/gov/module/v1/module.js +95 -0
  209. package/cosmos/gov/v1/genesis.d.ts +115 -0
  210. package/cosmos/gov/v1/genesis.js +189 -0
  211. package/cosmos/gov/v1/gov.d.ts +696 -0
  212. package/cosmos/gov/v1/gov.js +1363 -0
  213. package/cosmos/gov/v1/query.d.ts +706 -0
  214. package/cosmos/gov/v1/query.js +1564 -0
  215. package/cosmos/gov/v1/query.rpc.func.d.ts +20 -0
  216. package/cosmos/gov/v1/query.rpc.func.js +114 -0
  217. package/cosmos/gov/v1/tx.d.ts +626 -0
  218. package/cosmos/gov/v1/tx.js +1277 -0
  219. package/cosmos/gov/v1/tx.registry.d.ts +95 -0
  220. package/cosmos/gov/v1/tx.registry.js +139 -0
  221. package/cosmos/gov/v1/tx.rpc.func.d.ts +16 -0
  222. package/cosmos/gov/v1/tx.rpc.func.js +77 -0
  223. package/cosmos/gov/v1beta1/genesis.d.ts +61 -0
  224. package/cosmos/gov/v1beta1/genesis.js +165 -0
  225. package/cosmos/gov/v1beta1/gov.d.ts +524 -0
  226. package/cosmos/gov/v1beta1/gov.js +1114 -0
  227. package/cosmos/gov/v1beta1/query.d.ts +606 -0
  228. package/cosmos/gov/v1beta1/query.js +1409 -0
  229. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +18 -0
  230. package/cosmos/gov/v1beta1/query.rpc.func.js +102 -0
  231. package/cosmos/gov/v1beta1/tx.d.ts +327 -0
  232. package/cosmos/gov/v1beta1/tx.js +699 -0
  233. package/cosmos/gov/v1beta1/tx.registry.d.ts +59 -0
  234. package/cosmos/gov/v1beta1/tx.registry.js +85 -0
  235. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +10 -0
  236. package/cosmos/gov/v1beta1/tx.rpc.func.js +47 -0
  237. package/cosmos/group/module/v1/module.d.ts +53 -0
  238. package/cosmos/group/module/v1/module.js +96 -0
  239. package/cosmos/group/v1/events.d.ts +363 -0
  240. package/cosmos/group/v1/events.js +847 -0
  241. package/cosmos/group/v1/genesis.d.ts +83 -0
  242. package/cosmos/group/v1/genesis.js +183 -0
  243. package/cosmos/group/v1/query.d.ts +1044 -0
  244. package/cosmos/group/v1/query.js +2434 -0
  245. package/cosmos/group/v1/query.rpc.func.d.ts +30 -0
  246. package/cosmos/group/v1/query.rpc.func.js +174 -0
  247. package/cosmos/group/v1/tx.d.ts +1140 -0
  248. package/cosmos/group/v1/tx.js +2567 -0
  249. package/cosmos/group/v1/tx.registry.d.ts +179 -0
  250. package/cosmos/group/v1/tx.registry.js +265 -0
  251. package/cosmos/group/v1/tx.rpc.func.d.ts +30 -0
  252. package/cosmos/group/v1/tx.rpc.func.js +147 -0
  253. package/cosmos/group/v1/types.d.ts +799 -0
  254. package/cosmos/group/v1/types.js +1542 -0
  255. package/cosmos/ics23/v1/proofs.d.ts +730 -0
  256. package/cosmos/ics23/v1/proofs.js +1605 -0
  257. package/cosmos/mint/module/v1/module.d.ts +38 -0
  258. package/cosmos/mint/module/v1/module.js +95 -0
  259. package/cosmos/mint/v1beta1/genesis.d.ts +41 -0
  260. package/cosmos/mint/v1beta1/genesis.js +96 -0
  261. package/cosmos/mint/v1beta1/mint.d.ts +94 -0
  262. package/cosmos/mint/v1beta1/mint.js +233 -0
  263. package/cosmos/mint/v1beta1/query.d.ts +213 -0
  264. package/cosmos/mint/v1beta1/query.js +436 -0
  265. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +8 -0
  266. package/cosmos/mint/v1beta1/query.rpc.func.js +42 -0
  267. package/cosmos/mint/v1beta1/tx.d.ts +97 -0
  268. package/cosmos/mint/v1beta1/tx.js +161 -0
  269. package/cosmos/mint/v1beta1/tx.registry.d.ts +23 -0
  270. package/cosmos/mint/v1beta1/tx.registry.js +31 -0
  271. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +4 -0
  272. package/cosmos/mint/v1beta1/tx.rpc.func.js +17 -0
  273. package/cosmos/msg/textual/v1/textual.d.ts +1 -0
  274. package/cosmos/msg/textual/v1/textual.js +2 -0
  275. package/cosmos/msg/v1/msg.d.ts +1 -0
  276. package/cosmos/msg/v1/msg.js +2 -0
  277. package/cosmos/nft/module/v1/module.d.ts +32 -0
  278. package/cosmos/nft/module/v1/module.js +70 -0
  279. package/cosmos/nft/v1beta1/event.d.ts +132 -0
  280. package/cosmos/nft/v1beta1/event.js +323 -0
  281. package/cosmos/nft/v1beta1/genesis.d.ts +79 -0
  282. package/cosmos/nft/v1beta1/genesis.js +195 -0
  283. package/cosmos/nft/v1beta1/nft.d.ts +111 -0
  284. package/cosmos/nft/v1beta1/nft.js +282 -0
  285. package/cosmos/nft/v1beta1/query.d.ts +508 -0
  286. package/cosmos/nft/v1beta1/query.js +1189 -0
  287. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +16 -0
  288. package/cosmos/nft/v1beta1/query.rpc.func.js +90 -0
  289. package/cosmos/nft/v1beta1/tx.d.ts +78 -0
  290. package/cosmos/nft/v1beta1/tx.js +184 -0
  291. package/cosmos/nft/v1beta1/tx.registry.d.ts +23 -0
  292. package/cosmos/nft/v1beta1/tx.registry.js +31 -0
  293. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +4 -0
  294. package/cosmos/nft/v1beta1/tx.rpc.func.js +17 -0
  295. package/cosmos/orm/module/v1alpha1/module.d.ts +40 -0
  296. package/cosmos/orm/module/v1alpha1/module.js +70 -0
  297. package/cosmos/orm/query/v1alpha1/query.d.ts +367 -0
  298. package/cosmos/orm/query/v1alpha1/query.js +751 -0
  299. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +6 -0
  300. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +30 -0
  301. package/cosmos/orm/v1/orm.d.ts +278 -0
  302. package/cosmos/orm/v1/orm.js +380 -0
  303. package/cosmos/orm/v1alpha1/schema.d.ts +134 -0
  304. package/cosmos/orm/v1alpha1/schema.js +258 -0
  305. package/cosmos/params/module/v1/module.d.ts +32 -0
  306. package/cosmos/params/module/v1/module.js +70 -0
  307. package/cosmos/params/v1beta1/params.d.ts +80 -0
  308. package/cosmos/params/v1beta1/params.js +212 -0
  309. package/cosmos/params/v1beta1/query.d.ts +201 -0
  310. package/cosmos/params/v1beta1/query.js +413 -0
  311. package/cosmos/params/v1beta1/query.rpc.func.d.ts +6 -0
  312. package/cosmos/params/v1beta1/query.rpc.func.js +30 -0
  313. package/cosmos/query/v1/query.d.ts +1 -0
  314. package/cosmos/query/v1/query.js +2 -0
  315. package/cosmos/reflection/v1/reflection.d.ts +67 -0
  316. package/cosmos/reflection/v1/reflection.js +152 -0
  317. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +4 -0
  318. package/cosmos/reflection/v1/reflection.rpc.func.js +18 -0
  319. package/cosmos/slashing/module/v1/module.d.ts +36 -0
  320. package/cosmos/slashing/module/v1/module.js +83 -0
  321. package/cosmos/slashing/v1beta1/genesis.d.ts +177 -0
  322. package/cosmos/slashing/v1beta1/genesis.js +387 -0
  323. package/cosmos/slashing/v1beta1/query.d.ts +226 -0
  324. package/cosmos/slashing/v1beta1/query.js +477 -0
  325. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +8 -0
  326. package/cosmos/slashing/v1beta1/query.rpc.func.js +42 -0
  327. package/cosmos/slashing/v1beta1/slashing.d.ts +123 -0
  328. package/cosmos/slashing/v1beta1/slashing.js +272 -0
  329. package/cosmos/slashing/v1beta1/tx.d.ts +159 -0
  330. package/cosmos/slashing/v1beta1/tx.js +304 -0
  331. package/cosmos/slashing/v1beta1/tx.registry.d.ts +35 -0
  332. package/cosmos/slashing/v1beta1/tx.registry.js +49 -0
  333. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +6 -0
  334. package/cosmos/slashing/v1beta1/tx.rpc.func.js +27 -0
  335. package/cosmos/staking/module/v1/module.d.ts +56 -0
  336. package/cosmos/staking/module/v1/module.js +122 -0
  337. package/cosmos/staking/v1beta1/authz.d.ts +122 -0
  338. package/cosmos/staking/v1beta1/authz.js +264 -0
  339. package/cosmos/staking/v1beta1/genesis.d.ts +115 -0
  340. package/cosmos/staking/v1beta1/genesis.js +274 -0
  341. package/cosmos/staking/v1beta1/query.d.ts +1124 -0
  342. package/cosmos/staking/v1beta1/query.js +2414 -0
  343. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +30 -0
  344. package/cosmos/staking/v1beta1/query.rpc.func.js +174 -0
  345. package/cosmos/staking/v1beta1/staking.d.ts +1024 -0
  346. package/cosmos/staking/v1beta1/staking.js +2371 -0
  347. package/cosmos/staking/v1beta1/tx.d.ts +590 -0
  348. package/cosmos/staking/v1beta1/tx.js +1290 -0
  349. package/cosmos/staking/v1beta1/tx.registry.d.ts +95 -0
  350. package/cosmos/staking/v1beta1/tx.registry.js +139 -0
  351. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +16 -0
  352. package/cosmos/staking/v1beta1/tx.rpc.func.js +77 -0
  353. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +68 -0
  354. package/cosmos/store/internal/kv/v1beta1/kv.js +177 -0
  355. package/cosmos/store/snapshots/v1/snapshot.d.ts +294 -0
  356. package/cosmos/store/snapshots/v1/snapshot.js +687 -0
  357. package/cosmos/store/snapshots/v2/snapshot.d.ts +254 -0
  358. package/cosmos/store/snapshots/v2/snapshot.js +687 -0
  359. package/cosmos/store/streaming/abci/grpc.d.ts +136 -0
  360. package/cosmos/store/streaming/abci/grpc.js +332 -0
  361. package/cosmos/store/v1beta1/commit_info.d.ts +124 -0
  362. package/cosmos/store/v1beta1/commit_info.js +292 -0
  363. package/cosmos/store/v1beta1/listening.d.ts +101 -0
  364. package/cosmos/store/v1beta1/listening.js +223 -0
  365. package/cosmos/streaming/v1/grpc.d.ts +302 -0
  366. package/cosmos/streaming/v1/grpc.js +826 -0
  367. package/cosmos/tx/config/v1/config.d.ts +52 -0
  368. package/cosmos/tx/config/v1/config.js +95 -0
  369. package/cosmos/tx/signing/v1beta1/signing.d.ts +270 -0
  370. package/cosmos/tx/signing/v1beta1/signing.js +570 -0
  371. package/cosmos/tx/v1beta1/service.d.ts +916 -0
  372. package/cosmos/tx/v1beta1/service.js +1729 -0
  373. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +20 -0
  374. package/cosmos/tx/v1beta1/service.rpc.func.js +114 -0
  375. package/cosmos/tx/v1beta1/tx.d.ts +856 -0
  376. package/cosmos/tx/v1beta1/tx.js +1398 -0
  377. package/cosmos/upgrade/module/v1/module.d.ts +36 -0
  378. package/cosmos/upgrade/module/v1/module.js +83 -0
  379. package/cosmos/upgrade/v1beta1/query.d.ts +423 -0
  380. package/cosmos/upgrade/v1beta1/query.js +764 -0
  381. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +12 -0
  382. package/cosmos/upgrade/v1beta1/query.rpc.func.js +66 -0
  383. package/cosmos/upgrade/v1beta1/tx.d.ts +167 -0
  384. package/cosmos/upgrade/v1beta1/tx.js +304 -0
  385. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +35 -0
  386. package/cosmos/upgrade/v1beta1/tx.registry.js +49 -0
  387. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +6 -0
  388. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +27 -0
  389. package/cosmos/upgrade/v1beta1/upgrade.d.ts +245 -0
  390. package/cosmos/upgrade/v1beta1/upgrade.js +416 -0
  391. package/cosmos/validate/module/v1/module.d.ts +32 -0
  392. package/cosmos/validate/module/v1/module.js +70 -0
  393. package/cosmos/vesting/module/v1/module.d.ts +32 -0
  394. package/cosmos/vesting/module/v1/module.js +70 -0
  395. package/cosmos/vesting/v1beta1/tx.d.ts +256 -0
  396. package/cosmos/vesting/v1beta1/tx.js +553 -0
  397. package/cosmos/vesting/v1beta1/tx.registry.d.ts +47 -0
  398. package/cosmos/vesting/v1beta1/tx.registry.js +67 -0
  399. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +8 -0
  400. package/cosmos/vesting/v1beta1/tx.rpc.func.js +37 -0
  401. package/cosmos/vesting/v1beta1/vesting.d.ts +256 -0
  402. package/cosmos/vesting/v1beta1/vesting.js +586 -0
  403. package/cosmos_proto/cosmos.d.ts +153 -0
  404. package/cosmos_proto/cosmos.js +234 -0
  405. package/cosmwasm/wasm/v1/authz.d.ts +500 -0
  406. package/cosmwasm/wasm/v1/authz.js +924 -0
  407. package/cosmwasm/wasm/v1/genesis.d.ts +153 -0
  408. package/cosmwasm/wasm/v1/genesis.js +454 -0
  409. package/cosmwasm/wasm/v1/ibc.d.ts +132 -0
  410. package/cosmwasm/wasm/v1/ibc.js +276 -0
  411. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +872 -0
  412. package/cosmwasm/wasm/v1/proposal_legacy.js +1784 -0
  413. package/cosmwasm/wasm/v1/query.d.ts +922 -0
  414. package/cosmwasm/wasm/v1/query.js +2022 -0
  415. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +24 -0
  416. package/cosmwasm/wasm/v1/query.rpc.func.js +138 -0
  417. package/cosmwasm/wasm/v1/tx.d.ts +1534 -0
  418. package/cosmwasm/wasm/v1/tx.js +3236 -0
  419. package/cosmwasm/wasm/v1/tx.registry.d.ts +215 -0
  420. package/cosmwasm/wasm/v1/tx.registry.js +319 -0
  421. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +36 -0
  422. package/cosmwasm/wasm/v1/tx.rpc.func.js +177 -0
  423. package/cosmwasm/wasm/v1/types.d.ts +374 -0
  424. package/cosmwasm/wasm/v1/types.js +917 -0
  425. package/dist/package.json +48 -0
  426. package/esm/amino/amino.js +1 -0
  427. package/esm/binary.js +365 -0
  428. package/esm/cosmos/app/runtime/v1alpha1/module.js +290 -0
  429. package/esm/cosmos/app/runtime/v2/module.js +419 -0
  430. package/esm/cosmos/app/v1alpha1/config.js +294 -0
  431. package/esm/cosmos/app/v1alpha1/module.js +278 -0
  432. package/esm/cosmos/app/v1alpha1/query.js +146 -0
  433. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +14 -0
  434. package/esm/cosmos/auth/module/v1/module.js +200 -0
  435. package/esm/cosmos/auth/v1beta1/accounts.js +159 -0
  436. package/esm/cosmos/auth/v1beta1/auth.js +442 -0
  437. package/esm/cosmos/auth/v1beta1/genesis.js +97 -0
  438. package/esm/cosmos/auth/v1beta1/query.js +1558 -0
  439. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +113 -0
  440. package/esm/cosmos/auth/v1beta1/tx.js +158 -0
  441. package/esm/cosmos/auth/v1beta1/tx.registry.js +28 -0
  442. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +13 -0
  443. package/esm/cosmos/authz/module/v1/module.js +67 -0
  444. package/esm/cosmos/authz/v1beta1/authz.js +368 -0
  445. package/esm/cosmos/authz/v1beta1/event.js +206 -0
  446. package/esm/cosmos/authz/v1beta1/genesis.js +84 -0
  447. package/esm/cosmos/authz/v1beta1/query.js +577 -0
  448. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +36 -0
  449. package/esm/cosmos/authz/v1beta1/tx.js +513 -0
  450. package/esm/cosmos/authz/v1beta1/tx.registry.js +64 -0
  451. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +31 -0
  452. package/esm/cosmos/autocli/v1/options.js +831 -0
  453. package/esm/cosmos/autocli/v1/query.js +234 -0
  454. package/esm/cosmos/autocli/v1/query.rpc.func.js +14 -0
  455. package/esm/cosmos/bank/module/v1/module.js +110 -0
  456. package/esm/cosmos/bank/v1beta1/authz.js +99 -0
  457. package/esm/cosmos/bank/v1beta1/bank.js +723 -0
  458. package/esm/cosmos/bank/v1beta1/genesis.js +235 -0
  459. package/esm/cosmos/bank/v1beta1/query.js +2314 -0
  460. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +146 -0
  461. package/esm/cosmos/bank/v1beta1/tx.js +663 -0
  462. package/esm/cosmos/bank/v1beta1/tx.registry.js +82 -0
  463. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -0
  464. package/esm/cosmos/base/abci/v1beta1/abci.js +1290 -0
  465. package/esm/cosmos/base/grpc/v2/service.js +395 -0
  466. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +25 -0
  467. package/esm/cosmos/base/node/v1beta1/query.js +374 -0
  468. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +25 -0
  469. package/esm/cosmos/base/query/v1beta1/pagination.js +219 -0
  470. package/esm/cosmos/base/reflection/v1beta1/reflection.js +307 -0
  471. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +25 -0
  472. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +2156 -0
  473. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +69 -0
  474. package/esm/cosmos/base/tendermint/v1beta1/query.js +1884 -0
  475. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +80 -0
  476. package/esm/cosmos/base/tendermint/v1beta1/types.js +355 -0
  477. package/esm/cosmos/base/v1beta1/coin.js +338 -0
  478. package/esm/cosmos/circuit/module/v1/module.js +80 -0
  479. package/esm/cosmos/circuit/v1/query.js +477 -0
  480. package/esm/cosmos/circuit/v1/query.rpc.func.js +36 -0
  481. package/esm/cosmos/circuit/v1/tx.js +525 -0
  482. package/esm/cosmos/circuit/v1/tx.registry.js +64 -0
  483. package/esm/cosmos/circuit/v1/tx.rpc.func.js +31 -0
  484. package/esm/cosmos/circuit/v1/types.js +345 -0
  485. package/esm/cosmos/consensus/module/v1/module.js +80 -0
  486. package/esm/cosmos/consensus/v1/query.js +146 -0
  487. package/esm/cosmos/consensus/v1/query.rpc.func.js +14 -0
  488. package/esm/cosmos/consensus/v1/tx.js +194 -0
  489. package/esm/cosmos/consensus/v1/tx.registry.js +28 -0
  490. package/esm/cosmos/consensus/v1/tx.rpc.func.js +13 -0
  491. package/esm/cosmos/crisis/module/v1/module.js +92 -0
  492. package/esm/cosmos/crisis/v1beta1/genesis.js +81 -0
  493. package/esm/cosmos/crisis/v1beta1/tx.js +325 -0
  494. package/esm/cosmos/crisis/v1beta1/tx.registry.js +46 -0
  495. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +22 -0
  496. package/esm/cosmos/crypto/ed25519/keys.js +159 -0
  497. package/esm/cosmos/crypto/hd/v1/hd.js +128 -0
  498. package/esm/cosmos/crypto/keyring/v1/record.js +428 -0
  499. package/esm/cosmos/crypto/multisig/keys.js +96 -0
  500. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +174 -0
  501. package/esm/cosmos/crypto/secp256k1/keys.js +159 -0
  502. package/esm/cosmos/crypto/secp256r1/keys.js +159 -0
  503. package/esm/cosmos/distribution/module/v1/module.js +92 -0
  504. package/esm/cosmos/distribution/v1beta1/distribution.js +1155 -0
  505. package/esm/cosmos/distribution/v1beta1/genesis.js +892 -0
  506. package/esm/cosmos/distribution/v1beta1/query.js +1659 -0
  507. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +113 -0
  508. package/esm/cosmos/distribution/v1beta1/tx.js +1142 -0
  509. package/esm/cosmos/distribution/v1beta1/tx.registry.js +136 -0
  510. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +67 -0
  511. package/esm/cosmos/evidence/module/v1/module.js +67 -0
  512. package/esm/cosmos/evidence/v1beta1/evidence.js +118 -0
  513. package/esm/cosmos/evidence/v1beta1/genesis.js +84 -0
  514. package/esm/cosmos/evidence/v1beta1/query.js +344 -0
  515. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +25 -0
  516. package/esm/cosmos/evidence/v1beta1/tx.js +172 -0
  517. package/esm/cosmos/evidence/v1beta1/tx.registry.js +28 -0
  518. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +13 -0
  519. package/esm/cosmos/feegrant/module/v1/module.js +67 -0
  520. package/esm/cosmos/feegrant/v1beta1/feegrant.js +427 -0
  521. package/esm/cosmos/feegrant/v1beta1/genesis.js +84 -0
  522. package/esm/cosmos/feegrant/v1beta1/query.js +538 -0
  523. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +36 -0
  524. package/esm/cosmos/feegrant/v1beta1/tx.js +468 -0
  525. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +64 -0
  526. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +31 -0
  527. package/esm/cosmos/genutil/module/v1/module.js +67 -0
  528. package/esm/cosmos/genutil/v1beta1/genesis.js +84 -0
  529. package/esm/cosmos/gov/module/v1/module.js +92 -0
  530. package/esm/cosmos/gov/v1/genesis.js +186 -0
  531. package/esm/cosmos/gov/v1/gov.js +1356 -0
  532. package/esm/cosmos/gov/v1/query.js +1561 -0
  533. package/esm/cosmos/gov/v1/query.rpc.func.js +102 -0
  534. package/esm/cosmos/gov/v1/tx.js +1274 -0
  535. package/esm/cosmos/gov/v1/tx.registry.js +136 -0
  536. package/esm/cosmos/gov/v1/tx.rpc.func.js +67 -0
  537. package/esm/cosmos/gov/v1beta1/genesis.js +162 -0
  538. package/esm/cosmos/gov/v1beta1/gov.js +1107 -0
  539. package/esm/cosmos/gov/v1beta1/query.js +1406 -0
  540. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +91 -0
  541. package/esm/cosmos/gov/v1beta1/tx.js +696 -0
  542. package/esm/cosmos/gov/v1beta1/tx.registry.js +82 -0
  543. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +40 -0
  544. package/esm/cosmos/group/module/v1/module.js +93 -0
  545. package/esm/cosmos/group/v1/events.js +844 -0
  546. package/esm/cosmos/group/v1/genesis.js +180 -0
  547. package/esm/cosmos/group/v1/query.js +2431 -0
  548. package/esm/cosmos/group/v1/query.rpc.func.js +157 -0
  549. package/esm/cosmos/group/v1/tx.js +2562 -0
  550. package/esm/cosmos/group/v1/tx.registry.js +262 -0
  551. package/esm/cosmos/group/v1/tx.rpc.func.js +130 -0
  552. package/esm/cosmos/group/v1/types.js +1533 -0
  553. package/esm/cosmos/ics23/v1/proofs.js +1598 -0
  554. package/esm/cosmos/mint/module/v1/module.js +92 -0
  555. package/esm/cosmos/mint/v1beta1/genesis.js +93 -0
  556. package/esm/cosmos/mint/v1beta1/mint.js +230 -0
  557. package/esm/cosmos/mint/v1beta1/query.js +433 -0
  558. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +36 -0
  559. package/esm/cosmos/mint/v1beta1/tx.js +158 -0
  560. package/esm/cosmos/mint/v1beta1/tx.registry.js +28 -0
  561. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +13 -0
  562. package/esm/cosmos/msg/textual/v1/textual.js +1 -0
  563. package/esm/cosmos/msg/v1/msg.js +1 -0
  564. package/esm/cosmos/nft/module/v1/module.js +67 -0
  565. package/esm/cosmos/nft/v1beta1/event.js +320 -0
  566. package/esm/cosmos/nft/v1beta1/genesis.js +192 -0
  567. package/esm/cosmos/nft/v1beta1/nft.js +279 -0
  568. package/esm/cosmos/nft/v1beta1/query.js +1186 -0
  569. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +80 -0
  570. package/esm/cosmos/nft/v1beta1/tx.js +181 -0
  571. package/esm/cosmos/nft/v1beta1/tx.registry.js +28 -0
  572. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +13 -0
  573. package/esm/cosmos/orm/module/v1alpha1/module.js +67 -0
  574. package/esm/cosmos/orm/query/v1alpha1/query.js +748 -0
  575. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +25 -0
  576. package/esm/cosmos/orm/v1/orm.js +377 -0
  577. package/esm/cosmos/orm/v1alpha1/schema.js +253 -0
  578. package/esm/cosmos/params/module/v1/module.js +67 -0
  579. package/esm/cosmos/params/v1beta1/params.js +209 -0
  580. package/esm/cosmos/params/v1beta1/query.js +410 -0
  581. package/esm/cosmos/params/v1beta1/query.rpc.func.js +25 -0
  582. package/esm/cosmos/query/v1/query.js +1 -0
  583. package/esm/cosmos/reflection/v1/reflection.js +149 -0
  584. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +14 -0
  585. package/esm/cosmos/slashing/module/v1/module.js +80 -0
  586. package/esm/cosmos/slashing/v1beta1/genesis.js +384 -0
  587. package/esm/cosmos/slashing/v1beta1/query.js +474 -0
  588. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +36 -0
  589. package/esm/cosmos/slashing/v1beta1/slashing.js +269 -0
  590. package/esm/cosmos/slashing/v1beta1/tx.js +301 -0
  591. package/esm/cosmos/slashing/v1beta1/tx.registry.js +46 -0
  592. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -0
  593. package/esm/cosmos/staking/module/v1/module.js +119 -0
  594. package/esm/cosmos/staking/v1beta1/authz.js +259 -0
  595. package/esm/cosmos/staking/v1beta1/genesis.js +271 -0
  596. package/esm/cosmos/staking/v1beta1/query.js +2411 -0
  597. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +157 -0
  598. package/esm/cosmos/staking/v1beta1/staking.js +2364 -0
  599. package/esm/cosmos/staking/v1beta1/tx.js +1287 -0
  600. package/esm/cosmos/staking/v1beta1/tx.registry.js +136 -0
  601. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +67 -0
  602. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +174 -0
  603. package/esm/cosmos/store/snapshots/v1/snapshot.js +684 -0
  604. package/esm/cosmos/store/snapshots/v2/snapshot.js +684 -0
  605. package/esm/cosmos/store/streaming/abci/grpc.js +329 -0
  606. package/esm/cosmos/store/v1beta1/commit_info.js +289 -0
  607. package/esm/cosmos/store/v1beta1/listening.js +220 -0
  608. package/esm/cosmos/streaming/v1/grpc.js +823 -0
  609. package/esm/cosmos/tx/config/v1/config.js +92 -0
  610. package/esm/cosmos/tx/signing/v1beta1/signing.js +565 -0
  611. package/esm/cosmos/tx/v1beta1/service.js +1722 -0
  612. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +102 -0
  613. package/esm/cosmos/tx/v1beta1/tx.js +1395 -0
  614. package/esm/cosmos/upgrade/module/v1/module.js +80 -0
  615. package/esm/cosmos/upgrade/v1beta1/query.js +761 -0
  616. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +58 -0
  617. package/esm/cosmos/upgrade/v1beta1/tx.js +301 -0
  618. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +46 -0
  619. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -0
  620. package/esm/cosmos/upgrade/v1beta1/upgrade.js +413 -0
  621. package/esm/cosmos/validate/module/v1/module.js +67 -0
  622. package/esm/cosmos/vesting/module/v1/module.js +67 -0
  623. package/esm/cosmos/vesting/v1beta1/tx.js +550 -0
  624. package/esm/cosmos/vesting/v1beta1/tx.registry.js +64 -0
  625. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +31 -0
  626. package/esm/cosmos/vesting/v1beta1/vesting.js +583 -0
  627. package/esm/cosmos_proto/cosmos.js +229 -0
  628. package/esm/cosmwasm/wasm/v1/authz.js +921 -0
  629. package/esm/cosmwasm/wasm/v1/genesis.js +451 -0
  630. package/esm/cosmwasm/wasm/v1/ibc.js +273 -0
  631. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +1781 -0
  632. package/esm/cosmwasm/wasm/v1/query.js +2019 -0
  633. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +124 -0
  634. package/esm/cosmwasm/wasm/v1/tx.js +3233 -0
  635. package/esm/cosmwasm/wasm/v1/tx.registry.js +316 -0
  636. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +157 -0
  637. package/esm/cosmwasm/wasm/v1/types.js +910 -0
  638. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +143 -0
  639. package/esm/ethermint/evm/v1/events.js +381 -0
  640. package/esm/ethermint/evm/v1/evm.js +1181 -0
  641. package/esm/ethermint/evm/v1/genesis.js +185 -0
  642. package/esm/ethermint/evm/v1/query.js +1970 -0
  643. package/esm/ethermint/evm/v1/query.rpc.func.js +136 -0
  644. package/esm/ethermint/evm/v1/tx.js +1008 -0
  645. package/esm/ethermint/evm/v1/tx.registry.js +46 -0
  646. package/esm/ethermint/evm/v1/tx.rpc.func.js +22 -0
  647. package/esm/ethermint/feemarket/v1/events.js +154 -0
  648. package/esm/ethermint/feemarket/v1/feemarket.js +152 -0
  649. package/esm/ethermint/feemarket/v1/genesis.js +85 -0
  650. package/esm/ethermint/feemarket/v1/query.js +384 -0
  651. package/esm/ethermint/feemarket/v1/query.rpc.func.js +36 -0
  652. package/esm/ethermint/feemarket/v1/tx.js +150 -0
  653. package/esm/ethermint/feemarket/v1/tx.registry.js +28 -0
  654. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +13 -0
  655. package/esm/ethermint/types/v1/account.js +85 -0
  656. package/esm/ethermint/types/v1/dynamic_fee.js +72 -0
  657. package/esm/ethermint/types/v1/indexer.js +144 -0
  658. package/esm/ethermint/types/v1/web3.js +97 -0
  659. package/esm/extern.js +30 -0
  660. package/esm/gogoproto/gogo.js +1 -0
  661. package/esm/google/api/annotations.js +1 -0
  662. package/esm/google/api/http.js +350 -0
  663. package/esm/google/protobuf/any.js +78 -0
  664. package/esm/google/protobuf/descriptor.js +5062 -0
  665. package/esm/google/protobuf/duration.js +78 -0
  666. package/esm/google/protobuf/timestamp.js +75 -0
  667. package/esm/helper-func-types.js +50 -0
  668. package/esm/helpers.js +128 -0
  669. package/esm/ibc/applications/fee/v1/ack.js +105 -0
  670. package/esm/ibc/applications/fee/v1/fee.js +394 -0
  671. package/esm/ibc/applications/fee/v1/genesis.js +529 -0
  672. package/esm/ibc/applications/fee/v1/metadata.js +92 -0
  673. package/esm/ibc/applications/fee/v1/query.js +1729 -0
  674. package/esm/ibc/applications/fee/v1/query.rpc.func.js +113 -0
  675. package/esm/ibc/applications/fee/v1/tx.js +711 -0
  676. package/esm/ibc/applications/fee/v1/tx.registry.js +82 -0
  677. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +40 -0
  678. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +80 -0
  679. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +314 -0
  680. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +25 -0
  681. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +556 -0
  682. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +64 -0
  683. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +31 -0
  684. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +553 -0
  685. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +186 -0
  686. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +146 -0
  687. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +14 -0
  688. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +345 -0
  689. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +46 -0
  690. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +22 -0
  691. package/esm/ibc/applications/interchain_accounts/v1/account.js +93 -0
  692. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +140 -0
  693. package/esm/ibc/applications/interchain_accounts/v1/packet.js +225 -0
  694. package/esm/ibc/applications/transfer/v1/authz.js +219 -0
  695. package/esm/ibc/applications/transfer/v1/genesis.js +124 -0
  696. package/esm/ibc/applications/transfer/v1/query.js +955 -0
  697. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +69 -0
  698. package/esm/ibc/applications/transfer/v1/transfer.js +182 -0
  699. package/esm/ibc/applications/transfer/v1/tx.js +399 -0
  700. package/esm/ibc/applications/transfer/v1/tx.registry.js +46 -0
  701. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +22 -0
  702. package/esm/ibc/applications/transfer/v2/packet.js +128 -0
  703. package/esm/ibc/core/channel/v1/channel.js +1160 -0
  704. package/esm/ibc/core/channel/v1/genesis.js +300 -0
  705. package/esm/ibc/core/channel/v1/query.js +3396 -0
  706. package/esm/ibc/core/channel/v1/query.rpc.func.js +190 -0
  707. package/esm/ibc/core/channel/v1/tx.js +4022 -0
  708. package/esm/ibc/core/channel/v1/tx.registry.js +352 -0
  709. package/esm/ibc/core/channel/v1/tx.rpc.func.js +175 -0
  710. package/esm/ibc/core/channel/v1/upgrade.js +301 -0
  711. package/esm/ibc/core/client/v1/client.js +672 -0
  712. package/esm/ibc/core/client/v1/genesis.js +334 -0
  713. package/esm/ibc/core/client/v1/query.js +1753 -0
  714. package/esm/ibc/core/client/v1/query.rpc.func.js +113 -0
  715. package/esm/ibc/core/client/v1/tx.js +1199 -0
  716. package/esm/ibc/core/client/v1/tx.registry.js +136 -0
  717. package/esm/ibc/core/client/v1/tx.rpc.func.js +67 -0
  718. package/esm/ibc/core/commitment/v1/commitment.js +322 -0
  719. package/esm/ibc/core/connection/v1/connection.js +776 -0
  720. package/esm/ibc/core/connection/v1/genesis.js +123 -0
  721. package/esm/ibc/core/connection/v1/query.js +1092 -0
  722. package/esm/ibc/core/connection/v1/query.rpc.func.js +69 -0
  723. package/esm/ibc/core/connection/v1/tx.js +1084 -0
  724. package/esm/ibc/core/connection/v1/tx.registry.js +100 -0
  725. package/esm/ibc/core/connection/v1/tx.rpc.func.js +49 -0
  726. package/esm/ibc/core/types/v1/genesis.js +107 -0
  727. package/esm/ibc/lightclients/localhost/v2/localhost.js +81 -0
  728. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +1684 -0
  729. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +844 -0
  730. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +622 -0
  731. package/esm/ibc/lightclients/wasm/v1/genesis.js +162 -0
  732. package/esm/ibc/lightclients/wasm/v1/query.js +331 -0
  733. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +25 -0
  734. package/esm/ibc/lightclients/wasm/v1/tx.js +505 -0
  735. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +64 -0
  736. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +31 -0
  737. package/esm/ibc/lightclients/wasm/v1/wasm.js +343 -0
  738. package/esm/react-query.js +83 -0
  739. package/esm/registry.js +154 -0
  740. package/esm/tendermint/abci/types.js +5217 -0
  741. package/esm/tendermint/crypto/keys.js +85 -0
  742. package/esm/tendermint/crypto/proof.js +455 -0
  743. package/esm/tendermint/p2p/types.js +427 -0
  744. package/esm/tendermint/types/block.js +110 -0
  745. package/esm/tendermint/types/evidence.js +400 -0
  746. package/esm/tendermint/types/params.js +592 -0
  747. package/esm/tendermint/types/types.js +1749 -0
  748. package/esm/tendermint/types/validator.js +337 -0
  749. package/esm/tendermint/version/types.js +166 -0
  750. package/esm/types.js +6 -0
  751. package/esm/utf8.js +136 -0
  752. package/esm/varint.js +407 -0
  753. package/esm/xpla/reward/v1beta1/genesis.js +73 -0
  754. package/esm/xpla/reward/v1beta1/query.js +261 -0
  755. package/esm/xpla/reward/v1beta1/query.rpc.func.js +25 -0
  756. package/esm/xpla/reward/v1beta1/reward.js +128 -0
  757. package/esm/xpla/reward/v1beta1/tx.js +301 -0
  758. package/esm/xpla/reward/v1beta1/tx.registry.js +46 -0
  759. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +22 -0
  760. package/esm/xpla/volunteer/v1beta1/genesis.js +76 -0
  761. package/esm/xpla/volunteer/v1beta1/proposal.js +534 -0
  762. package/esm/xpla/volunteer/v1beta1/query.js +132 -0
  763. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +14 -0
  764. package/esm/xpla/volunteer/v1beta1/tx.js +348 -0
  765. package/esm/xpla/volunteer/v1beta1/tx.registry.js +46 -0
  766. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +22 -0
  767. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +84 -0
  768. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +80 -0
  769. package/ethermint/crypto/v1/ethsecp256k1/keys.js +146 -0
  770. package/ethermint/evm/v1/events.d.ts +162 -0
  771. package/ethermint/evm/v1/events.js +384 -0
  772. package/ethermint/evm/v1/evm.d.ts +530 -0
  773. package/ethermint/evm/v1/evm.js +1184 -0
  774. package/ethermint/evm/v1/genesis.d.ts +87 -0
  775. package/ethermint/evm/v1/genesis.js +188 -0
  776. package/ethermint/evm/v1/query.d.ts +913 -0
  777. package/ethermint/evm/v1/query.js +1973 -0
  778. package/ethermint/evm/v1/query.rpc.func.d.ts +27 -0
  779. package/ethermint/evm/v1/query.rpc.func.js +151 -0
  780. package/ethermint/evm/v1/tx.d.ts +452 -0
  781. package/ethermint/evm/v1/tx.js +1011 -0
  782. package/ethermint/evm/v1/tx.registry.d.ts +35 -0
  783. package/ethermint/evm/v1/tx.registry.js +49 -0
  784. package/ethermint/evm/v1/tx.rpc.func.d.ts +6 -0
  785. package/ethermint/evm/v1/tx.rpc.func.js +27 -0
  786. package/ethermint/feemarket/v1/events.d.ts +70 -0
  787. package/ethermint/feemarket/v1/events.js +157 -0
  788. package/ethermint/feemarket/v1/feemarket.d.ts +78 -0
  789. package/ethermint/feemarket/v1/feemarket.js +155 -0
  790. package/ethermint/feemarket/v1/genesis.d.ts +45 -0
  791. package/ethermint/feemarket/v1/genesis.js +88 -0
  792. package/ethermint/feemarket/v1/query.d.ts +195 -0
  793. package/ethermint/feemarket/v1/query.js +387 -0
  794. package/ethermint/feemarket/v1/query.rpc.func.d.ts +8 -0
  795. package/ethermint/feemarket/v1/query.rpc.func.js +42 -0
  796. package/ethermint/feemarket/v1/tx.d.ts +81 -0
  797. package/ethermint/feemarket/v1/tx.js +153 -0
  798. package/ethermint/feemarket/v1/tx.registry.d.ts +23 -0
  799. package/ethermint/feemarket/v1/tx.registry.js +31 -0
  800. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +4 -0
  801. package/ethermint/feemarket/v1/tx.rpc.func.js +17 -0
  802. package/ethermint/types/v1/account.d.ts +45 -0
  803. package/ethermint/types/v1/account.js +88 -0
  804. package/ethermint/types/v1/dynamic_fee.d.ts +34 -0
  805. package/ethermint/types/v1/dynamic_fee.js +75 -0
  806. package/ethermint/types/v1/indexer.d.ts +76 -0
  807. package/ethermint/types/v1/indexer.js +147 -0
  808. package/ethermint/types/v1/web3.d.ts +66 -0
  809. package/ethermint/types/v1/web3.js +100 -0
  810. package/extern.d.ts +10 -0
  811. package/extern.js +36 -0
  812. package/gogoproto/gogo.d.ts +1 -0
  813. package/gogoproto/gogo.js +2 -0
  814. package/google/api/annotations.d.ts +1 -0
  815. package/google/api/annotations.js +2 -0
  816. package/google/api/http.d.ts +764 -0
  817. package/google/api/http.js +353 -0
  818. package/google/protobuf/any.d.ts +268 -0
  819. package/google/protobuf/any.js +81 -0
  820. package/google/protobuf/descriptor.d.ts +2919 -0
  821. package/google/protobuf/descriptor.js +5100 -0
  822. package/google/protobuf/duration.d.ts +162 -0
  823. package/google/protobuf/duration.js +81 -0
  824. package/google/protobuf/timestamp.d.ts +222 -0
  825. package/google/protobuf/timestamp.js +78 -0
  826. package/helper-func-types.d.ts +117 -0
  827. package/helper-func-types.js +55 -0
  828. package/helpers.d.ts +82 -0
  829. package/helpers.js +143 -0
  830. package/ibc/applications/fee/v1/ack.d.ts +44 -0
  831. package/ibc/applications/fee/v1/ack.js +108 -0
  832. package/ibc/applications/fee/v1/fee.d.ts +160 -0
  833. package/ibc/applications/fee/v1/fee.js +397 -0
  834. package/ibc/applications/fee/v1/genesis.d.ts +220 -0
  835. package/ibc/applications/fee/v1/genesis.js +532 -0
  836. package/ibc/applications/fee/v1/metadata.d.ts +46 -0
  837. package/ibc/applications/fee/v1/metadata.js +95 -0
  838. package/ibc/applications/fee/v1/query.d.ts +737 -0
  839. package/ibc/applications/fee/v1/query.js +1732 -0
  840. package/ibc/applications/fee/v1/query.rpc.func.d.ts +22 -0
  841. package/ibc/applications/fee/v1/query.rpc.func.js +126 -0
  842. package/ibc/applications/fee/v1/tx.d.ts +318 -0
  843. package/ibc/applications/fee/v1/tx.js +714 -0
  844. package/ibc/applications/fee/v1/tx.registry.d.ts +59 -0
  845. package/ibc/applications/fee/v1/tx.registry.js +85 -0
  846. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +10 -0
  847. package/ibc/applications/fee/v1/tx.rpc.func.js +47 -0
  848. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +42 -0
  849. package/ibc/applications/interchain_accounts/controller/v1/controller.js +83 -0
  850. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +133 -0
  851. package/ibc/applications/interchain_accounts/controller/v1/query.js +317 -0
  852. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +6 -0
  853. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +30 -0
  854. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +231 -0
  855. package/ibc/applications/interchain_accounts/controller/v1/tx.js +559 -0
  856. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +47 -0
  857. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +67 -0
  858. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +8 -0
  859. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +37 -0
  860. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +196 -0
  861. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +556 -0
  862. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +102 -0
  863. package/ibc/applications/interchain_accounts/host/v1/host.js +189 -0
  864. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +67 -0
  865. package/ibc/applications/interchain_accounts/host/v1/query.js +149 -0
  866. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +4 -0
  867. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +18 -0
  868. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +155 -0
  869. package/ibc/applications/interchain_accounts/host/v1/tx.js +348 -0
  870. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +35 -0
  871. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +49 -0
  872. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +6 -0
  873. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +27 -0
  874. package/ibc/applications/interchain_accounts/v1/account.d.ts +37 -0
  875. package/ibc/applications/interchain_accounts/v1/account.js +96 -0
  876. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +68 -0
  877. package/ibc/applications/interchain_accounts/v1/metadata.js +143 -0
  878. package/ibc/applications/interchain_accounts/v1/packet.d.ts +85 -0
  879. package/ibc/applications/interchain_accounts/v1/packet.js +230 -0
  880. package/ibc/applications/transfer/v1/authz.d.ts +99 -0
  881. package/ibc/applications/transfer/v1/authz.js +222 -0
  882. package/ibc/applications/transfer/v1/genesis.d.ts +50 -0
  883. package/ibc/applications/transfer/v1/genesis.js +127 -0
  884. package/ibc/applications/transfer/v1/query.d.ts +449 -0
  885. package/ibc/applications/transfer/v1/query.js +958 -0
  886. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +14 -0
  887. package/ibc/applications/transfer/v1/query.rpc.func.js +78 -0
  888. package/ibc/applications/transfer/v1/transfer.d.ts +112 -0
  889. package/ibc/applications/transfer/v1/transfer.js +185 -0
  890. package/ibc/applications/transfer/v1/tx.d.ts +202 -0
  891. package/ibc/applications/transfer/v1/tx.js +402 -0
  892. package/ibc/applications/transfer/v1/tx.registry.d.ts +35 -0
  893. package/ibc/applications/transfer/v1/tx.registry.js +49 -0
  894. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +6 -0
  895. package/ibc/applications/transfer/v1/tx.rpc.func.js +27 -0
  896. package/ibc/applications/transfer/v2/packet.d.ts +60 -0
  897. package/ibc/applications/transfer/v2/packet.js +131 -0
  898. package/ibc/core/channel/v1/channel.d.ts +547 -0
  899. package/ibc/core/channel/v1/channel.js +1167 -0
  900. package/ibc/core/channel/v1/genesis.d.ts +95 -0
  901. package/ibc/core/channel/v1/genesis.js +303 -0
  902. package/ibc/core/channel/v1/query.d.ts +1525 -0
  903. package/ibc/core/channel/v1/query.js +3399 -0
  904. package/ibc/core/channel/v1/query.rpc.func.d.ts +36 -0
  905. package/ibc/core/channel/v1/query.rpc.func.js +210 -0
  906. package/ibc/core/channel/v1/tx.d.ts +1490 -0
  907. package/ibc/core/channel/v1/tx.js +4027 -0
  908. package/ibc/core/channel/v1/tx.registry.d.ts +239 -0
  909. package/ibc/core/channel/v1/tx.registry.js +355 -0
  910. package/ibc/core/channel/v1/tx.rpc.func.d.ts +40 -0
  911. package/ibc/core/channel/v1/tx.rpc.func.js +197 -0
  912. package/ibc/core/channel/v1/upgrade.d.ts +139 -0
  913. package/ibc/core/channel/v1/upgrade.js +304 -0
  914. package/ibc/core/client/v1/client.d.ts +372 -0
  915. package/ibc/core/client/v1/client.js +675 -0
  916. package/ibc/core/client/v1/genesis.d.ts +147 -0
  917. package/ibc/core/client/v1/genesis.js +337 -0
  918. package/ibc/core/client/v1/query.d.ts +862 -0
  919. package/ibc/core/client/v1/query.js +1756 -0
  920. package/ibc/core/client/v1/query.rpc.func.d.ts +22 -0
  921. package/ibc/core/client/v1/query.rpc.func.js +126 -0
  922. package/ibc/core/client/v1/tx.d.ts +587 -0
  923. package/ibc/core/client/v1/tx.js +1202 -0
  924. package/ibc/core/client/v1/tx.registry.d.ts +95 -0
  925. package/ibc/core/client/v1/tx.registry.js +139 -0
  926. package/ibc/core/client/v1/tx.rpc.func.d.ts +16 -0
  927. package/ibc/core/client/v1/tx.rpc.func.js +77 -0
  928. package/ibc/core/commitment/v1/commitment.d.ts +165 -0
  929. package/ibc/core/commitment/v1/commitment.js +325 -0
  930. package/ibc/core/connection/v1/connection.d.ts +376 -0
  931. package/ibc/core/connection/v1/connection.js +781 -0
  932. package/ibc/core/connection/v1/genesis.d.ts +43 -0
  933. package/ibc/core/connection/v1/genesis.js +126 -0
  934. package/ibc/core/connection/v1/query.d.ts +518 -0
  935. package/ibc/core/connection/v1/query.js +1095 -0
  936. package/ibc/core/connection/v1/query.rpc.func.d.ts +14 -0
  937. package/ibc/core/connection/v1/query.rpc.func.js +78 -0
  938. package/ibc/core/connection/v1/tx.d.ts +457 -0
  939. package/ibc/core/connection/v1/tx.js +1087 -0
  940. package/ibc/core/connection/v1/tx.registry.d.ts +71 -0
  941. package/ibc/core/connection/v1/tx.registry.js +103 -0
  942. package/ibc/core/connection/v1/tx.rpc.func.d.ts +12 -0
  943. package/ibc/core/connection/v1/tx.rpc.func.js +57 -0
  944. package/ibc/core/types/v1/genesis.d.ts +50 -0
  945. package/ibc/core/types/v1/genesis.js +110 -0
  946. package/ibc/lightclients/localhost/v2/localhost.d.ts +37 -0
  947. package/ibc/lightclients/localhost/v2/localhost.js +84 -0
  948. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +711 -0
  949. package/ibc/lightclients/solomachine/v2/solomachine.js +1689 -0
  950. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +357 -0
  951. package/ibc/lightclients/solomachine/v3/solomachine.js +847 -0
  952. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +306 -0
  953. package/ibc/lightclients/tendermint/v1/tendermint.js +625 -0
  954. package/ibc/lightclients/wasm/v1/genesis.d.ts +70 -0
  955. package/ibc/lightclients/wasm/v1/genesis.js +165 -0
  956. package/ibc/lightclients/wasm/v1/query.d.ts +141 -0
  957. package/ibc/lightclients/wasm/v1/query.js +334 -0
  958. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +6 -0
  959. package/ibc/lightclients/wasm/v1/query.rpc.func.js +30 -0
  960. package/ibc/lightclients/wasm/v1/tx.d.ts +218 -0
  961. package/ibc/lightclients/wasm/v1/tx.js +508 -0
  962. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +47 -0
  963. package/ibc/lightclients/wasm/v1/tx.registry.js +67 -0
  964. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +8 -0
  965. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +37 -0
  966. package/ibc/lightclients/wasm/v1/wasm.d.ts +163 -0
  967. package/ibc/lightclients/wasm/v1/wasm.js +346 -0
  968. package/package.json +3 -2
  969. package/react-query.d.ts +48 -0
  970. package/react-query.js +91 -0
  971. package/registry.d.ts +33 -0
  972. package/registry.js +158 -0
  973. package/tendermint/abci/types.d.ts +1843 -0
  974. package/tendermint/abci/types.js +5233 -0
  975. package/tendermint/crypto/keys.d.ts +34 -0
  976. package/tendermint/crypto/keys.js +88 -0
  977. package/tendermint/crypto/proof.d.ts +174 -0
  978. package/tendermint/crypto/proof.js +458 -0
  979. package/tendermint/p2p/types.d.ts +138 -0
  980. package/tendermint/p2p/types.js +430 -0
  981. package/tendermint/types/block.d.ts +38 -0
  982. package/tendermint/types/block.js +113 -0
  983. package/tendermint/types/evidence.d.ts +138 -0
  984. package/tendermint/types/evidence.js +403 -0
  985. package/tendermint/types/params.d.ts +323 -0
  986. package/tendermint/types/params.js +595 -0
  987. package/tendermint/types/types.d.ts +640 -0
  988. package/tendermint/types/types.js +1754 -0
  989. package/tendermint/types/validator.d.ts +113 -0
  990. package/tendermint/types/validator.js +342 -0
  991. package/tendermint/version/types.d.ts +82 -0
  992. package/tendermint/version/types.js +169 -0
  993. package/types.d.ts +124 -0
  994. package/types.js +7 -0
  995. package/utf8.d.ts +27 -0
  996. package/utf8.js +140 -0
  997. package/varint.d.ts +105 -0
  998. package/varint.js +425 -0
  999. package/xpla/reward/v1beta1/genesis.d.ts +35 -0
  1000. package/xpla/reward/v1beta1/genesis.js +76 -0
  1001. package/xpla/reward/v1beta1/query.d.ts +136 -0
  1002. package/xpla/reward/v1beta1/query.js +264 -0
  1003. package/xpla/reward/v1beta1/query.rpc.func.d.ts +6 -0
  1004. package/xpla/reward/v1beta1/query.rpc.func.js +30 -0
  1005. package/xpla/reward/v1beta1/reward.d.ts +42 -0
  1006. package/xpla/reward/v1beta1/reward.js +131 -0
  1007. package/xpla/reward/v1beta1/tx.d.ts +158 -0
  1008. package/xpla/reward/v1beta1/tx.js +304 -0
  1009. package/xpla/reward/v1beta1/tx.registry.d.ts +35 -0
  1010. package/xpla/reward/v1beta1/tx.registry.js +49 -0
  1011. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +6 -0
  1012. package/xpla/reward/v1beta1/tx.rpc.func.js +27 -0
  1013. package/xpla/volunteer/v1beta1/genesis.d.ts +33 -0
  1014. package/xpla/volunteer/v1beta1/genesis.js +79 -0
  1015. package/xpla/volunteer/v1beta1/proposal.d.ts +183 -0
  1016. package/xpla/volunteer/v1beta1/proposal.js +537 -0
  1017. package/xpla/volunteer/v1beta1/query.d.ts +60 -0
  1018. package/xpla/volunteer/v1beta1/query.js +135 -0
  1019. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +4 -0
  1020. package/xpla/volunteer/v1beta1/query.rpc.func.js +18 -0
  1021. package/xpla/volunteer/v1beta1/tx.d.ts +168 -0
  1022. package/xpla/volunteer/v1beta1/tx.js +351 -0
  1023. package/xpla/volunteer/v1beta1/tx.registry.d.ts +35 -0
  1024. package/xpla/volunteer/v1beta1/tx.registry.js +49 -0
  1025. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +6 -0
  1026. package/xpla/volunteer/v1beta1/tx.rpc.func.js +27 -0
  1027. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +38 -0
  1028. package/xpla/volunteer/v1beta1/volunteervalidator.js +87 -0
  1029. package/CHANGELOG.md +0 -8
  1030. package/src/amino/amino.ts +0 -1
  1031. package/src/binary.ts +0 -534
  1032. package/src/cosmos/app/runtime/v1alpha1/module.ts +0 -423
  1033. package/src/cosmos/app/runtime/v2/module.ts +0 -589
  1034. package/src/cosmos/app/v1alpha1/config.ts +0 -422
  1035. package/src/cosmos/app/v1alpha1/module.ts +0 -461
  1036. package/src/cosmos/app/v1alpha1/query.rpc.func.ts +0 -14
  1037. package/src/cosmos/app/v1alpha1/query.ts +0 -177
  1038. package/src/cosmos/auth/module/v1/module.ts +0 -253
  1039. package/src/cosmos/auth/v1beta1/accounts.ts +0 -226
  1040. package/src/cosmos/auth/v1beta1/auth.ts +0 -550
  1041. package/src/cosmos/auth/v1beta1/genesis.ts +0 -119
  1042. package/src/cosmos/auth/v1beta1/query.rpc.func.ts +0 -113
  1043. package/src/cosmos/auth/v1beta1/query.ts +0 -2034
  1044. package/src/cosmos/auth/v1beta1/tx.registry.ts +0 -29
  1045. package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +0 -13
  1046. package/src/cosmos/auth/v1beta1/tx.ts +0 -219
  1047. package/src/cosmos/authz/module/v1/module.ts +0 -80
  1048. package/src/cosmos/authz/v1beta1/authz.ts +0 -481
  1049. package/src/cosmos/authz/v1beta1/event.ts +0 -259
  1050. package/src/cosmos/authz/v1beta1/genesis.ts +0 -100
  1051. package/src/cosmos/authz/v1beta1/query.rpc.func.ts +0 -36
  1052. package/src/cosmos/authz/v1beta1/query.ts +0 -707
  1053. package/src/cosmos/authz/v1beta1/tx.registry.ts +0 -65
  1054. package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +0 -31
  1055. package/src/cosmos/authz/v1beta1/tx.ts +0 -647
  1056. package/src/cosmos/autocli/v1/options.ts +0 -1145
  1057. package/src/cosmos/autocli/v1/query.rpc.func.ts +0 -14
  1058. package/src/cosmos/autocli/v1/query.ts +0 -288
  1059. package/src/cosmos/bank/module/v1/module.ts +0 -153
  1060. package/src/cosmos/bank/v1beta1/authz.ts +0 -138
  1061. package/src/cosmos/bank/v1beta1/bank.ts +0 -974
  1062. package/src/cosmos/bank/v1beta1/genesis.ts +0 -307
  1063. package/src/cosmos/bank/v1beta1/query.rpc.func.ts +0 -146
  1064. package/src/cosmos/bank/v1beta1/query.ts +0 -3027
  1065. package/src/cosmos/bank/v1beta1/tx.registry.ts +0 -83
  1066. package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +0 -40
  1067. package/src/cosmos/bank/v1beta1/tx.ts +0 -861
  1068. package/src/cosmos/base/abci/v1beta1/abci.ts +0 -1698
  1069. package/src/cosmos/base/grpc/v2/service.rpc.func.ts +0 -25
  1070. package/src/cosmos/base/grpc/v2/service.ts +0 -473
  1071. package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +0 -25
  1072. package/src/cosmos/base/node/v1beta1/query.ts +0 -454
  1073. package/src/cosmos/base/query/v1beta1/pagination.ts +0 -361
  1074. package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +0 -25
  1075. package/src/cosmos/base/reflection/v1beta1/reflection.ts +0 -382
  1076. package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +0 -69
  1077. package/src/cosmos/base/reflection/v2alpha1/reflection.ts +0 -2727
  1078. package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +0 -80
  1079. package/src/cosmos/base/tendermint/v1beta1/query.ts +0 -2302
  1080. package/src/cosmos/base/tendermint/v1beta1/types.ts +0 -455
  1081. package/src/cosmos/base/v1beta1/coin.ts +0 -439
  1082. package/src/cosmos/circuit/module/v1/module.ts +0 -99
  1083. package/src/cosmos/circuit/v1/query.rpc.func.ts +0 -36
  1084. package/src/cosmos/circuit/v1/query.ts +0 -574
  1085. package/src/cosmos/circuit/v1/tx.registry.ts +0 -65
  1086. package/src/cosmos/circuit/v1/tx.rpc.func.ts +0 -31
  1087. package/src/cosmos/circuit/v1/tx.ts +0 -676
  1088. package/src/cosmos/circuit/v1/types.ts +0 -413
  1089. package/src/cosmos/consensus/module/v1/module.ts +0 -99
  1090. package/src/cosmos/consensus/v1/query.rpc.func.ts +0 -14
  1091. package/src/cosmos/consensus/v1/query.ts +0 -185
  1092. package/src/cosmos/consensus/v1/tx.registry.ts +0 -29
  1093. package/src/cosmos/consensus/v1/tx.rpc.func.ts +0 -13
  1094. package/src/cosmos/consensus/v1/tx.ts +0 -255
  1095. package/src/cosmos/crisis/module/v1/module.ts +0 -115
  1096. package/src/cosmos/crisis/v1beta1/genesis.ts +0 -106
  1097. package/src/cosmos/crisis/v1beta1/tx.registry.ts +0 -47
  1098. package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +0 -22
  1099. package/src/cosmos/crisis/v1beta1/tx.ts +0 -416
  1100. package/src/cosmos/crypto/ed25519/keys.ts +0 -209
  1101. package/src/cosmos/crypto/hd/v1/hd.ts +0 -169
  1102. package/src/cosmos/crypto/keyring/v1/record.ts +0 -529
  1103. package/src/cosmos/crypto/multisig/keys.ts +0 -122
  1104. package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +0 -225
  1105. package/src/cosmos/crypto/secp256k1/keys.ts +0 -203
  1106. package/src/cosmos/crypto/secp256r1/keys.ts +0 -201
  1107. package/src/cosmos/distribution/module/v1/module.ts +0 -113
  1108. package/src/cosmos/distribution/v1beta1/distribution.ts +0 -1494
  1109. package/src/cosmos/distribution/v1beta1/genesis.ts +0 -1129
  1110. package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +0 -113
  1111. package/src/cosmos/distribution/v1beta1/query.ts +0 -2126
  1112. package/src/cosmos/distribution/v1beta1/tx.registry.ts +0 -137
  1113. package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +0 -67
  1114. package/src/cosmos/distribution/v1beta1/tx.ts +0 -1478
  1115. package/src/cosmos/evidence/module/v1/module.ts +0 -80
  1116. package/src/cosmos/evidence/v1beta1/evidence.ts +0 -154
  1117. package/src/cosmos/evidence/v1beta1/genesis.ts +0 -102
  1118. package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +0 -25
  1119. package/src/cosmos/evidence/v1beta1/query.ts +0 -451
  1120. package/src/cosmos/evidence/v1beta1/tx.registry.ts +0 -29
  1121. package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +0 -13
  1122. package/src/cosmos/evidence/v1beta1/tx.ts +0 -221
  1123. package/src/cosmos/feegrant/module/v1/module.ts +0 -80
  1124. package/src/cosmos/feegrant/v1beta1/feegrant.ts +0 -573
  1125. package/src/cosmos/feegrant/v1beta1/genesis.ts +0 -100
  1126. package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +0 -36
  1127. package/src/cosmos/feegrant/v1beta1/query.ts +0 -677
  1128. package/src/cosmos/feegrant/v1beta1/tx.registry.ts +0 -65
  1129. package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +0 -31
  1130. package/src/cosmos/feegrant/v1beta1/tx.ts +0 -597
  1131. package/src/cosmos/genutil/module/v1/module.ts +0 -80
  1132. package/src/cosmos/genutil/v1beta1/genesis.ts +0 -101
  1133. package/src/cosmos/gov/module/v1/module.ts +0 -121
  1134. package/src/cosmos/gov/v1/genesis.ts +0 -280
  1135. package/src/cosmos/gov/v1/gov.ts +0 -1843
  1136. package/src/cosmos/gov/v1/query.rpc.func.ts +0 -102
  1137. package/src/cosmos/gov/v1/query.ts +0 -1970
  1138. package/src/cosmos/gov/v1/tx.registry.ts +0 -137
  1139. package/src/cosmos/gov/v1/tx.rpc.func.ts +0 -67
  1140. package/src/cosmos/gov/v1/tx.ts +0 -1657
  1141. package/src/cosmos/gov/v1beta1/genesis.ts +0 -202
  1142. package/src/cosmos/gov/v1beta1/gov.ts +0 -1425
  1143. package/src/cosmos/gov/v1beta1/query.rpc.func.ts +0 -91
  1144. package/src/cosmos/gov/v1beta1/query.ts +0 -1749
  1145. package/src/cosmos/gov/v1beta1/tx.registry.ts +0 -83
  1146. package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +0 -40
  1147. package/src/cosmos/gov/v1beta1/tx.ts +0 -881
  1148. package/src/cosmos/group/module/v1/module.ts +0 -128
  1149. package/src/cosmos/group/v1/events.ts +0 -1044
  1150. package/src/cosmos/group/v1/genesis.ts +0 -240
  1151. package/src/cosmos/group/v1/query.rpc.func.ts +0 -157
  1152. package/src/cosmos/group/v1/query.ts +0 -3015
  1153. package/src/cosmos/group/v1/tx.registry.ts +0 -263
  1154. package/src/cosmos/group/v1/tx.rpc.func.ts +0 -130
  1155. package/src/cosmos/group/v1/tx.ts +0 -3207
  1156. package/src/cosmos/group/v1/types.ts +0 -2081
  1157. package/src/cosmos/ics23/v1/proofs.ts +0 -2060
  1158. package/src/cosmos/mint/module/v1/module.ts +0 -113
  1159. package/src/cosmos/mint/v1beta1/genesis.ts +0 -116
  1160. package/src/cosmos/mint/v1beta1/mint.ts +0 -291
  1161. package/src/cosmos/mint/v1beta1/query.rpc.func.ts +0 -36
  1162. package/src/cosmos/mint/v1beta1/query.ts +0 -541
  1163. package/src/cosmos/mint/v1beta1/tx.registry.ts +0 -29
  1164. package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +0 -13
  1165. package/src/cosmos/mint/v1beta1/tx.ts +0 -219
  1166. package/src/cosmos/msg/textual/v1/textual.ts +0 -1
  1167. package/src/cosmos/msg/v1/msg.ts +0 -1
  1168. package/src/cosmos/nft/module/v1/module.ts +0 -80
  1169. package/src/cosmos/nft/v1beta1/event.ts +0 -403
  1170. package/src/cosmos/nft/v1beta1/genesis.ts +0 -234
  1171. package/src/cosmos/nft/v1beta1/nft.ts +0 -356
  1172. package/src/cosmos/nft/v1beta1/query.rpc.func.ts +0 -80
  1173. package/src/cosmos/nft/v1beta1/query.ts +0 -1465
  1174. package/src/cosmos/nft/v1beta1/tx.registry.ts +0 -29
  1175. package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +0 -13
  1176. package/src/cosmos/nft/v1beta1/tx.ts +0 -224
  1177. package/src/cosmos/orm/module/v1alpha1/module.ts +0 -88
  1178. package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +0 -25
  1179. package/src/cosmos/orm/query/v1alpha1/query.ts +0 -993
  1180. package/src/cosmos/orm/v1/orm.ts +0 -589
  1181. package/src/cosmos/orm/v1alpha1/schema.ts +0 -325
  1182. package/src/cosmos/params/module/v1/module.ts +0 -80
  1183. package/src/cosmos/params/v1beta1/params.ts +0 -255
  1184. package/src/cosmos/params/v1beta1/query.rpc.func.ts +0 -25
  1185. package/src/cosmos/params/v1beta1/query.ts +0 -525
  1186. package/src/cosmos/query/v1/query.ts +0 -1
  1187. package/src/cosmos/reflection/v1/reflection.rpc.func.ts +0 -14
  1188. package/src/cosmos/reflection/v1/reflection.ts +0 -179
  1189. package/src/cosmos/slashing/module/v1/module.ts +0 -99
  1190. package/src/cosmos/slashing/v1beta1/genesis.ts +0 -492
  1191. package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +0 -36
  1192. package/src/cosmos/slashing/v1beta1/query.ts +0 -598
  1193. package/src/cosmos/slashing/v1beta1/slashing.ts +0 -357
  1194. package/src/cosmos/slashing/v1beta1/tx.registry.ts +0 -47
  1195. package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +0 -22
  1196. package/src/cosmos/slashing/v1beta1/tx.ts +0 -390
  1197. package/src/cosmos/staking/module/v1/module.ts +0 -157
  1198. package/src/cosmos/staking/v1beta1/authz.ts +0 -323
  1199. package/src/cosmos/staking/v1beta1/genesis.ts +0 -346
  1200. package/src/cosmos/staking/v1beta1/query.rpc.func.ts +0 -157
  1201. package/src/cosmos/staking/v1beta1/query.ts +0 -3073
  1202. package/src/cosmos/staking/v1beta1/staking.ts +0 -3005
  1203. package/src/cosmos/staking/v1beta1/tx.registry.ts +0 -137
  1204. package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +0 -67
  1205. package/src/cosmos/staking/v1beta1/tx.ts +0 -1638
  1206. package/src/cosmos/store/internal/kv/v1beta1/kv.ts +0 -207
  1207. package/src/cosmos/store/snapshots/v1/snapshot.ts +0 -863
  1208. package/src/cosmos/store/snapshots/v2/snapshot.ts +0 -823
  1209. package/src/cosmos/store/streaming/abci/grpc.ts +0 -393
  1210. package/src/cosmos/store/v1beta1/commit_info.ts +0 -362
  1211. package/src/cosmos/store/v1beta1/listening.ts +0 -286
  1212. package/src/cosmos/streaming/v1/grpc.ts +0 -985
  1213. package/src/cosmos/tx/config/v1/config.ts +0 -127
  1214. package/src/cosmos/tx/signing/v1beta1/signing.ts +0 -688
  1215. package/src/cosmos/tx/v1beta1/service.rpc.func.ts +0 -102
  1216. package/src/cosmos/tx/v1beta1/service.ts +0 -2294
  1217. package/src/cosmos/tx/v1beta1/tx.ts +0 -2029
  1218. package/src/cosmos/upgrade/module/v1/module.ts +0 -99
  1219. package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +0 -58
  1220. package/src/cosmos/upgrade/v1beta1/query.ts +0 -1016
  1221. package/src/cosmos/upgrade/v1beta1/tx.registry.ts +0 -47
  1222. package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +0 -22
  1223. package/src/cosmos/upgrade/v1beta1/tx.ts +0 -398
  1224. package/src/cosmos/upgrade/v1beta1/upgrade.ts +0 -591
  1225. package/src/cosmos/validate/module/v1/module.ts +0 -80
  1226. package/src/cosmos/vesting/module/v1/module.ts +0 -80
  1227. package/src/cosmos/vesting/v1beta1/tx.registry.ts +0 -65
  1228. package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +0 -31
  1229. package/src/cosmos/vesting/v1beta1/tx.ts +0 -698
  1230. package/src/cosmos/vesting/v1beta1/vesting.ts +0 -735
  1231. package/src/cosmos_proto/cosmos.ts +0 -341
  1232. package/src/cosmwasm/wasm/v1/authz.ts +0 -1231
  1233. package/src/cosmwasm/wasm/v1/genesis.ts +0 -532
  1234. package/src/cosmwasm/wasm/v1/ibc.ts +0 -355
  1235. package/src/cosmwasm/wasm/v1/proposal_legacy.ts +0 -2432
  1236. package/src/cosmwasm/wasm/v1/query.rpc.func.ts +0 -124
  1237. package/src/cosmwasm/wasm/v1/query.ts +0 -2560
  1238. package/src/cosmwasm/wasm/v1/tx.registry.ts +0 -317
  1239. package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +0 -157
  1240. package/src/cosmwasm/wasm/v1/tx.ts +0 -4191
  1241. package/src/cosmwasm/wasm/v1/types.ts +0 -1120
  1242. package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +0 -193
  1243. package/src/ethermint/evm/v1/events.ts +0 -485
  1244. package/src/ethermint/evm/v1/evm.ts +0 -1590
  1245. package/src/ethermint/evm/v1/genesis.ts +0 -240
  1246. package/src/ethermint/evm/v1/query.rpc.func.ts +0 -136
  1247. package/src/ethermint/evm/v1/query.ts +0 -2535
  1248. package/src/ethermint/evm/v1/tx.registry.ts +0 -47
  1249. package/src/ethermint/evm/v1/tx.rpc.func.ts +0 -22
  1250. package/src/ethermint/evm/v1/tx.ts +0 -1333
  1251. package/src/ethermint/feemarket/v1/events.ts +0 -195
  1252. package/src/ethermint/feemarket/v1/feemarket.ts +0 -213
  1253. package/src/ethermint/feemarket/v1/genesis.ts +0 -114
  1254. package/src/ethermint/feemarket/v1/query.rpc.func.ts +0 -36
  1255. package/src/ethermint/feemarket/v1/query.ts +0 -487
  1256. package/src/ethermint/feemarket/v1/tx.registry.ts +0 -29
  1257. package/src/ethermint/feemarket/v1/tx.rpc.func.ts +0 -13
  1258. package/src/ethermint/feemarket/v1/tx.ts +0 -197
  1259. package/src/ethermint/types/v1/account.ts +0 -114
  1260. package/src/ethermint/types/v1/dynamic_fee.ts +0 -91
  1261. package/src/ethermint/types/v1/indexer.ts +0 -205
  1262. package/src/ethermint/types/v1/web3.ts +0 -147
  1263. package/src/extern.ts +0 -38
  1264. package/src/gogoproto/gogo.ts +0 -1
  1265. package/src/google/api/annotations.ts +0 -1
  1266. package/src/google/api/http.ts +0 -1069
  1267. package/src/google/protobuf/any.ts +0 -331
  1268. package/src/google/protobuf/descriptor.ts +0 -7177
  1269. package/src/google/protobuf/duration.ts +0 -225
  1270. package/src/google/protobuf/timestamp.ts +0 -281
  1271. package/src/helper-func-types.ts +0 -191
  1272. package/src/helpers.ts +0 -259
  1273. package/src/ibc/applications/fee/v1/ack.ts +0 -131
  1274. package/src/ibc/applications/fee/v1/fee.ts +0 -481
  1275. package/src/ibc/applications/fee/v1/genesis.ts +0 -661
  1276. package/src/ibc/applications/fee/v1/metadata.ts +0 -121
  1277. package/src/ibc/applications/fee/v1/query.rpc.func.ts +0 -113
  1278. package/src/ibc/applications/fee/v1/query.ts +0 -2134
  1279. package/src/ibc/applications/fee/v1/tx.registry.ts +0 -83
  1280. package/src/ibc/applications/fee/v1/tx.rpc.func.ts +0 -40
  1281. package/src/ibc/applications/fee/v1/tx.ts +0 -889
  1282. package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +0 -105
  1283. package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +0 -25
  1284. package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +0 -379
  1285. package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +0 -65
  1286. package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +0 -31
  1287. package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +0 -685
  1288. package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +0 -661
  1289. package/src/ibc/applications/interchain_accounts/host/v1/host.ts +0 -253
  1290. package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +0 -14
  1291. package/src/ibc/applications/interchain_accounts/host/v1/query.ts +0 -177
  1292. package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +0 -47
  1293. package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +0 -22
  1294. package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +0 -429
  1295. package/src/ibc/applications/interchain_accounts/v1/account.ts +0 -112
  1296. package/src/ibc/applications/interchain_accounts/v1/metadata.ts +0 -191
  1297. package/src/ibc/applications/interchain_accounts/v1/packet.ts +0 -259
  1298. package/src/ibc/applications/transfer/v1/authz.ts +0 -280
  1299. package/src/ibc/applications/transfer/v1/genesis.ts +0 -153
  1300. package/src/ibc/applications/transfer/v1/query.rpc.func.ts +0 -69
  1301. package/src/ibc/applications/transfer/v1/query.ts +0 -1205
  1302. package/src/ibc/applications/transfer/v1/transfer.ts +0 -261
  1303. package/src/ibc/applications/transfer/v1/tx.registry.ts +0 -47
  1304. package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +0 -22
  1305. package/src/ibc/applications/transfer/v1/tx.ts +0 -532
  1306. package/src/ibc/applications/transfer/v2/packet.ts +0 -171
  1307. package/src/ibc/core/channel/v1/channel.ts +0 -1510
  1308. package/src/ibc/core/channel/v1/genesis.ts +0 -354
  1309. package/src/ibc/core/channel/v1/query.rpc.func.ts +0 -190
  1310. package/src/ibc/core/channel/v1/query.ts +0 -4354
  1311. package/src/ibc/core/channel/v1/tx.registry.ts +0 -353
  1312. package/src/ibc/core/channel/v1/tx.rpc.func.ts +0 -175
  1313. package/src/ibc/core/channel/v1/tx.ts +0 -4866
  1314. package/src/ibc/core/channel/v1/upgrade.ts +0 -388
  1315. package/src/ibc/core/client/v1/client.ts +0 -927
  1316. package/src/ibc/core/client/v1/genesis.ts +0 -426
  1317. package/src/ibc/core/client/v1/query.rpc.func.ts +0 -113
  1318. package/src/ibc/core/client/v1/query.ts +0 -2280
  1319. package/src/ibc/core/client/v1/tx.registry.ts +0 -137
  1320. package/src/ibc/core/client/v1/tx.rpc.func.ts +0 -67
  1321. package/src/ibc/core/client/v1/tx.ts +0 -1543
  1322. package/src/ibc/core/commitment/v1/commitment.ts +0 -418
  1323. package/src/ibc/core/connection/v1/connection.ts +0 -1010
  1324. package/src/ibc/core/connection/v1/genesis.ts +0 -146
  1325. package/src/ibc/core/connection/v1/query.rpc.func.ts +0 -69
  1326. package/src/ibc/core/connection/v1/query.ts +0 -1408
  1327. package/src/ibc/core/connection/v1/tx.registry.ts +0 -101
  1328. package/src/ibc/core/connection/v1/tx.rpc.func.ts +0 -49
  1329. package/src/ibc/core/connection/v1/tx.ts +0 -1365
  1330. package/src/ibc/core/types/v1/genesis.ts +0 -137
  1331. package/src/ibc/lightclients/localhost/v2/localhost.ts +0 -100
  1332. package/src/ibc/lightclients/solomachine/v2/solomachine.ts +0 -2103
  1333. package/src/ibc/lightclients/solomachine/v3/solomachine.ts +0 -1070
  1334. package/src/ibc/lightclients/tendermint/v1/tendermint.ts +0 -838
  1335. package/src/ibc/lightclients/wasm/v1/genesis.ts +0 -197
  1336. package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +0 -25
  1337. package/src/ibc/lightclients/wasm/v1/query.ts +0 -404
  1338. package/src/ibc/lightclients/wasm/v1/tx.registry.ts +0 -65
  1339. package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +0 -31
  1340. package/src/ibc/lightclients/wasm/v1/tx.ts +0 -621
  1341. package/src/ibc/lightclients/wasm/v1/wasm.ts +0 -438
  1342. package/src/react-query.ts +0 -185
  1343. package/src/registry.ts +0 -218
  1344. package/src/tendermint/abci/types.ts +0 -6283
  1345. package/src/tendermint/crypto/keys.ts +0 -103
  1346. package/src/tendermint/crypto/proof.ts +0 -555
  1347. package/src/tendermint/p2p/types.ts +0 -507
  1348. package/src/tendermint/types/block.ts +0 -131
  1349. package/src/tendermint/types/evidence.ts +0 -476
  1350. package/src/tendermint/types/params.ts +0 -814
  1351. package/src/tendermint/types/types.ts +0 -2157
  1352. package/src/tendermint/types/validator.ts +0 -389
  1353. package/src/tendermint/version/types.ts +0 -219
  1354. package/src/types.ts +0 -155
  1355. package/src/utf8.ts +0 -148
  1356. package/src/varint.ts +0 -488
  1357. package/src/xpla/reward/v1beta1/genesis.ts +0 -92
  1358. package/src/xpla/reward/v1beta1/query.rpc.func.ts +0 -25
  1359. package/src/xpla/reward/v1beta1/query.ts +0 -333
  1360. package/src/xpla/reward/v1beta1/reward.ts +0 -153
  1361. package/src/xpla/reward/v1beta1/tx.registry.ts +0 -47
  1362. package/src/xpla/reward/v1beta1/tx.rpc.func.ts +0 -22
  1363. package/src/xpla/reward/v1beta1/tx.ts +0 -391
  1364. package/src/xpla/volunteer/v1beta1/genesis.ts +0 -92
  1365. package/src/xpla/volunteer/v1beta1/proposal.ts +0 -649
  1366. package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +0 -14
  1367. package/src/xpla/volunteer/v1beta1/query.ts +0 -160
  1368. package/src/xpla/volunteer/v1beta1/tx.registry.ts +0 -47
  1369. package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +0 -22
  1370. package/src/xpla/volunteer/v1beta1/tx.ts +0 -448
  1371. package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +0 -107
  1372. package/tsconfig.esm.json +0 -10
  1373. package/tsconfig.json +0 -10
@@ -0,0 +1,2919 @@
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
+ /**
265
+ * Represents the identified object's effect on the element in the original
266
+ * .proto file.
267
+ */
268
+ export declare enum GeneratedCodeInfo_Annotation_Semantic {
269
+ /** NONE - There is no effect or the effect is indescribable. */
270
+ NONE = 0,
271
+ /** SET - The element is set or otherwise mutated. */
272
+ SET = 1,
273
+ /** ALIAS - An alias to the element is returned. */
274
+ ALIAS = 2,
275
+ UNRECOGNIZED = -1
276
+ }
277
+ export declare const GeneratedCodeInfo_Annotation_SemanticAmino: typeof GeneratedCodeInfo_Annotation_Semantic;
278
+ export declare function generatedCodeInfo_Annotation_SemanticFromJSON(object: any): GeneratedCodeInfo_Annotation_Semantic;
279
+ export declare function generatedCodeInfo_Annotation_SemanticToJSON(object: GeneratedCodeInfo_Annotation_Semantic): string;
280
+ /**
281
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
282
+ * files it parses.
283
+ */
284
+ export interface FileDescriptorSet {
285
+ file: FileDescriptorProto[];
286
+ }
287
+ export interface FileDescriptorSetProtoMsg {
288
+ typeUrl: "/google.protobuf.FileDescriptorSet";
289
+ value: Uint8Array;
290
+ }
291
+ /**
292
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
293
+ * files it parses.
294
+ */
295
+ export interface FileDescriptorSetAmino {
296
+ file: FileDescriptorProtoAmino[];
297
+ }
298
+ export interface FileDescriptorSetAminoMsg {
299
+ type: "/google.protobuf.FileDescriptorSet";
300
+ value: FileDescriptorSetAmino;
301
+ }
302
+ /** Describes a complete .proto file. */
303
+ export interface FileDescriptorProto {
304
+ /** file name, relative to root of source tree */
305
+ name: string;
306
+ /** e.g. "foo", "foo.bar", etc. */
307
+ package: string;
308
+ /** Names of files imported by this file. */
309
+ dependency: string[];
310
+ /** Indexes of the public imported files in the dependency list above. */
311
+ publicDependency: number[];
312
+ /**
313
+ * Indexes of the weak imported files in the dependency list.
314
+ * For Google-internal migration only. Do not use.
315
+ */
316
+ weakDependency: number[];
317
+ /** All top-level definitions in this file. */
318
+ messageType: DescriptorProto[];
319
+ enumType: EnumDescriptorProto[];
320
+ service: ServiceDescriptorProto[];
321
+ extension: FieldDescriptorProto[];
322
+ options?: FileOptions;
323
+ /**
324
+ * This field contains optional information about the original source code.
325
+ * You may safely remove this entire field without harming runtime
326
+ * functionality of the descriptors -- the information is needed only by
327
+ * development tools.
328
+ */
329
+ sourceCodeInfo?: SourceCodeInfo;
330
+ /**
331
+ * The syntax of the proto file.
332
+ * The supported values are "proto2", "proto3", and "editions".
333
+ *
334
+ * If `edition` is present, this value must be "editions".
335
+ * WARNING: This field should only be used by protobuf plugins or special
336
+ * cases like the proto compiler. Other uses are discouraged and
337
+ * developers should rely on the protoreflect APIs for their client language.
338
+ */
339
+ syntax: string;
340
+ /**
341
+ * The edition of the proto file.
342
+ * WARNING: This field should only be used by protobuf plugins or special
343
+ * cases like the proto compiler. Other uses are discouraged and
344
+ * developers should rely on the protoreflect APIs for their client language.
345
+ */
346
+ edition: Edition;
347
+ }
348
+ export interface FileDescriptorProtoProtoMsg {
349
+ typeUrl: "/google.protobuf.FileDescriptorProto";
350
+ value: Uint8Array;
351
+ }
352
+ /** Describes a complete .proto file. */
353
+ export interface FileDescriptorProtoAmino {
354
+ /** file name, relative to root of source tree */
355
+ name: string;
356
+ /** e.g. "foo", "foo.bar", etc. */
357
+ package: string;
358
+ /** Names of files imported by this file. */
359
+ dependency: string[];
360
+ /** Indexes of the public imported files in the dependency list above. */
361
+ public_dependency: number[];
362
+ /**
363
+ * Indexes of the weak imported files in the dependency list.
364
+ * For Google-internal migration only. Do not use.
365
+ */
366
+ weak_dependency: number[];
367
+ /** All top-level definitions in this file. */
368
+ message_type: DescriptorProtoAmino[];
369
+ enum_type: EnumDescriptorProtoAmino[];
370
+ service: ServiceDescriptorProtoAmino[];
371
+ extension: FieldDescriptorProtoAmino[];
372
+ options?: FileOptionsAmino;
373
+ /**
374
+ * This field contains optional information about the original source code.
375
+ * You may safely remove this entire field without harming runtime
376
+ * functionality of the descriptors -- the information is needed only by
377
+ * development tools.
378
+ */
379
+ source_code_info?: SourceCodeInfoAmino;
380
+ /**
381
+ * The syntax of the proto file.
382
+ * The supported values are "proto2", "proto3", and "editions".
383
+ *
384
+ * If `edition` is present, this value must be "editions".
385
+ * WARNING: This field should only be used by protobuf plugins or special
386
+ * cases like the proto compiler. Other uses are discouraged and
387
+ * developers should rely on the protoreflect APIs for their client language.
388
+ */
389
+ syntax: string;
390
+ /**
391
+ * The edition of the proto file.
392
+ * WARNING: This field should only be used by protobuf plugins or special
393
+ * cases like the proto compiler. Other uses are discouraged and
394
+ * developers should rely on the protoreflect APIs for their client language.
395
+ */
396
+ edition: Edition;
397
+ }
398
+ export interface FileDescriptorProtoAminoMsg {
399
+ type: "/google.protobuf.FileDescriptorProto";
400
+ value: FileDescriptorProtoAmino;
401
+ }
402
+ /** Describes a message type. */
403
+ export interface DescriptorProto {
404
+ name: string;
405
+ field: FieldDescriptorProto[];
406
+ extension: FieldDescriptorProto[];
407
+ nestedType: DescriptorProto[];
408
+ enumType: EnumDescriptorProto[];
409
+ extensionRange: DescriptorProto_ExtensionRange[];
410
+ oneofDecl: OneofDescriptorProto[];
411
+ options?: MessageOptions;
412
+ reservedRange: DescriptorProto_ReservedRange[];
413
+ /**
414
+ * Reserved field names, which may not be used by fields in the same message.
415
+ * A given name may only be reserved once.
416
+ */
417
+ reservedName: string[];
418
+ }
419
+ export interface DescriptorProtoProtoMsg {
420
+ typeUrl: "/google.protobuf.DescriptorProto";
421
+ value: Uint8Array;
422
+ }
423
+ /** Describes a message type. */
424
+ export interface DescriptorProtoAmino {
425
+ name: string;
426
+ field: FieldDescriptorProtoAmino[];
427
+ extension: FieldDescriptorProtoAmino[];
428
+ nested_type: DescriptorProtoAmino[];
429
+ enum_type: EnumDescriptorProtoAmino[];
430
+ extension_range: DescriptorProto_ExtensionRangeAmino[];
431
+ oneof_decl: OneofDescriptorProtoAmino[];
432
+ options?: MessageOptionsAmino;
433
+ reserved_range: DescriptorProto_ReservedRangeAmino[];
434
+ /**
435
+ * Reserved field names, which may not be used by fields in the same message.
436
+ * A given name may only be reserved once.
437
+ */
438
+ reserved_name: string[];
439
+ }
440
+ export interface DescriptorProtoAminoMsg {
441
+ type: "/google.protobuf.DescriptorProto";
442
+ value: DescriptorProtoAmino;
443
+ }
444
+ export interface DescriptorProto_ExtensionRange {
445
+ /** Inclusive. */
446
+ start: number;
447
+ /** Exclusive. */
448
+ end: number;
449
+ options?: ExtensionRangeOptions;
450
+ }
451
+ export interface DescriptorProto_ExtensionRangeProtoMsg {
452
+ typeUrl: "/google.protobuf.ExtensionRange";
453
+ value: Uint8Array;
454
+ }
455
+ export interface DescriptorProto_ExtensionRangeAmino {
456
+ /** Inclusive. */
457
+ start: number;
458
+ /** Exclusive. */
459
+ end: number;
460
+ options?: ExtensionRangeOptionsAmino;
461
+ }
462
+ export interface DescriptorProto_ExtensionRangeAminoMsg {
463
+ type: "/google.protobuf.ExtensionRange";
464
+ value: DescriptorProto_ExtensionRangeAmino;
465
+ }
466
+ /**
467
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
468
+ * fields or extension ranges in the same message. Reserved ranges may
469
+ * not overlap.
470
+ */
471
+ export interface DescriptorProto_ReservedRange {
472
+ /** Inclusive. */
473
+ start: number;
474
+ /** Exclusive. */
475
+ end: number;
476
+ }
477
+ export interface DescriptorProto_ReservedRangeProtoMsg {
478
+ typeUrl: "/google.protobuf.ReservedRange";
479
+ value: Uint8Array;
480
+ }
481
+ /**
482
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
483
+ * fields or extension ranges in the same message. Reserved ranges may
484
+ * not overlap.
485
+ */
486
+ export interface DescriptorProto_ReservedRangeAmino {
487
+ /** Inclusive. */
488
+ start: number;
489
+ /** Exclusive. */
490
+ end: number;
491
+ }
492
+ export interface DescriptorProto_ReservedRangeAminoMsg {
493
+ type: "/google.protobuf.ReservedRange";
494
+ value: DescriptorProto_ReservedRangeAmino;
495
+ }
496
+ export interface ExtensionRangeOptions {
497
+ /** The parser stores options it doesn't recognize here. See above. */
498
+ uninterpretedOption: UninterpretedOption[];
499
+ /**
500
+ * For external users: DO NOT USE. We are in the process of open sourcing
501
+ * extension declaration and executing internal cleanups before it can be
502
+ * used externally.
503
+ */
504
+ declaration: ExtensionRangeOptions_Declaration[];
505
+ /** Any features defined in the specific edition. */
506
+ features?: FeatureSet;
507
+ /**
508
+ * The verification state of the range.
509
+ * TODO: flip the default to DECLARATION once all empty ranges
510
+ * are marked as UNVERIFIED.
511
+ */
512
+ verification: ExtensionRangeOptions_VerificationState;
513
+ }
514
+ export interface ExtensionRangeOptionsProtoMsg {
515
+ typeUrl: "/google.protobuf.ExtensionRangeOptions";
516
+ value: Uint8Array;
517
+ }
518
+ export interface ExtensionRangeOptionsAmino {
519
+ /** The parser stores options it doesn't recognize here. See above. */
520
+ uninterpreted_option: UninterpretedOptionAmino[];
521
+ /**
522
+ * For external users: DO NOT USE. We are in the process of open sourcing
523
+ * extension declaration and executing internal cleanups before it can be
524
+ * used externally.
525
+ */
526
+ declaration: ExtensionRangeOptions_DeclarationAmino[];
527
+ /** Any features defined in the specific edition. */
528
+ features?: FeatureSetAmino;
529
+ /**
530
+ * The verification state of the range.
531
+ * TODO: flip the default to DECLARATION once all empty ranges
532
+ * are marked as UNVERIFIED.
533
+ */
534
+ verification: ExtensionRangeOptions_VerificationState;
535
+ }
536
+ export interface ExtensionRangeOptionsAminoMsg {
537
+ type: "/google.protobuf.ExtensionRangeOptions";
538
+ value: ExtensionRangeOptionsAmino;
539
+ }
540
+ export interface ExtensionRangeOptions_Declaration {
541
+ /** The extension number declared within the extension range. */
542
+ number: number;
543
+ /**
544
+ * The fully-qualified name of the extension field. There must be a leading
545
+ * dot in front of the full name.
546
+ */
547
+ fullName: string;
548
+ /**
549
+ * The fully-qualified type name of the extension field. Unlike
550
+ * Metadata.type, Declaration.type must have a leading dot for messages
551
+ * and enums.
552
+ */
553
+ type: string;
554
+ /**
555
+ * If true, indicates that the number is reserved in the extension range,
556
+ * and any extension field with the number will fail to compile. Set this
557
+ * when a declared extension field is deleted.
558
+ */
559
+ reserved: boolean;
560
+ /**
561
+ * If true, indicates that the extension must be defined as repeated.
562
+ * Otherwise the extension must be defined as optional.
563
+ */
564
+ repeated: boolean;
565
+ }
566
+ export interface ExtensionRangeOptions_DeclarationProtoMsg {
567
+ typeUrl: "/google.protobuf.Declaration";
568
+ value: Uint8Array;
569
+ }
570
+ export interface ExtensionRangeOptions_DeclarationAmino {
571
+ /** The extension number declared within the extension range. */
572
+ number: number;
573
+ /**
574
+ * The fully-qualified name of the extension field. There must be a leading
575
+ * dot in front of the full name.
576
+ */
577
+ full_name: string;
578
+ /**
579
+ * The fully-qualified type name of the extension field. Unlike
580
+ * Metadata.type, Declaration.type must have a leading dot for messages
581
+ * and enums.
582
+ */
583
+ type: string;
584
+ /**
585
+ * If true, indicates that the number is reserved in the extension range,
586
+ * and any extension field with the number will fail to compile. Set this
587
+ * when a declared extension field is deleted.
588
+ */
589
+ reserved: boolean;
590
+ /**
591
+ * If true, indicates that the extension must be defined as repeated.
592
+ * Otherwise the extension must be defined as optional.
593
+ */
594
+ repeated: boolean;
595
+ }
596
+ export interface ExtensionRangeOptions_DeclarationAminoMsg {
597
+ type: "/google.protobuf.Declaration";
598
+ value: ExtensionRangeOptions_DeclarationAmino;
599
+ }
600
+ /** Describes a field within a message. */
601
+ export interface FieldDescriptorProto {
602
+ name: string;
603
+ number: number;
604
+ label: FieldDescriptorProto_Label;
605
+ /**
606
+ * If type_name is set, this need not be set. If both this and type_name
607
+ * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
608
+ */
609
+ type: FieldDescriptorProto_Type;
610
+ /**
611
+ * For message and enum types, this is the name of the type. If the name
612
+ * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
613
+ * rules are used to find the type (i.e. first the nested types within this
614
+ * message are searched, then within the parent, on up to the root
615
+ * namespace).
616
+ */
617
+ typeName: string;
618
+ /**
619
+ * For extensions, this is the name of the type being extended. It is
620
+ * resolved in the same manner as type_name.
621
+ */
622
+ extendee: string;
623
+ /**
624
+ * For numeric types, contains the original text representation of the value.
625
+ * For booleans, "true" or "false".
626
+ * For strings, contains the default text contents (not escaped in any way).
627
+ * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
628
+ */
629
+ defaultValue: string;
630
+ /**
631
+ * If set, gives the index of a oneof in the containing type's oneof_decl
632
+ * list. This field is a member of that oneof.
633
+ */
634
+ oneofIndex: number;
635
+ /**
636
+ * JSON name of this field. The value is set by protocol compiler. If the
637
+ * user has set a "json_name" option on this field, that option's value
638
+ * will be used. Otherwise, it's deduced from the field's name by converting
639
+ * it to camelCase.
640
+ */
641
+ jsonName: string;
642
+ options?: FieldOptions;
643
+ /**
644
+ * If true, this is a proto3 "optional". When a proto3 field is optional, it
645
+ * tracks presence regardless of field type.
646
+ *
647
+ * When proto3_optional is true, this field must belong to a oneof to signal
648
+ * to old proto3 clients that presence is tracked for this field. This oneof
649
+ * is known as a "synthetic" oneof, and this field must be its sole member
650
+ * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
651
+ * exist in the descriptor only, and do not generate any API. Synthetic oneofs
652
+ * must be ordered after all "real" oneofs.
653
+ *
654
+ * For message fields, proto3_optional doesn't create any semantic change,
655
+ * since non-repeated message fields always track presence. However it still
656
+ * indicates the semantic detail of whether the user wrote "optional" or not.
657
+ * This can be useful for round-tripping the .proto file. For consistency we
658
+ * give message fields a synthetic oneof also, even though it is not required
659
+ * to track presence. This is especially important because the parser can't
660
+ * tell if a field is a message or an enum, so it must always create a
661
+ * synthetic oneof.
662
+ *
663
+ * Proto2 optional fields do not set this flag, because they already indicate
664
+ * optional with `LABEL_OPTIONAL`.
665
+ */
666
+ proto3Optional: boolean;
667
+ }
668
+ export interface FieldDescriptorProtoProtoMsg {
669
+ typeUrl: "/google.protobuf.FieldDescriptorProto";
670
+ value: Uint8Array;
671
+ }
672
+ /** Describes a field within a message. */
673
+ export interface FieldDescriptorProtoAmino {
674
+ name: string;
675
+ number: number;
676
+ label: FieldDescriptorProto_Label;
677
+ /**
678
+ * If type_name is set, this need not be set. If both this and type_name
679
+ * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
680
+ */
681
+ type: FieldDescriptorProto_Type;
682
+ /**
683
+ * For message and enum types, this is the name of the type. If the name
684
+ * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
685
+ * rules are used to find the type (i.e. first the nested types within this
686
+ * message are searched, then within the parent, on up to the root
687
+ * namespace).
688
+ */
689
+ type_name: string;
690
+ /**
691
+ * For extensions, this is the name of the type being extended. It is
692
+ * resolved in the same manner as type_name.
693
+ */
694
+ extendee: string;
695
+ /**
696
+ * For numeric types, contains the original text representation of the value.
697
+ * For booleans, "true" or "false".
698
+ * For strings, contains the default text contents (not escaped in any way).
699
+ * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
700
+ */
701
+ default_value: string;
702
+ /**
703
+ * If set, gives the index of a oneof in the containing type's oneof_decl
704
+ * list. This field is a member of that oneof.
705
+ */
706
+ oneof_index: number;
707
+ /**
708
+ * JSON name of this field. The value is set by protocol compiler. If the
709
+ * user has set a "json_name" option on this field, that option's value
710
+ * will be used. Otherwise, it's deduced from the field's name by converting
711
+ * it to camelCase.
712
+ */
713
+ json_name: string;
714
+ options?: FieldOptionsAmino;
715
+ /**
716
+ * If true, this is a proto3 "optional". When a proto3 field is optional, it
717
+ * tracks presence regardless of field type.
718
+ *
719
+ * When proto3_optional is true, this field must belong to a oneof to signal
720
+ * to old proto3 clients that presence is tracked for this field. This oneof
721
+ * is known as a "synthetic" oneof, and this field must be its sole member
722
+ * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
723
+ * exist in the descriptor only, and do not generate any API. Synthetic oneofs
724
+ * must be ordered after all "real" oneofs.
725
+ *
726
+ * For message fields, proto3_optional doesn't create any semantic change,
727
+ * since non-repeated message fields always track presence. However it still
728
+ * indicates the semantic detail of whether the user wrote "optional" or not.
729
+ * This can be useful for round-tripping the .proto file. For consistency we
730
+ * give message fields a synthetic oneof also, even though it is not required
731
+ * to track presence. This is especially important because the parser can't
732
+ * tell if a field is a message or an enum, so it must always create a
733
+ * synthetic oneof.
734
+ *
735
+ * Proto2 optional fields do not set this flag, because they already indicate
736
+ * optional with `LABEL_OPTIONAL`.
737
+ */
738
+ proto3_optional: boolean;
739
+ }
740
+ export interface FieldDescriptorProtoAminoMsg {
741
+ type: "/google.protobuf.FieldDescriptorProto";
742
+ value: FieldDescriptorProtoAmino;
743
+ }
744
+ /** Describes a oneof. */
745
+ export interface OneofDescriptorProto {
746
+ name: string;
747
+ options?: OneofOptions;
748
+ }
749
+ export interface OneofDescriptorProtoProtoMsg {
750
+ typeUrl: "/google.protobuf.OneofDescriptorProto";
751
+ value: Uint8Array;
752
+ }
753
+ /** Describes a oneof. */
754
+ export interface OneofDescriptorProtoAmino {
755
+ name: string;
756
+ options?: OneofOptionsAmino;
757
+ }
758
+ export interface OneofDescriptorProtoAminoMsg {
759
+ type: "/google.protobuf.OneofDescriptorProto";
760
+ value: OneofDescriptorProtoAmino;
761
+ }
762
+ /** Describes an enum type. */
763
+ export interface EnumDescriptorProto {
764
+ name: string;
765
+ value: EnumValueDescriptorProto[];
766
+ options?: EnumOptions;
767
+ /**
768
+ * Range of reserved numeric values. Reserved numeric values may not be used
769
+ * by enum values in the same enum declaration. Reserved ranges may not
770
+ * overlap.
771
+ */
772
+ reservedRange: EnumDescriptorProto_EnumReservedRange[];
773
+ /**
774
+ * Reserved enum value names, which may not be reused. A given name may only
775
+ * be reserved once.
776
+ */
777
+ reservedName: string[];
778
+ }
779
+ export interface EnumDescriptorProtoProtoMsg {
780
+ typeUrl: "/google.protobuf.EnumDescriptorProto";
781
+ value: Uint8Array;
782
+ }
783
+ /** Describes an enum type. */
784
+ export interface EnumDescriptorProtoAmino {
785
+ name: string;
786
+ value: EnumValueDescriptorProtoAmino[];
787
+ options?: EnumOptionsAmino;
788
+ /**
789
+ * Range of reserved numeric values. Reserved numeric values may not be used
790
+ * by enum values in the same enum declaration. Reserved ranges may not
791
+ * overlap.
792
+ */
793
+ reserved_range: EnumDescriptorProto_EnumReservedRangeAmino[];
794
+ /**
795
+ * Reserved enum value names, which may not be reused. A given name may only
796
+ * be reserved once.
797
+ */
798
+ reserved_name: string[];
799
+ }
800
+ export interface EnumDescriptorProtoAminoMsg {
801
+ type: "/google.protobuf.EnumDescriptorProto";
802
+ value: EnumDescriptorProtoAmino;
803
+ }
804
+ /**
805
+ * Range of reserved numeric values. Reserved values may not be used by
806
+ * entries in the same enum. Reserved ranges may not overlap.
807
+ *
808
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
809
+ * is inclusive such that it can appropriately represent the entire int32
810
+ * domain.
811
+ */
812
+ export interface EnumDescriptorProto_EnumReservedRange {
813
+ /** Inclusive. */
814
+ start: number;
815
+ /** Inclusive. */
816
+ end: number;
817
+ }
818
+ export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
819
+ typeUrl: "/google.protobuf.EnumReservedRange";
820
+ value: Uint8Array;
821
+ }
822
+ /**
823
+ * Range of reserved numeric values. Reserved values may not be used by
824
+ * entries in the same enum. Reserved ranges may not overlap.
825
+ *
826
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
827
+ * is inclusive such that it can appropriately represent the entire int32
828
+ * domain.
829
+ */
830
+ export interface EnumDescriptorProto_EnumReservedRangeAmino {
831
+ /** Inclusive. */
832
+ start: number;
833
+ /** Inclusive. */
834
+ end: number;
835
+ }
836
+ export interface EnumDescriptorProto_EnumReservedRangeAminoMsg {
837
+ type: "/google.protobuf.EnumReservedRange";
838
+ value: EnumDescriptorProto_EnumReservedRangeAmino;
839
+ }
840
+ /** Describes a value within an enum. */
841
+ export interface EnumValueDescriptorProto {
842
+ name: string;
843
+ number: number;
844
+ options?: EnumValueOptions;
845
+ }
846
+ export interface EnumValueDescriptorProtoProtoMsg {
847
+ typeUrl: "/google.protobuf.EnumValueDescriptorProto";
848
+ value: Uint8Array;
849
+ }
850
+ /** Describes a value within an enum. */
851
+ export interface EnumValueDescriptorProtoAmino {
852
+ name: string;
853
+ number: number;
854
+ options?: EnumValueOptionsAmino;
855
+ }
856
+ export interface EnumValueDescriptorProtoAminoMsg {
857
+ type: "/google.protobuf.EnumValueDescriptorProto";
858
+ value: EnumValueDescriptorProtoAmino;
859
+ }
860
+ /** Describes a service. */
861
+ export interface ServiceDescriptorProto {
862
+ name: string;
863
+ method: MethodDescriptorProto[];
864
+ options?: ServiceOptions;
865
+ }
866
+ export interface ServiceDescriptorProtoProtoMsg {
867
+ typeUrl: "/google.protobuf.ServiceDescriptorProto";
868
+ value: Uint8Array;
869
+ }
870
+ /** Describes a service. */
871
+ export interface ServiceDescriptorProtoAmino {
872
+ name: string;
873
+ method: MethodDescriptorProtoAmino[];
874
+ options?: ServiceOptionsAmino;
875
+ }
876
+ export interface ServiceDescriptorProtoAminoMsg {
877
+ type: "/google.protobuf.ServiceDescriptorProto";
878
+ value: ServiceDescriptorProtoAmino;
879
+ }
880
+ /** Describes a method of a service. */
881
+ export interface MethodDescriptorProto {
882
+ name: string;
883
+ /**
884
+ * Input and output type names. These are resolved in the same way as
885
+ * FieldDescriptorProto.type_name, but must refer to a message type.
886
+ */
887
+ inputType: string;
888
+ outputType: string;
889
+ options?: MethodOptions;
890
+ /** Identifies if client streams multiple client messages */
891
+ clientStreaming: boolean;
892
+ /** Identifies if server streams multiple server messages */
893
+ serverStreaming: boolean;
894
+ }
895
+ export interface MethodDescriptorProtoProtoMsg {
896
+ typeUrl: "/google.protobuf.MethodDescriptorProto";
897
+ value: Uint8Array;
898
+ }
899
+ /** Describes a method of a service. */
900
+ export interface MethodDescriptorProtoAmino {
901
+ name: string;
902
+ /**
903
+ * Input and output type names. These are resolved in the same way as
904
+ * FieldDescriptorProto.type_name, but must refer to a message type.
905
+ */
906
+ input_type: string;
907
+ output_type: string;
908
+ options?: MethodOptionsAmino;
909
+ /** Identifies if client streams multiple client messages */
910
+ client_streaming: boolean;
911
+ /** Identifies if server streams multiple server messages */
912
+ server_streaming: boolean;
913
+ }
914
+ export interface MethodDescriptorProtoAminoMsg {
915
+ type: "/google.protobuf.MethodDescriptorProto";
916
+ value: MethodDescriptorProtoAmino;
917
+ }
918
+ export interface FileOptions {
919
+ /**
920
+ * Sets the Java package where classes generated from this .proto will be
921
+ * placed. By default, the proto package is used, but this is often
922
+ * inappropriate because proto packages do not normally start with backwards
923
+ * domain names.
924
+ */
925
+ javaPackage: string;
926
+ /**
927
+ * Controls the name of the wrapper Java class generated for the .proto file.
928
+ * That class will always contain the .proto file's getDescriptor() method as
929
+ * well as any top-level extensions defined in the .proto file.
930
+ * If java_multiple_files is disabled, then all the other classes from the
931
+ * .proto file will be nested inside the single wrapper outer class.
932
+ */
933
+ javaOuterClassname: string;
934
+ /**
935
+ * If enabled, then the Java code generator will generate a separate .java
936
+ * file for each top-level message, enum, and service defined in the .proto
937
+ * file. Thus, these types will *not* be nested inside the wrapper class
938
+ * named by java_outer_classname. However, the wrapper class will still be
939
+ * generated to contain the file's getDescriptor() method as well as any
940
+ * top-level extensions defined in the file.
941
+ */
942
+ javaMultipleFiles: boolean;
943
+ /** This option does nothing. */
944
+ /** @deprecated */
945
+ javaGenerateEqualsAndHash: boolean;
946
+ /**
947
+ * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
948
+ * which will throw an exception if invalid UTF-8 is parsed from the wire or
949
+ * assigned to a string field.
950
+ *
951
+ * TODO: clarify exactly what kinds of field types this option
952
+ * applies to, and update these docs accordingly.
953
+ *
954
+ * Proto3 files already perform these checks. Setting the option explicitly to
955
+ * false has no effect: it cannot be used to opt proto3 files out of UTF-8
956
+ * checks.
957
+ */
958
+ javaStringCheckUtf8: boolean;
959
+ optimizeFor: FileOptions_OptimizeMode;
960
+ /**
961
+ * Sets the Go package where structs generated from this .proto will be
962
+ * placed. If omitted, the Go package will be derived from the following:
963
+ * - The basename of the package import path, if provided.
964
+ * - Otherwise, the package statement in the .proto file, if present.
965
+ * - Otherwise, the basename of the .proto file, without extension.
966
+ */
967
+ goPackage: string;
968
+ /**
969
+ * Should generic services be generated in each language? "Generic" services
970
+ * are not specific to any particular RPC system. They are generated by the
971
+ * main code generators in each language (without additional plugins).
972
+ * Generic services were the only kind of service generation supported by
973
+ * early versions of google.protobuf.
974
+ *
975
+ * Generic services are now considered deprecated in favor of using plugins
976
+ * that generate code specific to your particular RPC system. Therefore,
977
+ * these default to false. Old code which depends on generic services should
978
+ * explicitly set them to true.
979
+ */
980
+ ccGenericServices: boolean;
981
+ javaGenericServices: boolean;
982
+ pyGenericServices: boolean;
983
+ /**
984
+ * Is this file deprecated?
985
+ * Depending on the target platform, this can emit Deprecated annotations
986
+ * for everything in the file, or it will be completely ignored; in the very
987
+ * least, this is a formalization for deprecating files.
988
+ */
989
+ deprecated: boolean;
990
+ /**
991
+ * Enables the use of arenas for the proto messages in this file. This applies
992
+ * only to generated classes for C++.
993
+ */
994
+ ccEnableArenas: boolean;
995
+ /**
996
+ * Sets the objective c class prefix which is prepended to all objective c
997
+ * generated classes from this .proto. There is no default.
998
+ */
999
+ objcClassPrefix: string;
1000
+ /** Namespace for generated classes; defaults to the package. */
1001
+ csharpNamespace: string;
1002
+ /**
1003
+ * By default Swift generators will take the proto package and CamelCase it
1004
+ * replacing '.' with underscore and use that to prefix the types/symbols
1005
+ * defined. When this options is provided, they will use this value instead
1006
+ * to prefix the types/symbols defined.
1007
+ */
1008
+ swiftPrefix: string;
1009
+ /**
1010
+ * Sets the php class prefix which is prepended to all php generated classes
1011
+ * from this .proto. Default is empty.
1012
+ */
1013
+ phpClassPrefix: string;
1014
+ /**
1015
+ * Use this option to change the namespace of php generated classes. Default
1016
+ * is empty. When this option is empty, the package name will be used for
1017
+ * determining the namespace.
1018
+ */
1019
+ phpNamespace: string;
1020
+ /**
1021
+ * Use this option to change the namespace of php generated metadata classes.
1022
+ * Default is empty. When this option is empty, the proto file name will be
1023
+ * used for determining the namespace.
1024
+ */
1025
+ phpMetadataNamespace: string;
1026
+ /**
1027
+ * Use this option to change the package of ruby generated classes. Default
1028
+ * is empty. When this option is not set, the package name will be used for
1029
+ * determining the ruby package.
1030
+ */
1031
+ rubyPackage: string;
1032
+ /**
1033
+ * Any features defined in the specific edition.
1034
+ * WARNING: This field should only be used by protobuf plugins or special
1035
+ * cases like the proto compiler. Other uses are discouraged and
1036
+ * developers should rely on the protoreflect APIs for their client language.
1037
+ */
1038
+ features?: FeatureSet;
1039
+ /**
1040
+ * The parser stores options it doesn't recognize here.
1041
+ * See the documentation for the "Options" section above.
1042
+ */
1043
+ uninterpretedOption: UninterpretedOption[];
1044
+ }
1045
+ export interface FileOptionsProtoMsg {
1046
+ typeUrl: "/google.protobuf.FileOptions";
1047
+ value: Uint8Array;
1048
+ }
1049
+ export interface FileOptionsAmino {
1050
+ /**
1051
+ * Sets the Java package where classes generated from this .proto will be
1052
+ * placed. By default, the proto package is used, but this is often
1053
+ * inappropriate because proto packages do not normally start with backwards
1054
+ * domain names.
1055
+ */
1056
+ java_package: string;
1057
+ /**
1058
+ * Controls the name of the wrapper Java class generated for the .proto file.
1059
+ * That class will always contain the .proto file's getDescriptor() method as
1060
+ * well as any top-level extensions defined in the .proto file.
1061
+ * If java_multiple_files is disabled, then all the other classes from the
1062
+ * .proto file will be nested inside the single wrapper outer class.
1063
+ */
1064
+ java_outer_classname: string;
1065
+ /**
1066
+ * If enabled, then the Java code generator will generate a separate .java
1067
+ * file for each top-level message, enum, and service defined in the .proto
1068
+ * file. Thus, these types will *not* be nested inside the wrapper class
1069
+ * named by java_outer_classname. However, the wrapper class will still be
1070
+ * generated to contain the file's getDescriptor() method as well as any
1071
+ * top-level extensions defined in the file.
1072
+ */
1073
+ java_multiple_files: boolean;
1074
+ /** This option does nothing. */
1075
+ /** @deprecated */
1076
+ java_generate_equals_and_hash: boolean;
1077
+ /**
1078
+ * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
1079
+ * which will throw an exception if invalid UTF-8 is parsed from the wire or
1080
+ * assigned to a string field.
1081
+ *
1082
+ * TODO: clarify exactly what kinds of field types this option
1083
+ * applies to, and update these docs accordingly.
1084
+ *
1085
+ * Proto3 files already perform these checks. Setting the option explicitly to
1086
+ * false has no effect: it cannot be used to opt proto3 files out of UTF-8
1087
+ * checks.
1088
+ */
1089
+ java_string_check_utf8: boolean;
1090
+ optimize_for: FileOptions_OptimizeMode;
1091
+ /**
1092
+ * Sets the Go package where structs generated from this .proto will be
1093
+ * placed. If omitted, the Go package will be derived from the following:
1094
+ * - The basename of the package import path, if provided.
1095
+ * - Otherwise, the package statement in the .proto file, if present.
1096
+ * - Otherwise, the basename of the .proto file, without extension.
1097
+ */
1098
+ go_package: string;
1099
+ /**
1100
+ * Should generic services be generated in each language? "Generic" services
1101
+ * are not specific to any particular RPC system. They are generated by the
1102
+ * main code generators in each language (without additional plugins).
1103
+ * Generic services were the only kind of service generation supported by
1104
+ * early versions of google.protobuf.
1105
+ *
1106
+ * Generic services are now considered deprecated in favor of using plugins
1107
+ * that generate code specific to your particular RPC system. Therefore,
1108
+ * these default to false. Old code which depends on generic services should
1109
+ * explicitly set them to true.
1110
+ */
1111
+ cc_generic_services: boolean;
1112
+ java_generic_services: boolean;
1113
+ py_generic_services: boolean;
1114
+ /**
1115
+ * Is this file deprecated?
1116
+ * Depending on the target platform, this can emit Deprecated annotations
1117
+ * for everything in the file, or it will be completely ignored; in the very
1118
+ * least, this is a formalization for deprecating files.
1119
+ */
1120
+ deprecated: boolean;
1121
+ /**
1122
+ * Enables the use of arenas for the proto messages in this file. This applies
1123
+ * only to generated classes for C++.
1124
+ */
1125
+ cc_enable_arenas: boolean;
1126
+ /**
1127
+ * Sets the objective c class prefix which is prepended to all objective c
1128
+ * generated classes from this .proto. There is no default.
1129
+ */
1130
+ objc_class_prefix: string;
1131
+ /** Namespace for generated classes; defaults to the package. */
1132
+ csharp_namespace: string;
1133
+ /**
1134
+ * By default Swift generators will take the proto package and CamelCase it
1135
+ * replacing '.' with underscore and use that to prefix the types/symbols
1136
+ * defined. When this options is provided, they will use this value instead
1137
+ * to prefix the types/symbols defined.
1138
+ */
1139
+ swift_prefix: string;
1140
+ /**
1141
+ * Sets the php class prefix which is prepended to all php generated classes
1142
+ * from this .proto. Default is empty.
1143
+ */
1144
+ php_class_prefix: string;
1145
+ /**
1146
+ * Use this option to change the namespace of php generated classes. Default
1147
+ * is empty. When this option is empty, the package name will be used for
1148
+ * determining the namespace.
1149
+ */
1150
+ php_namespace: string;
1151
+ /**
1152
+ * Use this option to change the namespace of php generated metadata classes.
1153
+ * Default is empty. When this option is empty, the proto file name will be
1154
+ * used for determining the namespace.
1155
+ */
1156
+ php_metadata_namespace: string;
1157
+ /**
1158
+ * Use this option to change the package of ruby generated classes. Default
1159
+ * is empty. When this option is not set, the package name will be used for
1160
+ * determining the ruby package.
1161
+ */
1162
+ ruby_package: string;
1163
+ /**
1164
+ * Any features defined in the specific edition.
1165
+ * WARNING: This field should only be used by protobuf plugins or special
1166
+ * cases like the proto compiler. Other uses are discouraged and
1167
+ * developers should rely on the protoreflect APIs for their client language.
1168
+ */
1169
+ features?: FeatureSetAmino;
1170
+ /**
1171
+ * The parser stores options it doesn't recognize here.
1172
+ * See the documentation for the "Options" section above.
1173
+ */
1174
+ uninterpreted_option: UninterpretedOptionAmino[];
1175
+ }
1176
+ export interface FileOptionsAminoMsg {
1177
+ type: "/google.protobuf.FileOptions";
1178
+ value: FileOptionsAmino;
1179
+ }
1180
+ export interface MessageOptions {
1181
+ /**
1182
+ * Set true to use the old proto1 MessageSet wire format for extensions.
1183
+ * This is provided for backwards-compatibility with the MessageSet wire
1184
+ * format. You should not use this for any other reason: It's less
1185
+ * efficient, has fewer features, and is more complicated.
1186
+ *
1187
+ * The message must be defined exactly as follows:
1188
+ * message Foo {
1189
+ * option message_set_wire_format = true;
1190
+ * extensions 4 to max;
1191
+ * }
1192
+ * Note that the message cannot have any defined fields; MessageSets only
1193
+ * have extensions.
1194
+ *
1195
+ * All extensions of your type must be singular messages; e.g. they cannot
1196
+ * be int32s, enums, or repeated messages.
1197
+ *
1198
+ * Because this is an option, the above two restrictions are not enforced by
1199
+ * the protocol compiler.
1200
+ */
1201
+ messageSetWireFormat: boolean;
1202
+ /**
1203
+ * Disables the generation of the standard "descriptor()" accessor, which can
1204
+ * conflict with a field of the same name. This is meant to make migration
1205
+ * from proto1 easier; new code should avoid fields named "descriptor".
1206
+ */
1207
+ noStandardDescriptorAccessor: boolean;
1208
+ /**
1209
+ * Is this message deprecated?
1210
+ * Depending on the target platform, this can emit Deprecated annotations
1211
+ * for the message, or it will be completely ignored; in the very least,
1212
+ * this is a formalization for deprecating messages.
1213
+ */
1214
+ deprecated: boolean;
1215
+ /**
1216
+ * Whether the message is an automatically generated map entry type for the
1217
+ * maps field.
1218
+ *
1219
+ * For maps fields:
1220
+ * map<KeyType, ValueType> map_field = 1;
1221
+ * The parsed descriptor looks like:
1222
+ * message MapFieldEntry {
1223
+ * option map_entry = true;
1224
+ * optional KeyType key = 1;
1225
+ * optional ValueType value = 2;
1226
+ * }
1227
+ * repeated MapFieldEntry map_field = 1;
1228
+ *
1229
+ * Implementations may choose not to generate the map_entry=true message, but
1230
+ * use a native map in the target language to hold the keys and values.
1231
+ * The reflection APIs in such implementations still need to work as
1232
+ * if the field is a repeated message field.
1233
+ *
1234
+ * NOTE: Do not set the option in .proto files. Always use the maps syntax
1235
+ * instead. The option should only be implicitly set by the proto compiler
1236
+ * parser.
1237
+ */
1238
+ mapEntry: boolean;
1239
+ /**
1240
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1241
+ * and strips underscored from the fields before comparison in proto3 only.
1242
+ * The new behavior takes `json_name` into account and applies to proto2 as
1243
+ * well.
1244
+ *
1245
+ * This should only be used as a temporary measure against broken builds due
1246
+ * to the change in behavior for JSON field name conflicts.
1247
+ *
1248
+ * TODO This is legacy behavior we plan to remove once downstream
1249
+ * teams have had time to migrate.
1250
+ */
1251
+ /** @deprecated */
1252
+ deprecatedLegacyJsonFieldConflicts: boolean;
1253
+ /**
1254
+ * Any features defined in the specific edition.
1255
+ * WARNING: This field should only be used by protobuf plugins or special
1256
+ * cases like the proto compiler. Other uses are discouraged and
1257
+ * developers should rely on the protoreflect APIs for their client language.
1258
+ */
1259
+ features?: FeatureSet;
1260
+ /** The parser stores options it doesn't recognize here. See above. */
1261
+ uninterpretedOption: UninterpretedOption[];
1262
+ }
1263
+ export interface MessageOptionsProtoMsg {
1264
+ typeUrl: "/google.protobuf.MessageOptions";
1265
+ value: Uint8Array;
1266
+ }
1267
+ export interface MessageOptionsAmino {
1268
+ /**
1269
+ * Set true to use the old proto1 MessageSet wire format for extensions.
1270
+ * This is provided for backwards-compatibility with the MessageSet wire
1271
+ * format. You should not use this for any other reason: It's less
1272
+ * efficient, has fewer features, and is more complicated.
1273
+ *
1274
+ * The message must be defined exactly as follows:
1275
+ * message Foo {
1276
+ * option message_set_wire_format = true;
1277
+ * extensions 4 to max;
1278
+ * }
1279
+ * Note that the message cannot have any defined fields; MessageSets only
1280
+ * have extensions.
1281
+ *
1282
+ * All extensions of your type must be singular messages; e.g. they cannot
1283
+ * be int32s, enums, or repeated messages.
1284
+ *
1285
+ * Because this is an option, the above two restrictions are not enforced by
1286
+ * the protocol compiler.
1287
+ */
1288
+ message_set_wire_format: boolean;
1289
+ /**
1290
+ * Disables the generation of the standard "descriptor()" accessor, which can
1291
+ * conflict with a field of the same name. This is meant to make migration
1292
+ * from proto1 easier; new code should avoid fields named "descriptor".
1293
+ */
1294
+ no_standard_descriptor_accessor: boolean;
1295
+ /**
1296
+ * Is this message deprecated?
1297
+ * Depending on the target platform, this can emit Deprecated annotations
1298
+ * for the message, or it will be completely ignored; in the very least,
1299
+ * this is a formalization for deprecating messages.
1300
+ */
1301
+ deprecated: boolean;
1302
+ /**
1303
+ * Whether the message is an automatically generated map entry type for the
1304
+ * maps field.
1305
+ *
1306
+ * For maps fields:
1307
+ * map<KeyType, ValueType> map_field = 1;
1308
+ * The parsed descriptor looks like:
1309
+ * message MapFieldEntry {
1310
+ * option map_entry = true;
1311
+ * optional KeyType key = 1;
1312
+ * optional ValueType value = 2;
1313
+ * }
1314
+ * repeated MapFieldEntry map_field = 1;
1315
+ *
1316
+ * Implementations may choose not to generate the map_entry=true message, but
1317
+ * use a native map in the target language to hold the keys and values.
1318
+ * The reflection APIs in such implementations still need to work as
1319
+ * if the field is a repeated message field.
1320
+ *
1321
+ * NOTE: Do not set the option in .proto files. Always use the maps syntax
1322
+ * instead. The option should only be implicitly set by the proto compiler
1323
+ * parser.
1324
+ */
1325
+ map_entry: boolean;
1326
+ /**
1327
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1328
+ * and strips underscored from the fields before comparison in proto3 only.
1329
+ * The new behavior takes `json_name` into account and applies to proto2 as
1330
+ * well.
1331
+ *
1332
+ * This should only be used as a temporary measure against broken builds due
1333
+ * to the change in behavior for JSON field name conflicts.
1334
+ *
1335
+ * TODO This is legacy behavior we plan to remove once downstream
1336
+ * teams have had time to migrate.
1337
+ */
1338
+ /** @deprecated */
1339
+ deprecated_legacy_json_field_conflicts: boolean;
1340
+ /**
1341
+ * Any features defined in the specific edition.
1342
+ * WARNING: This field should only be used by protobuf plugins or special
1343
+ * cases like the proto compiler. Other uses are discouraged and
1344
+ * developers should rely on the protoreflect APIs for their client language.
1345
+ */
1346
+ features?: FeatureSetAmino;
1347
+ /** The parser stores options it doesn't recognize here. See above. */
1348
+ uninterpreted_option: UninterpretedOptionAmino[];
1349
+ }
1350
+ export interface MessageOptionsAminoMsg {
1351
+ type: "/google.protobuf.MessageOptions";
1352
+ value: MessageOptionsAmino;
1353
+ }
1354
+ export interface FieldOptions {
1355
+ /**
1356
+ * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
1357
+ * The ctype option instructs the C++ code generator to use a different
1358
+ * representation of the field than it normally would. See the specific
1359
+ * options below. This option is only implemented to support use of
1360
+ * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1361
+ * type "bytes" in the open source release.
1362
+ * TODO: make ctype actually deprecated.
1363
+ */
1364
+ ctype: FieldOptions_CType;
1365
+ /**
1366
+ * The packed option can be enabled for repeated primitive fields to enable
1367
+ * a more efficient representation on the wire. Rather than repeatedly
1368
+ * writing the tag and type for each element, the entire array is encoded as
1369
+ * a single length-delimited blob. In proto3, only explicit setting it to
1370
+ * false will avoid using packed encoding. This option is prohibited in
1371
+ * Editions, but the `repeated_field_encoding` feature can be used to control
1372
+ * the behavior.
1373
+ */
1374
+ packed: boolean;
1375
+ /**
1376
+ * The jstype option determines the JavaScript type used for values of the
1377
+ * field. The option is permitted only for 64 bit integral and fixed types
1378
+ * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1379
+ * is represented as JavaScript string, which avoids loss of precision that
1380
+ * can happen when a large value is converted to a floating point JavaScript.
1381
+ * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1382
+ * use the JavaScript "number" type. The behavior of the default option
1383
+ * JS_NORMAL is implementation dependent.
1384
+ *
1385
+ * This option is an enum to permit additional types to be added, e.g.
1386
+ * goog.math.Integer.
1387
+ */
1388
+ jstype: FieldOptions_JSType;
1389
+ /**
1390
+ * Should this field be parsed lazily? Lazy applies only to message-type
1391
+ * fields. It means that when the outer message is initially parsed, the
1392
+ * inner message's contents will not be parsed but instead stored in encoded
1393
+ * form. The inner message will actually be parsed when it is first accessed.
1394
+ *
1395
+ * This is only a hint. Implementations are free to choose whether to use
1396
+ * eager or lazy parsing regardless of the value of this option. However,
1397
+ * setting this option true suggests that the protocol author believes that
1398
+ * using lazy parsing on this field is worth the additional bookkeeping
1399
+ * overhead typically needed to implement it.
1400
+ *
1401
+ * This option does not affect the public interface of any generated code;
1402
+ * all method signatures remain the same. Furthermore, thread-safety of the
1403
+ * interface is not affected by this option; const methods remain safe to
1404
+ * call from multiple threads concurrently, while non-const methods continue
1405
+ * to require exclusive access.
1406
+ *
1407
+ * Note that lazy message fields are still eagerly verified to check
1408
+ * ill-formed wireformat or missing required fields. Calling IsInitialized()
1409
+ * on the outer message would fail if the inner message has missing required
1410
+ * fields. Failed verification would result in parsing failure (except when
1411
+ * uninitialized messages are acceptable).
1412
+ */
1413
+ lazy: boolean;
1414
+ /**
1415
+ * unverified_lazy does no correctness checks on the byte stream. This should
1416
+ * only be used where lazy with verification is prohibitive for performance
1417
+ * reasons.
1418
+ */
1419
+ unverifiedLazy: boolean;
1420
+ /**
1421
+ * Is this field deprecated?
1422
+ * Depending on the target platform, this can emit Deprecated annotations
1423
+ * for accessors, or it will be completely ignored; in the very least, this
1424
+ * is a formalization for deprecating fields.
1425
+ */
1426
+ deprecated: boolean;
1427
+ /** For Google-internal migration only. Do not use. */
1428
+ weak: boolean;
1429
+ /**
1430
+ * Indicate that the field value should not be printed out when using debug
1431
+ * formats, e.g. when the field contains sensitive credentials.
1432
+ */
1433
+ debugRedact: boolean;
1434
+ retention: FieldOptions_OptionRetention;
1435
+ targets: FieldOptions_OptionTargetType[];
1436
+ editionDefaults: FieldOptions_EditionDefault[];
1437
+ /**
1438
+ * Any features defined in the specific edition.
1439
+ * WARNING: This field should only be used by protobuf plugins or special
1440
+ * cases like the proto compiler. Other uses are discouraged and
1441
+ * developers should rely on the protoreflect APIs for their client language.
1442
+ */
1443
+ features?: FeatureSet;
1444
+ featureSupport?: FieldOptions_FeatureSupport;
1445
+ /** The parser stores options it doesn't recognize here. See above. */
1446
+ uninterpretedOption: UninterpretedOption[];
1447
+ }
1448
+ export interface FieldOptionsProtoMsg {
1449
+ typeUrl: "/google.protobuf.FieldOptions";
1450
+ value: Uint8Array;
1451
+ }
1452
+ export interface FieldOptionsAmino {
1453
+ /**
1454
+ * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
1455
+ * The ctype option instructs the C++ code generator to use a different
1456
+ * representation of the field than it normally would. See the specific
1457
+ * options below. This option is only implemented to support use of
1458
+ * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1459
+ * type "bytes" in the open source release.
1460
+ * TODO: make ctype actually deprecated.
1461
+ */
1462
+ ctype: FieldOptions_CType;
1463
+ /**
1464
+ * The packed option can be enabled for repeated primitive fields to enable
1465
+ * a more efficient representation on the wire. Rather than repeatedly
1466
+ * writing the tag and type for each element, the entire array is encoded as
1467
+ * a single length-delimited blob. In proto3, only explicit setting it to
1468
+ * false will avoid using packed encoding. This option is prohibited in
1469
+ * Editions, but the `repeated_field_encoding` feature can be used to control
1470
+ * the behavior.
1471
+ */
1472
+ packed: boolean;
1473
+ /**
1474
+ * The jstype option determines the JavaScript type used for values of the
1475
+ * field. The option is permitted only for 64 bit integral and fixed types
1476
+ * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1477
+ * is represented as JavaScript string, which avoids loss of precision that
1478
+ * can happen when a large value is converted to a floating point JavaScript.
1479
+ * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1480
+ * use the JavaScript "number" type. The behavior of the default option
1481
+ * JS_NORMAL is implementation dependent.
1482
+ *
1483
+ * This option is an enum to permit additional types to be added, e.g.
1484
+ * goog.math.Integer.
1485
+ */
1486
+ jstype: FieldOptions_JSType;
1487
+ /**
1488
+ * Should this field be parsed lazily? Lazy applies only to message-type
1489
+ * fields. It means that when the outer message is initially parsed, the
1490
+ * inner message's contents will not be parsed but instead stored in encoded
1491
+ * form. The inner message will actually be parsed when it is first accessed.
1492
+ *
1493
+ * This is only a hint. Implementations are free to choose whether to use
1494
+ * eager or lazy parsing regardless of the value of this option. However,
1495
+ * setting this option true suggests that the protocol author believes that
1496
+ * using lazy parsing on this field is worth the additional bookkeeping
1497
+ * overhead typically needed to implement it.
1498
+ *
1499
+ * This option does not affect the public interface of any generated code;
1500
+ * all method signatures remain the same. Furthermore, thread-safety of the
1501
+ * interface is not affected by this option; const methods remain safe to
1502
+ * call from multiple threads concurrently, while non-const methods continue
1503
+ * to require exclusive access.
1504
+ *
1505
+ * Note that lazy message fields are still eagerly verified to check
1506
+ * ill-formed wireformat or missing required fields. Calling IsInitialized()
1507
+ * on the outer message would fail if the inner message has missing required
1508
+ * fields. Failed verification would result in parsing failure (except when
1509
+ * uninitialized messages are acceptable).
1510
+ */
1511
+ lazy: boolean;
1512
+ /**
1513
+ * unverified_lazy does no correctness checks on the byte stream. This should
1514
+ * only be used where lazy with verification is prohibitive for performance
1515
+ * reasons.
1516
+ */
1517
+ unverified_lazy: boolean;
1518
+ /**
1519
+ * Is this field deprecated?
1520
+ * Depending on the target platform, this can emit Deprecated annotations
1521
+ * for accessors, or it will be completely ignored; in the very least, this
1522
+ * is a formalization for deprecating fields.
1523
+ */
1524
+ deprecated: boolean;
1525
+ /** For Google-internal migration only. Do not use. */
1526
+ weak: boolean;
1527
+ /**
1528
+ * Indicate that the field value should not be printed out when using debug
1529
+ * formats, e.g. when the field contains sensitive credentials.
1530
+ */
1531
+ debug_redact: boolean;
1532
+ retention: FieldOptions_OptionRetention;
1533
+ targets: FieldOptions_OptionTargetType[];
1534
+ edition_defaults: FieldOptions_EditionDefaultAmino[];
1535
+ /**
1536
+ * Any features defined in the specific edition.
1537
+ * WARNING: This field should only be used by protobuf plugins or special
1538
+ * cases like the proto compiler. Other uses are discouraged and
1539
+ * developers should rely on the protoreflect APIs for their client language.
1540
+ */
1541
+ features?: FeatureSetAmino;
1542
+ feature_support?: FieldOptions_FeatureSupportAmino;
1543
+ /** The parser stores options it doesn't recognize here. See above. */
1544
+ uninterpreted_option: UninterpretedOptionAmino[];
1545
+ }
1546
+ export interface FieldOptionsAminoMsg {
1547
+ type: "/google.protobuf.FieldOptions";
1548
+ value: FieldOptionsAmino;
1549
+ }
1550
+ export interface FieldOptions_EditionDefault {
1551
+ edition: Edition;
1552
+ /** Textproto value. */
1553
+ value: string;
1554
+ }
1555
+ export interface FieldOptions_EditionDefaultProtoMsg {
1556
+ typeUrl: "/google.protobuf.EditionDefault";
1557
+ value: Uint8Array;
1558
+ }
1559
+ export interface FieldOptions_EditionDefaultAmino {
1560
+ edition: Edition;
1561
+ /** Textproto value. */
1562
+ value: string;
1563
+ }
1564
+ export interface FieldOptions_EditionDefaultAminoMsg {
1565
+ type: "/google.protobuf.EditionDefault";
1566
+ value: FieldOptions_EditionDefaultAmino;
1567
+ }
1568
+ /** Information about the support window of a feature. */
1569
+ export interface FieldOptions_FeatureSupport {
1570
+ /**
1571
+ * The edition that this feature was first available in. In editions
1572
+ * earlier than this one, the default assigned to EDITION_LEGACY will be
1573
+ * used, and proto files will not be able to override it.
1574
+ */
1575
+ editionIntroduced: Edition;
1576
+ /**
1577
+ * The edition this feature becomes deprecated in. Using this after this
1578
+ * edition may trigger warnings.
1579
+ */
1580
+ editionDeprecated: Edition;
1581
+ /**
1582
+ * The deprecation warning text if this feature is used after the edition it
1583
+ * was marked deprecated in.
1584
+ */
1585
+ deprecationWarning: string;
1586
+ /**
1587
+ * The edition this feature is no longer available in. In editions after
1588
+ * this one, the last default assigned will be used, and proto files will
1589
+ * not be able to override it.
1590
+ */
1591
+ editionRemoved: Edition;
1592
+ }
1593
+ export interface FieldOptions_FeatureSupportProtoMsg {
1594
+ typeUrl: "/google.protobuf.FeatureSupport";
1595
+ value: Uint8Array;
1596
+ }
1597
+ /** Information about the support window of a feature. */
1598
+ export interface FieldOptions_FeatureSupportAmino {
1599
+ /**
1600
+ * The edition that this feature was first available in. In editions
1601
+ * earlier than this one, the default assigned to EDITION_LEGACY will be
1602
+ * used, and proto files will not be able to override it.
1603
+ */
1604
+ edition_introduced: Edition;
1605
+ /**
1606
+ * The edition this feature becomes deprecated in. Using this after this
1607
+ * edition may trigger warnings.
1608
+ */
1609
+ edition_deprecated: Edition;
1610
+ /**
1611
+ * The deprecation warning text if this feature is used after the edition it
1612
+ * was marked deprecated in.
1613
+ */
1614
+ deprecation_warning: string;
1615
+ /**
1616
+ * The edition this feature is no longer available in. In editions after
1617
+ * this one, the last default assigned will be used, and proto files will
1618
+ * not be able to override it.
1619
+ */
1620
+ edition_removed: Edition;
1621
+ }
1622
+ export interface FieldOptions_FeatureSupportAminoMsg {
1623
+ type: "/google.protobuf.FeatureSupport";
1624
+ value: FieldOptions_FeatureSupportAmino;
1625
+ }
1626
+ export interface OneofOptions {
1627
+ /**
1628
+ * Any features defined in the specific edition.
1629
+ * WARNING: This field should only be used by protobuf plugins or special
1630
+ * cases like the proto compiler. Other uses are discouraged and
1631
+ * developers should rely on the protoreflect APIs for their client language.
1632
+ */
1633
+ features?: FeatureSet;
1634
+ /** The parser stores options it doesn't recognize here. See above. */
1635
+ uninterpretedOption: UninterpretedOption[];
1636
+ }
1637
+ export interface OneofOptionsProtoMsg {
1638
+ typeUrl: "/google.protobuf.OneofOptions";
1639
+ value: Uint8Array;
1640
+ }
1641
+ export interface OneofOptionsAmino {
1642
+ /**
1643
+ * Any features defined in the specific edition.
1644
+ * WARNING: This field should only be used by protobuf plugins or special
1645
+ * cases like the proto compiler. Other uses are discouraged and
1646
+ * developers should rely on the protoreflect APIs for their client language.
1647
+ */
1648
+ features?: FeatureSetAmino;
1649
+ /** The parser stores options it doesn't recognize here. See above. */
1650
+ uninterpreted_option: UninterpretedOptionAmino[];
1651
+ }
1652
+ export interface OneofOptionsAminoMsg {
1653
+ type: "/google.protobuf.OneofOptions";
1654
+ value: OneofOptionsAmino;
1655
+ }
1656
+ export interface EnumOptions {
1657
+ /**
1658
+ * Set this option to true to allow mapping different tag names to the same
1659
+ * value.
1660
+ */
1661
+ allowAlias: boolean;
1662
+ /**
1663
+ * Is this enum deprecated?
1664
+ * Depending on the target platform, this can emit Deprecated annotations
1665
+ * for the enum, or it will be completely ignored; in the very least, this
1666
+ * is a formalization for deprecating enums.
1667
+ */
1668
+ deprecated: boolean;
1669
+ /**
1670
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1671
+ * and strips underscored from the fields before comparison in proto3 only.
1672
+ * The new behavior takes `json_name` into account and applies to proto2 as
1673
+ * well.
1674
+ * TODO Remove this legacy behavior once downstream teams have
1675
+ * had time to migrate.
1676
+ */
1677
+ /** @deprecated */
1678
+ deprecatedLegacyJsonFieldConflicts: boolean;
1679
+ /**
1680
+ * Any features defined in the specific edition.
1681
+ * WARNING: This field should only be used by protobuf plugins or special
1682
+ * cases like the proto compiler. Other uses are discouraged and
1683
+ * developers should rely on the protoreflect APIs for their client language.
1684
+ */
1685
+ features?: FeatureSet;
1686
+ /** The parser stores options it doesn't recognize here. See above. */
1687
+ uninterpretedOption: UninterpretedOption[];
1688
+ }
1689
+ export interface EnumOptionsProtoMsg {
1690
+ typeUrl: "/google.protobuf.EnumOptions";
1691
+ value: Uint8Array;
1692
+ }
1693
+ export interface EnumOptionsAmino {
1694
+ /**
1695
+ * Set this option to true to allow mapping different tag names to the same
1696
+ * value.
1697
+ */
1698
+ allow_alias: boolean;
1699
+ /**
1700
+ * Is this enum deprecated?
1701
+ * Depending on the target platform, this can emit Deprecated annotations
1702
+ * for the enum, or it will be completely ignored; in the very least, this
1703
+ * is a formalization for deprecating enums.
1704
+ */
1705
+ deprecated: boolean;
1706
+ /**
1707
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
1708
+ * and strips underscored from the fields before comparison in proto3 only.
1709
+ * The new behavior takes `json_name` into account and applies to proto2 as
1710
+ * well.
1711
+ * TODO Remove this legacy behavior once downstream teams have
1712
+ * had time to migrate.
1713
+ */
1714
+ /** @deprecated */
1715
+ deprecated_legacy_json_field_conflicts: boolean;
1716
+ /**
1717
+ * Any features defined in the specific edition.
1718
+ * WARNING: This field should only be used by protobuf plugins or special
1719
+ * cases like the proto compiler. Other uses are discouraged and
1720
+ * developers should rely on the protoreflect APIs for their client language.
1721
+ */
1722
+ features?: FeatureSetAmino;
1723
+ /** The parser stores options it doesn't recognize here. See above. */
1724
+ uninterpreted_option: UninterpretedOptionAmino[];
1725
+ }
1726
+ export interface EnumOptionsAminoMsg {
1727
+ type: "/google.protobuf.EnumOptions";
1728
+ value: EnumOptionsAmino;
1729
+ }
1730
+ export interface EnumValueOptions {
1731
+ /**
1732
+ * Is this enum value deprecated?
1733
+ * Depending on the target platform, this can emit Deprecated annotations
1734
+ * for the enum value, or it will be completely ignored; in the very least,
1735
+ * this is a formalization for deprecating enum values.
1736
+ */
1737
+ deprecated: boolean;
1738
+ /**
1739
+ * Any features defined in the specific edition.
1740
+ * WARNING: This field should only be used by protobuf plugins or special
1741
+ * cases like the proto compiler. Other uses are discouraged and
1742
+ * developers should rely on the protoreflect APIs for their client language.
1743
+ */
1744
+ features?: FeatureSet;
1745
+ /**
1746
+ * Indicate that fields annotated with this enum value should not be printed
1747
+ * out when using debug formats, e.g. when the field contains sensitive
1748
+ * credentials.
1749
+ */
1750
+ debugRedact: boolean;
1751
+ /** Information about the support window of a feature value. */
1752
+ featureSupport?: FieldOptions_FeatureSupport;
1753
+ /** The parser stores options it doesn't recognize here. See above. */
1754
+ uninterpretedOption: UninterpretedOption[];
1755
+ }
1756
+ export interface EnumValueOptionsProtoMsg {
1757
+ typeUrl: "/google.protobuf.EnumValueOptions";
1758
+ value: Uint8Array;
1759
+ }
1760
+ export interface EnumValueOptionsAmino {
1761
+ /**
1762
+ * Is this enum value deprecated?
1763
+ * Depending on the target platform, this can emit Deprecated annotations
1764
+ * for the enum value, or it will be completely ignored; in the very least,
1765
+ * this is a formalization for deprecating enum values.
1766
+ */
1767
+ deprecated: boolean;
1768
+ /**
1769
+ * Any features defined in the specific edition.
1770
+ * WARNING: This field should only be used by protobuf plugins or special
1771
+ * cases like the proto compiler. Other uses are discouraged and
1772
+ * developers should rely on the protoreflect APIs for their client language.
1773
+ */
1774
+ features?: FeatureSetAmino;
1775
+ /**
1776
+ * Indicate that fields annotated with this enum value should not be printed
1777
+ * out when using debug formats, e.g. when the field contains sensitive
1778
+ * credentials.
1779
+ */
1780
+ debug_redact: boolean;
1781
+ /** Information about the support window of a feature value. */
1782
+ feature_support?: FieldOptions_FeatureSupportAmino;
1783
+ /** The parser stores options it doesn't recognize here. See above. */
1784
+ uninterpreted_option: UninterpretedOptionAmino[];
1785
+ }
1786
+ export interface EnumValueOptionsAminoMsg {
1787
+ type: "/google.protobuf.EnumValueOptions";
1788
+ value: EnumValueOptionsAmino;
1789
+ }
1790
+ export interface ServiceOptions {
1791
+ /**
1792
+ * Any features defined in the specific edition.
1793
+ * WARNING: This field should only be used by protobuf plugins or special
1794
+ * cases like the proto compiler. Other uses are discouraged and
1795
+ * developers should rely on the protoreflect APIs for their client language.
1796
+ */
1797
+ features?: FeatureSet;
1798
+ /**
1799
+ * Is this service deprecated?
1800
+ * Depending on the target platform, this can emit Deprecated annotations
1801
+ * for the service, or it will be completely ignored; in the very least,
1802
+ * this is a formalization for deprecating services.
1803
+ */
1804
+ deprecated: boolean;
1805
+ /** The parser stores options it doesn't recognize here. See above. */
1806
+ uninterpretedOption: UninterpretedOption[];
1807
+ }
1808
+ export interface ServiceOptionsProtoMsg {
1809
+ typeUrl: "/google.protobuf.ServiceOptions";
1810
+ value: Uint8Array;
1811
+ }
1812
+ export interface ServiceOptionsAmino {
1813
+ /**
1814
+ * Any features defined in the specific edition.
1815
+ * WARNING: This field should only be used by protobuf plugins or special
1816
+ * cases like the proto compiler. Other uses are discouraged and
1817
+ * developers should rely on the protoreflect APIs for their client language.
1818
+ */
1819
+ features?: FeatureSetAmino;
1820
+ /**
1821
+ * Is this service deprecated?
1822
+ * Depending on the target platform, this can emit Deprecated annotations
1823
+ * for the service, or it will be completely ignored; in the very least,
1824
+ * this is a formalization for deprecating services.
1825
+ */
1826
+ deprecated: boolean;
1827
+ /** The parser stores options it doesn't recognize here. See above. */
1828
+ uninterpreted_option: UninterpretedOptionAmino[];
1829
+ }
1830
+ export interface ServiceOptionsAminoMsg {
1831
+ type: "/google.protobuf.ServiceOptions";
1832
+ value: ServiceOptionsAmino;
1833
+ }
1834
+ export interface MethodOptions {
1835
+ /**
1836
+ * Is this method deprecated?
1837
+ * Depending on the target platform, this can emit Deprecated annotations
1838
+ * for the method, or it will be completely ignored; in the very least,
1839
+ * this is a formalization for deprecating methods.
1840
+ */
1841
+ deprecated: boolean;
1842
+ idempotencyLevel: MethodOptions_IdempotencyLevel;
1843
+ /**
1844
+ * Any features defined in the specific edition.
1845
+ * WARNING: This field should only be used by protobuf plugins or special
1846
+ * cases like the proto compiler. Other uses are discouraged and
1847
+ * developers should rely on the protoreflect APIs for their client language.
1848
+ */
1849
+ features?: FeatureSet;
1850
+ /** The parser stores options it doesn't recognize here. See above. */
1851
+ uninterpretedOption: UninterpretedOption[];
1852
+ }
1853
+ export interface MethodOptionsProtoMsg {
1854
+ typeUrl: "/google.protobuf.MethodOptions";
1855
+ value: Uint8Array;
1856
+ }
1857
+ export interface MethodOptionsAmino {
1858
+ /**
1859
+ * Is this method deprecated?
1860
+ * Depending on the target platform, this can emit Deprecated annotations
1861
+ * for the method, or it will be completely ignored; in the very least,
1862
+ * this is a formalization for deprecating methods.
1863
+ */
1864
+ deprecated: boolean;
1865
+ idempotency_level: MethodOptions_IdempotencyLevel;
1866
+ /**
1867
+ * Any features defined in the specific edition.
1868
+ * WARNING: This field should only be used by protobuf plugins or special
1869
+ * cases like the proto compiler. Other uses are discouraged and
1870
+ * developers should rely on the protoreflect APIs for their client language.
1871
+ */
1872
+ features?: FeatureSetAmino;
1873
+ /** The parser stores options it doesn't recognize here. See above. */
1874
+ uninterpreted_option: UninterpretedOptionAmino[];
1875
+ }
1876
+ export interface MethodOptionsAminoMsg {
1877
+ type: "/google.protobuf.MethodOptions";
1878
+ value: MethodOptionsAmino;
1879
+ }
1880
+ /**
1881
+ * A message representing a option the parser does not recognize. This only
1882
+ * appears in options protos created by the compiler::Parser class.
1883
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
1884
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1885
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1886
+ * in them.
1887
+ */
1888
+ export interface UninterpretedOption {
1889
+ name: UninterpretedOption_NamePart[];
1890
+ /**
1891
+ * The value of the uninterpreted option, in whatever type the tokenizer
1892
+ * identified it as during parsing. Exactly one of these should be set.
1893
+ */
1894
+ identifierValue: string;
1895
+ positiveIntValue: bigint;
1896
+ negativeIntValue: bigint;
1897
+ doubleValue: number;
1898
+ stringValue: Uint8Array;
1899
+ aggregateValue: string;
1900
+ }
1901
+ export interface UninterpretedOptionProtoMsg {
1902
+ typeUrl: "/google.protobuf.UninterpretedOption";
1903
+ value: Uint8Array;
1904
+ }
1905
+ /**
1906
+ * A message representing a option the parser does not recognize. This only
1907
+ * appears in options protos created by the compiler::Parser class.
1908
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
1909
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1910
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1911
+ * in them.
1912
+ */
1913
+ export interface UninterpretedOptionAmino {
1914
+ name: UninterpretedOption_NamePartAmino[];
1915
+ /**
1916
+ * The value of the uninterpreted option, in whatever type the tokenizer
1917
+ * identified it as during parsing. Exactly one of these should be set.
1918
+ */
1919
+ identifier_value: string;
1920
+ positive_int_value: string;
1921
+ negative_int_value: string;
1922
+ double_value: number;
1923
+ string_value: string;
1924
+ aggregate_value: string;
1925
+ }
1926
+ export interface UninterpretedOptionAminoMsg {
1927
+ type: "/google.protobuf.UninterpretedOption";
1928
+ value: UninterpretedOptionAmino;
1929
+ }
1930
+ /**
1931
+ * The name of the uninterpreted option. Each string represents a segment in
1932
+ * a dot-separated name. is_extension is true iff a segment represents an
1933
+ * extension (denoted with parentheses in options specs in .proto files).
1934
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
1935
+ * "foo.(bar.baz).moo".
1936
+ */
1937
+ export interface UninterpretedOption_NamePart {
1938
+ namePart: string;
1939
+ isExtension: boolean;
1940
+ }
1941
+ export interface UninterpretedOption_NamePartProtoMsg {
1942
+ typeUrl: "/google.protobuf.NamePart";
1943
+ value: Uint8Array;
1944
+ }
1945
+ /**
1946
+ * The name of the uninterpreted option. Each string represents a segment in
1947
+ * a dot-separated name. is_extension is true iff a segment represents an
1948
+ * extension (denoted with parentheses in options specs in .proto files).
1949
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
1950
+ * "foo.(bar.baz).moo".
1951
+ */
1952
+ export interface UninterpretedOption_NamePartAmino {
1953
+ name_part: string;
1954
+ is_extension: boolean;
1955
+ }
1956
+ export interface UninterpretedOption_NamePartAminoMsg {
1957
+ type: "/google.protobuf.NamePart";
1958
+ value: UninterpretedOption_NamePartAmino;
1959
+ }
1960
+ /**
1961
+ * TODO Enums in C++ gencode (and potentially other languages) are
1962
+ * not well scoped. This means that each of the feature enums below can clash
1963
+ * with each other. The short names we've chosen maximize call-site
1964
+ * readability, but leave us very open to this scenario. A future feature will
1965
+ * be designed and implemented to handle this, hopefully before we ever hit a
1966
+ * conflict here.
1967
+ */
1968
+ export interface FeatureSet {
1969
+ fieldPresence: FeatureSet_FieldPresence;
1970
+ enumType: FeatureSet_EnumType;
1971
+ repeatedFieldEncoding: FeatureSet_RepeatedFieldEncoding;
1972
+ utf8Validation: FeatureSet_Utf8Validation;
1973
+ messageEncoding: FeatureSet_MessageEncoding;
1974
+ jsonFormat: FeatureSet_JsonFormat;
1975
+ }
1976
+ export interface FeatureSetProtoMsg {
1977
+ typeUrl: "/google.protobuf.FeatureSet";
1978
+ value: Uint8Array;
1979
+ }
1980
+ /**
1981
+ * TODO Enums in C++ gencode (and potentially other languages) are
1982
+ * not well scoped. This means that each of the feature enums below can clash
1983
+ * with each other. The short names we've chosen maximize call-site
1984
+ * readability, but leave us very open to this scenario. A future feature will
1985
+ * be designed and implemented to handle this, hopefully before we ever hit a
1986
+ * conflict here.
1987
+ */
1988
+ export interface FeatureSetAmino {
1989
+ field_presence: FeatureSet_FieldPresence;
1990
+ enum_type: FeatureSet_EnumType;
1991
+ repeated_field_encoding: FeatureSet_RepeatedFieldEncoding;
1992
+ utf8_validation: FeatureSet_Utf8Validation;
1993
+ message_encoding: FeatureSet_MessageEncoding;
1994
+ json_format: FeatureSet_JsonFormat;
1995
+ }
1996
+ export interface FeatureSetAminoMsg {
1997
+ type: "/google.protobuf.FeatureSet";
1998
+ value: FeatureSetAmino;
1999
+ }
2000
+ /**
2001
+ * A compiled specification for the defaults of a set of features. These
2002
+ * messages are generated from FeatureSet extensions and can be used to seed
2003
+ * feature resolution. The resolution with this object becomes a simple search
2004
+ * for the closest matching edition, followed by proto merges.
2005
+ */
2006
+ export interface FeatureSetDefaults {
2007
+ defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
2008
+ /**
2009
+ * The minimum supported edition (inclusive) when this was constructed.
2010
+ * Editions before this will not have defaults.
2011
+ */
2012
+ minimumEdition: Edition;
2013
+ /**
2014
+ * The maximum known edition (inclusive) when this was constructed. Editions
2015
+ * after this will not have reliable defaults.
2016
+ */
2017
+ maximumEdition: Edition;
2018
+ }
2019
+ export interface FeatureSetDefaultsProtoMsg {
2020
+ typeUrl: "/google.protobuf.FeatureSetDefaults";
2021
+ value: Uint8Array;
2022
+ }
2023
+ /**
2024
+ * A compiled specification for the defaults of a set of features. These
2025
+ * messages are generated from FeatureSet extensions and can be used to seed
2026
+ * feature resolution. The resolution with this object becomes a simple search
2027
+ * for the closest matching edition, followed by proto merges.
2028
+ */
2029
+ export interface FeatureSetDefaultsAmino {
2030
+ defaults: FeatureSetDefaults_FeatureSetEditionDefaultAmino[];
2031
+ /**
2032
+ * The minimum supported edition (inclusive) when this was constructed.
2033
+ * Editions before this will not have defaults.
2034
+ */
2035
+ minimum_edition: Edition;
2036
+ /**
2037
+ * The maximum known edition (inclusive) when this was constructed. Editions
2038
+ * after this will not have reliable defaults.
2039
+ */
2040
+ maximum_edition: Edition;
2041
+ }
2042
+ export interface FeatureSetDefaultsAminoMsg {
2043
+ type: "/google.protobuf.FeatureSetDefaults";
2044
+ value: FeatureSetDefaultsAmino;
2045
+ }
2046
+ /**
2047
+ * A map from every known edition with a unique set of defaults to its
2048
+ * defaults. Not all editions may be contained here. For a given edition,
2049
+ * the defaults at the closest matching edition ordered at or before it should
2050
+ * be used. This field must be in strict ascending order by edition.
2051
+ */
2052
+ export interface FeatureSetDefaults_FeatureSetEditionDefault {
2053
+ edition: Edition;
2054
+ /** Defaults of features that can be overridden in this edition. */
2055
+ overridableFeatures?: FeatureSet;
2056
+ /** Defaults of features that can't be overridden in this edition. */
2057
+ fixedFeatures?: FeatureSet;
2058
+ }
2059
+ export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
2060
+ typeUrl: "/google.protobuf.FeatureSetEditionDefault";
2061
+ value: Uint8Array;
2062
+ }
2063
+ /**
2064
+ * A map from every known edition with a unique set of defaults to its
2065
+ * defaults. Not all editions may be contained here. For a given edition,
2066
+ * the defaults at the closest matching edition ordered at or before it should
2067
+ * be used. This field must be in strict ascending order by edition.
2068
+ */
2069
+ export interface FeatureSetDefaults_FeatureSetEditionDefaultAmino {
2070
+ edition: Edition;
2071
+ /** Defaults of features that can be overridden in this edition. */
2072
+ overridable_features?: FeatureSetAmino;
2073
+ /** Defaults of features that can't be overridden in this edition. */
2074
+ fixed_features?: FeatureSetAmino;
2075
+ }
2076
+ export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
2077
+ type: "/google.protobuf.FeatureSetEditionDefault";
2078
+ value: FeatureSetDefaults_FeatureSetEditionDefaultAmino;
2079
+ }
2080
+ /**
2081
+ * Encapsulates information about the original source file from which a
2082
+ * FileDescriptorProto was generated.
2083
+ */
2084
+ export interface SourceCodeInfo {
2085
+ /**
2086
+ * A Location identifies a piece of source code in a .proto file which
2087
+ * corresponds to a particular definition. This information is intended
2088
+ * to be useful to IDEs, code indexers, documentation generators, and similar
2089
+ * tools.
2090
+ *
2091
+ * For example, say we have a file like:
2092
+ * message Foo {
2093
+ * optional string foo = 1;
2094
+ * }
2095
+ * Let's look at just the field definition:
2096
+ * optional string foo = 1;
2097
+ * ^ ^^ ^^ ^ ^^^
2098
+ * a bc de f ghi
2099
+ * We have the following locations:
2100
+ * span path represents
2101
+ * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2102
+ * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2103
+ * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2104
+ * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2105
+ * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2106
+ *
2107
+ * Notes:
2108
+ * - A location may refer to a repeated field itself (i.e. not to any
2109
+ * particular index within it). This is used whenever a set of elements are
2110
+ * logically enclosed in a single code segment. For example, an entire
2111
+ * extend block (possibly containing multiple extension definitions) will
2112
+ * have an outer location whose path refers to the "extensions" repeated
2113
+ * field without an index.
2114
+ * - Multiple locations may have the same path. This happens when a single
2115
+ * logical declaration is spread out across multiple places. The most
2116
+ * obvious example is the "extend" block again -- there may be multiple
2117
+ * extend blocks in the same scope, each of which will have the same path.
2118
+ * - A location's span is not always a subset of its parent's span. For
2119
+ * example, the "extendee" of an extension declaration appears at the
2120
+ * beginning of the "extend" block and is shared by all extensions within
2121
+ * the block.
2122
+ * - Just because a location's span is a subset of some other location's span
2123
+ * does not mean that it is a descendant. For example, a "group" defines
2124
+ * both a type and a field in a single declaration. Thus, the locations
2125
+ * corresponding to the type and field and their components will overlap.
2126
+ * - Code which tries to interpret locations should probably be designed to
2127
+ * ignore those that it doesn't understand, as more types of locations could
2128
+ * be recorded in the future.
2129
+ */
2130
+ location: SourceCodeInfo_Location[];
2131
+ }
2132
+ export interface SourceCodeInfoProtoMsg {
2133
+ typeUrl: "/google.protobuf.SourceCodeInfo";
2134
+ value: Uint8Array;
2135
+ }
2136
+ /**
2137
+ * Encapsulates information about the original source file from which a
2138
+ * FileDescriptorProto was generated.
2139
+ */
2140
+ export interface SourceCodeInfoAmino {
2141
+ /**
2142
+ * A Location identifies a piece of source code in a .proto file which
2143
+ * corresponds to a particular definition. This information is intended
2144
+ * to be useful to IDEs, code indexers, documentation generators, and similar
2145
+ * tools.
2146
+ *
2147
+ * For example, say we have a file like:
2148
+ * message Foo {
2149
+ * optional string foo = 1;
2150
+ * }
2151
+ * Let's look at just the field definition:
2152
+ * optional string foo = 1;
2153
+ * ^ ^^ ^^ ^ ^^^
2154
+ * a bc de f ghi
2155
+ * We have the following locations:
2156
+ * span path represents
2157
+ * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2158
+ * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2159
+ * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2160
+ * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2161
+ * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2162
+ *
2163
+ * Notes:
2164
+ * - A location may refer to a repeated field itself (i.e. not to any
2165
+ * particular index within it). This is used whenever a set of elements are
2166
+ * logically enclosed in a single code segment. For example, an entire
2167
+ * extend block (possibly containing multiple extension definitions) will
2168
+ * have an outer location whose path refers to the "extensions" repeated
2169
+ * field without an index.
2170
+ * - Multiple locations may have the same path. This happens when a single
2171
+ * logical declaration is spread out across multiple places. The most
2172
+ * obvious example is the "extend" block again -- there may be multiple
2173
+ * extend blocks in the same scope, each of which will have the same path.
2174
+ * - A location's span is not always a subset of its parent's span. For
2175
+ * example, the "extendee" of an extension declaration appears at the
2176
+ * beginning of the "extend" block and is shared by all extensions within
2177
+ * the block.
2178
+ * - Just because a location's span is a subset of some other location's span
2179
+ * does not mean that it is a descendant. For example, a "group" defines
2180
+ * both a type and a field in a single declaration. Thus, the locations
2181
+ * corresponding to the type and field and their components will overlap.
2182
+ * - Code which tries to interpret locations should probably be designed to
2183
+ * ignore those that it doesn't understand, as more types of locations could
2184
+ * be recorded in the future.
2185
+ */
2186
+ location: SourceCodeInfo_LocationAmino[];
2187
+ }
2188
+ export interface SourceCodeInfoAminoMsg {
2189
+ type: "/google.protobuf.SourceCodeInfo";
2190
+ value: SourceCodeInfoAmino;
2191
+ }
2192
+ export interface SourceCodeInfo_Location {
2193
+ /**
2194
+ * Identifies which part of the FileDescriptorProto was defined at this
2195
+ * location.
2196
+ *
2197
+ * Each element is a field number or an index. They form a path from
2198
+ * the root FileDescriptorProto to the place where the definition appears.
2199
+ * For example, this path:
2200
+ * [ 4, 3, 2, 7, 1 ]
2201
+ * refers to:
2202
+ * file.message_type(3) // 4, 3
2203
+ * .field(7) // 2, 7
2204
+ * .name() // 1
2205
+ * This is because FileDescriptorProto.message_type has field number 4:
2206
+ * repeated DescriptorProto message_type = 4;
2207
+ * and DescriptorProto.field has field number 2:
2208
+ * repeated FieldDescriptorProto field = 2;
2209
+ * and FieldDescriptorProto.name has field number 1:
2210
+ * optional string name = 1;
2211
+ *
2212
+ * Thus, the above path gives the location of a field name. If we removed
2213
+ * the last element:
2214
+ * [ 4, 3, 2, 7 ]
2215
+ * this path refers to the whole field declaration (from the beginning
2216
+ * of the label to the terminating semicolon).
2217
+ */
2218
+ path: number[];
2219
+ /**
2220
+ * Always has exactly three or four elements: start line, start column,
2221
+ * end line (optional, otherwise assumed same as start line), end column.
2222
+ * These are packed into a single field for efficiency. Note that line
2223
+ * and column numbers are zero-based -- typically you will want to add
2224
+ * 1 to each before displaying to a user.
2225
+ */
2226
+ span: number[];
2227
+ /**
2228
+ * If this SourceCodeInfo represents a complete declaration, these are any
2229
+ * comments appearing before and after the declaration which appear to be
2230
+ * attached to the declaration.
2231
+ *
2232
+ * A series of line comments appearing on consecutive lines, with no other
2233
+ * tokens appearing on those lines, will be treated as a single comment.
2234
+ *
2235
+ * leading_detached_comments will keep paragraphs of comments that appear
2236
+ * before (but not connected to) the current element. Each paragraph,
2237
+ * separated by empty lines, will be one comment element in the repeated
2238
+ * field.
2239
+ *
2240
+ * Only the comment content is provided; comment markers (e.g. //) are
2241
+ * stripped out. For block comments, leading whitespace and an asterisk
2242
+ * will be stripped from the beginning of each line other than the first.
2243
+ * Newlines are included in the output.
2244
+ *
2245
+ * Examples:
2246
+ *
2247
+ * optional int32 foo = 1; // Comment attached to foo.
2248
+ * // Comment attached to bar.
2249
+ * optional int32 bar = 2;
2250
+ *
2251
+ * optional string baz = 3;
2252
+ * // Comment attached to baz.
2253
+ * // Another line attached to baz.
2254
+ *
2255
+ * // Comment attached to moo.
2256
+ * //
2257
+ * // Another line attached to moo.
2258
+ * optional double moo = 4;
2259
+ *
2260
+ * // Detached comment for corge. This is not leading or trailing comments
2261
+ * // to moo or corge because there are blank lines separating it from
2262
+ * // both.
2263
+ *
2264
+ * // Detached comment for corge paragraph 2.
2265
+ *
2266
+ * optional string corge = 5;
2267
+ * /* Block comment attached
2268
+ * * to corge. Leading asterisks
2269
+ * * will be removed. *\/
2270
+ * /* Block comment attached to
2271
+ * * grault. *\/
2272
+ * optional int32 grault = 6;
2273
+ *
2274
+ * // ignored detached comments.
2275
+ */
2276
+ leadingComments: string;
2277
+ trailingComments: string;
2278
+ leadingDetachedComments: string[];
2279
+ }
2280
+ export interface SourceCodeInfo_LocationProtoMsg {
2281
+ typeUrl: "/google.protobuf.Location";
2282
+ value: Uint8Array;
2283
+ }
2284
+ export interface SourceCodeInfo_LocationAmino {
2285
+ /**
2286
+ * Identifies which part of the FileDescriptorProto was defined at this
2287
+ * location.
2288
+ *
2289
+ * Each element is a field number or an index. They form a path from
2290
+ * the root FileDescriptorProto to the place where the definition appears.
2291
+ * For example, this path:
2292
+ * [ 4, 3, 2, 7, 1 ]
2293
+ * refers to:
2294
+ * file.message_type(3) // 4, 3
2295
+ * .field(7) // 2, 7
2296
+ * .name() // 1
2297
+ * This is because FileDescriptorProto.message_type has field number 4:
2298
+ * repeated DescriptorProto message_type = 4;
2299
+ * and DescriptorProto.field has field number 2:
2300
+ * repeated FieldDescriptorProto field = 2;
2301
+ * and FieldDescriptorProto.name has field number 1:
2302
+ * optional string name = 1;
2303
+ *
2304
+ * Thus, the above path gives the location of a field name. If we removed
2305
+ * the last element:
2306
+ * [ 4, 3, 2, 7 ]
2307
+ * this path refers to the whole field declaration (from the beginning
2308
+ * of the label to the terminating semicolon).
2309
+ */
2310
+ path: number[];
2311
+ /**
2312
+ * Always has exactly three or four elements: start line, start column,
2313
+ * end line (optional, otherwise assumed same as start line), end column.
2314
+ * These are packed into a single field for efficiency. Note that line
2315
+ * and column numbers are zero-based -- typically you will want to add
2316
+ * 1 to each before displaying to a user.
2317
+ */
2318
+ span: number[];
2319
+ /**
2320
+ * If this SourceCodeInfo represents a complete declaration, these are any
2321
+ * comments appearing before and after the declaration which appear to be
2322
+ * attached to the declaration.
2323
+ *
2324
+ * A series of line comments appearing on consecutive lines, with no other
2325
+ * tokens appearing on those lines, will be treated as a single comment.
2326
+ *
2327
+ * leading_detached_comments will keep paragraphs of comments that appear
2328
+ * before (but not connected to) the current element. Each paragraph,
2329
+ * separated by empty lines, will be one comment element in the repeated
2330
+ * field.
2331
+ *
2332
+ * Only the comment content is provided; comment markers (e.g. //) are
2333
+ * stripped out. For block comments, leading whitespace and an asterisk
2334
+ * will be stripped from the beginning of each line other than the first.
2335
+ * Newlines are included in the output.
2336
+ *
2337
+ * Examples:
2338
+ *
2339
+ * optional int32 foo = 1; // Comment attached to foo.
2340
+ * // Comment attached to bar.
2341
+ * optional int32 bar = 2;
2342
+ *
2343
+ * optional string baz = 3;
2344
+ * // Comment attached to baz.
2345
+ * // Another line attached to baz.
2346
+ *
2347
+ * // Comment attached to moo.
2348
+ * //
2349
+ * // Another line attached to moo.
2350
+ * optional double moo = 4;
2351
+ *
2352
+ * // Detached comment for corge. This is not leading or trailing comments
2353
+ * // to moo or corge because there are blank lines separating it from
2354
+ * // both.
2355
+ *
2356
+ * // Detached comment for corge paragraph 2.
2357
+ *
2358
+ * optional string corge = 5;
2359
+ * /* Block comment attached
2360
+ * * to corge. Leading asterisks
2361
+ * * will be removed. *\/
2362
+ * /* Block comment attached to
2363
+ * * grault. *\/
2364
+ * optional int32 grault = 6;
2365
+ *
2366
+ * // ignored detached comments.
2367
+ */
2368
+ leading_comments: string;
2369
+ trailing_comments: string;
2370
+ leading_detached_comments: string[];
2371
+ }
2372
+ export interface SourceCodeInfo_LocationAminoMsg {
2373
+ type: "/google.protobuf.Location";
2374
+ value: SourceCodeInfo_LocationAmino;
2375
+ }
2376
+ /**
2377
+ * Describes the relationship between generated code and its original source
2378
+ * file. A GeneratedCodeInfo message is associated with only one generated
2379
+ * source file, but may contain references to different source .proto files.
2380
+ */
2381
+ export interface GeneratedCodeInfo {
2382
+ /**
2383
+ * An Annotation connects some span of text in generated code to an element
2384
+ * of its generating .proto file.
2385
+ */
2386
+ annotation: GeneratedCodeInfo_Annotation[];
2387
+ }
2388
+ export interface GeneratedCodeInfoProtoMsg {
2389
+ typeUrl: "/google.protobuf.GeneratedCodeInfo";
2390
+ value: Uint8Array;
2391
+ }
2392
+ /**
2393
+ * Describes the relationship between generated code and its original source
2394
+ * file. A GeneratedCodeInfo message is associated with only one generated
2395
+ * source file, but may contain references to different source .proto files.
2396
+ */
2397
+ export interface GeneratedCodeInfoAmino {
2398
+ /**
2399
+ * An Annotation connects some span of text in generated code to an element
2400
+ * of its generating .proto file.
2401
+ */
2402
+ annotation: GeneratedCodeInfo_AnnotationAmino[];
2403
+ }
2404
+ export interface GeneratedCodeInfoAminoMsg {
2405
+ type: "/google.protobuf.GeneratedCodeInfo";
2406
+ value: GeneratedCodeInfoAmino;
2407
+ }
2408
+ export interface GeneratedCodeInfo_Annotation {
2409
+ /**
2410
+ * Identifies the element in the original source .proto file. This field
2411
+ * is formatted the same as SourceCodeInfo.Location.path.
2412
+ */
2413
+ path: number[];
2414
+ /** Identifies the filesystem path to the original source .proto. */
2415
+ sourceFile: string;
2416
+ /**
2417
+ * Identifies the starting offset in bytes in the generated code
2418
+ * that relates to the identified object.
2419
+ */
2420
+ begin: number;
2421
+ /**
2422
+ * Identifies the ending offset in bytes in the generated code that
2423
+ * relates to the identified object. The end offset should be one past
2424
+ * the last relevant byte (so the length of the text = end - begin).
2425
+ */
2426
+ end: number;
2427
+ semantic: GeneratedCodeInfo_Annotation_Semantic;
2428
+ }
2429
+ export interface GeneratedCodeInfo_AnnotationProtoMsg {
2430
+ typeUrl: "/google.protobuf.Annotation";
2431
+ value: Uint8Array;
2432
+ }
2433
+ export interface GeneratedCodeInfo_AnnotationAmino {
2434
+ /**
2435
+ * Identifies the element in the original source .proto file. This field
2436
+ * is formatted the same as SourceCodeInfo.Location.path.
2437
+ */
2438
+ path: number[];
2439
+ /** Identifies the filesystem path to the original source .proto. */
2440
+ source_file: string;
2441
+ /**
2442
+ * Identifies the starting offset in bytes in the generated code
2443
+ * that relates to the identified object.
2444
+ */
2445
+ begin: number;
2446
+ /**
2447
+ * Identifies the ending offset in bytes in the generated code that
2448
+ * relates to the identified object. The end offset should be one past
2449
+ * the last relevant byte (so the length of the text = end - begin).
2450
+ */
2451
+ end: number;
2452
+ semantic: GeneratedCodeInfo_Annotation_Semantic;
2453
+ }
2454
+ export interface GeneratedCodeInfo_AnnotationAminoMsg {
2455
+ type: "/google.protobuf.Annotation";
2456
+ value: GeneratedCodeInfo_AnnotationAmino;
2457
+ }
2458
+ export declare const FileDescriptorSet: {
2459
+ typeUrl: string;
2460
+ is(o: any): o is FileDescriptorSet;
2461
+ isAmino(o: any): o is FileDescriptorSetAmino;
2462
+ encode(message: FileDescriptorSet, writer?: BinaryWriter): BinaryWriter;
2463
+ decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorSet;
2464
+ fromPartial(object: DeepPartial<FileDescriptorSet>): FileDescriptorSet;
2465
+ fromAmino(object: FileDescriptorSetAmino): FileDescriptorSet;
2466
+ toAmino(message: FileDescriptorSet): FileDescriptorSetAmino;
2467
+ fromAminoMsg(object: FileDescriptorSetAminoMsg): FileDescriptorSet;
2468
+ fromProtoMsg(message: FileDescriptorSetProtoMsg): FileDescriptorSet;
2469
+ toProto(message: FileDescriptorSet): Uint8Array;
2470
+ toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg;
2471
+ };
2472
+ export declare const FileDescriptorProto: {
2473
+ typeUrl: string;
2474
+ is(o: any): o is FileDescriptorProto;
2475
+ isAmino(o: any): o is FileDescriptorProtoAmino;
2476
+ encode(message: FileDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2477
+ decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorProto;
2478
+ fromPartial(object: DeepPartial<FileDescriptorProto>): FileDescriptorProto;
2479
+ fromAmino(object: FileDescriptorProtoAmino): FileDescriptorProto;
2480
+ toAmino(message: FileDescriptorProto): FileDescriptorProtoAmino;
2481
+ fromAminoMsg(object: FileDescriptorProtoAminoMsg): FileDescriptorProto;
2482
+ fromProtoMsg(message: FileDescriptorProtoProtoMsg): FileDescriptorProto;
2483
+ toProto(message: FileDescriptorProto): Uint8Array;
2484
+ toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg;
2485
+ };
2486
+ export declare const DescriptorProto: {
2487
+ typeUrl: string;
2488
+ is(o: any): o is DescriptorProto;
2489
+ isAmino(o: any): o is DescriptorProtoAmino;
2490
+ encode(message: DescriptorProto, writer?: BinaryWriter): BinaryWriter;
2491
+ decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto;
2492
+ fromPartial(object: DeepPartial<DescriptorProto>): DescriptorProto;
2493
+ fromAmino(object: DescriptorProtoAmino): DescriptorProto;
2494
+ toAmino(message: DescriptorProto): DescriptorProtoAmino;
2495
+ fromAminoMsg(object: DescriptorProtoAminoMsg): DescriptorProto;
2496
+ fromProtoMsg(message: DescriptorProtoProtoMsg): DescriptorProto;
2497
+ toProto(message: DescriptorProto): Uint8Array;
2498
+ toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg;
2499
+ };
2500
+ export declare const DescriptorProto_ExtensionRange: {
2501
+ typeUrl: string;
2502
+ is(o: any): o is DescriptorProto_ExtensionRange;
2503
+ isAmino(o: any): o is DescriptorProto_ExtensionRangeAmino;
2504
+ encode(message: DescriptorProto_ExtensionRange, writer?: BinaryWriter): BinaryWriter;
2505
+ decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ExtensionRange;
2506
+ fromPartial(object: DeepPartial<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
2507
+ fromAmino(object: DescriptorProto_ExtensionRangeAmino): DescriptorProto_ExtensionRange;
2508
+ toAmino(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeAmino;
2509
+ fromAminoMsg(object: DescriptorProto_ExtensionRangeAminoMsg): DescriptorProto_ExtensionRange;
2510
+ fromProtoMsg(message: DescriptorProto_ExtensionRangeProtoMsg): DescriptorProto_ExtensionRange;
2511
+ toProto(message: DescriptorProto_ExtensionRange): Uint8Array;
2512
+ toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg;
2513
+ };
2514
+ export declare const DescriptorProto_ReservedRange: {
2515
+ typeUrl: string;
2516
+ is(o: any): o is DescriptorProto_ReservedRange;
2517
+ isAmino(o: any): o is DescriptorProto_ReservedRangeAmino;
2518
+ encode(message: DescriptorProto_ReservedRange, writer?: BinaryWriter): BinaryWriter;
2519
+ decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ReservedRange;
2520
+ fromPartial(object: DeepPartial<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
2521
+ fromAmino(object: DescriptorProto_ReservedRangeAmino): DescriptorProto_ReservedRange;
2522
+ toAmino(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeAmino;
2523
+ fromAminoMsg(object: DescriptorProto_ReservedRangeAminoMsg): DescriptorProto_ReservedRange;
2524
+ fromProtoMsg(message: DescriptorProto_ReservedRangeProtoMsg): DescriptorProto_ReservedRange;
2525
+ toProto(message: DescriptorProto_ReservedRange): Uint8Array;
2526
+ toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg;
2527
+ };
2528
+ export declare const ExtensionRangeOptions: {
2529
+ typeUrl: string;
2530
+ is(o: any): o is ExtensionRangeOptions;
2531
+ isAmino(o: any): o is ExtensionRangeOptionsAmino;
2532
+ encode(message: ExtensionRangeOptions, writer?: BinaryWriter): BinaryWriter;
2533
+ decode(input: BinaryReader | Uint8Array, length?: number): ExtensionRangeOptions;
2534
+ fromPartial(object: DeepPartial<ExtensionRangeOptions>): ExtensionRangeOptions;
2535
+ fromAmino(object: ExtensionRangeOptionsAmino): ExtensionRangeOptions;
2536
+ toAmino(message: ExtensionRangeOptions): ExtensionRangeOptionsAmino;
2537
+ fromAminoMsg(object: ExtensionRangeOptionsAminoMsg): ExtensionRangeOptions;
2538
+ fromProtoMsg(message: ExtensionRangeOptionsProtoMsg): ExtensionRangeOptions;
2539
+ toProto(message: ExtensionRangeOptions): Uint8Array;
2540
+ toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg;
2541
+ };
2542
+ export declare const ExtensionRangeOptions_Declaration: {
2543
+ typeUrl: string;
2544
+ is(o: any): o is ExtensionRangeOptions_Declaration;
2545
+ isAmino(o: any): o is ExtensionRangeOptions_DeclarationAmino;
2546
+ encode(message: ExtensionRangeOptions_Declaration, writer?: BinaryWriter): BinaryWriter;
2547
+ decode(input: BinaryReader | Uint8Array, length?: number): ExtensionRangeOptions_Declaration;
2548
+ fromPartial(object: DeepPartial<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
2549
+ fromAmino(object: ExtensionRangeOptions_DeclarationAmino): ExtensionRangeOptions_Declaration;
2550
+ toAmino(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationAmino;
2551
+ fromAminoMsg(object: ExtensionRangeOptions_DeclarationAminoMsg): ExtensionRangeOptions_Declaration;
2552
+ fromProtoMsg(message: ExtensionRangeOptions_DeclarationProtoMsg): ExtensionRangeOptions_Declaration;
2553
+ toProto(message: ExtensionRangeOptions_Declaration): Uint8Array;
2554
+ toProtoMsg(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationProtoMsg;
2555
+ };
2556
+ export declare const FieldDescriptorProto: {
2557
+ typeUrl: string;
2558
+ is(o: any): o is FieldDescriptorProto;
2559
+ isAmino(o: any): o is FieldDescriptorProtoAmino;
2560
+ encode(message: FieldDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2561
+ decode(input: BinaryReader | Uint8Array, length?: number): FieldDescriptorProto;
2562
+ fromPartial(object: DeepPartial<FieldDescriptorProto>): FieldDescriptorProto;
2563
+ fromAmino(object: FieldDescriptorProtoAmino): FieldDescriptorProto;
2564
+ toAmino(message: FieldDescriptorProto): FieldDescriptorProtoAmino;
2565
+ fromAminoMsg(object: FieldDescriptorProtoAminoMsg): FieldDescriptorProto;
2566
+ fromProtoMsg(message: FieldDescriptorProtoProtoMsg): FieldDescriptorProto;
2567
+ toProto(message: FieldDescriptorProto): Uint8Array;
2568
+ toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg;
2569
+ };
2570
+ export declare const OneofDescriptorProto: {
2571
+ typeUrl: string;
2572
+ is(o: any): o is OneofDescriptorProto;
2573
+ isAmino(o: any): o is OneofDescriptorProtoAmino;
2574
+ encode(message: OneofDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2575
+ decode(input: BinaryReader | Uint8Array, length?: number): OneofDescriptorProto;
2576
+ fromPartial(object: DeepPartial<OneofDescriptorProto>): OneofDescriptorProto;
2577
+ fromAmino(object: OneofDescriptorProtoAmino): OneofDescriptorProto;
2578
+ toAmino(message: OneofDescriptorProto): OneofDescriptorProtoAmino;
2579
+ fromAminoMsg(object: OneofDescriptorProtoAminoMsg): OneofDescriptorProto;
2580
+ fromProtoMsg(message: OneofDescriptorProtoProtoMsg): OneofDescriptorProto;
2581
+ toProto(message: OneofDescriptorProto): Uint8Array;
2582
+ toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg;
2583
+ };
2584
+ export declare const EnumDescriptorProto: {
2585
+ typeUrl: string;
2586
+ is(o: any): o is EnumDescriptorProto;
2587
+ isAmino(o: any): o is EnumDescriptorProtoAmino;
2588
+ encode(message: EnumDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2589
+ decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto;
2590
+ fromPartial(object: DeepPartial<EnumDescriptorProto>): EnumDescriptorProto;
2591
+ fromAmino(object: EnumDescriptorProtoAmino): EnumDescriptorProto;
2592
+ toAmino(message: EnumDescriptorProto): EnumDescriptorProtoAmino;
2593
+ fromAminoMsg(object: EnumDescriptorProtoAminoMsg): EnumDescriptorProto;
2594
+ fromProtoMsg(message: EnumDescriptorProtoProtoMsg): EnumDescriptorProto;
2595
+ toProto(message: EnumDescriptorProto): Uint8Array;
2596
+ toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg;
2597
+ };
2598
+ export declare const EnumDescriptorProto_EnumReservedRange: {
2599
+ typeUrl: string;
2600
+ is(o: any): o is EnumDescriptorProto_EnumReservedRange;
2601
+ isAmino(o: any): o is EnumDescriptorProto_EnumReservedRangeAmino;
2602
+ encode(message: EnumDescriptorProto_EnumReservedRange, writer?: BinaryWriter): BinaryWriter;
2603
+ decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange;
2604
+ fromPartial(object: DeepPartial<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
2605
+ fromAmino(object: EnumDescriptorProto_EnumReservedRangeAmino): EnumDescriptorProto_EnumReservedRange;
2606
+ toAmino(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeAmino;
2607
+ fromAminoMsg(object: EnumDescriptorProto_EnumReservedRangeAminoMsg): EnumDescriptorProto_EnumReservedRange;
2608
+ fromProtoMsg(message: EnumDescriptorProto_EnumReservedRangeProtoMsg): EnumDescriptorProto_EnumReservedRange;
2609
+ toProto(message: EnumDescriptorProto_EnumReservedRange): Uint8Array;
2610
+ toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg;
2611
+ };
2612
+ export declare const EnumValueDescriptorProto: {
2613
+ typeUrl: string;
2614
+ is(o: any): o is EnumValueDescriptorProto;
2615
+ isAmino(o: any): o is EnumValueDescriptorProtoAmino;
2616
+ encode(message: EnumValueDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2617
+ decode(input: BinaryReader | Uint8Array, length?: number): EnumValueDescriptorProto;
2618
+ fromPartial(object: DeepPartial<EnumValueDescriptorProto>): EnumValueDescriptorProto;
2619
+ fromAmino(object: EnumValueDescriptorProtoAmino): EnumValueDescriptorProto;
2620
+ toAmino(message: EnumValueDescriptorProto): EnumValueDescriptorProtoAmino;
2621
+ fromAminoMsg(object: EnumValueDescriptorProtoAminoMsg): EnumValueDescriptorProto;
2622
+ fromProtoMsg(message: EnumValueDescriptorProtoProtoMsg): EnumValueDescriptorProto;
2623
+ toProto(message: EnumValueDescriptorProto): Uint8Array;
2624
+ toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg;
2625
+ };
2626
+ export declare const ServiceDescriptorProto: {
2627
+ typeUrl: string;
2628
+ is(o: any): o is ServiceDescriptorProto;
2629
+ isAmino(o: any): o is ServiceDescriptorProtoAmino;
2630
+ encode(message: ServiceDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2631
+ decode(input: BinaryReader | Uint8Array, length?: number): ServiceDescriptorProto;
2632
+ fromPartial(object: DeepPartial<ServiceDescriptorProto>): ServiceDescriptorProto;
2633
+ fromAmino(object: ServiceDescriptorProtoAmino): ServiceDescriptorProto;
2634
+ toAmino(message: ServiceDescriptorProto): ServiceDescriptorProtoAmino;
2635
+ fromAminoMsg(object: ServiceDescriptorProtoAminoMsg): ServiceDescriptorProto;
2636
+ fromProtoMsg(message: ServiceDescriptorProtoProtoMsg): ServiceDescriptorProto;
2637
+ toProto(message: ServiceDescriptorProto): Uint8Array;
2638
+ toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
2639
+ };
2640
+ export declare const MethodDescriptorProto: {
2641
+ typeUrl: string;
2642
+ is(o: any): o is MethodDescriptorProto;
2643
+ isAmino(o: any): o is MethodDescriptorProtoAmino;
2644
+ encode(message: MethodDescriptorProto, writer?: BinaryWriter): BinaryWriter;
2645
+ decode(input: BinaryReader | Uint8Array, length?: number): MethodDescriptorProto;
2646
+ fromPartial(object: DeepPartial<MethodDescriptorProto>): MethodDescriptorProto;
2647
+ fromAmino(object: MethodDescriptorProtoAmino): MethodDescriptorProto;
2648
+ toAmino(message: MethodDescriptorProto): MethodDescriptorProtoAmino;
2649
+ fromAminoMsg(object: MethodDescriptorProtoAminoMsg): MethodDescriptorProto;
2650
+ fromProtoMsg(message: MethodDescriptorProtoProtoMsg): MethodDescriptorProto;
2651
+ toProto(message: MethodDescriptorProto): Uint8Array;
2652
+ toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg;
2653
+ };
2654
+ export declare const FileOptions: {
2655
+ typeUrl: string;
2656
+ is(o: any): o is FileOptions;
2657
+ isAmino(o: any): o is FileOptionsAmino;
2658
+ encode(message: FileOptions, writer?: BinaryWriter): BinaryWriter;
2659
+ decode(input: BinaryReader | Uint8Array, length?: number): FileOptions;
2660
+ fromPartial(object: DeepPartial<FileOptions>): FileOptions;
2661
+ fromAmino(object: FileOptionsAmino): FileOptions;
2662
+ toAmino(message: FileOptions): FileOptionsAmino;
2663
+ fromAminoMsg(object: FileOptionsAminoMsg): FileOptions;
2664
+ fromProtoMsg(message: FileOptionsProtoMsg): FileOptions;
2665
+ toProto(message: FileOptions): Uint8Array;
2666
+ toProtoMsg(message: FileOptions): FileOptionsProtoMsg;
2667
+ };
2668
+ export declare const MessageOptions: {
2669
+ typeUrl: string;
2670
+ is(o: any): o is MessageOptions;
2671
+ isAmino(o: any): o is MessageOptionsAmino;
2672
+ encode(message: MessageOptions, writer?: BinaryWriter): BinaryWriter;
2673
+ decode(input: BinaryReader | Uint8Array, length?: number): MessageOptions;
2674
+ fromPartial(object: DeepPartial<MessageOptions>): MessageOptions;
2675
+ fromAmino(object: MessageOptionsAmino): MessageOptions;
2676
+ toAmino(message: MessageOptions): MessageOptionsAmino;
2677
+ fromAminoMsg(object: MessageOptionsAminoMsg): MessageOptions;
2678
+ fromProtoMsg(message: MessageOptionsProtoMsg): MessageOptions;
2679
+ toProto(message: MessageOptions): Uint8Array;
2680
+ toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg;
2681
+ };
2682
+ export declare const FieldOptions: {
2683
+ typeUrl: string;
2684
+ is(o: any): o is FieldOptions;
2685
+ isAmino(o: any): o is FieldOptionsAmino;
2686
+ encode(message: FieldOptions, writer?: BinaryWriter): BinaryWriter;
2687
+ decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions;
2688
+ fromPartial(object: DeepPartial<FieldOptions>): FieldOptions;
2689
+ fromAmino(object: FieldOptionsAmino): FieldOptions;
2690
+ toAmino(message: FieldOptions): FieldOptionsAmino;
2691
+ fromAminoMsg(object: FieldOptionsAminoMsg): FieldOptions;
2692
+ fromProtoMsg(message: FieldOptionsProtoMsg): FieldOptions;
2693
+ toProto(message: FieldOptions): Uint8Array;
2694
+ toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg;
2695
+ };
2696
+ export declare const FieldOptions_EditionDefault: {
2697
+ typeUrl: string;
2698
+ is(o: any): o is FieldOptions_EditionDefault;
2699
+ isAmino(o: any): o is FieldOptions_EditionDefaultAmino;
2700
+ encode(message: FieldOptions_EditionDefault, writer?: BinaryWriter): BinaryWriter;
2701
+ decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions_EditionDefault;
2702
+ fromPartial(object: DeepPartial<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
2703
+ fromAmino(object: FieldOptions_EditionDefaultAmino): FieldOptions_EditionDefault;
2704
+ toAmino(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultAmino;
2705
+ fromAminoMsg(object: FieldOptions_EditionDefaultAminoMsg): FieldOptions_EditionDefault;
2706
+ fromProtoMsg(message: FieldOptions_EditionDefaultProtoMsg): FieldOptions_EditionDefault;
2707
+ toProto(message: FieldOptions_EditionDefault): Uint8Array;
2708
+ toProtoMsg(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultProtoMsg;
2709
+ };
2710
+ export declare const FieldOptions_FeatureSupport: {
2711
+ typeUrl: string;
2712
+ is(o: any): o is FieldOptions_FeatureSupport;
2713
+ isAmino(o: any): o is FieldOptions_FeatureSupportAmino;
2714
+ encode(message: FieldOptions_FeatureSupport, writer?: BinaryWriter): BinaryWriter;
2715
+ decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions_FeatureSupport;
2716
+ fromPartial(object: DeepPartial<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
2717
+ fromAmino(object: FieldOptions_FeatureSupportAmino): FieldOptions_FeatureSupport;
2718
+ toAmino(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportAmino;
2719
+ fromAminoMsg(object: FieldOptions_FeatureSupportAminoMsg): FieldOptions_FeatureSupport;
2720
+ fromProtoMsg(message: FieldOptions_FeatureSupportProtoMsg): FieldOptions_FeatureSupport;
2721
+ toProto(message: FieldOptions_FeatureSupport): Uint8Array;
2722
+ toProtoMsg(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportProtoMsg;
2723
+ };
2724
+ export declare const OneofOptions: {
2725
+ typeUrl: string;
2726
+ is(o: any): o is OneofOptions;
2727
+ isAmino(o: any): o is OneofOptionsAmino;
2728
+ encode(message: OneofOptions, writer?: BinaryWriter): BinaryWriter;
2729
+ decode(input: BinaryReader | Uint8Array, length?: number): OneofOptions;
2730
+ fromPartial(object: DeepPartial<OneofOptions>): OneofOptions;
2731
+ fromAmino(object: OneofOptionsAmino): OneofOptions;
2732
+ toAmino(message: OneofOptions): OneofOptionsAmino;
2733
+ fromAminoMsg(object: OneofOptionsAminoMsg): OneofOptions;
2734
+ fromProtoMsg(message: OneofOptionsProtoMsg): OneofOptions;
2735
+ toProto(message: OneofOptions): Uint8Array;
2736
+ toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg;
2737
+ };
2738
+ export declare const EnumOptions: {
2739
+ typeUrl: string;
2740
+ is(o: any): o is EnumOptions;
2741
+ isAmino(o: any): o is EnumOptionsAmino;
2742
+ encode(message: EnumOptions, writer?: BinaryWriter): BinaryWriter;
2743
+ decode(input: BinaryReader | Uint8Array, length?: number): EnumOptions;
2744
+ fromPartial(object: DeepPartial<EnumOptions>): EnumOptions;
2745
+ fromAmino(object: EnumOptionsAmino): EnumOptions;
2746
+ toAmino(message: EnumOptions): EnumOptionsAmino;
2747
+ fromAminoMsg(object: EnumOptionsAminoMsg): EnumOptions;
2748
+ fromProtoMsg(message: EnumOptionsProtoMsg): EnumOptions;
2749
+ toProto(message: EnumOptions): Uint8Array;
2750
+ toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg;
2751
+ };
2752
+ export declare const EnumValueOptions: {
2753
+ typeUrl: string;
2754
+ is(o: any): o is EnumValueOptions;
2755
+ isAmino(o: any): o is EnumValueOptionsAmino;
2756
+ encode(message: EnumValueOptions, writer?: BinaryWriter): BinaryWriter;
2757
+ decode(input: BinaryReader | Uint8Array, length?: number): EnumValueOptions;
2758
+ fromPartial(object: DeepPartial<EnumValueOptions>): EnumValueOptions;
2759
+ fromAmino(object: EnumValueOptionsAmino): EnumValueOptions;
2760
+ toAmino(message: EnumValueOptions): EnumValueOptionsAmino;
2761
+ fromAminoMsg(object: EnumValueOptionsAminoMsg): EnumValueOptions;
2762
+ fromProtoMsg(message: EnumValueOptionsProtoMsg): EnumValueOptions;
2763
+ toProto(message: EnumValueOptions): Uint8Array;
2764
+ toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg;
2765
+ };
2766
+ export declare const ServiceOptions: {
2767
+ typeUrl: string;
2768
+ is(o: any): o is ServiceOptions;
2769
+ isAmino(o: any): o is ServiceOptionsAmino;
2770
+ encode(message: ServiceOptions, writer?: BinaryWriter): BinaryWriter;
2771
+ decode(input: BinaryReader | Uint8Array, length?: number): ServiceOptions;
2772
+ fromPartial(object: DeepPartial<ServiceOptions>): ServiceOptions;
2773
+ fromAmino(object: ServiceOptionsAmino): ServiceOptions;
2774
+ toAmino(message: ServiceOptions): ServiceOptionsAmino;
2775
+ fromAminoMsg(object: ServiceOptionsAminoMsg): ServiceOptions;
2776
+ fromProtoMsg(message: ServiceOptionsProtoMsg): ServiceOptions;
2777
+ toProto(message: ServiceOptions): Uint8Array;
2778
+ toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
2779
+ };
2780
+ export declare const MethodOptions: {
2781
+ typeUrl: string;
2782
+ is(o: any): o is MethodOptions;
2783
+ isAmino(o: any): o is MethodOptionsAmino;
2784
+ encode(message: MethodOptions, writer?: BinaryWriter): BinaryWriter;
2785
+ decode(input: BinaryReader | Uint8Array, length?: number): MethodOptions;
2786
+ fromPartial(object: DeepPartial<MethodOptions>): MethodOptions;
2787
+ fromAmino(object: MethodOptionsAmino): MethodOptions;
2788
+ toAmino(message: MethodOptions): MethodOptionsAmino;
2789
+ fromAminoMsg(object: MethodOptionsAminoMsg): MethodOptions;
2790
+ fromProtoMsg(message: MethodOptionsProtoMsg): MethodOptions;
2791
+ toProto(message: MethodOptions): Uint8Array;
2792
+ toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg;
2793
+ };
2794
+ export declare const UninterpretedOption: {
2795
+ typeUrl: string;
2796
+ is(o: any): o is UninterpretedOption;
2797
+ isAmino(o: any): o is UninterpretedOptionAmino;
2798
+ encode(message: UninterpretedOption, writer?: BinaryWriter): BinaryWriter;
2799
+ decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption;
2800
+ fromPartial(object: DeepPartial<UninterpretedOption>): UninterpretedOption;
2801
+ fromAmino(object: UninterpretedOptionAmino): UninterpretedOption;
2802
+ toAmino(message: UninterpretedOption): UninterpretedOptionAmino;
2803
+ fromAminoMsg(object: UninterpretedOptionAminoMsg): UninterpretedOption;
2804
+ fromProtoMsg(message: UninterpretedOptionProtoMsg): UninterpretedOption;
2805
+ toProto(message: UninterpretedOption): Uint8Array;
2806
+ toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg;
2807
+ };
2808
+ export declare const UninterpretedOption_NamePart: {
2809
+ typeUrl: string;
2810
+ is(o: any): o is UninterpretedOption_NamePart;
2811
+ isAmino(o: any): o is UninterpretedOption_NamePartAmino;
2812
+ encode(message: UninterpretedOption_NamePart, writer?: BinaryWriter): BinaryWriter;
2813
+ decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption_NamePart;
2814
+ fromPartial(object: DeepPartial<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
2815
+ fromAmino(object: UninterpretedOption_NamePartAmino): UninterpretedOption_NamePart;
2816
+ toAmino(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartAmino;
2817
+ fromAminoMsg(object: UninterpretedOption_NamePartAminoMsg): UninterpretedOption_NamePart;
2818
+ fromProtoMsg(message: UninterpretedOption_NamePartProtoMsg): UninterpretedOption_NamePart;
2819
+ toProto(message: UninterpretedOption_NamePart): Uint8Array;
2820
+ toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg;
2821
+ };
2822
+ export declare const FeatureSet: {
2823
+ typeUrl: string;
2824
+ is(o: any): o is FeatureSet;
2825
+ isAmino(o: any): o is FeatureSetAmino;
2826
+ encode(message: FeatureSet, writer?: BinaryWriter): BinaryWriter;
2827
+ decode(input: BinaryReader | Uint8Array, length?: number): FeatureSet;
2828
+ fromPartial(object: DeepPartial<FeatureSet>): FeatureSet;
2829
+ fromAmino(object: FeatureSetAmino): FeatureSet;
2830
+ toAmino(message: FeatureSet): FeatureSetAmino;
2831
+ fromAminoMsg(object: FeatureSetAminoMsg): FeatureSet;
2832
+ fromProtoMsg(message: FeatureSetProtoMsg): FeatureSet;
2833
+ toProto(message: FeatureSet): Uint8Array;
2834
+ toProtoMsg(message: FeatureSet): FeatureSetProtoMsg;
2835
+ };
2836
+ export declare const FeatureSetDefaults: {
2837
+ typeUrl: string;
2838
+ is(o: any): o is FeatureSetDefaults;
2839
+ isAmino(o: any): o is FeatureSetDefaultsAmino;
2840
+ encode(message: FeatureSetDefaults, writer?: BinaryWriter): BinaryWriter;
2841
+ decode(input: BinaryReader | Uint8Array, length?: number): FeatureSetDefaults;
2842
+ fromPartial(object: DeepPartial<FeatureSetDefaults>): FeatureSetDefaults;
2843
+ fromAmino(object: FeatureSetDefaultsAmino): FeatureSetDefaults;
2844
+ toAmino(message: FeatureSetDefaults): FeatureSetDefaultsAmino;
2845
+ fromAminoMsg(object: FeatureSetDefaultsAminoMsg): FeatureSetDefaults;
2846
+ fromProtoMsg(message: FeatureSetDefaultsProtoMsg): FeatureSetDefaults;
2847
+ toProto(message: FeatureSetDefaults): Uint8Array;
2848
+ toProtoMsg(message: FeatureSetDefaults): FeatureSetDefaultsProtoMsg;
2849
+ };
2850
+ export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
2851
+ typeUrl: string;
2852
+ is(o: any): o is FeatureSetDefaults_FeatureSetEditionDefault;
2853
+ isAmino(o: any): o is FeatureSetDefaults_FeatureSetEditionDefaultAmino;
2854
+ encode(message: FeatureSetDefaults_FeatureSetEditionDefault, writer?: BinaryWriter): BinaryWriter;
2855
+ decode(input: BinaryReader | Uint8Array, length?: number): FeatureSetDefaults_FeatureSetEditionDefault;
2856
+ fromPartial(object: DeepPartial<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
2857
+ fromAmino(object: FeatureSetDefaults_FeatureSetEditionDefaultAmino): FeatureSetDefaults_FeatureSetEditionDefault;
2858
+ toAmino(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultAmino;
2859
+ fromAminoMsg(object: FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg): FeatureSetDefaults_FeatureSetEditionDefault;
2860
+ fromProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg): FeatureSetDefaults_FeatureSetEditionDefault;
2861
+ toProto(message: FeatureSetDefaults_FeatureSetEditionDefault): Uint8Array;
2862
+ toProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg;
2863
+ };
2864
+ export declare const SourceCodeInfo: {
2865
+ typeUrl: string;
2866
+ is(o: any): o is SourceCodeInfo;
2867
+ isAmino(o: any): o is SourceCodeInfoAmino;
2868
+ encode(message: SourceCodeInfo, writer?: BinaryWriter): BinaryWriter;
2869
+ decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo;
2870
+ fromPartial(object: DeepPartial<SourceCodeInfo>): SourceCodeInfo;
2871
+ fromAmino(object: SourceCodeInfoAmino): SourceCodeInfo;
2872
+ toAmino(message: SourceCodeInfo): SourceCodeInfoAmino;
2873
+ fromAminoMsg(object: SourceCodeInfoAminoMsg): SourceCodeInfo;
2874
+ fromProtoMsg(message: SourceCodeInfoProtoMsg): SourceCodeInfo;
2875
+ toProto(message: SourceCodeInfo): Uint8Array;
2876
+ toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
2877
+ };
2878
+ export declare const SourceCodeInfo_Location: {
2879
+ typeUrl: string;
2880
+ is(o: any): o is SourceCodeInfo_Location;
2881
+ isAmino(o: any): o is SourceCodeInfo_LocationAmino;
2882
+ encode(message: SourceCodeInfo_Location, writer?: BinaryWriter): BinaryWriter;
2883
+ decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo_Location;
2884
+ fromPartial(object: DeepPartial<SourceCodeInfo_Location>): SourceCodeInfo_Location;
2885
+ fromAmino(object: SourceCodeInfo_LocationAmino): SourceCodeInfo_Location;
2886
+ toAmino(message: SourceCodeInfo_Location): SourceCodeInfo_LocationAmino;
2887
+ fromAminoMsg(object: SourceCodeInfo_LocationAminoMsg): SourceCodeInfo_Location;
2888
+ fromProtoMsg(message: SourceCodeInfo_LocationProtoMsg): SourceCodeInfo_Location;
2889
+ toProto(message: SourceCodeInfo_Location): Uint8Array;
2890
+ toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg;
2891
+ };
2892
+ export declare const GeneratedCodeInfo: {
2893
+ typeUrl: string;
2894
+ is(o: any): o is GeneratedCodeInfo;
2895
+ isAmino(o: any): o is GeneratedCodeInfoAmino;
2896
+ encode(message: GeneratedCodeInfo, writer?: BinaryWriter): BinaryWriter;
2897
+ decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo;
2898
+ fromPartial(object: DeepPartial<GeneratedCodeInfo>): GeneratedCodeInfo;
2899
+ fromAmino(object: GeneratedCodeInfoAmino): GeneratedCodeInfo;
2900
+ toAmino(message: GeneratedCodeInfo): GeneratedCodeInfoAmino;
2901
+ fromAminoMsg(object: GeneratedCodeInfoAminoMsg): GeneratedCodeInfo;
2902
+ fromProtoMsg(message: GeneratedCodeInfoProtoMsg): GeneratedCodeInfo;
2903
+ toProto(message: GeneratedCodeInfo): Uint8Array;
2904
+ toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg;
2905
+ };
2906
+ export declare const GeneratedCodeInfo_Annotation: {
2907
+ typeUrl: string;
2908
+ is(o: any): o is GeneratedCodeInfo_Annotation;
2909
+ isAmino(o: any): o is GeneratedCodeInfo_AnnotationAmino;
2910
+ encode(message: GeneratedCodeInfo_Annotation, writer?: BinaryWriter): BinaryWriter;
2911
+ decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation;
2912
+ fromPartial(object: DeepPartial<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
2913
+ fromAmino(object: GeneratedCodeInfo_AnnotationAmino): GeneratedCodeInfo_Annotation;
2914
+ toAmino(message: GeneratedCodeInfo_Annotation): GeneratedCodeInfo_AnnotationAmino;
2915
+ fromAminoMsg(object: GeneratedCodeInfo_AnnotationAminoMsg): GeneratedCodeInfo_Annotation;
2916
+ fromProtoMsg(message: GeneratedCodeInfo_AnnotationProtoMsg): GeneratedCodeInfo_Annotation;
2917
+ toProto(message: GeneratedCodeInfo_Annotation): Uint8Array;
2918
+ toProtoMsg(message: GeneratedCodeInfo_Annotation): GeneratedCodeInfo_AnnotationProtoMsg;
2919
+ };