@0xkaleab/sdk-js 0.2.7

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