@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.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 (751) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
  4. package/cosmos/app/runtime/v1alpha1/module.js +44 -1
  5. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  6. package/cosmos/app/v1alpha1/module.js +19 -0
  7. package/cosmos/auth/module/v1/module.d.ts +72 -12
  8. package/cosmos/auth/module/v1/module.js +25 -1
  9. package/cosmos/auth/v1beta1/auth.d.ts +68 -10
  10. package/cosmos/auth/v1beta1/auth.js +26 -0
  11. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  12. package/cosmos/auth/v1beta1/genesis.js +6 -0
  13. package/cosmos/auth/v1beta1/query.d.ts +334 -92
  14. package/cosmos/auth/v1beta1/query.js +120 -0
  15. package/cosmos/auth/v1beta1/query.lcd.js +7 -21
  16. package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
  17. package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  18. package/cosmos/auth/v1beta1/tx.d.ts +31 -10
  19. package/cosmos/auth/v1beta1/tx.js +13 -0
  20. package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
  21. package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  22. package/cosmos/authz/module/v1/module.d.ts +18 -2
  23. package/cosmos/authz/module/v1/module.js +6 -0
  24. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  25. package/cosmos/authz/v1beta1/authz.js +27 -0
  26. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  27. package/cosmos/authz/v1beta1/event.js +12 -0
  28. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  29. package/cosmos/authz/v1beta1/genesis.js +6 -0
  30. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  31. package/cosmos/authz/v1beta1/query.js +36 -0
  32. package/cosmos/authz/v1beta1/query.lcd.js +2 -6
  33. package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
  34. package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  35. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  36. package/cosmos/authz/v1beta1/tx.js +40 -0
  37. package/cosmos/bank/module/v1/module.d.ts +24 -4
  38. package/cosmos/bank/module/v1/module.js +6 -0
  39. package/cosmos/bank/v1beta1/authz.d.ts +13 -8
  40. package/cosmos/bank/v1beta1/authz.js +7 -0
  41. package/cosmos/bank/v1beta1/bank.d.ts +136 -34
  42. package/cosmos/bank/v1beta1/bank.js +48 -0
  43. package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
  44. package/cosmos/bank/v1beta1/genesis.js +13 -0
  45. package/cosmos/bank/v1beta1/query.d.ts +599 -138
  46. package/cosmos/bank/v1beta1/query.js +179 -0
  47. package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
  48. package/cosmos/bank/v1beta1/query.lcd.js +28 -29
  49. package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
  50. package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
  51. package/cosmos/bank/v1beta1/tx.d.ts +143 -30
  52. package/cosmos/bank/v1beta1/tx.js +53 -0
  53. package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
  54. package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  55. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
  56. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  57. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  58. package/cosmos/base/node/v1beta1/query.js +24 -0
  59. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
  60. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  61. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  62. package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  63. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  64. package/cosmos/base/v1beta1/coin.js +32 -0
  65. package/cosmos/benchmark/module/v1/module.d.ts +102 -26
  66. package/cosmos/benchmark/module/v1/module.js +12 -0
  67. package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
  68. package/cosmos/benchmark/v1/benchmark.js +6 -0
  69. package/cosmos/benchmark/v1/tx.d.ts +36 -4
  70. package/cosmos/benchmark/v1/tx.js +12 -0
  71. package/cosmos/bundle.d.ts +2283 -2421
  72. package/cosmos/bundle.js +242 -261
  73. package/cosmos/circuit/module/v1/module.d.ts +24 -4
  74. package/cosmos/circuit/module/v1/module.js +6 -0
  75. package/cosmos/circuit/v1/query.d.ts +120 -16
  76. package/cosmos/circuit/v1/query.js +36 -0
  77. package/cosmos/circuit/v1/tx.d.ts +126 -18
  78. package/cosmos/circuit/v1/tx.js +36 -0
  79. package/cosmos/circuit/v1/types.d.ts +55 -6
  80. package/cosmos/circuit/v1/types.js +19 -0
  81. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  82. package/cosmos/consensus/module/v1/module.js +6 -0
  83. package/cosmos/consensus/v1/query.d.ts +36 -4
  84. package/cosmos/consensus/v1/query.js +12 -0
  85. package/cosmos/consensus/v1/tx.d.ts +37 -6
  86. package/cosmos/consensus/v1/tx.js +13 -0
  87. package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
  88. package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  89. package/cosmos/counter/module/v1/module.d.ts +24 -4
  90. package/cosmos/counter/module/v1/module.js +6 -0
  91. package/cosmos/counter/v1/query.d.ts +36 -4
  92. package/cosmos/counter/v1/query.js +12 -0
  93. package/cosmos/counter/v1/tx.d.ts +54 -10
  94. package/cosmos/counter/v1/tx.js +12 -0
  95. package/cosmos/crisis/module/v1/module.d.ts +30 -6
  96. package/cosmos/crisis/module/v1/module.js +6 -0
  97. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  98. package/cosmos/crypto/ed25519/keys.js +17 -0
  99. package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
  100. package/cosmos/crypto/hd/v1/hd.js +6 -0
  101. package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
  102. package/cosmos/crypto/keyring/v1/record.js +31 -0
  103. package/cosmos/crypto/multisig/keys.d.ts +14 -0
  104. package/cosmos/crypto/multisig/keys.js +8 -0
  105. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  106. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  107. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  108. package/cosmos/crypto/secp256k1/keys.js +16 -0
  109. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  110. package/cosmos/crypto/secp256r1/keys.js +12 -0
  111. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  112. package/cosmos/distribution/module/v1/module.js +6 -0
  113. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  114. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  115. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  116. package/cosmos/distribution/v1beta1/genesis.js +52 -0
  117. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  118. package/cosmos/distribution/v1beta1/query.js +136 -0
  119. package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  120. package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
  121. package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  122. package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
  123. package/cosmos/distribution/v1beta1/tx.js +97 -0
  124. package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
  125. package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  126. package/cosmos/epochs/module/v1/module.d.ts +18 -2
  127. package/cosmos/epochs/module/v1/module.js +6 -0
  128. package/cosmos/epochs/v1beta1/events.d.ts +36 -4
  129. package/cosmos/epochs/v1beta1/events.js +12 -0
  130. package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
  131. package/cosmos/epochs/v1beta1/genesis.js +13 -0
  132. package/cosmos/epochs/v1beta1/query.d.ts +52 -0
  133. package/cosmos/epochs/v1beta1/query.js +28 -0
  134. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  135. package/cosmos/evidence/module/v1/module.js +6 -0
  136. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  137. package/cosmos/feegrant/module/v1/module.js +6 -0
  138. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  139. package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  140. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  141. package/cosmos/feegrant/v1beta1/genesis.js +6 -0
  142. package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
  143. package/cosmos/feegrant/v1beta1/query.js +36 -0
  144. package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  145. package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
  146. package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  147. package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
  148. package/cosmos/feegrant/v1beta1/tx.js +37 -0
  149. package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
  150. package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  151. package/cosmos/genutil/module/v1/module.d.ts +18 -2
  152. package/cosmos/genutil/module/v1/module.js +6 -0
  153. package/cosmos/gov/module/v1/module.d.ts +24 -4
  154. package/cosmos/gov/module/v1/module.js +6 -0
  155. package/cosmos/gov/v1/genesis.d.ts +48 -24
  156. package/cosmos/gov/v1/genesis.js +6 -0
  157. package/cosmos/gov/v1/gov.d.ts +341 -124
  158. package/cosmos/gov/v1/gov.js +59 -0
  159. package/cosmos/gov/v1/query.d.ts +469 -92
  160. package/cosmos/gov/v1/query.js +109 -0
  161. package/cosmos/gov/v1/tx.d.ts +368 -93
  162. package/cosmos/gov/v1/tx.js +88 -0
  163. package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
  164. package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  165. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  166. package/cosmos/gov/v1beta1/genesis.js +6 -0
  167. package/cosmos/gov/v1beta1/gov.d.ts +291 -69
  168. package/cosmos/gov/v1beta1/gov.js +57 -0
  169. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  170. package/cosmos/gov/v1beta1/query.js +97 -0
  171. package/cosmos/gov/v1beta1/tx.d.ts +209 -45
  172. package/cosmos/gov/v1beta1/tx.js +49 -0
  173. package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
  174. package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  175. package/cosmos/group/module/v1/module.d.ts +18 -2
  176. package/cosmos/group/module/v1/module.js +6 -0
  177. package/cosmos/group/v1/events.d.ts +300 -56
  178. package/cosmos/group/v1/events.js +66 -0
  179. package/cosmos/group/v1/genesis.d.ts +48 -12
  180. package/cosmos/group/v1/genesis.js +6 -0
  181. package/cosmos/group/v1/query.d.ts +768 -152
  182. package/cosmos/group/v1/query.js +168 -0
  183. package/cosmos/group/v1/query.lcd.js +1 -3
  184. package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
  185. package/cosmos/group/v1/query.rpc.Query.js +1 -3
  186. package/cosmos/group/v1/tx.d.ts +804 -163
  187. package/cosmos/group/v1/tx.js +168 -0
  188. package/cosmos/group/v1/types.d.ts +398 -91
  189. package/cosmos/group/v1/types.js +82 -0
  190. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  191. package/cosmos/ics23/v1/proofs.js +138 -0
  192. package/cosmos/mint/module/v1/module.d.ts +24 -4
  193. package/cosmos/mint/module/v1/module.js +6 -0
  194. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  195. package/cosmos/mint/v1beta1/genesis.js +6 -0
  196. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  197. package/cosmos/mint/v1beta1/mint.js +12 -0
  198. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  199. package/cosmos/mint/v1beta1/query.js +39 -0
  200. package/cosmos/mint/v1beta1/tx.d.ts +31 -10
  201. package/cosmos/mint/v1beta1/tx.js +13 -0
  202. package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
  203. package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  204. package/cosmos/nft/module/v1/module.d.ts +18 -2
  205. package/cosmos/nft/module/v1/module.js +6 -0
  206. package/cosmos/params/module/v1/module.d.ts +18 -2
  207. package/cosmos/params/module/v1/module.js +6 -0
  208. package/cosmos/params/v1beta1/params.d.ts +31 -2
  209. package/cosmos/params/v1beta1/params.js +13 -0
  210. package/cosmos/params/v1beta1/query.d.ts +93 -22
  211. package/cosmos/params/v1beta1/query.js +33 -0
  212. package/cosmos/params/v1beta1/query.lcd.js +1 -3
  213. package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
  214. package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  215. package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
  216. package/cosmos/protocolpool/module/v1/module.js +6 -0
  217. package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
  218. package/cosmos/protocolpool/v1/genesis.js +6 -0
  219. package/cosmos/protocolpool/v1/query.d.ts +138 -12
  220. package/cosmos/protocolpool/v1/query.js +54 -0
  221. package/cosmos/protocolpool/v1/tx.d.ts +217 -30
  222. package/cosmos/protocolpool/v1/tx.js +67 -0
  223. package/cosmos/protocolpool/v1/types.d.ts +54 -10
  224. package/cosmos/protocolpool/v1/types.js +12 -0
  225. package/cosmos/reflection/v1/reflection.d.ts +42 -6
  226. package/cosmos/reflection/v1/reflection.js +12 -0
  227. package/cosmos/rpc.query.d.ts +1 -9
  228. package/cosmos/rpc.query.js +0 -5
  229. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  230. package/cosmos/slashing/module/v1/module.js +6 -0
  231. package/cosmos/staking/module/v1/module.d.ts +36 -8
  232. package/cosmos/staking/module/v1/module.js +6 -0
  233. package/cosmos/staking/v1beta1/authz.d.ts +43 -15
  234. package/cosmos/staking/v1beta1/authz.js +13 -5
  235. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  236. package/cosmos/staking/v1beta1/genesis.js +12 -0
  237. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  238. package/cosmos/staking/v1beta1/query.js +186 -0
  239. package/cosmos/staking/v1beta1/staking.d.ts +631 -121
  240. package/cosmos/staking/v1beta1/staking.js +153 -0
  241. package/cosmos/staking/v1beta1/tx.d.ts +234 -42
  242. package/cosmos/staking/v1beta1/tx.js +88 -0
  243. package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
  244. package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  245. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
  246. package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  247. package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
  248. package/cosmos/store/snapshots/v1/snapshot.js +42 -0
  249. package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
  250. package/cosmos/store/streaming/abci/grpc.js +24 -0
  251. package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
  252. package/cosmos/store/v1beta1/commit_info.js +21 -0
  253. package/cosmos/store/v1beta1/listening.d.ts +45 -10
  254. package/cosmos/store/v1beta1/listening.js +15 -0
  255. package/cosmos/tx/config/v1/config.d.ts +18 -2
  256. package/cosmos/tx/config/v1/config.js +6 -0
  257. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  258. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  259. package/cosmos/tx/v1beta1/service.d.ts +355 -94
  260. package/cosmos/tx/v1beta1/service.js +125 -0
  261. package/cosmos/tx/v1beta1/service.lcd.js +1 -3
  262. package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
  263. package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  264. package/cosmos/tx/v1beta1/tx.d.ts +371 -80
  265. package/cosmos/tx/v1beta1/tx.js +118 -0
  266. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  267. package/cosmos/upgrade/module/v1/module.js +6 -0
  268. package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
  269. package/cosmos/upgrade/v1beta1/query.js +70 -0
  270. package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  271. package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
  272. package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  273. package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
  274. package/cosmos/upgrade/v1beta1/tx.js +24 -0
  275. package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
  276. package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  277. package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
  278. package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  279. package/cosmos/vesting/module/v1/module.d.ts +18 -2
  280. package/cosmos/vesting/module/v1/module.js +6 -0
  281. package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
  282. package/cosmos/vesting/v1beta1/tx.js +40 -0
  283. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
  284. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  285. package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
  286. package/cosmos/vesting/v1beta1/vesting.js +43 -0
  287. package/cosmos_proto/cosmos.d.ts +31 -0
  288. package/cosmos_proto/cosmos.js +19 -0
  289. package/esm/binary.js +1 -1
  290. package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
  291. package/esm/cosmos/app/v1alpha1/module.js +19 -0
  292. package/esm/cosmos/auth/module/v1/module.js +25 -1
  293. package/esm/cosmos/auth/v1beta1/auth.js +26 -0
  294. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  295. package/esm/cosmos/auth/v1beta1/query.js +120 -0
  296. package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
  297. package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  298. package/esm/cosmos/auth/v1beta1/tx.js +13 -0
  299. package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  300. package/esm/cosmos/authz/module/v1/module.js +6 -0
  301. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  302. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  303. package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
  304. package/esm/cosmos/authz/v1beta1/query.js +36 -0
  305. package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
  306. package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  307. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  308. package/esm/cosmos/bank/module/v1/module.js +6 -0
  309. package/esm/cosmos/bank/v1beta1/authz.js +7 -0
  310. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  311. package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
  312. package/esm/cosmos/bank/v1beta1/query.js +179 -0
  313. package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
  314. package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
  315. package/esm/cosmos/bank/v1beta1/tx.js +53 -0
  316. package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  317. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  318. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  319. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  320. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  321. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  322. package/esm/cosmos/benchmark/module/v1/module.js +12 -0
  323. package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
  324. package/esm/cosmos/benchmark/v1/tx.js +12 -0
  325. package/esm/cosmos/bundle.js +242 -261
  326. package/esm/cosmos/circuit/module/v1/module.js +6 -0
  327. package/esm/cosmos/circuit/v1/query.js +36 -0
  328. package/esm/cosmos/circuit/v1/tx.js +36 -0
  329. package/esm/cosmos/circuit/v1/types.js +19 -0
  330. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  331. package/esm/cosmos/consensus/v1/query.js +12 -0
  332. package/esm/cosmos/consensus/v1/tx.js +13 -0
  333. package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  334. package/esm/cosmos/counter/module/v1/module.js +6 -0
  335. package/esm/cosmos/counter/v1/query.js +12 -0
  336. package/esm/cosmos/counter/v1/tx.js +12 -0
  337. package/esm/cosmos/crisis/module/v1/module.js +6 -0
  338. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  339. package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
  340. package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
  341. package/esm/cosmos/crypto/multisig/keys.js +8 -0
  342. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  343. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  344. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  345. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  346. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  347. package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
  348. package/esm/cosmos/distribution/v1beta1/query.js +136 -0
  349. package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  350. package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  351. package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
  352. package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  353. package/esm/cosmos/epochs/module/v1/module.js +6 -0
  354. package/esm/cosmos/epochs/v1beta1/events.js +12 -0
  355. package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
  356. package/esm/cosmos/epochs/v1beta1/query.js +28 -0
  357. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  358. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  359. package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  360. package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
  361. package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
  362. package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  363. package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  364. package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
  365. package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  366. package/esm/cosmos/genutil/module/v1/module.js +6 -0
  367. package/esm/cosmos/gov/module/v1/module.js +6 -0
  368. package/esm/cosmos/gov/v1/genesis.js +6 -0
  369. package/esm/cosmos/gov/v1/gov.js +59 -0
  370. package/esm/cosmos/gov/v1/query.js +109 -0
  371. package/esm/cosmos/gov/v1/tx.js +88 -0
  372. package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  373. package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
  374. package/esm/cosmos/gov/v1beta1/gov.js +57 -0
  375. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  376. package/esm/cosmos/gov/v1beta1/tx.js +49 -0
  377. package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  378. package/esm/cosmos/group/module/v1/module.js +6 -0
  379. package/esm/cosmos/group/v1/events.js +66 -0
  380. package/esm/cosmos/group/v1/genesis.js +6 -0
  381. package/esm/cosmos/group/v1/query.js +168 -0
  382. package/esm/cosmos/group/v1/query.lcd.js +1 -3
  383. package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
  384. package/esm/cosmos/group/v1/tx.js +168 -0
  385. package/esm/cosmos/group/v1/types.js +82 -0
  386. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  387. package/esm/cosmos/mint/module/v1/module.js +6 -0
  388. package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
  389. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  390. package/esm/cosmos/mint/v1beta1/query.js +39 -0
  391. package/esm/cosmos/mint/v1beta1/tx.js +13 -0
  392. package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  393. package/esm/cosmos/nft/module/v1/module.js +6 -0
  394. package/esm/cosmos/params/module/v1/module.js +6 -0
  395. package/esm/cosmos/params/v1beta1/params.js +13 -0
  396. package/esm/cosmos/params/v1beta1/query.js +33 -0
  397. package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
  398. package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  399. package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
  400. package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
  401. package/esm/cosmos/protocolpool/v1/query.js +54 -0
  402. package/esm/cosmos/protocolpool/v1/tx.js +67 -0
  403. package/esm/cosmos/protocolpool/v1/types.js +12 -0
  404. package/esm/cosmos/reflection/v1/reflection.js +12 -0
  405. package/esm/cosmos/rpc.query.js +0 -5
  406. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  407. package/esm/cosmos/staking/module/v1/module.js +6 -0
  408. package/esm/cosmos/staking/v1beta1/authz.js +13 -5
  409. package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
  410. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  411. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  412. package/esm/cosmos/staking/v1beta1/tx.js +88 -0
  413. package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  414. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  415. package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
  416. package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
  417. package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
  418. package/esm/cosmos/store/v1beta1/listening.js +15 -0
  419. package/esm/cosmos/tx/config/v1/config.js +6 -0
  420. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  421. package/esm/cosmos/tx/v1beta1/service.js +125 -0
  422. package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
  423. package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  424. package/esm/cosmos/tx/v1beta1/tx.js +119 -1
  425. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  426. package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
  427. package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  428. package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  429. package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
  430. package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  431. package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  432. package/esm/cosmos/vesting/module/v1/module.js +6 -0
  433. package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
  434. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  435. package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
  436. package/esm/cosmos_proto/cosmos.js +19 -0
  437. package/esm/gogoproto/bundle.js +2 -2
  438. package/esm/google/api/http.js +283 -0
  439. package/esm/google/bundle.js +7 -7
  440. package/esm/google/protobuf/any.js +90 -0
  441. package/esm/google/protobuf/descriptor.js +220 -0
  442. package/esm/google/protobuf/duration.js +63 -0
  443. package/esm/google/protobuf/timestamp.js +94 -0
  444. package/esm/helpers.js +1 -1
  445. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  446. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  447. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  448. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  449. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  450. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  451. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  452. package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
  453. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  454. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  455. package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  456. package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
  457. package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
  458. package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
  459. package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
  460. package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
  461. package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
  462. package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
  463. package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
  464. package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
  465. package/esm/ibc/applications/transfer/v1/authz.js +13 -0
  466. package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
  467. package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
  468. package/esm/ibc/applications/transfer/v1/packet.js +8 -0
  469. package/esm/ibc/applications/transfer/v1/query.js +78 -0
  470. package/esm/ibc/applications/transfer/v1/token.js +18 -0
  471. package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
  472. package/esm/ibc/applications/transfer/v1/tx.js +40 -1
  473. package/esm/ibc/bundle.js +196 -173
  474. package/esm/ibc/client.js +4 -1
  475. package/esm/ibc/core/channel/v1/channel.js +64 -0
  476. package/esm/ibc/core/channel/v1/genesis.js +13 -0
  477. package/esm/ibc/core/channel/v1/query.js +197 -0
  478. package/esm/ibc/core/channel/v1/tx.js +129 -0
  479. package/esm/ibc/core/channel/v2/genesis.js +21 -0
  480. package/esm/ibc/core/channel/v2/packet.js +29 -0
  481. package/esm/ibc/core/channel/v2/query.js +100 -0
  482. package/esm/ibc/core/channel/v2/tx.js +48 -0
  483. package/esm/ibc/core/client/v1/client.js +45 -0
  484. package/esm/ibc/core/client/v1/genesis.js +20 -0
  485. package/esm/ibc/core/client/v1/query.js +154 -0
  486. package/esm/ibc/core/client/v1/tx.amino.js +1 -6
  487. package/esm/ibc/core/client/v1/tx.js +86 -151
  488. package/esm/ibc/core/client/v1/tx.registry.js +2 -20
  489. package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
  490. package/esm/ibc/core/client/v2/config.js +9 -0
  491. package/esm/ibc/core/client/v2/counterparty.js +6 -0
  492. package/esm/ibc/core/client/v2/genesis.js +12 -0
  493. package/esm/ibc/core/client/v2/query.js +26 -0
  494. package/esm/ibc/core/client/v2/tx.js +24 -0
  495. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  496. package/esm/ibc/core/commitment/v2/commitment.js +36 -0
  497. package/esm/ibc/core/connection/v1/connection.js +47 -0
  498. package/esm/ibc/core/connection/v1/genesis.js +6 -0
  499. package/esm/ibc/core/connection/v1/query.js +83 -0
  500. package/esm/ibc/core/connection/v1/tx.js +66 -0
  501. package/esm/ibc/lcd.js +5 -0
  502. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  503. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  504. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  505. package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
  506. package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
  507. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  508. package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
  509. package/esm/ibc/rpc.query.js +3 -5
  510. package/esm/ibc/rpc.tx.js +3 -0
  511. package/esm/index.js +1 -1
  512. package/esm/sparkdream/blog/module/v1/module.js +6 -0
  513. package/esm/sparkdream/blog/v1/genesis.js +6 -0
  514. package/esm/sparkdream/blog/v1/params.js +6 -0
  515. package/esm/sparkdream/blog/v1/post.js +6 -0
  516. package/esm/sparkdream/blog/v1/query.js +36 -0
  517. package/esm/sparkdream/blog/v1/tx.js +49 -0
  518. package/esm/sparkdream/bundle.js +41 -41
  519. package/esm/sparkdream/rpc.query.js +0 -5
  520. package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
  521. package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
  522. package/esm/sparkdream/sparkdream/v1/params.js +6 -0
  523. package/esm/sparkdream/sparkdream/v1/query.js +12 -0
  524. package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
  525. package/esm/tendermint/abci/types.js +255 -0
  526. package/esm/tendermint/bundle.js +18 -18
  527. package/esm/tendermint/crypto/keys.js +6 -0
  528. package/esm/tendermint/crypto/proof.js +29 -0
  529. package/esm/tendermint/p2p/types.js +20 -0
  530. package/esm/tendermint/types/block.js +5 -0
  531. package/esm/tendermint/types/evidence.js +22 -0
  532. package/esm/tendermint/types/params.js +46 -0
  533. package/esm/tendermint/types/types.js +87 -0
  534. package/esm/tendermint/types/validator.js +15 -0
  535. package/esm/tendermint/version/types.js +16 -0
  536. package/esm/types.js +1 -1
  537. package/esm/utf8.js +1 -1
  538. package/esm/varint.js +1 -1
  539. package/gogoproto/bundle.js +2 -2
  540. package/google/api/http.d.ts +343 -14
  541. package/google/api/http.js +283 -0
  542. package/google/bundle.d.ts +418 -418
  543. package/google/bundle.js +7 -7
  544. package/google/protobuf/any.d.ts +102 -2
  545. package/google/protobuf/any.js +90 -0
  546. package/google/protobuf/descriptor.d.ts +738 -90
  547. package/google/protobuf/descriptor.js +220 -0
  548. package/google/protobuf/duration.d.ts +69 -0
  549. package/google/protobuf/duration.js +63 -0
  550. package/google/protobuf/timestamp.d.ts +100 -0
  551. package/google/protobuf/timestamp.js +94 -0
  552. package/helpers.d.ts +1 -1
  553. package/helpers.js +1 -1
  554. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  555. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  556. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  557. package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  558. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  559. package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  560. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  561. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  562. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  563. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  564. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  565. package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  566. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  567. package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  568. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  569. package/ibc/applications/interchain_accounts/v1/account.js +6 -0
  570. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  571. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  572. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  573. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  574. package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
  575. package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  576. package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
  577. package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
  578. package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
  579. package/ibc/applications/rate_limiting/v1/query.js +906 -0
  580. package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
  581. package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
  582. package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
  583. package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
  584. package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
  585. package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
  586. package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
  587. package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
  588. package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
  589. package/ibc/applications/rate_limiting/v1/tx.js +729 -0
  590. package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
  591. package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
  592. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
  593. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
  594. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  595. package/ibc/applications/transfer/v1/authz.js +13 -0
  596. package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
  597. package/ibc/applications/transfer/v1/denomtrace.js +8 -0
  598. package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
  599. package/ibc/applications/transfer/v1/genesis.js +6 -0
  600. package/ibc/applications/transfer/v1/packet.d.ts +44 -10
  601. package/ibc/applications/transfer/v1/packet.js +8 -0
  602. package/ibc/applications/transfer/v1/query.d.ts +252 -34
  603. package/ibc/applications/transfer/v1/query.js +78 -0
  604. package/ibc/applications/transfer/v1/token.d.ts +78 -14
  605. package/ibc/applications/transfer/v1/token.js +18 -0
  606. package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
  607. package/ibc/applications/transfer/v1/transfer.js +9 -0
  608. package/ibc/applications/transfer/v1/tx.d.ts +135 -22
  609. package/ibc/applications/transfer/v1/tx.js +40 -1
  610. package/ibc/bundle.d.ts +3830 -3396
  611. package/ibc/bundle.js +196 -173
  612. package/ibc/client.d.ts +20 -5
  613. package/ibc/client.js +4 -1
  614. package/ibc/core/channel/v1/channel.d.ts +292 -60
  615. package/ibc/core/channel/v1/channel.js +64 -0
  616. package/ibc/core/channel/v1/genesis.d.ts +37 -4
  617. package/ibc/core/channel/v1/genesis.js +13 -0
  618. package/ibc/core/channel/v1/query.d.ts +839 -158
  619. package/ibc/core/channel/v1/query.js +197 -0
  620. package/ibc/core/channel/v1/tx.d.ts +335 -30
  621. package/ibc/core/channel/v1/tx.js +129 -0
  622. package/ibc/core/channel/v2/genesis.d.ts +81 -14
  623. package/ibc/core/channel/v2/genesis.js +21 -0
  624. package/ibc/core/channel/v2/packet.d.ts +137 -28
  625. package/ibc/core/channel/v2/packet.js +29 -0
  626. package/ibc/core/channel/v2/query.d.ts +490 -98
  627. package/ibc/core/channel/v2/query.js +100 -0
  628. package/ibc/core/channel/v2/tx.d.ts +144 -16
  629. package/ibc/core/channel/v2/tx.js +48 -0
  630. package/ibc/core/client/v1/client.d.ts +129 -18
  631. package/ibc/core/client/v1/client.js +45 -0
  632. package/ibc/core/client/v1/genesis.d.ts +82 -16
  633. package/ibc/core/client/v1/genesis.js +20 -0
  634. package/ibc/core/client/v1/query.d.ts +508 -74
  635. package/ibc/core/client/v1/query.js +154 -0
  636. package/ibc/core/client/v1/tx.amino.d.ts +1 -6
  637. package/ibc/core/client/v1/tx.amino.js +0 -5
  638. package/ibc/core/client/v1/tx.d.ts +336 -138
  639. package/ibc/core/client/v1/tx.js +87 -152
  640. package/ibc/core/client/v1/tx.registry.d.ts +1 -13
  641. package/ibc/core/client/v1/tx.registry.js +1 -19
  642. package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
  643. package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
  644. package/ibc/core/client/v2/config.d.ts +21 -2
  645. package/ibc/core/client/v2/config.js +9 -0
  646. package/ibc/core/client/v2/counterparty.d.ts +30 -6
  647. package/ibc/core/client/v2/counterparty.js +6 -0
  648. package/ibc/core/client/v2/genesis.d.ts +54 -10
  649. package/ibc/core/client/v2/genesis.js +12 -0
  650. package/ibc/core/client/v2/query.d.ts +74 -8
  651. package/ibc/core/client/v2/query.js +26 -0
  652. package/ibc/core/client/v2/tx.d.ts +108 -20
  653. package/ibc/core/client/v2/tx.js +24 -0
  654. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  655. package/ibc/core/commitment/v1/commitment.js +25 -0
  656. package/ibc/core/commitment/v2/commitment.d.ts +42 -0
  657. package/ibc/core/commitment/v2/commitment.js +36 -0
  658. package/ibc/core/connection/v1/connection.d.ts +197 -36
  659. package/ibc/core/connection/v1/connection.js +47 -0
  660. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  661. package/ibc/core/connection/v1/genesis.js +6 -0
  662. package/ibc/core/connection/v1/query.d.ts +293 -46
  663. package/ibc/core/connection/v1/query.js +83 -0
  664. package/ibc/core/connection/v1/tx.d.ts +250 -56
  665. package/ibc/core/connection/v1/tx.js +66 -0
  666. package/ibc/lcd.d.ts +3 -0
  667. package/ibc/lcd.js +5 -0
  668. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
  669. package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  670. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
  671. package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  672. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
  673. package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  674. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  675. package/ibc/lightclients/wasm/v1/genesis.js +12 -0
  676. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  677. package/ibc/lightclients/wasm/v1/query.js +24 -0
  678. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  679. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  680. package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
  681. package/ibc/lightclients/wasm/v1/wasm.js +19 -74
  682. package/ibc/rpc.query.d.ts +11 -9
  683. package/ibc/rpc.query.js +3 -5
  684. package/ibc/rpc.tx.d.ts +3 -0
  685. package/ibc/rpc.tx.js +3 -0
  686. package/index.d.ts +1 -1
  687. package/index.js +1 -1
  688. package/package.json +1 -1
  689. package/sparkdream/blog/module/v1/module.d.ts +18 -2
  690. package/sparkdream/blog/module/v1/module.js +6 -0
  691. package/sparkdream/blog/v1/genesis.d.ts +24 -4
  692. package/sparkdream/blog/v1/genesis.js +6 -0
  693. package/sparkdream/blog/v1/params.d.ts +18 -2
  694. package/sparkdream/blog/v1/params.js +6 -0
  695. package/sparkdream/blog/v1/post.d.ts +18 -2
  696. package/sparkdream/blog/v1/post.js +6 -0
  697. package/sparkdream/blog/v1/query.d.ts +114 -14
  698. package/sparkdream/blog/v1/query.js +36 -0
  699. package/sparkdream/blog/v1/tx.d.ts +151 -18
  700. package/sparkdream/blog/v1/tx.js +49 -0
  701. package/sparkdream/bundle.d.ts +302 -310
  702. package/sparkdream/bundle.js +41 -41
  703. package/sparkdream/rpc.query.d.ts +1 -9
  704. package/sparkdream/rpc.query.js +0 -5
  705. package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
  706. package/sparkdream/sparkdream/module/v1/module.js +6 -0
  707. package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
  708. package/sparkdream/sparkdream/v1/genesis.js +6 -0
  709. package/sparkdream/sparkdream/v1/params.d.ts +18 -2
  710. package/sparkdream/sparkdream/v1/params.js +6 -0
  711. package/sparkdream/sparkdream/v1/query.d.ts +42 -6
  712. package/sparkdream/sparkdream/v1/query.js +12 -0
  713. package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
  714. package/sparkdream/sparkdream/v1/tx.js +13 -0
  715. package/tendermint/abci/types.d.ts +971 -98
  716. package/tendermint/abci/types.js +255 -0
  717. package/tendermint/bundle.d.ts +844 -844
  718. package/tendermint/bundle.js +18 -18
  719. package/tendermint/crypto/keys.d.ts +18 -2
  720. package/tendermint/crypto/keys.js +6 -0
  721. package/tendermint/crypto/proof.d.ts +89 -6
  722. package/tendermint/crypto/proof.js +29 -0
  723. package/tendermint/p2p/types.d.ts +60 -0
  724. package/tendermint/p2p/types.js +20 -0
  725. package/tendermint/types/block.d.ts +15 -0
  726. package/tendermint/types/block.js +5 -0
  727. package/tendermint/types/evidence.d.ts +66 -4
  728. package/tendermint/types/evidence.js +22 -0
  729. package/tendermint/types/params.d.ts +112 -8
  730. package/tendermint/types/params.js +46 -0
  731. package/tendermint/types/types.d.ts +327 -42
  732. package/tendermint/types/types.js +87 -0
  733. package/tendermint/types/validator.d.ts +45 -0
  734. package/tendermint/types/validator.js +15 -0
  735. package/tendermint/version/types.d.ts +28 -0
  736. package/tendermint/version/types.js +16 -0
  737. package/types.d.ts +1 -1
  738. package/types.js +1 -1
  739. package/utf8.d.ts +1 -1
  740. package/utf8.js +1 -1
  741. package/varint.d.ts +1 -1
  742. package/varint.js +1 -1
  743. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
  744. package/cosmos/orm/module/v1alpha1/module.js +0 -62
  745. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
  746. package/cosmos/orm/query/v1alpha1/query.js +0 -695
  747. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  748. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  749. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
  750. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
  751. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
@@ -324,6 +324,9 @@ export declare function symbolVisibilityToJSON(object: SymbolVisibility): string
324
324
  /**
325
325
  * The protocol compiler can output a FileDescriptorSet containing the .proto
326
326
  * files it parses.
327
+ * @name FileDescriptorSet
328
+ * @package google.protobuf
329
+ * @see proto type: google.protobuf.FileDescriptorSet
327
330
  */
328
331
  export interface FileDescriptorSet {
329
332
  file: FileDescriptorProto[];
@@ -335,6 +338,9 @@ export interface FileDescriptorSetProtoMsg {
335
338
  /**
336
339
  * The protocol compiler can output a FileDescriptorSet containing the .proto
337
340
  * files it parses.
341
+ * @name FileDescriptorSetAmino
342
+ * @package google.protobuf
343
+ * @see proto type: google.protobuf.FileDescriptorSet
338
344
  */
339
345
  export interface FileDescriptorSetAmino {
340
346
  file?: FileDescriptorProtoAmino[];
@@ -343,15 +349,28 @@ export interface FileDescriptorSetAminoMsg {
343
349
  type: "/google.protobuf.FileDescriptorSet";
344
350
  value: FileDescriptorSetAmino;
345
351
  }
346
- /** Describes a complete .proto file. */
352
+ /**
353
+ * Describes a complete .proto file.
354
+ * @name FileDescriptorProto
355
+ * @package google.protobuf
356
+ * @see proto type: google.protobuf.FileDescriptorProto
357
+ */
347
358
  export interface FileDescriptorProto {
348
- /** file name, relative to root of source tree */
359
+ /**
360
+ * file name, relative to root of source tree
361
+ */
349
362
  name: string;
350
- /** e.g. "foo", "foo.bar", etc. */
363
+ /**
364
+ * e.g. "foo", "foo.bar", etc.
365
+ */
351
366
  package: string;
352
- /** Names of files imported by this file. */
367
+ /**
368
+ * Names of files imported by this file.
369
+ */
353
370
  dependency: string[];
354
- /** Indexes of the public imported files in the dependency list above. */
371
+ /**
372
+ * Indexes of the public imported files in the dependency list above.
373
+ */
355
374
  publicDependency: number[];
356
375
  /**
357
376
  * Indexes of the weak imported files in the dependency list.
@@ -363,7 +382,9 @@ export interface FileDescriptorProto {
363
382
  * option extensions. These are excluded from the dependency list above.
364
383
  */
365
384
  optionDependency: string[];
366
- /** All top-level definitions in this file. */
385
+ /**
386
+ * All top-level definitions in this file.
387
+ */
367
388
  messageType: DescriptorProto[];
368
389
  enumType: EnumDescriptorProto[];
369
390
  service: ServiceDescriptorProto[];
@@ -398,15 +419,28 @@ export interface FileDescriptorProtoProtoMsg {
398
419
  typeUrl: "/google.protobuf.FileDescriptorProto";
399
420
  value: Uint8Array;
400
421
  }
401
- /** Describes a complete .proto file. */
422
+ /**
423
+ * Describes a complete .proto file.
424
+ * @name FileDescriptorProtoAmino
425
+ * @package google.protobuf
426
+ * @see proto type: google.protobuf.FileDescriptorProto
427
+ */
402
428
  export interface FileDescriptorProtoAmino {
403
- /** file name, relative to root of source tree */
429
+ /**
430
+ * file name, relative to root of source tree
431
+ */
404
432
  name?: string;
405
- /** e.g. "foo", "foo.bar", etc. */
433
+ /**
434
+ * e.g. "foo", "foo.bar", etc.
435
+ */
406
436
  package?: string;
407
- /** Names of files imported by this file. */
437
+ /**
438
+ * Names of files imported by this file.
439
+ */
408
440
  dependency?: string[];
409
- /** Indexes of the public imported files in the dependency list above. */
441
+ /**
442
+ * Indexes of the public imported files in the dependency list above.
443
+ */
410
444
  public_dependency?: number[];
411
445
  /**
412
446
  * Indexes of the weak imported files in the dependency list.
@@ -418,7 +452,9 @@ export interface FileDescriptorProtoAmino {
418
452
  * option extensions. These are excluded from the dependency list above.
419
453
  */
420
454
  option_dependency?: string[];
421
- /** All top-level definitions in this file. */
455
+ /**
456
+ * All top-level definitions in this file.
457
+ */
422
458
  message_type?: DescriptorProtoAmino[];
423
459
  enum_type?: EnumDescriptorProtoAmino[];
424
460
  service?: ServiceDescriptorProtoAmino[];
@@ -453,7 +489,12 @@ export interface FileDescriptorProtoAminoMsg {
453
489
  type: "/google.protobuf.FileDescriptorProto";
454
490
  value: FileDescriptorProtoAmino;
455
491
  }
456
- /** Describes a message type. */
492
+ /**
493
+ * Describes a message type.
494
+ * @name DescriptorProto
495
+ * @package google.protobuf
496
+ * @see proto type: google.protobuf.DescriptorProto
497
+ */
457
498
  export interface DescriptorProto {
458
499
  name: string;
459
500
  field: FieldDescriptorProto[];
@@ -469,14 +510,21 @@ export interface DescriptorProto {
469
510
  * A given name may only be reserved once.
470
511
  */
471
512
  reservedName: string[];
472
- /** Support for `export` and `local` keywords on enums. */
513
+ /**
514
+ * Support for `export` and `local` keywords on enums.
515
+ */
473
516
  visibility: SymbolVisibility;
474
517
  }
475
518
  export interface DescriptorProtoProtoMsg {
476
519
  typeUrl: "/google.protobuf.DescriptorProto";
477
520
  value: Uint8Array;
478
521
  }
479
- /** Describes a message type. */
522
+ /**
523
+ * Describes a message type.
524
+ * @name DescriptorProtoAmino
525
+ * @package google.protobuf
526
+ * @see proto type: google.protobuf.DescriptorProto
527
+ */
480
528
  export interface DescriptorProtoAmino {
481
529
  name?: string;
482
530
  field?: FieldDescriptorProtoAmino[];
@@ -492,17 +540,28 @@ export interface DescriptorProtoAmino {
492
540
  * A given name may only be reserved once.
493
541
  */
494
542
  reserved_name?: string[];
495
- /** Support for `export` and `local` keywords on enums. */
543
+ /**
544
+ * Support for `export` and `local` keywords on enums.
545
+ */
496
546
  visibility?: SymbolVisibility;
497
547
  }
498
548
  export interface DescriptorProtoAminoMsg {
499
549
  type: "/google.protobuf.DescriptorProto";
500
550
  value: DescriptorProtoAmino;
501
551
  }
552
+ /**
553
+ * @name DescriptorProto_ExtensionRange
554
+ * @package google.protobuf
555
+ * @see proto type: google.protobuf.ExtensionRange
556
+ */
502
557
  export interface DescriptorProto_ExtensionRange {
503
- /** Inclusive. */
558
+ /**
559
+ * Inclusive.
560
+ */
504
561
  start: number;
505
- /** Exclusive. */
562
+ /**
563
+ * Exclusive.
564
+ */
506
565
  end: number;
507
566
  options?: ExtensionRangeOptions;
508
567
  }
@@ -510,10 +569,19 @@ export interface DescriptorProto_ExtensionRangeProtoMsg {
510
569
  typeUrl: "/google.protobuf.ExtensionRange";
511
570
  value: Uint8Array;
512
571
  }
572
+ /**
573
+ * @name DescriptorProto_ExtensionRangeAmino
574
+ * @package google.protobuf
575
+ * @see proto type: google.protobuf.DescriptorProto_ExtensionRange
576
+ */
513
577
  export interface DescriptorProto_ExtensionRangeAmino {
514
- /** Inclusive. */
578
+ /**
579
+ * Inclusive.
580
+ */
515
581
  start?: number;
516
- /** Exclusive. */
582
+ /**
583
+ * Exclusive.
584
+ */
517
585
  end?: number;
518
586
  options?: ExtensionRangeOptionsAmino;
519
587
  }
@@ -525,11 +593,18 @@ export interface DescriptorProto_ExtensionRangeAminoMsg {
525
593
  * Range of reserved tag numbers. Reserved tag numbers may not be used by
526
594
  * fields or extension ranges in the same message. Reserved ranges may
527
595
  * not overlap.
596
+ * @name DescriptorProto_ReservedRange
597
+ * @package google.protobuf
598
+ * @see proto type: google.protobuf.ReservedRange
528
599
  */
529
600
  export interface DescriptorProto_ReservedRange {
530
- /** Inclusive. */
601
+ /**
602
+ * Inclusive.
603
+ */
531
604
  start: number;
532
- /** Exclusive. */
605
+ /**
606
+ * Exclusive.
607
+ */
533
608
  end: number;
534
609
  }
535
610
  export interface DescriptorProto_ReservedRangeProtoMsg {
@@ -540,19 +615,33 @@ export interface DescriptorProto_ReservedRangeProtoMsg {
540
615
  * Range of reserved tag numbers. Reserved tag numbers may not be used by
541
616
  * fields or extension ranges in the same message. Reserved ranges may
542
617
  * not overlap.
618
+ * @name DescriptorProto_ReservedRangeAmino
619
+ * @package google.protobuf
620
+ * @see proto type: google.protobuf.DescriptorProto_ReservedRange
543
621
  */
544
622
  export interface DescriptorProto_ReservedRangeAmino {
545
- /** Inclusive. */
623
+ /**
624
+ * Inclusive.
625
+ */
546
626
  start?: number;
547
- /** Exclusive. */
627
+ /**
628
+ * Exclusive.
629
+ */
548
630
  end?: number;
549
631
  }
550
632
  export interface DescriptorProto_ReservedRangeAminoMsg {
551
633
  type: "/google.protobuf.ReservedRange";
552
634
  value: DescriptorProto_ReservedRangeAmino;
553
635
  }
636
+ /**
637
+ * @name ExtensionRangeOptions
638
+ * @package google.protobuf
639
+ * @see proto type: google.protobuf.ExtensionRangeOptions
640
+ */
554
641
  export interface ExtensionRangeOptions {
555
- /** The parser stores options it doesn't recognize here. See above. */
642
+ /**
643
+ * The parser stores options it doesn't recognize here. See above.
644
+ */
556
645
  uninterpretedOption: UninterpretedOption[];
557
646
  /**
558
647
  * For external users: DO NOT USE. We are in the process of open sourcing
@@ -560,7 +649,9 @@ export interface ExtensionRangeOptions {
560
649
  * used externally.
561
650
  */
562
651
  declaration: ExtensionRangeOptions_Declaration[];
563
- /** Any features defined in the specific edition. */
652
+ /**
653
+ * Any features defined in the specific edition.
654
+ */
564
655
  features?: FeatureSet;
565
656
  /**
566
657
  * The verification state of the range.
@@ -573,8 +664,15 @@ export interface ExtensionRangeOptionsProtoMsg {
573
664
  typeUrl: "/google.protobuf.ExtensionRangeOptions";
574
665
  value: Uint8Array;
575
666
  }
667
+ /**
668
+ * @name ExtensionRangeOptionsAmino
669
+ * @package google.protobuf
670
+ * @see proto type: google.protobuf.ExtensionRangeOptions
671
+ */
576
672
  export interface ExtensionRangeOptionsAmino {
577
- /** The parser stores options it doesn't recognize here. See above. */
673
+ /**
674
+ * The parser stores options it doesn't recognize here. See above.
675
+ */
578
676
  uninterpreted_option?: UninterpretedOptionAmino[];
579
677
  /**
580
678
  * For external users: DO NOT USE. We are in the process of open sourcing
@@ -582,7 +680,9 @@ export interface ExtensionRangeOptionsAmino {
582
680
  * used externally.
583
681
  */
584
682
  declaration?: ExtensionRangeOptions_DeclarationAmino[];
585
- /** Any features defined in the specific edition. */
683
+ /**
684
+ * Any features defined in the specific edition.
685
+ */
586
686
  features?: FeatureSetAmino;
587
687
  /**
588
688
  * The verification state of the range.
@@ -595,8 +695,15 @@ export interface ExtensionRangeOptionsAminoMsg {
595
695
  type: "/google.protobuf.ExtensionRangeOptions";
596
696
  value: ExtensionRangeOptionsAmino;
597
697
  }
698
+ /**
699
+ * @name ExtensionRangeOptions_Declaration
700
+ * @package google.protobuf
701
+ * @see proto type: google.protobuf.Declaration
702
+ */
598
703
  export interface ExtensionRangeOptions_Declaration {
599
- /** The extension number declared within the extension range. */
704
+ /**
705
+ * The extension number declared within the extension range.
706
+ */
600
707
  number: number;
601
708
  /**
602
709
  * The fully-qualified name of the extension field. There must be a leading
@@ -625,8 +732,15 @@ export interface ExtensionRangeOptions_DeclarationProtoMsg {
625
732
  typeUrl: "/google.protobuf.Declaration";
626
733
  value: Uint8Array;
627
734
  }
735
+ /**
736
+ * @name ExtensionRangeOptions_DeclarationAmino
737
+ * @package google.protobuf
738
+ * @see proto type: google.protobuf.ExtensionRangeOptions_Declaration
739
+ */
628
740
  export interface ExtensionRangeOptions_DeclarationAmino {
629
- /** The extension number declared within the extension range. */
741
+ /**
742
+ * The extension number declared within the extension range.
743
+ */
630
744
  number?: number;
631
745
  /**
632
746
  * The fully-qualified name of the extension field. There must be a leading
@@ -655,7 +769,12 @@ export interface ExtensionRangeOptions_DeclarationAminoMsg {
655
769
  type: "/google.protobuf.Declaration";
656
770
  value: ExtensionRangeOptions_DeclarationAmino;
657
771
  }
658
- /** Describes a field within a message. */
772
+ /**
773
+ * Describes a field within a message.
774
+ * @name FieldDescriptorProto
775
+ * @package google.protobuf
776
+ * @see proto type: google.protobuf.FieldDescriptorProto
777
+ */
659
778
  export interface FieldDescriptorProto {
660
779
  name: string;
661
780
  number: number;
@@ -727,7 +846,12 @@ export interface FieldDescriptorProtoProtoMsg {
727
846
  typeUrl: "/google.protobuf.FieldDescriptorProto";
728
847
  value: Uint8Array;
729
848
  }
730
- /** Describes a field within a message. */
849
+ /**
850
+ * Describes a field within a message.
851
+ * @name FieldDescriptorProtoAmino
852
+ * @package google.protobuf
853
+ * @see proto type: google.protobuf.FieldDescriptorProto
854
+ */
731
855
  export interface FieldDescriptorProtoAmino {
732
856
  name?: string;
733
857
  number?: number;
@@ -799,7 +923,12 @@ export interface FieldDescriptorProtoAminoMsg {
799
923
  type: "/google.protobuf.FieldDescriptorProto";
800
924
  value: FieldDescriptorProtoAmino;
801
925
  }
802
- /** Describes a oneof. */
926
+ /**
927
+ * Describes a oneof.
928
+ * @name OneofDescriptorProto
929
+ * @package google.protobuf
930
+ * @see proto type: google.protobuf.OneofDescriptorProto
931
+ */
803
932
  export interface OneofDescriptorProto {
804
933
  name: string;
805
934
  options?: OneofOptions;
@@ -808,7 +937,12 @@ export interface OneofDescriptorProtoProtoMsg {
808
937
  typeUrl: "/google.protobuf.OneofDescriptorProto";
809
938
  value: Uint8Array;
810
939
  }
811
- /** Describes a oneof. */
940
+ /**
941
+ * Describes a oneof.
942
+ * @name OneofDescriptorProtoAmino
943
+ * @package google.protobuf
944
+ * @see proto type: google.protobuf.OneofDescriptorProto
945
+ */
812
946
  export interface OneofDescriptorProtoAmino {
813
947
  name?: string;
814
948
  options?: OneofOptionsAmino;
@@ -817,7 +951,12 @@ export interface OneofDescriptorProtoAminoMsg {
817
951
  type: "/google.protobuf.OneofDescriptorProto";
818
952
  value: OneofDescriptorProtoAmino;
819
953
  }
820
- /** Describes an enum type. */
954
+ /**
955
+ * Describes an enum type.
956
+ * @name EnumDescriptorProto
957
+ * @package google.protobuf
958
+ * @see proto type: google.protobuf.EnumDescriptorProto
959
+ */
821
960
  export interface EnumDescriptorProto {
822
961
  name: string;
823
962
  value: EnumValueDescriptorProto[];
@@ -833,14 +972,21 @@ export interface EnumDescriptorProto {
833
972
  * be reserved once.
834
973
  */
835
974
  reservedName: string[];
836
- /** Support for `export` and `local` keywords on enums. */
975
+ /**
976
+ * Support for `export` and `local` keywords on enums.
977
+ */
837
978
  visibility: SymbolVisibility;
838
979
  }
839
980
  export interface EnumDescriptorProtoProtoMsg {
840
981
  typeUrl: "/google.protobuf.EnumDescriptorProto";
841
982
  value: Uint8Array;
842
983
  }
843
- /** Describes an enum type. */
984
+ /**
985
+ * Describes an enum type.
986
+ * @name EnumDescriptorProtoAmino
987
+ * @package google.protobuf
988
+ * @see proto type: google.protobuf.EnumDescriptorProto
989
+ */
844
990
  export interface EnumDescriptorProtoAmino {
845
991
  name?: string;
846
992
  value?: EnumValueDescriptorProtoAmino[];
@@ -856,7 +1002,9 @@ export interface EnumDescriptorProtoAmino {
856
1002
  * be reserved once.
857
1003
  */
858
1004
  reserved_name?: string[];
859
- /** Support for `export` and `local` keywords on enums. */
1005
+ /**
1006
+ * Support for `export` and `local` keywords on enums.
1007
+ */
860
1008
  visibility?: SymbolVisibility;
861
1009
  }
862
1010
  export interface EnumDescriptorProtoAminoMsg {
@@ -870,11 +1018,18 @@ export interface EnumDescriptorProtoAminoMsg {
870
1018
  * Note that this is distinct from DescriptorProto.ReservedRange in that it
871
1019
  * is inclusive such that it can appropriately represent the entire int32
872
1020
  * domain.
1021
+ * @name EnumDescriptorProto_EnumReservedRange
1022
+ * @package google.protobuf
1023
+ * @see proto type: google.protobuf.EnumReservedRange
873
1024
  */
874
1025
  export interface EnumDescriptorProto_EnumReservedRange {
875
- /** Inclusive. */
1026
+ /**
1027
+ * Inclusive.
1028
+ */
876
1029
  start: number;
877
- /** Inclusive. */
1030
+ /**
1031
+ * Inclusive.
1032
+ */
878
1033
  end: number;
879
1034
  }
880
1035
  export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
@@ -888,18 +1043,30 @@ export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
888
1043
  * Note that this is distinct from DescriptorProto.ReservedRange in that it
889
1044
  * is inclusive such that it can appropriately represent the entire int32
890
1045
  * domain.
1046
+ * @name EnumDescriptorProto_EnumReservedRangeAmino
1047
+ * @package google.protobuf
1048
+ * @see proto type: google.protobuf.EnumDescriptorProto_EnumReservedRange
891
1049
  */
892
1050
  export interface EnumDescriptorProto_EnumReservedRangeAmino {
893
- /** Inclusive. */
1051
+ /**
1052
+ * Inclusive.
1053
+ */
894
1054
  start?: number;
895
- /** Inclusive. */
1055
+ /**
1056
+ * Inclusive.
1057
+ */
896
1058
  end?: number;
897
1059
  }
898
1060
  export interface EnumDescriptorProto_EnumReservedRangeAminoMsg {
899
1061
  type: "/google.protobuf.EnumReservedRange";
900
1062
  value: EnumDescriptorProto_EnumReservedRangeAmino;
901
1063
  }
902
- /** Describes a value within an enum. */
1064
+ /**
1065
+ * Describes a value within an enum.
1066
+ * @name EnumValueDescriptorProto
1067
+ * @package google.protobuf
1068
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
1069
+ */
903
1070
  export interface EnumValueDescriptorProto {
904
1071
  name: string;
905
1072
  number: number;
@@ -909,7 +1076,12 @@ export interface EnumValueDescriptorProtoProtoMsg {
909
1076
  typeUrl: "/google.protobuf.EnumValueDescriptorProto";
910
1077
  value: Uint8Array;
911
1078
  }
912
- /** Describes a value within an enum. */
1079
+ /**
1080
+ * Describes a value within an enum.
1081
+ * @name EnumValueDescriptorProtoAmino
1082
+ * @package google.protobuf
1083
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
1084
+ */
913
1085
  export interface EnumValueDescriptorProtoAmino {
914
1086
  name?: string;
915
1087
  number?: number;
@@ -919,7 +1091,12 @@ export interface EnumValueDescriptorProtoAminoMsg {
919
1091
  type: "/google.protobuf.EnumValueDescriptorProto";
920
1092
  value: EnumValueDescriptorProtoAmino;
921
1093
  }
922
- /** Describes a service. */
1094
+ /**
1095
+ * Describes a service.
1096
+ * @name ServiceDescriptorProto
1097
+ * @package google.protobuf
1098
+ * @see proto type: google.protobuf.ServiceDescriptorProto
1099
+ */
923
1100
  export interface ServiceDescriptorProto {
924
1101
  name: string;
925
1102
  method: MethodDescriptorProto[];
@@ -929,7 +1106,12 @@ export interface ServiceDescriptorProtoProtoMsg {
929
1106
  typeUrl: "/google.protobuf.ServiceDescriptorProto";
930
1107
  value: Uint8Array;
931
1108
  }
932
- /** Describes a service. */
1109
+ /**
1110
+ * Describes a service.
1111
+ * @name ServiceDescriptorProtoAmino
1112
+ * @package google.protobuf
1113
+ * @see proto type: google.protobuf.ServiceDescriptorProto
1114
+ */
933
1115
  export interface ServiceDescriptorProtoAmino {
934
1116
  name?: string;
935
1117
  method?: MethodDescriptorProtoAmino[];
@@ -939,7 +1121,12 @@ export interface ServiceDescriptorProtoAminoMsg {
939
1121
  type: "/google.protobuf.ServiceDescriptorProto";
940
1122
  value: ServiceDescriptorProtoAmino;
941
1123
  }
942
- /** Describes a method of a service. */
1124
+ /**
1125
+ * Describes a method of a service.
1126
+ * @name MethodDescriptorProto
1127
+ * @package google.protobuf
1128
+ * @see proto type: google.protobuf.MethodDescriptorProto
1129
+ */
943
1130
  export interface MethodDescriptorProto {
944
1131
  name: string;
945
1132
  /**
@@ -949,16 +1136,25 @@ export interface MethodDescriptorProto {
949
1136
  inputType: string;
950
1137
  outputType: string;
951
1138
  options?: MethodOptions;
952
- /** Identifies if client streams multiple client messages */
1139
+ /**
1140
+ * Identifies if client streams multiple client messages
1141
+ */
953
1142
  clientStreaming: boolean;
954
- /** Identifies if server streams multiple server messages */
1143
+ /**
1144
+ * Identifies if server streams multiple server messages
1145
+ */
955
1146
  serverStreaming: boolean;
956
1147
  }
957
1148
  export interface MethodDescriptorProtoProtoMsg {
958
1149
  typeUrl: "/google.protobuf.MethodDescriptorProto";
959
1150
  value: Uint8Array;
960
1151
  }
961
- /** Describes a method of a service. */
1152
+ /**
1153
+ * Describes a method of a service.
1154
+ * @name MethodDescriptorProtoAmino
1155
+ * @package google.protobuf
1156
+ * @see proto type: google.protobuf.MethodDescriptorProto
1157
+ */
962
1158
  export interface MethodDescriptorProtoAmino {
963
1159
  name?: string;
964
1160
  /**
@@ -968,15 +1164,24 @@ export interface MethodDescriptorProtoAmino {
968
1164
  input_type?: string;
969
1165
  output_type?: string;
970
1166
  options?: MethodOptionsAmino;
971
- /** Identifies if client streams multiple client messages */
1167
+ /**
1168
+ * Identifies if client streams multiple client messages
1169
+ */
972
1170
  client_streaming?: boolean;
973
- /** Identifies if server streams multiple server messages */
1171
+ /**
1172
+ * Identifies if server streams multiple server messages
1173
+ */
974
1174
  server_streaming?: boolean;
975
1175
  }
976
1176
  export interface MethodDescriptorProtoAminoMsg {
977
1177
  type: "/google.protobuf.MethodDescriptorProto";
978
1178
  value: MethodDescriptorProtoAmino;
979
1179
  }
1180
+ /**
1181
+ * @name FileOptions
1182
+ * @package google.protobuf
1183
+ * @see proto type: google.protobuf.FileOptions
1184
+ */
980
1185
  export interface FileOptions {
981
1186
  /**
982
1187
  * Sets the Java package where classes generated from this .proto will be
@@ -1002,8 +1207,10 @@ export interface FileOptions {
1002
1207
  * top-level extensions defined in the file.
1003
1208
  */
1004
1209
  javaMultipleFiles: boolean;
1005
- /** This option does nothing. */
1006
- /** @deprecated */
1210
+ /**
1211
+ * This option does nothing.
1212
+ * @deprecated
1213
+ */
1007
1214
  javaGenerateEqualsAndHash: boolean;
1008
1215
  /**
1009
1216
  * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
@@ -1059,7 +1266,9 @@ export interface FileOptions {
1059
1266
  * generated classes from this .proto. There is no default.
1060
1267
  */
1061
1268
  objcClassPrefix: string;
1062
- /** Namespace for generated classes; defaults to the package. */
1269
+ /**
1270
+ * Namespace for generated classes; defaults to the package.
1271
+ */
1063
1272
  csharpNamespace: string;
1064
1273
  /**
1065
1274
  * By default Swift generators will take the proto package and CamelCase it
@@ -1108,6 +1317,11 @@ export interface FileOptionsProtoMsg {
1108
1317
  typeUrl: "/google.protobuf.FileOptions";
1109
1318
  value: Uint8Array;
1110
1319
  }
1320
+ /**
1321
+ * @name FileOptionsAmino
1322
+ * @package google.protobuf
1323
+ * @see proto type: google.protobuf.FileOptions
1324
+ */
1111
1325
  export interface FileOptionsAmino {
1112
1326
  /**
1113
1327
  * Sets the Java package where classes generated from this .proto will be
@@ -1133,8 +1347,10 @@ export interface FileOptionsAmino {
1133
1347
  * top-level extensions defined in the file.
1134
1348
  */
1135
1349
  java_multiple_files?: boolean;
1136
- /** This option does nothing. */
1137
- /** @deprecated */
1350
+ /**
1351
+ * This option does nothing.
1352
+ * @deprecated
1353
+ */
1138
1354
  java_generate_equals_and_hash?: boolean;
1139
1355
  /**
1140
1356
  * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
@@ -1190,7 +1406,9 @@ export interface FileOptionsAmino {
1190
1406
  * generated classes from this .proto. There is no default.
1191
1407
  */
1192
1408
  objc_class_prefix?: string;
1193
- /** Namespace for generated classes; defaults to the package. */
1409
+ /**
1410
+ * Namespace for generated classes; defaults to the package.
1411
+ */
1194
1412
  csharp_namespace?: string;
1195
1413
  /**
1196
1414
  * By default Swift generators will take the proto package and CamelCase it
@@ -1239,6 +1457,11 @@ export interface FileOptionsAminoMsg {
1239
1457
  type: "/google.protobuf.FileOptions";
1240
1458
  value: FileOptionsAmino;
1241
1459
  }
1460
+ /**
1461
+ * @name MessageOptions
1462
+ * @package google.protobuf
1463
+ * @see proto type: google.protobuf.MessageOptions
1464
+ */
1242
1465
  export interface MessageOptions {
1243
1466
  /**
1244
1467
  * Set true to use the old proto1 MessageSet wire format for extensions.
@@ -1309,8 +1532,8 @@ export interface MessageOptions {
1309
1532
  *
1310
1533
  * TODO This is legacy behavior we plan to remove once downstream
1311
1534
  * teams have had time to migrate.
1535
+ * @deprecated
1312
1536
  */
1313
- /** @deprecated */
1314
1537
  deprecatedLegacyJsonFieldConflicts: boolean;
1315
1538
  /**
1316
1539
  * Any features defined in the specific edition.
@@ -1319,13 +1542,20 @@ export interface MessageOptions {
1319
1542
  * developers should rely on the protoreflect APIs for their client language.
1320
1543
  */
1321
1544
  features?: FeatureSet;
1322
- /** The parser stores options it doesn't recognize here. See above. */
1545
+ /**
1546
+ * The parser stores options it doesn't recognize here. See above.
1547
+ */
1323
1548
  uninterpretedOption: UninterpretedOption[];
1324
1549
  }
1325
1550
  export interface MessageOptionsProtoMsg {
1326
1551
  typeUrl: "/google.protobuf.MessageOptions";
1327
1552
  value: Uint8Array;
1328
1553
  }
1554
+ /**
1555
+ * @name MessageOptionsAmino
1556
+ * @package google.protobuf
1557
+ * @see proto type: google.protobuf.MessageOptions
1558
+ */
1329
1559
  export interface MessageOptionsAmino {
1330
1560
  /**
1331
1561
  * Set true to use the old proto1 MessageSet wire format for extensions.
@@ -1396,8 +1626,8 @@ export interface MessageOptionsAmino {
1396
1626
  *
1397
1627
  * TODO This is legacy behavior we plan to remove once downstream
1398
1628
  * teams have had time to migrate.
1629
+ * @deprecated
1399
1630
  */
1400
- /** @deprecated */
1401
1631
  deprecated_legacy_json_field_conflicts?: boolean;
1402
1632
  /**
1403
1633
  * Any features defined in the specific edition.
@@ -1406,13 +1636,20 @@ export interface MessageOptionsAmino {
1406
1636
  * developers should rely on the protoreflect APIs for their client language.
1407
1637
  */
1408
1638
  features?: FeatureSetAmino;
1409
- /** The parser stores options it doesn't recognize here. See above. */
1639
+ /**
1640
+ * The parser stores options it doesn't recognize here. See above.
1641
+ */
1410
1642
  uninterpreted_option?: UninterpretedOptionAmino[];
1411
1643
  }
1412
1644
  export interface MessageOptionsAminoMsg {
1413
1645
  type: "/google.protobuf.MessageOptions";
1414
1646
  value: MessageOptionsAmino;
1415
1647
  }
1648
+ /**
1649
+ * @name FieldOptions
1650
+ * @package google.protobuf
1651
+ * @see proto type: google.protobuf.FieldOptions
1652
+ */
1416
1653
  export interface FieldOptions {
1417
1654
  /**
1418
1655
  * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
@@ -1489,8 +1726,8 @@ export interface FieldOptions {
1489
1726
  /**
1490
1727
  * DEPRECATED. DO NOT USE!
1491
1728
  * For Google-internal migration only. Do not use.
1729
+ * @deprecated
1492
1730
  */
1493
- /** @deprecated */
1494
1731
  weak: boolean;
1495
1732
  /**
1496
1733
  * Indicate that the field value should not be printed out when using debug
@@ -1508,13 +1745,20 @@ export interface FieldOptions {
1508
1745
  */
1509
1746
  features?: FeatureSet;
1510
1747
  featureSupport?: FieldOptions_FeatureSupport;
1511
- /** The parser stores options it doesn't recognize here. See above. */
1748
+ /**
1749
+ * The parser stores options it doesn't recognize here. See above.
1750
+ */
1512
1751
  uninterpretedOption: UninterpretedOption[];
1513
1752
  }
1514
1753
  export interface FieldOptionsProtoMsg {
1515
1754
  typeUrl: "/google.protobuf.FieldOptions";
1516
1755
  value: Uint8Array;
1517
1756
  }
1757
+ /**
1758
+ * @name FieldOptionsAmino
1759
+ * @package google.protobuf
1760
+ * @see proto type: google.protobuf.FieldOptions
1761
+ */
1518
1762
  export interface FieldOptionsAmino {
1519
1763
  /**
1520
1764
  * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
@@ -1591,8 +1835,8 @@ export interface FieldOptionsAmino {
1591
1835
  /**
1592
1836
  * DEPRECATED. DO NOT USE!
1593
1837
  * For Google-internal migration only. Do not use.
1838
+ * @deprecated
1594
1839
  */
1595
- /** @deprecated */
1596
1840
  weak?: boolean;
1597
1841
  /**
1598
1842
  * Indicate that the field value should not be printed out when using debug
@@ -1610,32 +1854,53 @@ export interface FieldOptionsAmino {
1610
1854
  */
1611
1855
  features?: FeatureSetAmino;
1612
1856
  feature_support?: FieldOptions_FeatureSupportAmino;
1613
- /** The parser stores options it doesn't recognize here. See above. */
1857
+ /**
1858
+ * The parser stores options it doesn't recognize here. See above.
1859
+ */
1614
1860
  uninterpreted_option?: UninterpretedOptionAmino[];
1615
1861
  }
1616
1862
  export interface FieldOptionsAminoMsg {
1617
1863
  type: "/google.protobuf.FieldOptions";
1618
1864
  value: FieldOptionsAmino;
1619
1865
  }
1866
+ /**
1867
+ * @name FieldOptions_EditionDefault
1868
+ * @package google.protobuf
1869
+ * @see proto type: google.protobuf.EditionDefault
1870
+ */
1620
1871
  export interface FieldOptions_EditionDefault {
1621
1872
  edition: Edition;
1622
- /** Textproto value. */
1873
+ /**
1874
+ * Textproto value.
1875
+ */
1623
1876
  value: string;
1624
1877
  }
1625
1878
  export interface FieldOptions_EditionDefaultProtoMsg {
1626
1879
  typeUrl: "/google.protobuf.EditionDefault";
1627
1880
  value: Uint8Array;
1628
1881
  }
1882
+ /**
1883
+ * @name FieldOptions_EditionDefaultAmino
1884
+ * @package google.protobuf
1885
+ * @see proto type: google.protobuf.FieldOptions_EditionDefault
1886
+ */
1629
1887
  export interface FieldOptions_EditionDefaultAmino {
1630
1888
  edition?: Edition;
1631
- /** Textproto value. */
1889
+ /**
1890
+ * Textproto value.
1891
+ */
1632
1892
  value?: string;
1633
1893
  }
1634
1894
  export interface FieldOptions_EditionDefaultAminoMsg {
1635
1895
  type: "/google.protobuf.EditionDefault";
1636
1896
  value: FieldOptions_EditionDefaultAmino;
1637
1897
  }
1638
- /** Information about the support window of a feature. */
1898
+ /**
1899
+ * Information about the support window of a feature.
1900
+ * @name FieldOptions_FeatureSupport
1901
+ * @package google.protobuf
1902
+ * @see proto type: google.protobuf.FeatureSupport
1903
+ */
1639
1904
  export interface FieldOptions_FeatureSupport {
1640
1905
  /**
1641
1906
  * The edition that this feature was first available in. In editions
@@ -1664,7 +1929,12 @@ export interface FieldOptions_FeatureSupportProtoMsg {
1664
1929
  typeUrl: "/google.protobuf.FeatureSupport";
1665
1930
  value: Uint8Array;
1666
1931
  }
1667
- /** Information about the support window of a feature. */
1932
+ /**
1933
+ * Information about the support window of a feature.
1934
+ * @name FieldOptions_FeatureSupportAmino
1935
+ * @package google.protobuf
1936
+ * @see proto type: google.protobuf.FieldOptions_FeatureSupport
1937
+ */
1668
1938
  export interface FieldOptions_FeatureSupportAmino {
1669
1939
  /**
1670
1940
  * The edition that this feature was first available in. In editions
@@ -1693,6 +1963,11 @@ export interface FieldOptions_FeatureSupportAminoMsg {
1693
1963
  type: "/google.protobuf.FeatureSupport";
1694
1964
  value: FieldOptions_FeatureSupportAmino;
1695
1965
  }
1966
+ /**
1967
+ * @name OneofOptions
1968
+ * @package google.protobuf
1969
+ * @see proto type: google.protobuf.OneofOptions
1970
+ */
1696
1971
  export interface OneofOptions {
1697
1972
  /**
1698
1973
  * Any features defined in the specific edition.
@@ -1701,13 +1976,20 @@ export interface OneofOptions {
1701
1976
  * developers should rely on the protoreflect APIs for their client language.
1702
1977
  */
1703
1978
  features?: FeatureSet;
1704
- /** The parser stores options it doesn't recognize here. See above. */
1979
+ /**
1980
+ * The parser stores options it doesn't recognize here. See above.
1981
+ */
1705
1982
  uninterpretedOption: UninterpretedOption[];
1706
1983
  }
1707
1984
  export interface OneofOptionsProtoMsg {
1708
1985
  typeUrl: "/google.protobuf.OneofOptions";
1709
1986
  value: Uint8Array;
1710
1987
  }
1988
+ /**
1989
+ * @name OneofOptionsAmino
1990
+ * @package google.protobuf
1991
+ * @see proto type: google.protobuf.OneofOptions
1992
+ */
1711
1993
  export interface OneofOptionsAmino {
1712
1994
  /**
1713
1995
  * Any features defined in the specific edition.
@@ -1716,13 +1998,20 @@ export interface OneofOptionsAmino {
1716
1998
  * developers should rely on the protoreflect APIs for their client language.
1717
1999
  */
1718
2000
  features?: FeatureSetAmino;
1719
- /** The parser stores options it doesn't recognize here. See above. */
2001
+ /**
2002
+ * The parser stores options it doesn't recognize here. See above.
2003
+ */
1720
2004
  uninterpreted_option?: UninterpretedOptionAmino[];
1721
2005
  }
1722
2006
  export interface OneofOptionsAminoMsg {
1723
2007
  type: "/google.protobuf.OneofOptions";
1724
2008
  value: OneofOptionsAmino;
1725
2009
  }
2010
+ /**
2011
+ * @name EnumOptions
2012
+ * @package google.protobuf
2013
+ * @see proto type: google.protobuf.EnumOptions
2014
+ */
1726
2015
  export interface EnumOptions {
1727
2016
  /**
1728
2017
  * Set this option to true to allow mapping different tag names to the same
@@ -1743,8 +2032,8 @@ export interface EnumOptions {
1743
2032
  * well.
1744
2033
  * TODO Remove this legacy behavior once downstream teams have
1745
2034
  * had time to migrate.
2035
+ * @deprecated
1746
2036
  */
1747
- /** @deprecated */
1748
2037
  deprecatedLegacyJsonFieldConflicts: boolean;
1749
2038
  /**
1750
2039
  * Any features defined in the specific edition.
@@ -1753,13 +2042,20 @@ export interface EnumOptions {
1753
2042
  * developers should rely on the protoreflect APIs for their client language.
1754
2043
  */
1755
2044
  features?: FeatureSet;
1756
- /** The parser stores options it doesn't recognize here. See above. */
2045
+ /**
2046
+ * The parser stores options it doesn't recognize here. See above.
2047
+ */
1757
2048
  uninterpretedOption: UninterpretedOption[];
1758
2049
  }
1759
2050
  export interface EnumOptionsProtoMsg {
1760
2051
  typeUrl: "/google.protobuf.EnumOptions";
1761
2052
  value: Uint8Array;
1762
2053
  }
2054
+ /**
2055
+ * @name EnumOptionsAmino
2056
+ * @package google.protobuf
2057
+ * @see proto type: google.protobuf.EnumOptions
2058
+ */
1763
2059
  export interface EnumOptionsAmino {
1764
2060
  /**
1765
2061
  * Set this option to true to allow mapping different tag names to the same
@@ -1780,8 +2076,8 @@ export interface EnumOptionsAmino {
1780
2076
  * well.
1781
2077
  * TODO Remove this legacy behavior once downstream teams have
1782
2078
  * had time to migrate.
2079
+ * @deprecated
1783
2080
  */
1784
- /** @deprecated */
1785
2081
  deprecated_legacy_json_field_conflicts?: boolean;
1786
2082
  /**
1787
2083
  * Any features defined in the specific edition.
@@ -1790,13 +2086,20 @@ export interface EnumOptionsAmino {
1790
2086
  * developers should rely on the protoreflect APIs for their client language.
1791
2087
  */
1792
2088
  features?: FeatureSetAmino;
1793
- /** The parser stores options it doesn't recognize here. See above. */
2089
+ /**
2090
+ * The parser stores options it doesn't recognize here. See above.
2091
+ */
1794
2092
  uninterpreted_option?: UninterpretedOptionAmino[];
1795
2093
  }
1796
2094
  export interface EnumOptionsAminoMsg {
1797
2095
  type: "/google.protobuf.EnumOptions";
1798
2096
  value: EnumOptionsAmino;
1799
2097
  }
2098
+ /**
2099
+ * @name EnumValueOptions
2100
+ * @package google.protobuf
2101
+ * @see proto type: google.protobuf.EnumValueOptions
2102
+ */
1800
2103
  export interface EnumValueOptions {
1801
2104
  /**
1802
2105
  * Is this enum value deprecated?
@@ -1818,15 +2121,24 @@ export interface EnumValueOptions {
1818
2121
  * credentials.
1819
2122
  */
1820
2123
  debugRedact: boolean;
1821
- /** Information about the support window of a feature value. */
2124
+ /**
2125
+ * Information about the support window of a feature value.
2126
+ */
1822
2127
  featureSupport?: FieldOptions_FeatureSupport;
1823
- /** The parser stores options it doesn't recognize here. See above. */
2128
+ /**
2129
+ * The parser stores options it doesn't recognize here. See above.
2130
+ */
1824
2131
  uninterpretedOption: UninterpretedOption[];
1825
2132
  }
1826
2133
  export interface EnumValueOptionsProtoMsg {
1827
2134
  typeUrl: "/google.protobuf.EnumValueOptions";
1828
2135
  value: Uint8Array;
1829
2136
  }
2137
+ /**
2138
+ * @name EnumValueOptionsAmino
2139
+ * @package google.protobuf
2140
+ * @see proto type: google.protobuf.EnumValueOptions
2141
+ */
1830
2142
  export interface EnumValueOptionsAmino {
1831
2143
  /**
1832
2144
  * Is this enum value deprecated?
@@ -1848,15 +2160,24 @@ export interface EnumValueOptionsAmino {
1848
2160
  * credentials.
1849
2161
  */
1850
2162
  debug_redact?: boolean;
1851
- /** Information about the support window of a feature value. */
2163
+ /**
2164
+ * Information about the support window of a feature value.
2165
+ */
1852
2166
  feature_support?: FieldOptions_FeatureSupportAmino;
1853
- /** The parser stores options it doesn't recognize here. See above. */
2167
+ /**
2168
+ * The parser stores options it doesn't recognize here. See above.
2169
+ */
1854
2170
  uninterpreted_option?: UninterpretedOptionAmino[];
1855
2171
  }
1856
2172
  export interface EnumValueOptionsAminoMsg {
1857
2173
  type: "/google.protobuf.EnumValueOptions";
1858
2174
  value: EnumValueOptionsAmino;
1859
2175
  }
2176
+ /**
2177
+ * @name ServiceOptions
2178
+ * @package google.protobuf
2179
+ * @see proto type: google.protobuf.ServiceOptions
2180
+ */
1860
2181
  export interface ServiceOptions {
1861
2182
  /**
1862
2183
  * Any features defined in the specific edition.
@@ -1872,13 +2193,20 @@ export interface ServiceOptions {
1872
2193
  * this is a formalization for deprecating services.
1873
2194
  */
1874
2195
  deprecated: boolean;
1875
- /** The parser stores options it doesn't recognize here. See above. */
2196
+ /**
2197
+ * The parser stores options it doesn't recognize here. See above.
2198
+ */
1876
2199
  uninterpretedOption: UninterpretedOption[];
1877
2200
  }
1878
2201
  export interface ServiceOptionsProtoMsg {
1879
2202
  typeUrl: "/google.protobuf.ServiceOptions";
1880
2203
  value: Uint8Array;
1881
2204
  }
2205
+ /**
2206
+ * @name ServiceOptionsAmino
2207
+ * @package google.protobuf
2208
+ * @see proto type: google.protobuf.ServiceOptions
2209
+ */
1882
2210
  export interface ServiceOptionsAmino {
1883
2211
  /**
1884
2212
  * Any features defined in the specific edition.
@@ -1894,13 +2222,20 @@ export interface ServiceOptionsAmino {
1894
2222
  * this is a formalization for deprecating services.
1895
2223
  */
1896
2224
  deprecated?: boolean;
1897
- /** The parser stores options it doesn't recognize here. See above. */
2225
+ /**
2226
+ * The parser stores options it doesn't recognize here. See above.
2227
+ */
1898
2228
  uninterpreted_option?: UninterpretedOptionAmino[];
1899
2229
  }
1900
2230
  export interface ServiceOptionsAminoMsg {
1901
2231
  type: "/google.protobuf.ServiceOptions";
1902
2232
  value: ServiceOptionsAmino;
1903
2233
  }
2234
+ /**
2235
+ * @name MethodOptions
2236
+ * @package google.protobuf
2237
+ * @see proto type: google.protobuf.MethodOptions
2238
+ */
1904
2239
  export interface MethodOptions {
1905
2240
  /**
1906
2241
  * Is this method deprecated?
@@ -1917,13 +2252,20 @@ export interface MethodOptions {
1917
2252
  * developers should rely on the protoreflect APIs for their client language.
1918
2253
  */
1919
2254
  features?: FeatureSet;
1920
- /** The parser stores options it doesn't recognize here. See above. */
2255
+ /**
2256
+ * The parser stores options it doesn't recognize here. See above.
2257
+ */
1921
2258
  uninterpretedOption: UninterpretedOption[];
1922
2259
  }
1923
2260
  export interface MethodOptionsProtoMsg {
1924
2261
  typeUrl: "/google.protobuf.MethodOptions";
1925
2262
  value: Uint8Array;
1926
2263
  }
2264
+ /**
2265
+ * @name MethodOptionsAmino
2266
+ * @package google.protobuf
2267
+ * @see proto type: google.protobuf.MethodOptions
2268
+ */
1927
2269
  export interface MethodOptionsAmino {
1928
2270
  /**
1929
2271
  * Is this method deprecated?
@@ -1940,7 +2282,9 @@ export interface MethodOptionsAmino {
1940
2282
  * developers should rely on the protoreflect APIs for their client language.
1941
2283
  */
1942
2284
  features?: FeatureSetAmino;
1943
- /** The parser stores options it doesn't recognize here. See above. */
2285
+ /**
2286
+ * The parser stores options it doesn't recognize here. See above.
2287
+ */
1944
2288
  uninterpreted_option?: UninterpretedOptionAmino[];
1945
2289
  }
1946
2290
  export interface MethodOptionsAminoMsg {
@@ -1954,6 +2298,9 @@ export interface MethodOptionsAminoMsg {
1954
2298
  * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1955
2299
  * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1956
2300
  * in them.
2301
+ * @name UninterpretedOption
2302
+ * @package google.protobuf
2303
+ * @see proto type: google.protobuf.UninterpretedOption
1957
2304
  */
1958
2305
  export interface UninterpretedOption {
1959
2306
  name: UninterpretedOption_NamePart[];
@@ -1979,6 +2326,9 @@ export interface UninterpretedOptionProtoMsg {
1979
2326
  * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1980
2327
  * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1981
2328
  * in them.
2329
+ * @name UninterpretedOptionAmino
2330
+ * @package google.protobuf
2331
+ * @see proto type: google.protobuf.UninterpretedOption
1982
2332
  */
1983
2333
  export interface UninterpretedOptionAmino {
1984
2334
  name?: UninterpretedOption_NamePartAmino[];
@@ -2003,6 +2353,9 @@ export interface UninterpretedOptionAminoMsg {
2003
2353
  * extension (denoted with parentheses in options specs in .proto files).
2004
2354
  * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
2005
2355
  * "foo.(bar.baz).moo".
2356
+ * @name UninterpretedOption_NamePart
2357
+ * @package google.protobuf
2358
+ * @see proto type: google.protobuf.NamePart
2006
2359
  */
2007
2360
  export interface UninterpretedOption_NamePart {
2008
2361
  namePart: string;
@@ -2018,6 +2371,9 @@ export interface UninterpretedOption_NamePartProtoMsg {
2018
2371
  * extension (denoted with parentheses in options specs in .proto files).
2019
2372
  * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
2020
2373
  * "foo.(bar.baz).moo".
2374
+ * @name UninterpretedOption_NamePartAmino
2375
+ * @package google.protobuf
2376
+ * @see proto type: google.protobuf.UninterpretedOption_NamePart
2021
2377
  */
2022
2378
  export interface UninterpretedOption_NamePartAmino {
2023
2379
  name_part?: string;
@@ -2034,6 +2390,9 @@ export interface UninterpretedOption_NamePartAminoMsg {
2034
2390
  * readability, but leave us very open to this scenario. A future feature will
2035
2391
  * be designed and implemented to handle this, hopefully before we ever hit a
2036
2392
  * conflict here.
2393
+ * @name FeatureSet
2394
+ * @package google.protobuf
2395
+ * @see proto type: google.protobuf.FeatureSet
2037
2396
  */
2038
2397
  export interface FeatureSet {
2039
2398
  fieldPresence: FeatureSet_FieldPresence;
@@ -2055,6 +2414,9 @@ export interface FeatureSetProtoMsg {
2055
2414
  * readability, but leave us very open to this scenario. A future feature will
2056
2415
  * be designed and implemented to handle this, hopefully before we ever hit a
2057
2416
  * conflict here.
2417
+ * @name FeatureSetAmino
2418
+ * @package google.protobuf
2419
+ * @see proto type: google.protobuf.FeatureSet
2058
2420
  */
2059
2421
  export interface FeatureSetAmino {
2060
2422
  field_presence?: FeatureSet_FieldPresence;
@@ -2069,12 +2431,22 @@ export interface FeatureSetAminoMsg {
2069
2431
  type: "/google.protobuf.FeatureSet";
2070
2432
  value: FeatureSetAmino;
2071
2433
  }
2434
+ /**
2435
+ * @name FeatureSet_VisibilityFeature
2436
+ * @package google.protobuf
2437
+ * @see proto type: google.protobuf.VisibilityFeature
2438
+ */
2072
2439
  export interface FeatureSet_VisibilityFeature {
2073
2440
  }
2074
2441
  export interface FeatureSet_VisibilityFeatureProtoMsg {
2075
2442
  typeUrl: "/google.protobuf.VisibilityFeature";
2076
2443
  value: Uint8Array;
2077
2444
  }
2445
+ /**
2446
+ * @name FeatureSet_VisibilityFeatureAmino
2447
+ * @package google.protobuf
2448
+ * @see proto type: google.protobuf.FeatureSet_VisibilityFeature
2449
+ */
2078
2450
  export interface FeatureSet_VisibilityFeatureAmino {
2079
2451
  }
2080
2452
  export interface FeatureSet_VisibilityFeatureAminoMsg {
@@ -2086,6 +2458,9 @@ export interface FeatureSet_VisibilityFeatureAminoMsg {
2086
2458
  * messages are generated from FeatureSet extensions and can be used to seed
2087
2459
  * feature resolution. The resolution with this object becomes a simple search
2088
2460
  * for the closest matching edition, followed by proto merges.
2461
+ * @name FeatureSetDefaults
2462
+ * @package google.protobuf
2463
+ * @see proto type: google.protobuf.FeatureSetDefaults
2089
2464
  */
2090
2465
  export interface FeatureSetDefaults {
2091
2466
  defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
@@ -2109,6 +2484,9 @@ export interface FeatureSetDefaultsProtoMsg {
2109
2484
  * messages are generated from FeatureSet extensions and can be used to seed
2110
2485
  * feature resolution. The resolution with this object becomes a simple search
2111
2486
  * for the closest matching edition, followed by proto merges.
2487
+ * @name FeatureSetDefaultsAmino
2488
+ * @package google.protobuf
2489
+ * @see proto type: google.protobuf.FeatureSetDefaults
2112
2490
  */
2113
2491
  export interface FeatureSetDefaultsAmino {
2114
2492
  defaults?: FeatureSetDefaults_FeatureSetEditionDefaultAmino[];
@@ -2132,12 +2510,19 @@ export interface FeatureSetDefaultsAminoMsg {
2132
2510
  * defaults. Not all editions may be contained here. For a given edition,
2133
2511
  * the defaults at the closest matching edition ordered at or before it should
2134
2512
  * be used. This field must be in strict ascending order by edition.
2513
+ * @name FeatureSetDefaults_FeatureSetEditionDefault
2514
+ * @package google.protobuf
2515
+ * @see proto type: google.protobuf.FeatureSetEditionDefault
2135
2516
  */
2136
2517
  export interface FeatureSetDefaults_FeatureSetEditionDefault {
2137
2518
  edition: Edition;
2138
- /** Defaults of features that can be overridden in this edition. */
2519
+ /**
2520
+ * Defaults of features that can be overridden in this edition.
2521
+ */
2139
2522
  overridableFeatures?: FeatureSet;
2140
- /** Defaults of features that can't be overridden in this edition. */
2523
+ /**
2524
+ * Defaults of features that can't be overridden in this edition.
2525
+ */
2141
2526
  fixedFeatures?: FeatureSet;
2142
2527
  }
2143
2528
  export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
@@ -2149,12 +2534,19 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
2149
2534
  * defaults. Not all editions may be contained here. For a given edition,
2150
2535
  * the defaults at the closest matching edition ordered at or before it should
2151
2536
  * be used. This field must be in strict ascending order by edition.
2537
+ * @name FeatureSetDefaults_FeatureSetEditionDefaultAmino
2538
+ * @package google.protobuf
2539
+ * @see proto type: google.protobuf.FeatureSetDefaults_FeatureSetEditionDefault
2152
2540
  */
2153
2541
  export interface FeatureSetDefaults_FeatureSetEditionDefaultAmino {
2154
2542
  edition?: Edition;
2155
- /** Defaults of features that can be overridden in this edition. */
2543
+ /**
2544
+ * Defaults of features that can be overridden in this edition.
2545
+ */
2156
2546
  overridable_features?: FeatureSetAmino;
2157
- /** Defaults of features that can't be overridden in this edition. */
2547
+ /**
2548
+ * Defaults of features that can't be overridden in this edition.
2549
+ */
2158
2550
  fixed_features?: FeatureSetAmino;
2159
2551
  }
2160
2552
  export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
@@ -2164,6 +2556,9 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
2164
2556
  /**
2165
2557
  * Encapsulates information about the original source file from which a
2166
2558
  * FileDescriptorProto was generated.
2559
+ * @name SourceCodeInfo
2560
+ * @package google.protobuf
2561
+ * @see proto type: google.protobuf.SourceCodeInfo
2167
2562
  */
2168
2563
  export interface SourceCodeInfo {
2169
2564
  /**
@@ -2220,6 +2615,9 @@ export interface SourceCodeInfoProtoMsg {
2220
2615
  /**
2221
2616
  * Encapsulates information about the original source file from which a
2222
2617
  * FileDescriptorProto was generated.
2618
+ * @name SourceCodeInfoAmino
2619
+ * @package google.protobuf
2620
+ * @see proto type: google.protobuf.SourceCodeInfo
2223
2621
  */
2224
2622
  export interface SourceCodeInfoAmino {
2225
2623
  /**
@@ -2273,6 +2671,11 @@ export interface SourceCodeInfoAminoMsg {
2273
2671
  type: "/google.protobuf.SourceCodeInfo";
2274
2672
  value: SourceCodeInfoAmino;
2275
2673
  }
2674
+ /**
2675
+ * @name SourceCodeInfo_Location
2676
+ * @package google.protobuf
2677
+ * @see proto type: google.protobuf.Location
2678
+ */
2276
2679
  export interface SourceCodeInfo_Location {
2277
2680
  /**
2278
2681
  * Identifies which part of the FileDescriptorProto was defined at this
@@ -2365,6 +2768,11 @@ export interface SourceCodeInfo_LocationProtoMsg {
2365
2768
  typeUrl: "/google.protobuf.Location";
2366
2769
  value: Uint8Array;
2367
2770
  }
2771
+ /**
2772
+ * @name SourceCodeInfo_LocationAmino
2773
+ * @package google.protobuf
2774
+ * @see proto type: google.protobuf.SourceCodeInfo_Location
2775
+ */
2368
2776
  export interface SourceCodeInfo_LocationAmino {
2369
2777
  /**
2370
2778
  * Identifies which part of the FileDescriptorProto was defined at this
@@ -2461,6 +2869,9 @@ export interface SourceCodeInfo_LocationAminoMsg {
2461
2869
  * Describes the relationship between generated code and its original source
2462
2870
  * file. A GeneratedCodeInfo message is associated with only one generated
2463
2871
  * source file, but may contain references to different source .proto files.
2872
+ * @name GeneratedCodeInfo
2873
+ * @package google.protobuf
2874
+ * @see proto type: google.protobuf.GeneratedCodeInfo
2464
2875
  */
2465
2876
  export interface GeneratedCodeInfo {
2466
2877
  /**
@@ -2477,6 +2888,9 @@ export interface GeneratedCodeInfoProtoMsg {
2477
2888
  * Describes the relationship between generated code and its original source
2478
2889
  * file. A GeneratedCodeInfo message is associated with only one generated
2479
2890
  * source file, but may contain references to different source .proto files.
2891
+ * @name GeneratedCodeInfoAmino
2892
+ * @package google.protobuf
2893
+ * @see proto type: google.protobuf.GeneratedCodeInfo
2480
2894
  */
2481
2895
  export interface GeneratedCodeInfoAmino {
2482
2896
  /**
@@ -2489,13 +2903,20 @@ export interface GeneratedCodeInfoAminoMsg {
2489
2903
  type: "/google.protobuf.GeneratedCodeInfo";
2490
2904
  value: GeneratedCodeInfoAmino;
2491
2905
  }
2906
+ /**
2907
+ * @name GeneratedCodeInfo_Annotation
2908
+ * @package google.protobuf
2909
+ * @see proto type: google.protobuf.Annotation
2910
+ */
2492
2911
  export interface GeneratedCodeInfo_Annotation {
2493
2912
  /**
2494
2913
  * Identifies the element in the original source .proto file. This field
2495
2914
  * is formatted the same as SourceCodeInfo.Location.path.
2496
2915
  */
2497
2916
  path: number[];
2498
- /** Identifies the filesystem path to the original source .proto. */
2917
+ /**
2918
+ * Identifies the filesystem path to the original source .proto.
2919
+ */
2499
2920
  sourceFile: string;
2500
2921
  /**
2501
2922
  * Identifies the starting offset in bytes in the generated code
@@ -2514,13 +2935,20 @@ export interface GeneratedCodeInfo_AnnotationProtoMsg {
2514
2935
  typeUrl: "/google.protobuf.Annotation";
2515
2936
  value: Uint8Array;
2516
2937
  }
2938
+ /**
2939
+ * @name GeneratedCodeInfo_AnnotationAmino
2940
+ * @package google.protobuf
2941
+ * @see proto type: google.protobuf.GeneratedCodeInfo_Annotation
2942
+ */
2517
2943
  export interface GeneratedCodeInfo_AnnotationAmino {
2518
2944
  /**
2519
2945
  * Identifies the element in the original source .proto file. This field
2520
2946
  * is formatted the same as SourceCodeInfo.Location.path.
2521
2947
  */
2522
2948
  path?: number[];
2523
- /** Identifies the filesystem path to the original source .proto. */
2949
+ /**
2950
+ * Identifies the filesystem path to the original source .proto.
2951
+ */
2524
2952
  source_file?: string;
2525
2953
  /**
2526
2954
  * Identifies the starting offset in bytes in the generated code
@@ -2539,6 +2967,13 @@ export interface GeneratedCodeInfo_AnnotationAminoMsg {
2539
2967
  type: "/google.protobuf.Annotation";
2540
2968
  value: GeneratedCodeInfo_AnnotationAmino;
2541
2969
  }
2970
+ /**
2971
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
2972
+ * files it parses.
2973
+ * @name FileDescriptorSet
2974
+ * @package google.protobuf
2975
+ * @see proto type: google.protobuf.FileDescriptorSet
2976
+ */
2542
2977
  export declare const FileDescriptorSet: {
2543
2978
  typeUrl: string;
2544
2979
  encode(message: FileDescriptorSet, writer?: BinaryWriter): BinaryWriter;
@@ -2551,6 +2986,12 @@ export declare const FileDescriptorSet: {
2551
2986
  toProto(message: FileDescriptorSet): Uint8Array;
2552
2987
  toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg;
2553
2988
  };
2989
+ /**
2990
+ * Describes a complete .proto file.
2991
+ * @name FileDescriptorProto
2992
+ * @package google.protobuf
2993
+ * @see proto type: google.protobuf.FileDescriptorProto
2994
+ */
2554
2995
  export declare const FileDescriptorProto: {
2555
2996
  typeUrl: string;
2556
2997
  encode(message: FileDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2563,6 +3004,12 @@ export declare const FileDescriptorProto: {
2563
3004
  toProto(message: FileDescriptorProto): Uint8Array;
2564
3005
  toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg;
2565
3006
  };
3007
+ /**
3008
+ * Describes a message type.
3009
+ * @name DescriptorProto
3010
+ * @package google.protobuf
3011
+ * @see proto type: google.protobuf.DescriptorProto
3012
+ */
2566
3013
  export declare const DescriptorProto: {
2567
3014
  typeUrl: string;
2568
3015
  encode(message: DescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2575,6 +3022,11 @@ export declare const DescriptorProto: {
2575
3022
  toProto(message: DescriptorProto): Uint8Array;
2576
3023
  toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg;
2577
3024
  };
3025
+ /**
3026
+ * @name DescriptorProto_ExtensionRange
3027
+ * @package google.protobuf
3028
+ * @see proto type: google.protobuf.ExtensionRange
3029
+ */
2578
3030
  export declare const DescriptorProto_ExtensionRange: {
2579
3031
  typeUrl: string;
2580
3032
  encode(message: DescriptorProto_ExtensionRange, writer?: BinaryWriter): BinaryWriter;
@@ -2587,6 +3039,14 @@ export declare const DescriptorProto_ExtensionRange: {
2587
3039
  toProto(message: DescriptorProto_ExtensionRange): Uint8Array;
2588
3040
  toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg;
2589
3041
  };
3042
+ /**
3043
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
3044
+ * fields or extension ranges in the same message. Reserved ranges may
3045
+ * not overlap.
3046
+ * @name DescriptorProto_ReservedRange
3047
+ * @package google.protobuf
3048
+ * @see proto type: google.protobuf.ReservedRange
3049
+ */
2590
3050
  export declare const DescriptorProto_ReservedRange: {
2591
3051
  typeUrl: string;
2592
3052
  encode(message: DescriptorProto_ReservedRange, writer?: BinaryWriter): BinaryWriter;
@@ -2599,6 +3059,11 @@ export declare const DescriptorProto_ReservedRange: {
2599
3059
  toProto(message: DescriptorProto_ReservedRange): Uint8Array;
2600
3060
  toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg;
2601
3061
  };
3062
+ /**
3063
+ * @name ExtensionRangeOptions
3064
+ * @package google.protobuf
3065
+ * @see proto type: google.protobuf.ExtensionRangeOptions
3066
+ */
2602
3067
  export declare const ExtensionRangeOptions: {
2603
3068
  typeUrl: string;
2604
3069
  encode(message: ExtensionRangeOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2611,6 +3076,11 @@ export declare const ExtensionRangeOptions: {
2611
3076
  toProto(message: ExtensionRangeOptions): Uint8Array;
2612
3077
  toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg;
2613
3078
  };
3079
+ /**
3080
+ * @name ExtensionRangeOptions_Declaration
3081
+ * @package google.protobuf
3082
+ * @see proto type: google.protobuf.Declaration
3083
+ */
2614
3084
  export declare const ExtensionRangeOptions_Declaration: {
2615
3085
  typeUrl: string;
2616
3086
  encode(message: ExtensionRangeOptions_Declaration, writer?: BinaryWriter): BinaryWriter;
@@ -2623,6 +3093,12 @@ export declare const ExtensionRangeOptions_Declaration: {
2623
3093
  toProto(message: ExtensionRangeOptions_Declaration): Uint8Array;
2624
3094
  toProtoMsg(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationProtoMsg;
2625
3095
  };
3096
+ /**
3097
+ * Describes a field within a message.
3098
+ * @name FieldDescriptorProto
3099
+ * @package google.protobuf
3100
+ * @see proto type: google.protobuf.FieldDescriptorProto
3101
+ */
2626
3102
  export declare const FieldDescriptorProto: {
2627
3103
  typeUrl: string;
2628
3104
  encode(message: FieldDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2635,6 +3111,12 @@ export declare const FieldDescriptorProto: {
2635
3111
  toProto(message: FieldDescriptorProto): Uint8Array;
2636
3112
  toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg;
2637
3113
  };
3114
+ /**
3115
+ * Describes a oneof.
3116
+ * @name OneofDescriptorProto
3117
+ * @package google.protobuf
3118
+ * @see proto type: google.protobuf.OneofDescriptorProto
3119
+ */
2638
3120
  export declare const OneofDescriptorProto: {
2639
3121
  typeUrl: string;
2640
3122
  encode(message: OneofDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2647,6 +3129,12 @@ export declare const OneofDescriptorProto: {
2647
3129
  toProto(message: OneofDescriptorProto): Uint8Array;
2648
3130
  toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg;
2649
3131
  };
3132
+ /**
3133
+ * Describes an enum type.
3134
+ * @name EnumDescriptorProto
3135
+ * @package google.protobuf
3136
+ * @see proto type: google.protobuf.EnumDescriptorProto
3137
+ */
2650
3138
  export declare const EnumDescriptorProto: {
2651
3139
  typeUrl: string;
2652
3140
  encode(message: EnumDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2659,6 +3147,17 @@ export declare const EnumDescriptorProto: {
2659
3147
  toProto(message: EnumDescriptorProto): Uint8Array;
2660
3148
  toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg;
2661
3149
  };
3150
+ /**
3151
+ * Range of reserved numeric values. Reserved values may not be used by
3152
+ * entries in the same enum. Reserved ranges may not overlap.
3153
+ *
3154
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
3155
+ * is inclusive such that it can appropriately represent the entire int32
3156
+ * domain.
3157
+ * @name EnumDescriptorProto_EnumReservedRange
3158
+ * @package google.protobuf
3159
+ * @see proto type: google.protobuf.EnumReservedRange
3160
+ */
2662
3161
  export declare const EnumDescriptorProto_EnumReservedRange: {
2663
3162
  typeUrl: string;
2664
3163
  encode(message: EnumDescriptorProto_EnumReservedRange, writer?: BinaryWriter): BinaryWriter;
@@ -2671,6 +3170,12 @@ export declare const EnumDescriptorProto_EnumReservedRange: {
2671
3170
  toProto(message: EnumDescriptorProto_EnumReservedRange): Uint8Array;
2672
3171
  toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg;
2673
3172
  };
3173
+ /**
3174
+ * Describes a value within an enum.
3175
+ * @name EnumValueDescriptorProto
3176
+ * @package google.protobuf
3177
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
3178
+ */
2674
3179
  export declare const EnumValueDescriptorProto: {
2675
3180
  typeUrl: string;
2676
3181
  encode(message: EnumValueDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2683,6 +3188,12 @@ export declare const EnumValueDescriptorProto: {
2683
3188
  toProto(message: EnumValueDescriptorProto): Uint8Array;
2684
3189
  toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg;
2685
3190
  };
3191
+ /**
3192
+ * Describes a service.
3193
+ * @name ServiceDescriptorProto
3194
+ * @package google.protobuf
3195
+ * @see proto type: google.protobuf.ServiceDescriptorProto
3196
+ */
2686
3197
  export declare const ServiceDescriptorProto: {
2687
3198
  typeUrl: string;
2688
3199
  encode(message: ServiceDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2695,6 +3206,12 @@ export declare const ServiceDescriptorProto: {
2695
3206
  toProto(message: ServiceDescriptorProto): Uint8Array;
2696
3207
  toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
2697
3208
  };
3209
+ /**
3210
+ * Describes a method of a service.
3211
+ * @name MethodDescriptorProto
3212
+ * @package google.protobuf
3213
+ * @see proto type: google.protobuf.MethodDescriptorProto
3214
+ */
2698
3215
  export declare const MethodDescriptorProto: {
2699
3216
  typeUrl: string;
2700
3217
  encode(message: MethodDescriptorProto, writer?: BinaryWriter): BinaryWriter;
@@ -2707,6 +3224,11 @@ export declare const MethodDescriptorProto: {
2707
3224
  toProto(message: MethodDescriptorProto): Uint8Array;
2708
3225
  toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg;
2709
3226
  };
3227
+ /**
3228
+ * @name FileOptions
3229
+ * @package google.protobuf
3230
+ * @see proto type: google.protobuf.FileOptions
3231
+ */
2710
3232
  export declare const FileOptions: {
2711
3233
  typeUrl: string;
2712
3234
  encode(message: FileOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2719,6 +3241,11 @@ export declare const FileOptions: {
2719
3241
  toProto(message: FileOptions): Uint8Array;
2720
3242
  toProtoMsg(message: FileOptions): FileOptionsProtoMsg;
2721
3243
  };
3244
+ /**
3245
+ * @name MessageOptions
3246
+ * @package google.protobuf
3247
+ * @see proto type: google.protobuf.MessageOptions
3248
+ */
2722
3249
  export declare const MessageOptions: {
2723
3250
  typeUrl: string;
2724
3251
  encode(message: MessageOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2731,6 +3258,11 @@ export declare const MessageOptions: {
2731
3258
  toProto(message: MessageOptions): Uint8Array;
2732
3259
  toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg;
2733
3260
  };
3261
+ /**
3262
+ * @name FieldOptions
3263
+ * @package google.protobuf
3264
+ * @see proto type: google.protobuf.FieldOptions
3265
+ */
2734
3266
  export declare const FieldOptions: {
2735
3267
  typeUrl: string;
2736
3268
  encode(message: FieldOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2743,6 +3275,11 @@ export declare const FieldOptions: {
2743
3275
  toProto(message: FieldOptions): Uint8Array;
2744
3276
  toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg;
2745
3277
  };
3278
+ /**
3279
+ * @name FieldOptions_EditionDefault
3280
+ * @package google.protobuf
3281
+ * @see proto type: google.protobuf.EditionDefault
3282
+ */
2746
3283
  export declare const FieldOptions_EditionDefault: {
2747
3284
  typeUrl: string;
2748
3285
  encode(message: FieldOptions_EditionDefault, writer?: BinaryWriter): BinaryWriter;
@@ -2755,6 +3292,12 @@ export declare const FieldOptions_EditionDefault: {
2755
3292
  toProto(message: FieldOptions_EditionDefault): Uint8Array;
2756
3293
  toProtoMsg(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultProtoMsg;
2757
3294
  };
3295
+ /**
3296
+ * Information about the support window of a feature.
3297
+ * @name FieldOptions_FeatureSupport
3298
+ * @package google.protobuf
3299
+ * @see proto type: google.protobuf.FeatureSupport
3300
+ */
2758
3301
  export declare const FieldOptions_FeatureSupport: {
2759
3302
  typeUrl: string;
2760
3303
  encode(message: FieldOptions_FeatureSupport, writer?: BinaryWriter): BinaryWriter;
@@ -2767,6 +3310,11 @@ export declare const FieldOptions_FeatureSupport: {
2767
3310
  toProto(message: FieldOptions_FeatureSupport): Uint8Array;
2768
3311
  toProtoMsg(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportProtoMsg;
2769
3312
  };
3313
+ /**
3314
+ * @name OneofOptions
3315
+ * @package google.protobuf
3316
+ * @see proto type: google.protobuf.OneofOptions
3317
+ */
2770
3318
  export declare const OneofOptions: {
2771
3319
  typeUrl: string;
2772
3320
  encode(message: OneofOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2779,6 +3327,11 @@ export declare const OneofOptions: {
2779
3327
  toProto(message: OneofOptions): Uint8Array;
2780
3328
  toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg;
2781
3329
  };
3330
+ /**
3331
+ * @name EnumOptions
3332
+ * @package google.protobuf
3333
+ * @see proto type: google.protobuf.EnumOptions
3334
+ */
2782
3335
  export declare const EnumOptions: {
2783
3336
  typeUrl: string;
2784
3337
  encode(message: EnumOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2791,6 +3344,11 @@ export declare const EnumOptions: {
2791
3344
  toProto(message: EnumOptions): Uint8Array;
2792
3345
  toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg;
2793
3346
  };
3347
+ /**
3348
+ * @name EnumValueOptions
3349
+ * @package google.protobuf
3350
+ * @see proto type: google.protobuf.EnumValueOptions
3351
+ */
2794
3352
  export declare const EnumValueOptions: {
2795
3353
  typeUrl: string;
2796
3354
  encode(message: EnumValueOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2803,6 +3361,11 @@ export declare const EnumValueOptions: {
2803
3361
  toProto(message: EnumValueOptions): Uint8Array;
2804
3362
  toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg;
2805
3363
  };
3364
+ /**
3365
+ * @name ServiceOptions
3366
+ * @package google.protobuf
3367
+ * @see proto type: google.protobuf.ServiceOptions
3368
+ */
2806
3369
  export declare const ServiceOptions: {
2807
3370
  typeUrl: string;
2808
3371
  encode(message: ServiceOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2815,6 +3378,11 @@ export declare const ServiceOptions: {
2815
3378
  toProto(message: ServiceOptions): Uint8Array;
2816
3379
  toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
2817
3380
  };
3381
+ /**
3382
+ * @name MethodOptions
3383
+ * @package google.protobuf
3384
+ * @see proto type: google.protobuf.MethodOptions
3385
+ */
2818
3386
  export declare const MethodOptions: {
2819
3387
  typeUrl: string;
2820
3388
  encode(message: MethodOptions, writer?: BinaryWriter): BinaryWriter;
@@ -2827,6 +3395,17 @@ export declare const MethodOptions: {
2827
3395
  toProto(message: MethodOptions): Uint8Array;
2828
3396
  toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg;
2829
3397
  };
3398
+ /**
3399
+ * A message representing a option the parser does not recognize. This only
3400
+ * appears in options protos created by the compiler::Parser class.
3401
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
3402
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
3403
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
3404
+ * in them.
3405
+ * @name UninterpretedOption
3406
+ * @package google.protobuf
3407
+ * @see proto type: google.protobuf.UninterpretedOption
3408
+ */
2830
3409
  export declare const UninterpretedOption: {
2831
3410
  typeUrl: string;
2832
3411
  encode(message: UninterpretedOption, writer?: BinaryWriter): BinaryWriter;
@@ -2839,6 +3418,16 @@ export declare const UninterpretedOption: {
2839
3418
  toProto(message: UninterpretedOption): Uint8Array;
2840
3419
  toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg;
2841
3420
  };
3421
+ /**
3422
+ * The name of the uninterpreted option. Each string represents a segment in
3423
+ * a dot-separated name. is_extension is true iff a segment represents an
3424
+ * extension (denoted with parentheses in options specs in .proto files).
3425
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
3426
+ * "foo.(bar.baz).moo".
3427
+ * @name UninterpretedOption_NamePart
3428
+ * @package google.protobuf
3429
+ * @see proto type: google.protobuf.NamePart
3430
+ */
2842
3431
  export declare const UninterpretedOption_NamePart: {
2843
3432
  typeUrl: string;
2844
3433
  encode(message: UninterpretedOption_NamePart, writer?: BinaryWriter): BinaryWriter;
@@ -2851,6 +3440,17 @@ export declare const UninterpretedOption_NamePart: {
2851
3440
  toProto(message: UninterpretedOption_NamePart): Uint8Array;
2852
3441
  toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg;
2853
3442
  };
3443
+ /**
3444
+ * TODO Enums in C++ gencode (and potentially other languages) are
3445
+ * not well scoped. This means that each of the feature enums below can clash
3446
+ * with each other. The short names we've chosen maximize call-site
3447
+ * readability, but leave us very open to this scenario. A future feature will
3448
+ * be designed and implemented to handle this, hopefully before we ever hit a
3449
+ * conflict here.
3450
+ * @name FeatureSet
3451
+ * @package google.protobuf
3452
+ * @see proto type: google.protobuf.FeatureSet
3453
+ */
2854
3454
  export declare const FeatureSet: {
2855
3455
  typeUrl: string;
2856
3456
  encode(message: FeatureSet, writer?: BinaryWriter): BinaryWriter;
@@ -2863,6 +3463,11 @@ export declare const FeatureSet: {
2863
3463
  toProto(message: FeatureSet): Uint8Array;
2864
3464
  toProtoMsg(message: FeatureSet): FeatureSetProtoMsg;
2865
3465
  };
3466
+ /**
3467
+ * @name FeatureSet_VisibilityFeature
3468
+ * @package google.protobuf
3469
+ * @see proto type: google.protobuf.VisibilityFeature
3470
+ */
2866
3471
  export declare const FeatureSet_VisibilityFeature: {
2867
3472
  typeUrl: string;
2868
3473
  encode(_: FeatureSet_VisibilityFeature, writer?: BinaryWriter): BinaryWriter;
@@ -2875,6 +3480,15 @@ export declare const FeatureSet_VisibilityFeature: {
2875
3480
  toProto(message: FeatureSet_VisibilityFeature): Uint8Array;
2876
3481
  toProtoMsg(message: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeatureProtoMsg;
2877
3482
  };
3483
+ /**
3484
+ * A compiled specification for the defaults of a set of features. These
3485
+ * messages are generated from FeatureSet extensions and can be used to seed
3486
+ * feature resolution. The resolution with this object becomes a simple search
3487
+ * for the closest matching edition, followed by proto merges.
3488
+ * @name FeatureSetDefaults
3489
+ * @package google.protobuf
3490
+ * @see proto type: google.protobuf.FeatureSetDefaults
3491
+ */
2878
3492
  export declare const FeatureSetDefaults: {
2879
3493
  typeUrl: string;
2880
3494
  encode(message: FeatureSetDefaults, writer?: BinaryWriter): BinaryWriter;
@@ -2887,6 +3501,15 @@ export declare const FeatureSetDefaults: {
2887
3501
  toProto(message: FeatureSetDefaults): Uint8Array;
2888
3502
  toProtoMsg(message: FeatureSetDefaults): FeatureSetDefaultsProtoMsg;
2889
3503
  };
3504
+ /**
3505
+ * A map from every known edition with a unique set of defaults to its
3506
+ * defaults. Not all editions may be contained here. For a given edition,
3507
+ * the defaults at the closest matching edition ordered at or before it should
3508
+ * be used. This field must be in strict ascending order by edition.
3509
+ * @name FeatureSetDefaults_FeatureSetEditionDefault
3510
+ * @package google.protobuf
3511
+ * @see proto type: google.protobuf.FeatureSetEditionDefault
3512
+ */
2890
3513
  export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
2891
3514
  typeUrl: string;
2892
3515
  encode(message: FeatureSetDefaults_FeatureSetEditionDefault, writer?: BinaryWriter): BinaryWriter;
@@ -2899,6 +3522,13 @@ export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
2899
3522
  toProto(message: FeatureSetDefaults_FeatureSetEditionDefault): Uint8Array;
2900
3523
  toProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg;
2901
3524
  };
3525
+ /**
3526
+ * Encapsulates information about the original source file from which a
3527
+ * FileDescriptorProto was generated.
3528
+ * @name SourceCodeInfo
3529
+ * @package google.protobuf
3530
+ * @see proto type: google.protobuf.SourceCodeInfo
3531
+ */
2902
3532
  export declare const SourceCodeInfo: {
2903
3533
  typeUrl: string;
2904
3534
  encode(message: SourceCodeInfo, writer?: BinaryWriter): BinaryWriter;
@@ -2911,6 +3541,11 @@ export declare const SourceCodeInfo: {
2911
3541
  toProto(message: SourceCodeInfo): Uint8Array;
2912
3542
  toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
2913
3543
  };
3544
+ /**
3545
+ * @name SourceCodeInfo_Location
3546
+ * @package google.protobuf
3547
+ * @see proto type: google.protobuf.Location
3548
+ */
2914
3549
  export declare const SourceCodeInfo_Location: {
2915
3550
  typeUrl: string;
2916
3551
  encode(message: SourceCodeInfo_Location, writer?: BinaryWriter): BinaryWriter;
@@ -2923,6 +3558,14 @@ export declare const SourceCodeInfo_Location: {
2923
3558
  toProto(message: SourceCodeInfo_Location): Uint8Array;
2924
3559
  toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg;
2925
3560
  };
3561
+ /**
3562
+ * Describes the relationship between generated code and its original source
3563
+ * file. A GeneratedCodeInfo message is associated with only one generated
3564
+ * source file, but may contain references to different source .proto files.
3565
+ * @name GeneratedCodeInfo
3566
+ * @package google.protobuf
3567
+ * @see proto type: google.protobuf.GeneratedCodeInfo
3568
+ */
2926
3569
  export declare const GeneratedCodeInfo: {
2927
3570
  typeUrl: string;
2928
3571
  encode(message: GeneratedCodeInfo, writer?: BinaryWriter): BinaryWriter;
@@ -2935,6 +3578,11 @@ export declare const GeneratedCodeInfo: {
2935
3578
  toProto(message: GeneratedCodeInfo): Uint8Array;
2936
3579
  toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg;
2937
3580
  };
3581
+ /**
3582
+ * @name GeneratedCodeInfo_Annotation
3583
+ * @package google.protobuf
3584
+ * @see proto type: google.protobuf.Annotation
3585
+ */
2938
3586
  export declare const GeneratedCodeInfo_Annotation: {
2939
3587
  typeUrl: string;
2940
3588
  encode(message: GeneratedCodeInfo_Annotation, writer?: BinaryWriter): BinaryWriter;