injectivejs 1.11.13 → 1.11.15

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 (520) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  4. package/cosmos/auth/v1beta1/auth.js +28 -0
  5. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  6. package/cosmos/auth/v1beta1/query.js +148 -0
  7. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
  8. package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  9. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  10. package/cosmos/authz/v1beta1/authz.js +27 -0
  11. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  12. package/cosmos/authz/v1beta1/tx.js +40 -0
  13. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
  14. package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  15. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  16. package/cosmos/bank/v1beta1/bank.js +48 -0
  17. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  18. package/cosmos/bank/v1beta1/query.js +199 -0
  19. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
  20. package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  21. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  22. package/cosmos/bank/v1beta1/tx.js +61 -0
  23. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
  24. package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  25. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  26. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  27. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  28. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  29. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  30. package/cosmos/base/v1beta1/coin.js +32 -0
  31. package/cosmos/bundle.d.ts +8 -8
  32. package/cosmos/bundle.js +15 -15
  33. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  34. package/cosmos/crypto/ed25519/keys.js +17 -0
  35. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  36. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  37. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  38. package/cosmos/crypto/secp256k1/keys.js +16 -0
  39. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  40. package/cosmos/crypto/secp256r1/keys.js +12 -0
  41. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  42. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  43. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  44. package/cosmos/distribution/v1beta1/tx.js +109 -0
  45. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
  46. package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  47. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  48. package/cosmos/feegrant/v1beta1/tx.js +41 -0
  49. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
  50. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  51. package/cosmos/gov/v1/gov.d.ts +343 -80
  52. package/cosmos/gov/v1/gov.js +61 -0
  53. package/cosmos/gov/v1/tx.d.ts +376 -65
  54. package/cosmos/gov/v1/tx.js +96 -0
  55. package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
  56. package/cosmos/gov/v1/tx.rpc.func.js +48 -13
  57. package/cosmos/gov/v1beta1/gov.d.ts +293 -61
  58. package/cosmos/gov/v1beta1/gov.js +59 -0
  59. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  60. package/cosmos/gov/v1beta1/query.js +97 -0
  61. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
  62. package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  63. package/cosmos/gov/v1beta1/tx.d.ts +213 -37
  64. package/cosmos/gov/v1beta1/tx.js +53 -0
  65. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
  66. package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  67. package/cosmos/group/v1/tx.d.ts +804 -155
  68. package/cosmos/group/v1/tx.js +168 -0
  69. package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
  70. package/cosmos/group/v1/tx.rpc.func.js +84 -14
  71. package/cosmos/group/v1/types.d.ts +398 -83
  72. package/cosmos/group/v1/types.js +82 -0
  73. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  74. package/cosmos/ics23/v1/proofs.js +138 -0
  75. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  76. package/cosmos/staking/v1beta1/query.js +186 -0
  77. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
  78. package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  79. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  80. package/cosmos/staking/v1beta1/staking.js +153 -0
  81. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  82. package/cosmos/staking/v1beta1/tx.js +96 -0
  83. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
  84. package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  85. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  86. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  87. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  88. package/cosmos/tx/v1beta1/service.js +145 -0
  89. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
  90. package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  91. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  92. package/cosmos/tx/v1beta1/tx.js +99 -0
  93. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  94. package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  95. package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
  96. package/cosmos/vesting/v1beta1/tx.js +48 -0
  97. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
  98. package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  99. package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
  100. package/cosmos/vesting/v1beta1/vesting.js +45 -0
  101. package/cosmos_proto/cosmos.d.ts +31 -0
  102. package/cosmos_proto/cosmos.js +19 -0
  103. package/cosmwasm/bundle.d.ts +2 -2
  104. package/cosmwasm/bundle.js +3 -3
  105. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  106. package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  107. package/cosmwasm/wasm/v1/query.d.ts +615 -82
  108. package/cosmwasm/wasm/v1/query.js +195 -0
  109. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
  110. package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  111. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  112. package/cosmwasm/wasm/v1/tx.js +242 -0
  113. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
  114. package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  115. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  116. package/cosmwasm/wasm/v1/types.js +49 -0
  117. package/esm/binary.js +1 -1
  118. package/esm/cosmos/auth/v1beta1/auth.js +28 -0
  119. package/esm/cosmos/auth/v1beta1/query.js +148 -0
  120. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  121. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  122. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  123. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  124. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  125. package/esm/cosmos/bank/v1beta1/query.js +199 -0
  126. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  127. package/esm/cosmos/bank/v1beta1/tx.js +61 -0
  128. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  129. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  130. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  131. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  132. package/esm/cosmos/bundle.js +8 -8
  133. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  134. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  135. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  136. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  137. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  138. package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
  139. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  140. package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
  141. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  142. package/esm/cosmos/gov/v1/gov.js +61 -0
  143. package/esm/cosmos/gov/v1/tx.js +96 -0
  144. package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
  145. package/esm/cosmos/gov/v1beta1/gov.js +59 -0
  146. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  147. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  148. package/esm/cosmos/gov/v1beta1/tx.js +53 -0
  149. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  150. package/esm/cosmos/group/v1/tx.js +168 -0
  151. package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
  152. package/esm/cosmos/group/v1/types.js +82 -0
  153. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  154. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  155. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  156. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  157. package/esm/cosmos/staking/v1beta1/tx.js +96 -0
  158. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  159. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  160. package/esm/cosmos/tx/v1beta1/service.js +145 -0
  161. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  162. package/esm/cosmos/tx/v1beta1/tx.js +99 -0
  163. package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  164. package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
  165. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  166. package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
  167. package/esm/cosmos_proto/cosmos.js +19 -0
  168. package/esm/cosmwasm/bundle.js +2 -2
  169. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  170. package/esm/cosmwasm/wasm/v1/query.js +195 -0
  171. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  172. package/esm/cosmwasm/wasm/v1/tx.js +242 -0
  173. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  174. package/esm/cosmwasm/wasm/v1/types.js +49 -0
  175. package/esm/extern.js +1 -1
  176. package/esm/google/api/http.js +283 -0
  177. package/esm/google/protobuf/any.js +90 -0
  178. package/esm/google/protobuf/descriptor.js +215 -0
  179. package/esm/google/protobuf/duration.js +63 -0
  180. package/esm/google/protobuf/timestamp.js +94 -0
  181. package/esm/helper-func-types.js +1 -1
  182. package/esm/helpers.js +1 -1
  183. package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
  184. package/esm/ibc/applications/transfer/v1/tx.js +27 -0
  185. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  186. package/esm/ibc/bundle.js +1 -1
  187. package/esm/ibc/core/channel/v1/channel.js +70 -0
  188. package/esm/ibc/core/channel/v1/tx.js +242 -0
  189. package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  190. package/esm/ibc/core/channel/v1/upgrade.js +25 -0
  191. package/esm/ibc/core/client/v1/client.js +45 -0
  192. package/esm/ibc/core/client/v1/tx.js +90 -0
  193. package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
  194. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  195. package/esm/ibc/core/connection/v1/connection.js +47 -0
  196. package/esm/ibc/core/connection/v1/tx.js +66 -0
  197. package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  198. package/esm/index.js +1 -1
  199. package/esm/injective/auction/v1beta1/auction.js +30 -0
  200. package/esm/injective/auction/v1beta1/genesis.js +6 -0
  201. package/esm/injective/auction/v1beta1/query.js +52 -0
  202. package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
  203. package/esm/injective/auction/v1beta1/tx.js +21 -0
  204. package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  205. package/esm/injective/bundle.js +14 -14
  206. package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  207. package/esm/injective/exchange/v1beta1/authz.js +58 -0
  208. package/esm/injective/exchange/v1beta1/events.js +180 -0
  209. package/esm/injective/exchange/v1beta1/exchange.js +263 -0
  210. package/esm/injective/exchange/v1beta1/genesis.js +89 -0
  211. package/esm/injective/exchange/v1beta1/proposal.js +113 -0
  212. package/esm/injective/exchange/v1beta1/query.js +864 -0
  213. package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  214. package/esm/injective/exchange/v1beta1/tx.js +487 -0
  215. package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  216. package/esm/injective/insurance/v1beta1/events.js +25 -0
  217. package/esm/injective/insurance/v1beta1/genesis.js +6 -0
  218. package/esm/injective/insurance/v1beta1/insurance.js +15 -0
  219. package/esm/injective/insurance/v1beta1/query.js +84 -0
  220. package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  221. package/esm/injective/insurance/v1beta1/tx.js +46 -0
  222. package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  223. package/esm/injective/ocr/v1beta1/genesis.js +41 -0
  224. package/esm/injective/ocr/v1beta1/ocr.js +108 -0
  225. package/esm/injective/ocr/v1beta1/query.js +70 -0
  226. package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  227. package/esm/injective/ocr/v1beta1/tx.js +90 -0
  228. package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  229. package/esm/injective/oracle/v1beta1/events.js +56 -0
  230. package/esm/injective/oracle/v1beta1/genesis.js +11 -0
  231. package/esm/injective/oracle/v1beta1/oracle.js +122 -0
  232. package/esm/injective/oracle/v1beta1/proposal.js +55 -0
  233. package/esm/injective/oracle/v1beta1/query.js +240 -0
  234. package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  235. package/esm/injective/oracle/v1beta1/tx.js +93 -0
  236. package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  237. package/esm/injective/peggy/v1/attestation.js +31 -0
  238. package/esm/injective/peggy/v1/batch.js +12 -0
  239. package/esm/injective/peggy/v1/events.js +85 -0
  240. package/esm/injective/peggy/v1/genesis.js +6 -0
  241. package/esm/injective/peggy/v1/msgs.js +223 -0
  242. package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
  243. package/esm/injective/peggy/v1/params.js +5 -0
  244. package/esm/injective/peggy/v1/pool.js +11 -0
  245. package/esm/injective/peggy/v1/proposal.js +10 -0
  246. package/esm/injective/peggy/v1/query.js +214 -0
  247. package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
  248. package/esm/injective/peggy/v1/types.js +37 -0
  249. package/esm/injective/permissions/v1beta1/events.js +5 -0
  250. package/esm/injective/permissions/v1beta1/genesis.js +6 -0
  251. package/esm/injective/permissions/v1beta1/params.js +6 -0
  252. package/esm/injective/permissions/v1beta1/permissions.js +33 -0
  253. package/esm/injective/permissions/v1beta1/query.js +74 -0
  254. package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  255. package/esm/injective/permissions/v1beta1/tx.js +90 -0
  256. package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  257. package/esm/injective/stream/v1beta1/query.js +110 -0
  258. package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  259. package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
  260. package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
  261. package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
  262. package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
  263. package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  264. package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
  265. package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  266. package/esm/injective/types/v1beta1/account.js +7 -0
  267. package/esm/injective/types/v1beta1/tx_ext.js +5 -0
  268. package/esm/injective/types/v1beta1/tx_response.js +13 -0
  269. package/esm/injective/wasmx/v1/events.js +15 -0
  270. package/esm/injective/wasmx/v1/genesis.js +11 -0
  271. package/esm/injective/wasmx/v1/proposal.js +25 -0
  272. package/esm/injective/wasmx/v1/query.js +39 -0
  273. package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
  274. package/esm/injective/wasmx/v1/tx.js +63 -0
  275. package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
  276. package/esm/injective/wasmx/v1/wasmx.js +10 -0
  277. package/esm/registry.js +1 -1
  278. package/esm/tendermint/abci/types.js +255 -0
  279. package/esm/tendermint/crypto/keys.js +6 -0
  280. package/esm/tendermint/crypto/proof.js +29 -0
  281. package/esm/tendermint/types/block.js +5 -0
  282. package/esm/tendermint/types/evidence.js +22 -0
  283. package/esm/tendermint/types/params.js +46 -0
  284. package/esm/tendermint/types/types.js +87 -0
  285. package/esm/tendermint/types/validator.js +15 -0
  286. package/esm/tendermint/version/types.js +16 -0
  287. package/esm/types.js +1 -1
  288. package/esm/utf8.js +1 -1
  289. package/esm/varint.js +1 -1
  290. package/extern.d.ts +1 -1
  291. package/extern.js +1 -1
  292. package/google/api/http.d.ts +343 -14
  293. package/google/api/http.js +283 -0
  294. package/google/protobuf/any.d.ts +102 -2
  295. package/google/protobuf/any.js +90 -0
  296. package/google/protobuf/descriptor.d.ts +715 -86
  297. package/google/protobuf/descriptor.js +215 -0
  298. package/google/protobuf/duration.d.ts +69 -0
  299. package/google/protobuf/duration.js +63 -0
  300. package/google/protobuf/timestamp.d.ts +100 -0
  301. package/google/protobuf/timestamp.js +94 -0
  302. package/helper-func-types.d.ts +1 -1
  303. package/helper-func-types.js +1 -1
  304. package/helpers.d.ts +1 -1
  305. package/helpers.js +1 -1
  306. package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
  307. package/ibc/applications/transfer/v1/transfer.js +24 -0
  308. package/ibc/applications/transfer/v1/tx.d.ts +125 -26
  309. package/ibc/applications/transfer/v1/tx.js +27 -0
  310. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
  311. package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  312. package/ibc/bundle.d.ts +1 -1
  313. package/ibc/bundle.js +2 -2
  314. package/ibc/core/channel/v1/channel.d.ts +316 -64
  315. package/ibc/core/channel/v1/channel.js +70 -0
  316. package/ibc/core/channel/v1/tx.d.ts +676 -70
  317. package/ibc/core/channel/v1/tx.js +242 -0
  318. package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
  319. package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  320. package/ibc/core/channel/v1/upgrade.d.ts +55 -4
  321. package/ibc/core/channel/v1/upgrade.js +25 -0
  322. package/ibc/core/client/v1/client.d.ts +129 -18
  323. package/ibc/core/client/v1/client.js +45 -0
  324. package/ibc/core/client/v1/tx.d.ts +338 -56
  325. package/ibc/core/client/v1/tx.js +90 -0
  326. package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
  327. package/ibc/core/client/v1/tx.rpc.func.js +42 -7
  328. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  329. package/ibc/core/commitment/v1/commitment.js +25 -0
  330. package/ibc/core/connection/v1/connection.d.ts +197 -36
  331. package/ibc/core/connection/v1/connection.js +47 -0
  332. package/ibc/core/connection/v1/tx.d.ts +250 -56
  333. package/ibc/core/connection/v1/tx.js +66 -0
  334. package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
  335. package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  336. package/index.d.ts +1 -1
  337. package/index.js +1 -1
  338. package/injective/auction/v1beta1/auction.d.ts +168 -26
  339. package/injective/auction/v1beta1/auction.js +30 -0
  340. package/injective/auction/v1beta1/genesis.d.ts +48 -12
  341. package/injective/auction/v1beta1/genesis.js +6 -0
  342. package/injective/auction/v1beta1/query.d.ts +138 -10
  343. package/injective/auction/v1beta1/query.js +52 -0
  344. package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
  345. package/injective/auction/v1beta1/query.rpc.func.js +23 -3
  346. package/injective/auction/v1beta1/tx.d.ts +81 -8
  347. package/injective/auction/v1beta1/tx.js +21 -0
  348. package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
  349. package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  350. package/injective/bundle.d.ts +14 -14
  351. package/injective/bundle.js +18 -18
  352. package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
  353. package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  354. package/injective/exchange/v1beta1/authz.d.ts +174 -6
  355. package/injective/exchange/v1beta1/authz.js +58 -0
  356. package/injective/exchange/v1beta1/events.d.ts +546 -2
  357. package/injective/exchange/v1beta1/events.js +180 -0
  358. package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
  359. package/injective/exchange/v1beta1/exchange.js +263 -0
  360. package/injective/exchange/v1beta1/genesis.d.ts +357 -38
  361. package/injective/exchange/v1beta1/genesis.js +89 -0
  362. package/injective/exchange/v1beta1/proposal.d.ts +589 -94
  363. package/injective/exchange/v1beta1/proposal.js +113 -0
  364. package/injective/exchange/v1beta1/query.d.ts +2162 -136
  365. package/injective/exchange/v1beta1/query.js +864 -0
  366. package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
  367. package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  368. package/injective/exchange/v1beta1/tx.d.ts +1503 -170
  369. package/injective/exchange/v1beta1/tx.js +487 -0
  370. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
  371. package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  372. package/injective/insurance/v1beta1/events.d.ts +111 -12
  373. package/injective/insurance/v1beta1/events.js +25 -0
  374. package/injective/insurance/v1beta1/genesis.d.ts +30 -6
  375. package/injective/insurance/v1beta1/genesis.js +6 -0
  376. package/injective/insurance/v1beta1/insurance.d.ts +117 -24
  377. package/injective/insurance/v1beta1/insurance.js +15 -0
  378. package/injective/insurance/v1beta1/query.d.ts +162 -2
  379. package/injective/insurance/v1beta1/query.js +84 -0
  380. package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
  381. package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  382. package/injective/insurance/v1beta1/tx.d.ts +186 -24
  383. package/injective/insurance/v1beta1/tx.js +46 -0
  384. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
  385. package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  386. package/injective/ocr/v1beta1/genesis.d.ts +171 -18
  387. package/injective/ocr/v1beta1/genesis.js +41 -0
  388. package/injective/ocr/v1beta1/ocr.d.ts +514 -68
  389. package/injective/ocr/v1beta1/ocr.js +108 -0
  390. package/injective/ocr/v1beta1/query.d.ts +210 -0
  391. package/injective/ocr/v1beta1/query.js +70 -0
  392. package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
  393. package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  394. package/injective/ocr/v1beta1/tx.d.ts +360 -30
  395. package/injective/ocr/v1beta1/tx.js +90 -0
  396. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
  397. package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  398. package/injective/oracle/v1beta1/events.d.ts +174 -4
  399. package/injective/oracle/v1beta1/events.js +56 -0
  400. package/injective/oracle/v1beta1/genesis.d.ts +39 -4
  401. package/injective/oracle/v1beta1/genesis.js +11 -0
  402. package/injective/oracle/v1beta1/oracle.d.ts +514 -52
  403. package/injective/oracle/v1beta1/oracle.js +122 -0
  404. package/injective/oracle/v1beta1/proposal.d.ts +165 -0
  405. package/injective/oracle/v1beta1/proposal.js +55 -0
  406. package/injective/oracle/v1beta1/query.d.ts +502 -0
  407. package/injective/oracle/v1beta1/query.js +240 -0
  408. package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
  409. package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  410. package/injective/oracle/v1beta1/tx.d.ts +251 -10
  411. package/injective/oracle/v1beta1/tx.js +93 -0
  412. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
  413. package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  414. package/injective/peggy/v1/attestation.d.ts +43 -0
  415. package/injective/peggy/v1/attestation.js +31 -0
  416. package/injective/peggy/v1/batch.d.ts +36 -4
  417. package/injective/peggy/v1/batch.js +12 -0
  418. package/injective/peggy/v1/events.d.ts +255 -0
  419. package/injective/peggy/v1/events.js +85 -0
  420. package/injective/peggy/v1/genesis.d.ts +18 -2
  421. package/injective/peggy/v1/genesis.js +6 -0
  422. package/injective/peggy/v1/msgs.d.ts +473 -10
  423. package/injective/peggy/v1/msgs.js +223 -0
  424. package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
  425. package/injective/peggy/v1/msgs.rpc.func.js +73 -3
  426. package/injective/peggy/v1/params.d.ts +15 -0
  427. package/injective/peggy/v1/params.js +5 -0
  428. package/injective/peggy/v1/pool.d.ts +33 -2
  429. package/injective/peggy/v1/pool.js +11 -0
  430. package/injective/peggy/v1/proposal.d.ts +30 -0
  431. package/injective/peggy/v1/proposal.js +10 -0
  432. package/injective/peggy/v1/query.d.ts +626 -0
  433. package/injective/peggy/v1/query.js +214 -0
  434. package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
  435. package/injective/peggy/v1/query.rpc.func.js +110 -5
  436. package/injective/peggy/v1/types.d.ts +85 -6
  437. package/injective/peggy/v1/types.js +37 -0
  438. package/injective/permissions/v1beta1/events.d.ts +15 -0
  439. package/injective/permissions/v1beta1/events.js +5 -0
  440. package/injective/permissions/v1beta1/genesis.d.ts +24 -4
  441. package/injective/permissions/v1beta1/genesis.js +6 -0
  442. package/injective/permissions/v1beta1/params.d.ts +18 -2
  443. package/injective/permissions/v1beta1/params.js +6 -0
  444. package/injective/permissions/v1beta1/permissions.d.ts +117 -12
  445. package/injective/permissions/v1beta1/permissions.js +33 -0
  446. package/injective/permissions/v1beta1/query.d.ts +180 -6
  447. package/injective/permissions/v1beta1/query.js +74 -0
  448. package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
  449. package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  450. package/injective/permissions/v1beta1/tx.d.ts +318 -16
  451. package/injective/permissions/v1beta1/tx.js +90 -0
  452. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
  453. package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  454. package/injective/stream/v1beta1/query.d.ts +336 -2
  455. package/injective/stream/v1beta1/query.js +110 -0
  456. package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
  457. package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  458. package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
  459. package/injective/tokenfactory/v1beta1/events.js +25 -0
  460. package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
  461. package/injective/tokenfactory/v1beta1/genesis.js +14 -0
  462. package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
  463. package/injective/tokenfactory/v1beta1/params.js +6 -0
  464. package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
  465. package/injective/tokenfactory/v1beta1/query.js +54 -0
  466. package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
  467. package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  468. package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
  469. package/injective/tokenfactory/v1beta1/tx.js +83 -0
  470. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
  471. package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  472. package/injective/types/v1beta1/account.d.ts +13 -0
  473. package/injective/types/v1beta1/account.js +7 -0
  474. package/injective/types/v1beta1/tx_ext.d.ts +15 -0
  475. package/injective/types/v1beta1/tx_ext.js +5 -0
  476. package/injective/types/v1beta1/tx_response.d.ts +31 -2
  477. package/injective/types/v1beta1/tx_response.js +13 -0
  478. package/injective/wasmx/v1/events.d.ts +45 -0
  479. package/injective/wasmx/v1/events.js +15 -0
  480. package/injective/wasmx/v1/genesis.d.ts +39 -4
  481. package/injective/wasmx/v1/genesis.js +11 -0
  482. package/injective/wasmx/v1/proposal.d.ts +99 -8
  483. package/injective/wasmx/v1/proposal.js +25 -0
  484. package/injective/wasmx/v1/query.d.ts +85 -2
  485. package/injective/wasmx/v1/query.js +39 -0
  486. package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
  487. package/injective/wasmx/v1/query.rpc.func.js +18 -3
  488. package/injective/wasmx/v1/tx.d.ts +253 -26
  489. package/injective/wasmx/v1/tx.js +63 -0
  490. package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
  491. package/injective/wasmx/v1/tx.rpc.func.js +30 -0
  492. package/injective/wasmx/v1/wasmx.d.ts +60 -10
  493. package/injective/wasmx/v1/wasmx.js +10 -0
  494. package/package.json +9 -9
  495. package/registry.d.ts +1 -1
  496. package/registry.js +1 -1
  497. package/tendermint/abci/types.d.ts +971 -98
  498. package/tendermint/abci/types.js +255 -0
  499. package/tendermint/crypto/keys.d.ts +18 -2
  500. package/tendermint/crypto/keys.js +6 -0
  501. package/tendermint/crypto/proof.d.ts +89 -6
  502. package/tendermint/crypto/proof.js +29 -0
  503. package/tendermint/types/block.d.ts +15 -0
  504. package/tendermint/types/block.js +5 -0
  505. package/tendermint/types/evidence.d.ts +66 -4
  506. package/tendermint/types/evidence.js +22 -0
  507. package/tendermint/types/params.d.ts +112 -8
  508. package/tendermint/types/params.js +46 -0
  509. package/tendermint/types/types.d.ts +327 -42
  510. package/tendermint/types/types.js +87 -0
  511. package/tendermint/types/validator.d.ts +45 -0
  512. package/tendermint/types/validator.js +15 -0
  513. package/tendermint/version/types.d.ts +28 -0
  514. package/tendermint/version/types.js +16 -0
  515. package/types.d.ts +1 -1
  516. package/types.js +1 -1
  517. package/utf8.d.ts +1 -1
  518. package/utf8.js +1 -1
  519. package/varint.d.ts +1 -1
  520. package/varint.js +1 -1
@@ -280,6 +280,9 @@ export declare function generatedCodeInfo_Annotation_SemanticToJSON(object: Gene
280
280
  /**
281
281
  * The protocol compiler can output a FileDescriptorSet containing the .proto
282
282
  * files it parses.
283
+ * @name FileDescriptorSet
284
+ * @package google.protobuf
285
+ * @see proto type: google.protobuf.FileDescriptorSet
283
286
  */
284
287
  export interface FileDescriptorSet {
285
288
  file: FileDescriptorProto[];
@@ -291,6 +294,9 @@ export interface FileDescriptorSetProtoMsg {
291
294
  /**
292
295
  * The protocol compiler can output a FileDescriptorSet containing the .proto
293
296
  * files it parses.
297
+ * @name FileDescriptorSetAmino
298
+ * @package google.protobuf
299
+ * @see proto type: google.protobuf.FileDescriptorSet
294
300
  */
295
301
  export interface FileDescriptorSetAmino {
296
302
  file: FileDescriptorProtoAmino[];
@@ -299,22 +305,37 @@ export interface FileDescriptorSetAminoMsg {
299
305
  type: "/google.protobuf.FileDescriptorSet";
300
306
  value: FileDescriptorSetAmino;
301
307
  }
302
- /** Describes a complete .proto file. */
308
+ /**
309
+ * Describes a complete .proto file.
310
+ * @name FileDescriptorProto
311
+ * @package google.protobuf
312
+ * @see proto type: google.protobuf.FileDescriptorProto
313
+ */
303
314
  export interface FileDescriptorProto {
304
- /** file name, relative to root of source tree */
315
+ /**
316
+ * file name, relative to root of source tree
317
+ */
305
318
  name: string;
306
- /** e.g. "foo", "foo.bar", etc. */
319
+ /**
320
+ * e.g. "foo", "foo.bar", etc.
321
+ */
307
322
  package: string;
308
- /** Names of files imported by this file. */
323
+ /**
324
+ * Names of files imported by this file.
325
+ */
309
326
  dependency: string[];
310
- /** Indexes of the public imported files in the dependency list above. */
327
+ /**
328
+ * Indexes of the public imported files in the dependency list above.
329
+ */
311
330
  publicDependency: number[];
312
331
  /**
313
332
  * Indexes of the weak imported files in the dependency list.
314
333
  * For Google-internal migration only. Do not use.
315
334
  */
316
335
  weakDependency: number[];
317
- /** All top-level definitions in this file. */
336
+ /**
337
+ * All top-level definitions in this file.
338
+ */
318
339
  messageType: DescriptorProto[];
319
340
  enumType: EnumDescriptorProto[];
320
341
  service: ServiceDescriptorProto[];
@@ -349,22 +370,37 @@ export interface FileDescriptorProtoProtoMsg {
349
370
  typeUrl: "/google.protobuf.FileDescriptorProto";
350
371
  value: Uint8Array;
351
372
  }
352
- /** Describes a complete .proto file. */
373
+ /**
374
+ * Describes a complete .proto file.
375
+ * @name FileDescriptorProtoAmino
376
+ * @package google.protobuf
377
+ * @see proto type: google.protobuf.FileDescriptorProto
378
+ */
353
379
  export interface FileDescriptorProtoAmino {
354
- /** file name, relative to root of source tree */
380
+ /**
381
+ * file name, relative to root of source tree
382
+ */
355
383
  name: string;
356
- /** e.g. "foo", "foo.bar", etc. */
384
+ /**
385
+ * e.g. "foo", "foo.bar", etc.
386
+ */
357
387
  package: string;
358
- /** Names of files imported by this file. */
388
+ /**
389
+ * Names of files imported by this file.
390
+ */
359
391
  dependency: string[];
360
- /** Indexes of the public imported files in the dependency list above. */
392
+ /**
393
+ * Indexes of the public imported files in the dependency list above.
394
+ */
361
395
  public_dependency: number[];
362
396
  /**
363
397
  * Indexes of the weak imported files in the dependency list.
364
398
  * For Google-internal migration only. Do not use.
365
399
  */
366
400
  weak_dependency: number[];
367
- /** All top-level definitions in this file. */
401
+ /**
402
+ * All top-level definitions in this file.
403
+ */
368
404
  message_type: DescriptorProtoAmino[];
369
405
  enum_type: EnumDescriptorProtoAmino[];
370
406
  service: ServiceDescriptorProtoAmino[];
@@ -399,7 +435,12 @@ export interface FileDescriptorProtoAminoMsg {
399
435
  type: "/google.protobuf.FileDescriptorProto";
400
436
  value: FileDescriptorProtoAmino;
401
437
  }
402
- /** Describes a message type. */
438
+ /**
439
+ * Describes a message type.
440
+ * @name DescriptorProto
441
+ * @package google.protobuf
442
+ * @see proto type: google.protobuf.DescriptorProto
443
+ */
403
444
  export interface DescriptorProto {
404
445
  name: string;
405
446
  field: FieldDescriptorProto[];
@@ -420,7 +461,12 @@ export interface DescriptorProtoProtoMsg {
420
461
  typeUrl: "/google.protobuf.DescriptorProto";
421
462
  value: Uint8Array;
422
463
  }
423
- /** Describes a message type. */
464
+ /**
465
+ * Describes a message type.
466
+ * @name DescriptorProtoAmino
467
+ * @package google.protobuf
468
+ * @see proto type: google.protobuf.DescriptorProto
469
+ */
424
470
  export interface DescriptorProtoAmino {
425
471
  name: string;
426
472
  field: FieldDescriptorProtoAmino[];
@@ -441,10 +487,19 @@ export interface DescriptorProtoAminoMsg {
441
487
  type: "/google.protobuf.DescriptorProto";
442
488
  value: DescriptorProtoAmino;
443
489
  }
490
+ /**
491
+ * @name DescriptorProto_ExtensionRange
492
+ * @package google.protobuf
493
+ * @see proto type: google.protobuf.ExtensionRange
494
+ */
444
495
  export interface DescriptorProto_ExtensionRange {
445
- /** Inclusive. */
496
+ /**
497
+ * Inclusive.
498
+ */
446
499
  start: number;
447
- /** Exclusive. */
500
+ /**
501
+ * Exclusive.
502
+ */
448
503
  end: number;
449
504
  options?: ExtensionRangeOptions;
450
505
  }
@@ -452,10 +507,19 @@ export interface DescriptorProto_ExtensionRangeProtoMsg {
452
507
  typeUrl: "/google.protobuf.ExtensionRange";
453
508
  value: Uint8Array;
454
509
  }
510
+ /**
511
+ * @name DescriptorProto_ExtensionRangeAmino
512
+ * @package google.protobuf
513
+ * @see proto type: google.protobuf.DescriptorProto_ExtensionRange
514
+ */
455
515
  export interface DescriptorProto_ExtensionRangeAmino {
456
- /** Inclusive. */
516
+ /**
517
+ * Inclusive.
518
+ */
457
519
  start: number;
458
- /** Exclusive. */
520
+ /**
521
+ * Exclusive.
522
+ */
459
523
  end: number;
460
524
  options?: ExtensionRangeOptionsAmino;
461
525
  }
@@ -467,11 +531,18 @@ export interface DescriptorProto_ExtensionRangeAminoMsg {
467
531
  * Range of reserved tag numbers. Reserved tag numbers may not be used by
468
532
  * fields or extension ranges in the same message. Reserved ranges may
469
533
  * not overlap.
534
+ * @name DescriptorProto_ReservedRange
535
+ * @package google.protobuf
536
+ * @see proto type: google.protobuf.ReservedRange
470
537
  */
471
538
  export interface DescriptorProto_ReservedRange {
472
- /** Inclusive. */
539
+ /**
540
+ * Inclusive.
541
+ */
473
542
  start: number;
474
- /** Exclusive. */
543
+ /**
544
+ * Exclusive.
545
+ */
475
546
  end: number;
476
547
  }
477
548
  export interface DescriptorProto_ReservedRangeProtoMsg {
@@ -482,19 +553,33 @@ export interface DescriptorProto_ReservedRangeProtoMsg {
482
553
  * Range of reserved tag numbers. Reserved tag numbers may not be used by
483
554
  * fields or extension ranges in the same message. Reserved ranges may
484
555
  * not overlap.
556
+ * @name DescriptorProto_ReservedRangeAmino
557
+ * @package google.protobuf
558
+ * @see proto type: google.protobuf.DescriptorProto_ReservedRange
485
559
  */
486
560
  export interface DescriptorProto_ReservedRangeAmino {
487
- /** Inclusive. */
561
+ /**
562
+ * Inclusive.
563
+ */
488
564
  start: number;
489
- /** Exclusive. */
565
+ /**
566
+ * Exclusive.
567
+ */
490
568
  end: number;
491
569
  }
492
570
  export interface DescriptorProto_ReservedRangeAminoMsg {
493
571
  type: "/google.protobuf.ReservedRange";
494
572
  value: DescriptorProto_ReservedRangeAmino;
495
573
  }
574
+ /**
575
+ * @name ExtensionRangeOptions
576
+ * @package google.protobuf
577
+ * @see proto type: google.protobuf.ExtensionRangeOptions
578
+ */
496
579
  export interface ExtensionRangeOptions {
497
- /** The parser stores options it doesn't recognize here. See above. */
580
+ /**
581
+ * The parser stores options it doesn't recognize here. See above.
582
+ */
498
583
  uninterpretedOption: UninterpretedOption[];
499
584
  /**
500
585
  * For external users: DO NOT USE. We are in the process of open sourcing
@@ -502,7 +587,9 @@ export interface ExtensionRangeOptions {
502
587
  * used externally.
503
588
  */
504
589
  declaration: ExtensionRangeOptions_Declaration[];
505
- /** Any features defined in the specific edition. */
590
+ /**
591
+ * Any features defined in the specific edition.
592
+ */
506
593
  features?: FeatureSet;
507
594
  /**
508
595
  * The verification state of the range.
@@ -515,8 +602,15 @@ export interface ExtensionRangeOptionsProtoMsg {
515
602
  typeUrl: "/google.protobuf.ExtensionRangeOptions";
516
603
  value: Uint8Array;
517
604
  }
605
+ /**
606
+ * @name ExtensionRangeOptionsAmino
607
+ * @package google.protobuf
608
+ * @see proto type: google.protobuf.ExtensionRangeOptions
609
+ */
518
610
  export interface ExtensionRangeOptionsAmino {
519
- /** The parser stores options it doesn't recognize here. See above. */
611
+ /**
612
+ * The parser stores options it doesn't recognize here. See above.
613
+ */
520
614
  uninterpreted_option: UninterpretedOptionAmino[];
521
615
  /**
522
616
  * For external users: DO NOT USE. We are in the process of open sourcing
@@ -524,7 +618,9 @@ export interface ExtensionRangeOptionsAmino {
524
618
  * used externally.
525
619
  */
526
620
  declaration: ExtensionRangeOptions_DeclarationAmino[];
527
- /** Any features defined in the specific edition. */
621
+ /**
622
+ * Any features defined in the specific edition.
623
+ */
528
624
  features?: FeatureSetAmino;
529
625
  /**
530
626
  * The verification state of the range.
@@ -537,8 +633,15 @@ export interface ExtensionRangeOptionsAminoMsg {
537
633
  type: "/google.protobuf.ExtensionRangeOptions";
538
634
  value: ExtensionRangeOptionsAmino;
539
635
  }
636
+ /**
637
+ * @name ExtensionRangeOptions_Declaration
638
+ * @package google.protobuf
639
+ * @see proto type: google.protobuf.Declaration
640
+ */
540
641
  export interface ExtensionRangeOptions_Declaration {
541
- /** The extension number declared within the extension range. */
642
+ /**
643
+ * The extension number declared within the extension range.
644
+ */
542
645
  number: number;
543
646
  /**
544
647
  * The fully-qualified name of the extension field. There must be a leading
@@ -567,8 +670,15 @@ export interface ExtensionRangeOptions_DeclarationProtoMsg {
567
670
  typeUrl: "/google.protobuf.Declaration";
568
671
  value: Uint8Array;
569
672
  }
673
+ /**
674
+ * @name ExtensionRangeOptions_DeclarationAmino
675
+ * @package google.protobuf
676
+ * @see proto type: google.protobuf.ExtensionRangeOptions_Declaration
677
+ */
570
678
  export interface ExtensionRangeOptions_DeclarationAmino {
571
- /** The extension number declared within the extension range. */
679
+ /**
680
+ * The extension number declared within the extension range.
681
+ */
572
682
  number: number;
573
683
  /**
574
684
  * The fully-qualified name of the extension field. There must be a leading
@@ -597,7 +707,12 @@ export interface ExtensionRangeOptions_DeclarationAminoMsg {
597
707
  type: "/google.protobuf.Declaration";
598
708
  value: ExtensionRangeOptions_DeclarationAmino;
599
709
  }
600
- /** Describes a field within a message. */
710
+ /**
711
+ * Describes a field within a message.
712
+ * @name FieldDescriptorProto
713
+ * @package google.protobuf
714
+ * @see proto type: google.protobuf.FieldDescriptorProto
715
+ */
601
716
  export interface FieldDescriptorProto {
602
717
  name: string;
603
718
  number: number;
@@ -669,7 +784,12 @@ export interface FieldDescriptorProtoProtoMsg {
669
784
  typeUrl: "/google.protobuf.FieldDescriptorProto";
670
785
  value: Uint8Array;
671
786
  }
672
- /** Describes a field within a message. */
787
+ /**
788
+ * Describes a field within a message.
789
+ * @name FieldDescriptorProtoAmino
790
+ * @package google.protobuf
791
+ * @see proto type: google.protobuf.FieldDescriptorProto
792
+ */
673
793
  export interface FieldDescriptorProtoAmino {
674
794
  name: string;
675
795
  number: number;
@@ -741,7 +861,12 @@ export interface FieldDescriptorProtoAminoMsg {
741
861
  type: "/google.protobuf.FieldDescriptorProto";
742
862
  value: FieldDescriptorProtoAmino;
743
863
  }
744
- /** Describes a oneof. */
864
+ /**
865
+ * Describes a oneof.
866
+ * @name OneofDescriptorProto
867
+ * @package google.protobuf
868
+ * @see proto type: google.protobuf.OneofDescriptorProto
869
+ */
745
870
  export interface OneofDescriptorProto {
746
871
  name: string;
747
872
  options?: OneofOptions;
@@ -750,7 +875,12 @@ export interface OneofDescriptorProtoProtoMsg {
750
875
  typeUrl: "/google.protobuf.OneofDescriptorProto";
751
876
  value: Uint8Array;
752
877
  }
753
- /** Describes a oneof. */
878
+ /**
879
+ * Describes a oneof.
880
+ * @name OneofDescriptorProtoAmino
881
+ * @package google.protobuf
882
+ * @see proto type: google.protobuf.OneofDescriptorProto
883
+ */
754
884
  export interface OneofDescriptorProtoAmino {
755
885
  name: string;
756
886
  options?: OneofOptionsAmino;
@@ -759,7 +889,12 @@ export interface OneofDescriptorProtoAminoMsg {
759
889
  type: "/google.protobuf.OneofDescriptorProto";
760
890
  value: OneofDescriptorProtoAmino;
761
891
  }
762
- /** Describes an enum type. */
892
+ /**
893
+ * Describes an enum type.
894
+ * @name EnumDescriptorProto
895
+ * @package google.protobuf
896
+ * @see proto type: google.protobuf.EnumDescriptorProto
897
+ */
763
898
  export interface EnumDescriptorProto {
764
899
  name: string;
765
900
  value: EnumValueDescriptorProto[];
@@ -780,7 +915,12 @@ export interface EnumDescriptorProtoProtoMsg {
780
915
  typeUrl: "/google.protobuf.EnumDescriptorProto";
781
916
  value: Uint8Array;
782
917
  }
783
- /** Describes an enum type. */
918
+ /**
919
+ * Describes an enum type.
920
+ * @name EnumDescriptorProtoAmino
921
+ * @package google.protobuf
922
+ * @see proto type: google.protobuf.EnumDescriptorProto
923
+ */
784
924
  export interface EnumDescriptorProtoAmino {
785
925
  name: string;
786
926
  value: EnumValueDescriptorProtoAmino[];
@@ -808,11 +948,18 @@ export interface EnumDescriptorProtoAminoMsg {
808
948
  * Note that this is distinct from DescriptorProto.ReservedRange in that it
809
949
  * is inclusive such that it can appropriately represent the entire int32
810
950
  * domain.
951
+ * @name EnumDescriptorProto_EnumReservedRange
952
+ * @package google.protobuf
953
+ * @see proto type: google.protobuf.EnumReservedRange
811
954
  */
812
955
  export interface EnumDescriptorProto_EnumReservedRange {
813
- /** Inclusive. */
956
+ /**
957
+ * Inclusive.
958
+ */
814
959
  start: number;
815
- /** Inclusive. */
960
+ /**
961
+ * Inclusive.
962
+ */
816
963
  end: number;
817
964
  }
818
965
  export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
@@ -826,18 +973,30 @@ export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
826
973
  * Note that this is distinct from DescriptorProto.ReservedRange in that it
827
974
  * is inclusive such that it can appropriately represent the entire int32
828
975
  * domain.
976
+ * @name EnumDescriptorProto_EnumReservedRangeAmino
977
+ * @package google.protobuf
978
+ * @see proto type: google.protobuf.EnumDescriptorProto_EnumReservedRange
829
979
  */
830
980
  export interface EnumDescriptorProto_EnumReservedRangeAmino {
831
- /** Inclusive. */
981
+ /**
982
+ * Inclusive.
983
+ */
832
984
  start: number;
833
- /** Inclusive. */
985
+ /**
986
+ * Inclusive.
987
+ */
834
988
  end: number;
835
989
  }
836
990
  export interface EnumDescriptorProto_EnumReservedRangeAminoMsg {
837
991
  type: "/google.protobuf.EnumReservedRange";
838
992
  value: EnumDescriptorProto_EnumReservedRangeAmino;
839
993
  }
840
- /** Describes a value within an enum. */
994
+ /**
995
+ * Describes a value within an enum.
996
+ * @name EnumValueDescriptorProto
997
+ * @package google.protobuf
998
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
999
+ */
841
1000
  export interface EnumValueDescriptorProto {
842
1001
  name: string;
843
1002
  number: number;
@@ -847,7 +1006,12 @@ export interface EnumValueDescriptorProtoProtoMsg {
847
1006
  typeUrl: "/google.protobuf.EnumValueDescriptorProto";
848
1007
  value: Uint8Array;
849
1008
  }
850
- /** Describes a value within an enum. */
1009
+ /**
1010
+ * Describes a value within an enum.
1011
+ * @name EnumValueDescriptorProtoAmino
1012
+ * @package google.protobuf
1013
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
1014
+ */
851
1015
  export interface EnumValueDescriptorProtoAmino {
852
1016
  name: string;
853
1017
  number: number;
@@ -857,7 +1021,12 @@ export interface EnumValueDescriptorProtoAminoMsg {
857
1021
  type: "/google.protobuf.EnumValueDescriptorProto";
858
1022
  value: EnumValueDescriptorProtoAmino;
859
1023
  }
860
- /** Describes a service. */
1024
+ /**
1025
+ * Describes a service.
1026
+ * @name ServiceDescriptorProto
1027
+ * @package google.protobuf
1028
+ * @see proto type: google.protobuf.ServiceDescriptorProto
1029
+ */
861
1030
  export interface ServiceDescriptorProto {
862
1031
  name: string;
863
1032
  method: MethodDescriptorProto[];
@@ -867,7 +1036,12 @@ export interface ServiceDescriptorProtoProtoMsg {
867
1036
  typeUrl: "/google.protobuf.ServiceDescriptorProto";
868
1037
  value: Uint8Array;
869
1038
  }
870
- /** Describes a service. */
1039
+ /**
1040
+ * Describes a service.
1041
+ * @name ServiceDescriptorProtoAmino
1042
+ * @package google.protobuf
1043
+ * @see proto type: google.protobuf.ServiceDescriptorProto
1044
+ */
871
1045
  export interface ServiceDescriptorProtoAmino {
872
1046
  name: string;
873
1047
  method: MethodDescriptorProtoAmino[];
@@ -877,7 +1051,12 @@ export interface ServiceDescriptorProtoAminoMsg {
877
1051
  type: "/google.protobuf.ServiceDescriptorProto";
878
1052
  value: ServiceDescriptorProtoAmino;
879
1053
  }
880
- /** Describes a method of a service. */
1054
+ /**
1055
+ * Describes a method of a service.
1056
+ * @name MethodDescriptorProto
1057
+ * @package google.protobuf
1058
+ * @see proto type: google.protobuf.MethodDescriptorProto
1059
+ */
881
1060
  export interface MethodDescriptorProto {
882
1061
  name: string;
883
1062
  /**
@@ -887,16 +1066,25 @@ export interface MethodDescriptorProto {
887
1066
  inputType: string;
888
1067
  outputType: string;
889
1068
  options?: MethodOptions;
890
- /** Identifies if client streams multiple client messages */
1069
+ /**
1070
+ * Identifies if client streams multiple client messages
1071
+ */
891
1072
  clientStreaming: boolean;
892
- /** Identifies if server streams multiple server messages */
1073
+ /**
1074
+ * Identifies if server streams multiple server messages
1075
+ */
893
1076
  serverStreaming: boolean;
894
1077
  }
895
1078
  export interface MethodDescriptorProtoProtoMsg {
896
1079
  typeUrl: "/google.protobuf.MethodDescriptorProto";
897
1080
  value: Uint8Array;
898
1081
  }
899
- /** Describes a method of a service. */
1082
+ /**
1083
+ * Describes a method of a service.
1084
+ * @name MethodDescriptorProtoAmino
1085
+ * @package google.protobuf
1086
+ * @see proto type: google.protobuf.MethodDescriptorProto
1087
+ */
900
1088
  export interface MethodDescriptorProtoAmino {
901
1089
  name: string;
902
1090
  /**
@@ -906,15 +1094,24 @@ export interface MethodDescriptorProtoAmino {
906
1094
  input_type: string;
907
1095
  output_type: string;
908
1096
  options?: MethodOptionsAmino;
909
- /** Identifies if client streams multiple client messages */
1097
+ /**
1098
+ * Identifies if client streams multiple client messages
1099
+ */
910
1100
  client_streaming: boolean;
911
- /** Identifies if server streams multiple server messages */
1101
+ /**
1102
+ * Identifies if server streams multiple server messages
1103
+ */
912
1104
  server_streaming: boolean;
913
1105
  }
914
1106
  export interface MethodDescriptorProtoAminoMsg {
915
1107
  type: "/google.protobuf.MethodDescriptorProto";
916
1108
  value: MethodDescriptorProtoAmino;
917
1109
  }
1110
+ /**
1111
+ * @name FileOptions
1112
+ * @package google.protobuf
1113
+ * @see proto type: google.protobuf.FileOptions
1114
+ */
918
1115
  export interface FileOptions {
919
1116
  /**
920
1117
  * Sets the Java package where classes generated from this .proto will be
@@ -940,8 +1137,10 @@ export interface FileOptions {
940
1137
  * top-level extensions defined in the file.
941
1138
  */
942
1139
  javaMultipleFiles: boolean;
943
- /** This option does nothing. */
944
- /** @deprecated */
1140
+ /**
1141
+ * This option does nothing.
1142
+ * @deprecated
1143
+ */
945
1144
  javaGenerateEqualsAndHash: boolean;
946
1145
  /**
947
1146
  * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
@@ -997,7 +1196,9 @@ export interface FileOptions {
997
1196
  * generated classes from this .proto. There is no default.
998
1197
  */
999
1198
  objcClassPrefix: string;
1000
- /** Namespace for generated classes; defaults to the package. */
1199
+ /**
1200
+ * Namespace for generated classes; defaults to the package.
1201
+ */
1001
1202
  csharpNamespace: string;
1002
1203
  /**
1003
1204
  * By default Swift generators will take the proto package and CamelCase it
@@ -1046,6 +1247,11 @@ export interface FileOptionsProtoMsg {
1046
1247
  typeUrl: "/google.protobuf.FileOptions";
1047
1248
  value: Uint8Array;
1048
1249
  }
1250
+ /**
1251
+ * @name FileOptionsAmino
1252
+ * @package google.protobuf
1253
+ * @see proto type: google.protobuf.FileOptions
1254
+ */
1049
1255
  export interface FileOptionsAmino {
1050
1256
  /**
1051
1257
  * Sets the Java package where classes generated from this .proto will be
@@ -1071,8 +1277,10 @@ export interface FileOptionsAmino {
1071
1277
  * top-level extensions defined in the file.
1072
1278
  */
1073
1279
  java_multiple_files: boolean;
1074
- /** This option does nothing. */
1075
- /** @deprecated */
1280
+ /**
1281
+ * This option does nothing.
1282
+ * @deprecated
1283
+ */
1076
1284
  java_generate_equals_and_hash: boolean;
1077
1285
  /**
1078
1286
  * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
@@ -1128,7 +1336,9 @@ export interface FileOptionsAmino {
1128
1336
  * generated classes from this .proto. There is no default.
1129
1337
  */
1130
1338
  objc_class_prefix: string;
1131
- /** Namespace for generated classes; defaults to the package. */
1339
+ /**
1340
+ * Namespace for generated classes; defaults to the package.
1341
+ */
1132
1342
  csharp_namespace: string;
1133
1343
  /**
1134
1344
  * By default Swift generators will take the proto package and CamelCase it
@@ -1177,6 +1387,11 @@ export interface FileOptionsAminoMsg {
1177
1387
  type: "/google.protobuf.FileOptions";
1178
1388
  value: FileOptionsAmino;
1179
1389
  }
1390
+ /**
1391
+ * @name MessageOptions
1392
+ * @package google.protobuf
1393
+ * @see proto type: google.protobuf.MessageOptions
1394
+ */
1180
1395
  export interface MessageOptions {
1181
1396
  /**
1182
1397
  * Set true to use the old proto1 MessageSet wire format for extensions.
@@ -1247,8 +1462,8 @@ export interface MessageOptions {
1247
1462
  *
1248
1463
  * TODO This is legacy behavior we plan to remove once downstream
1249
1464
  * teams have had time to migrate.
1465
+ * @deprecated
1250
1466
  */
1251
- /** @deprecated */
1252
1467
  deprecatedLegacyJsonFieldConflicts: boolean;
1253
1468
  /**
1254
1469
  * Any features defined in the specific edition.
@@ -1257,13 +1472,20 @@ export interface MessageOptions {
1257
1472
  * developers should rely on the protoreflect APIs for their client language.
1258
1473
  */
1259
1474
  features?: FeatureSet;
1260
- /** The parser stores options it doesn't recognize here. See above. */
1475
+ /**
1476
+ * The parser stores options it doesn't recognize here. See above.
1477
+ */
1261
1478
  uninterpretedOption: UninterpretedOption[];
1262
1479
  }
1263
1480
  export interface MessageOptionsProtoMsg {
1264
1481
  typeUrl: "/google.protobuf.MessageOptions";
1265
1482
  value: Uint8Array;
1266
1483
  }
1484
+ /**
1485
+ * @name MessageOptionsAmino
1486
+ * @package google.protobuf
1487
+ * @see proto type: google.protobuf.MessageOptions
1488
+ */
1267
1489
  export interface MessageOptionsAmino {
1268
1490
  /**
1269
1491
  * Set true to use the old proto1 MessageSet wire format for extensions.
@@ -1334,8 +1556,8 @@ export interface MessageOptionsAmino {
1334
1556
  *
1335
1557
  * TODO This is legacy behavior we plan to remove once downstream
1336
1558
  * teams have had time to migrate.
1559
+ * @deprecated
1337
1560
  */
1338
- /** @deprecated */
1339
1561
  deprecated_legacy_json_field_conflicts: boolean;
1340
1562
  /**
1341
1563
  * Any features defined in the specific edition.
@@ -1344,13 +1566,20 @@ export interface MessageOptionsAmino {
1344
1566
  * developers should rely on the protoreflect APIs for their client language.
1345
1567
  */
1346
1568
  features?: FeatureSetAmino;
1347
- /** The parser stores options it doesn't recognize here. See above. */
1569
+ /**
1570
+ * The parser stores options it doesn't recognize here. See above.
1571
+ */
1348
1572
  uninterpreted_option: UninterpretedOptionAmino[];
1349
1573
  }
1350
1574
  export interface MessageOptionsAminoMsg {
1351
1575
  type: "/google.protobuf.MessageOptions";
1352
1576
  value: MessageOptionsAmino;
1353
1577
  }
1578
+ /**
1579
+ * @name FieldOptions
1580
+ * @package google.protobuf
1581
+ * @see proto type: google.protobuf.FieldOptions
1582
+ */
1354
1583
  export interface FieldOptions {
1355
1584
  /**
1356
1585
  * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
@@ -1424,7 +1653,9 @@ export interface FieldOptions {
1424
1653
  * is a formalization for deprecating fields.
1425
1654
  */
1426
1655
  deprecated: boolean;
1427
- /** For Google-internal migration only. Do not use. */
1656
+ /**
1657
+ * For Google-internal migration only. Do not use.
1658
+ */
1428
1659
  weak: boolean;
1429
1660
  /**
1430
1661
  * Indicate that the field value should not be printed out when using debug
@@ -1442,13 +1673,20 @@ export interface FieldOptions {
1442
1673
  */
1443
1674
  features?: FeatureSet;
1444
1675
  featureSupport?: FieldOptions_FeatureSupport;
1445
- /** The parser stores options it doesn't recognize here. See above. */
1676
+ /**
1677
+ * The parser stores options it doesn't recognize here. See above.
1678
+ */
1446
1679
  uninterpretedOption: UninterpretedOption[];
1447
1680
  }
1448
1681
  export interface FieldOptionsProtoMsg {
1449
1682
  typeUrl: "/google.protobuf.FieldOptions";
1450
1683
  value: Uint8Array;
1451
1684
  }
1685
+ /**
1686
+ * @name FieldOptionsAmino
1687
+ * @package google.protobuf
1688
+ * @see proto type: google.protobuf.FieldOptions
1689
+ */
1452
1690
  export interface FieldOptionsAmino {
1453
1691
  /**
1454
1692
  * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
@@ -1522,7 +1760,9 @@ export interface FieldOptionsAmino {
1522
1760
  * is a formalization for deprecating fields.
1523
1761
  */
1524
1762
  deprecated: boolean;
1525
- /** For Google-internal migration only. Do not use. */
1763
+ /**
1764
+ * For Google-internal migration only. Do not use.
1765
+ */
1526
1766
  weak: boolean;
1527
1767
  /**
1528
1768
  * Indicate that the field value should not be printed out when using debug
@@ -1540,32 +1780,53 @@ export interface FieldOptionsAmino {
1540
1780
  */
1541
1781
  features?: FeatureSetAmino;
1542
1782
  feature_support?: FieldOptions_FeatureSupportAmino;
1543
- /** The parser stores options it doesn't recognize here. See above. */
1783
+ /**
1784
+ * The parser stores options it doesn't recognize here. See above.
1785
+ */
1544
1786
  uninterpreted_option: UninterpretedOptionAmino[];
1545
1787
  }
1546
1788
  export interface FieldOptionsAminoMsg {
1547
1789
  type: "/google.protobuf.FieldOptions";
1548
1790
  value: FieldOptionsAmino;
1549
1791
  }
1792
+ /**
1793
+ * @name FieldOptions_EditionDefault
1794
+ * @package google.protobuf
1795
+ * @see proto type: google.protobuf.EditionDefault
1796
+ */
1550
1797
  export interface FieldOptions_EditionDefault {
1551
1798
  edition: Edition;
1552
- /** Textproto value. */
1799
+ /**
1800
+ * Textproto value.
1801
+ */
1553
1802
  value: string;
1554
1803
  }
1555
1804
  export interface FieldOptions_EditionDefaultProtoMsg {
1556
1805
  typeUrl: "/google.protobuf.EditionDefault";
1557
1806
  value: Uint8Array;
1558
1807
  }
1808
+ /**
1809
+ * @name FieldOptions_EditionDefaultAmino
1810
+ * @package google.protobuf
1811
+ * @see proto type: google.protobuf.FieldOptions_EditionDefault
1812
+ */
1559
1813
  export interface FieldOptions_EditionDefaultAmino {
1560
1814
  edition: Edition;
1561
- /** Textproto value. */
1815
+ /**
1816
+ * Textproto value.
1817
+ */
1562
1818
  value: string;
1563
1819
  }
1564
1820
  export interface FieldOptions_EditionDefaultAminoMsg {
1565
1821
  type: "/google.protobuf.EditionDefault";
1566
1822
  value: FieldOptions_EditionDefaultAmino;
1567
1823
  }
1568
- /** Information about the support window of a feature. */
1824
+ /**
1825
+ * Information about the support window of a feature.
1826
+ * @name FieldOptions_FeatureSupport
1827
+ * @package google.protobuf
1828
+ * @see proto type: google.protobuf.FeatureSupport
1829
+ */
1569
1830
  export interface FieldOptions_FeatureSupport {
1570
1831
  /**
1571
1832
  * The edition that this feature was first available in. In editions
@@ -1594,7 +1855,12 @@ export interface FieldOptions_FeatureSupportProtoMsg {
1594
1855
  typeUrl: "/google.protobuf.FeatureSupport";
1595
1856
  value: Uint8Array;
1596
1857
  }
1597
- /** Information about the support window of a feature. */
1858
+ /**
1859
+ * Information about the support window of a feature.
1860
+ * @name FieldOptions_FeatureSupportAmino
1861
+ * @package google.protobuf
1862
+ * @see proto type: google.protobuf.FieldOptions_FeatureSupport
1863
+ */
1598
1864
  export interface FieldOptions_FeatureSupportAmino {
1599
1865
  /**
1600
1866
  * The edition that this feature was first available in. In editions
@@ -1623,6 +1889,11 @@ export interface FieldOptions_FeatureSupportAminoMsg {
1623
1889
  type: "/google.protobuf.FeatureSupport";
1624
1890
  value: FieldOptions_FeatureSupportAmino;
1625
1891
  }
1892
+ /**
1893
+ * @name OneofOptions
1894
+ * @package google.protobuf
1895
+ * @see proto type: google.protobuf.OneofOptions
1896
+ */
1626
1897
  export interface OneofOptions {
1627
1898
  /**
1628
1899
  * Any features defined in the specific edition.
@@ -1631,13 +1902,20 @@ export interface OneofOptions {
1631
1902
  * developers should rely on the protoreflect APIs for their client language.
1632
1903
  */
1633
1904
  features?: FeatureSet;
1634
- /** The parser stores options it doesn't recognize here. See above. */
1905
+ /**
1906
+ * The parser stores options it doesn't recognize here. See above.
1907
+ */
1635
1908
  uninterpretedOption: UninterpretedOption[];
1636
1909
  }
1637
1910
  export interface OneofOptionsProtoMsg {
1638
1911
  typeUrl: "/google.protobuf.OneofOptions";
1639
1912
  value: Uint8Array;
1640
1913
  }
1914
+ /**
1915
+ * @name OneofOptionsAmino
1916
+ * @package google.protobuf
1917
+ * @see proto type: google.protobuf.OneofOptions
1918
+ */
1641
1919
  export interface OneofOptionsAmino {
1642
1920
  /**
1643
1921
  * Any features defined in the specific edition.
@@ -1646,13 +1924,20 @@ export interface OneofOptionsAmino {
1646
1924
  * developers should rely on the protoreflect APIs for their client language.
1647
1925
  */
1648
1926
  features?: FeatureSetAmino;
1649
- /** The parser stores options it doesn't recognize here. See above. */
1927
+ /**
1928
+ * The parser stores options it doesn't recognize here. See above.
1929
+ */
1650
1930
  uninterpreted_option: UninterpretedOptionAmino[];
1651
1931
  }
1652
1932
  export interface OneofOptionsAminoMsg {
1653
1933
  type: "/google.protobuf.OneofOptions";
1654
1934
  value: OneofOptionsAmino;
1655
1935
  }
1936
+ /**
1937
+ * @name EnumOptions
1938
+ * @package google.protobuf
1939
+ * @see proto type: google.protobuf.EnumOptions
1940
+ */
1656
1941
  export interface EnumOptions {
1657
1942
  /**
1658
1943
  * Set this option to true to allow mapping different tag names to the same
@@ -1673,8 +1958,8 @@ export interface EnumOptions {
1673
1958
  * well.
1674
1959
  * TODO Remove this legacy behavior once downstream teams have
1675
1960
  * had time to migrate.
1961
+ * @deprecated
1676
1962
  */
1677
- /** @deprecated */
1678
1963
  deprecatedLegacyJsonFieldConflicts: boolean;
1679
1964
  /**
1680
1965
  * Any features defined in the specific edition.
@@ -1683,13 +1968,20 @@ export interface EnumOptions {
1683
1968
  * developers should rely on the protoreflect APIs for their client language.
1684
1969
  */
1685
1970
  features?: FeatureSet;
1686
- /** The parser stores options it doesn't recognize here. See above. */
1971
+ /**
1972
+ * The parser stores options it doesn't recognize here. See above.
1973
+ */
1687
1974
  uninterpretedOption: UninterpretedOption[];
1688
1975
  }
1689
1976
  export interface EnumOptionsProtoMsg {
1690
1977
  typeUrl: "/google.protobuf.EnumOptions";
1691
1978
  value: Uint8Array;
1692
1979
  }
1980
+ /**
1981
+ * @name EnumOptionsAmino
1982
+ * @package google.protobuf
1983
+ * @see proto type: google.protobuf.EnumOptions
1984
+ */
1693
1985
  export interface EnumOptionsAmino {
1694
1986
  /**
1695
1987
  * Set this option to true to allow mapping different tag names to the same
@@ -1710,8 +2002,8 @@ export interface EnumOptionsAmino {
1710
2002
  * well.
1711
2003
  * TODO Remove this legacy behavior once downstream teams have
1712
2004
  * had time to migrate.
2005
+ * @deprecated
1713
2006
  */
1714
- /** @deprecated */
1715
2007
  deprecated_legacy_json_field_conflicts: boolean;
1716
2008
  /**
1717
2009
  * Any features defined in the specific edition.
@@ -1720,13 +2012,20 @@ export interface EnumOptionsAmino {
1720
2012
  * developers should rely on the protoreflect APIs for their client language.
1721
2013
  */
1722
2014
  features?: FeatureSetAmino;
1723
- /** The parser stores options it doesn't recognize here. See above. */
2015
+ /**
2016
+ * The parser stores options it doesn't recognize here. See above.
2017
+ */
1724
2018
  uninterpreted_option: UninterpretedOptionAmino[];
1725
2019
  }
1726
2020
  export interface EnumOptionsAminoMsg {
1727
2021
  type: "/google.protobuf.EnumOptions";
1728
2022
  value: EnumOptionsAmino;
1729
2023
  }
2024
+ /**
2025
+ * @name EnumValueOptions
2026
+ * @package google.protobuf
2027
+ * @see proto type: google.protobuf.EnumValueOptions
2028
+ */
1730
2029
  export interface EnumValueOptions {
1731
2030
  /**
1732
2031
  * Is this enum value deprecated?
@@ -1748,15 +2047,24 @@ export interface EnumValueOptions {
1748
2047
  * credentials.
1749
2048
  */
1750
2049
  debugRedact: boolean;
1751
- /** Information about the support window of a feature value. */
2050
+ /**
2051
+ * Information about the support window of a feature value.
2052
+ */
1752
2053
  featureSupport?: FieldOptions_FeatureSupport;
1753
- /** The parser stores options it doesn't recognize here. See above. */
2054
+ /**
2055
+ * The parser stores options it doesn't recognize here. See above.
2056
+ */
1754
2057
  uninterpretedOption: UninterpretedOption[];
1755
2058
  }
1756
2059
  export interface EnumValueOptionsProtoMsg {
1757
2060
  typeUrl: "/google.protobuf.EnumValueOptions";
1758
2061
  value: Uint8Array;
1759
2062
  }
2063
+ /**
2064
+ * @name EnumValueOptionsAmino
2065
+ * @package google.protobuf
2066
+ * @see proto type: google.protobuf.EnumValueOptions
2067
+ */
1760
2068
  export interface EnumValueOptionsAmino {
1761
2069
  /**
1762
2070
  * Is this enum value deprecated?
@@ -1778,15 +2086,24 @@ export interface EnumValueOptionsAmino {
1778
2086
  * credentials.
1779
2087
  */
1780
2088
  debug_redact: boolean;
1781
- /** Information about the support window of a feature value. */
2089
+ /**
2090
+ * Information about the support window of a feature value.
2091
+ */
1782
2092
  feature_support?: FieldOptions_FeatureSupportAmino;
1783
- /** The parser stores options it doesn't recognize here. See above. */
2093
+ /**
2094
+ * The parser stores options it doesn't recognize here. See above.
2095
+ */
1784
2096
  uninterpreted_option: UninterpretedOptionAmino[];
1785
2097
  }
1786
2098
  export interface EnumValueOptionsAminoMsg {
1787
2099
  type: "/google.protobuf.EnumValueOptions";
1788
2100
  value: EnumValueOptionsAmino;
1789
2101
  }
2102
+ /**
2103
+ * @name ServiceOptions
2104
+ * @package google.protobuf
2105
+ * @see proto type: google.protobuf.ServiceOptions
2106
+ */
1790
2107
  export interface ServiceOptions {
1791
2108
  /**
1792
2109
  * Any features defined in the specific edition.
@@ -1802,13 +2119,20 @@ export interface ServiceOptions {
1802
2119
  * this is a formalization for deprecating services.
1803
2120
  */
1804
2121
  deprecated: boolean;
1805
- /** The parser stores options it doesn't recognize here. See above. */
2122
+ /**
2123
+ * The parser stores options it doesn't recognize here. See above.
2124
+ */
1806
2125
  uninterpretedOption: UninterpretedOption[];
1807
2126
  }
1808
2127
  export interface ServiceOptionsProtoMsg {
1809
2128
  typeUrl: "/google.protobuf.ServiceOptions";
1810
2129
  value: Uint8Array;
1811
2130
  }
2131
+ /**
2132
+ * @name ServiceOptionsAmino
2133
+ * @package google.protobuf
2134
+ * @see proto type: google.protobuf.ServiceOptions
2135
+ */
1812
2136
  export interface ServiceOptionsAmino {
1813
2137
  /**
1814
2138
  * Any features defined in the specific edition.
@@ -1824,13 +2148,20 @@ export interface ServiceOptionsAmino {
1824
2148
  * this is a formalization for deprecating services.
1825
2149
  */
1826
2150
  deprecated: boolean;
1827
- /** The parser stores options it doesn't recognize here. See above. */
2151
+ /**
2152
+ * The parser stores options it doesn't recognize here. See above.
2153
+ */
1828
2154
  uninterpreted_option: UninterpretedOptionAmino[];
1829
2155
  }
1830
2156
  export interface ServiceOptionsAminoMsg {
1831
2157
  type: "/google.protobuf.ServiceOptions";
1832
2158
  value: ServiceOptionsAmino;
1833
2159
  }
2160
+ /**
2161
+ * @name MethodOptions
2162
+ * @package google.protobuf
2163
+ * @see proto type: google.protobuf.MethodOptions
2164
+ */
1834
2165
  export interface MethodOptions {
1835
2166
  /**
1836
2167
  * Is this method deprecated?
@@ -1847,13 +2178,20 @@ export interface MethodOptions {
1847
2178
  * developers should rely on the protoreflect APIs for their client language.
1848
2179
  */
1849
2180
  features?: FeatureSet;
1850
- /** The parser stores options it doesn't recognize here. See above. */
2181
+ /**
2182
+ * The parser stores options it doesn't recognize here. See above.
2183
+ */
1851
2184
  uninterpretedOption: UninterpretedOption[];
1852
2185
  }
1853
2186
  export interface MethodOptionsProtoMsg {
1854
2187
  typeUrl: "/google.protobuf.MethodOptions";
1855
2188
  value: Uint8Array;
1856
2189
  }
2190
+ /**
2191
+ * @name MethodOptionsAmino
2192
+ * @package google.protobuf
2193
+ * @see proto type: google.protobuf.MethodOptions
2194
+ */
1857
2195
  export interface MethodOptionsAmino {
1858
2196
  /**
1859
2197
  * Is this method deprecated?
@@ -1870,7 +2208,9 @@ export interface MethodOptionsAmino {
1870
2208
  * developers should rely on the protoreflect APIs for their client language.
1871
2209
  */
1872
2210
  features?: FeatureSetAmino;
1873
- /** The parser stores options it doesn't recognize here. See above. */
2211
+ /**
2212
+ * The parser stores options it doesn't recognize here. See above.
2213
+ */
1874
2214
  uninterpreted_option: UninterpretedOptionAmino[];
1875
2215
  }
1876
2216
  export interface MethodOptionsAminoMsg {
@@ -1884,6 +2224,9 @@ export interface MethodOptionsAminoMsg {
1884
2224
  * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1885
2225
  * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1886
2226
  * in them.
2227
+ * @name UninterpretedOption
2228
+ * @package google.protobuf
2229
+ * @see proto type: google.protobuf.UninterpretedOption
1887
2230
  */
1888
2231
  export interface UninterpretedOption {
1889
2232
  name: UninterpretedOption_NamePart[];
@@ -1909,6 +2252,9 @@ export interface UninterpretedOptionProtoMsg {
1909
2252
  * options protos in descriptor objects (e.g. returned by Descriptor::options(),
1910
2253
  * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
1911
2254
  * in them.
2255
+ * @name UninterpretedOptionAmino
2256
+ * @package google.protobuf
2257
+ * @see proto type: google.protobuf.UninterpretedOption
1912
2258
  */
1913
2259
  export interface UninterpretedOptionAmino {
1914
2260
  name: UninterpretedOption_NamePartAmino[];
@@ -1933,6 +2279,9 @@ export interface UninterpretedOptionAminoMsg {
1933
2279
  * extension (denoted with parentheses in options specs in .proto files).
1934
2280
  * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
1935
2281
  * "foo.(bar.baz).moo".
2282
+ * @name UninterpretedOption_NamePart
2283
+ * @package google.protobuf
2284
+ * @see proto type: google.protobuf.NamePart
1936
2285
  */
1937
2286
  export interface UninterpretedOption_NamePart {
1938
2287
  namePart: string;
@@ -1948,6 +2297,9 @@ export interface UninterpretedOption_NamePartProtoMsg {
1948
2297
  * extension (denoted with parentheses in options specs in .proto files).
1949
2298
  * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
1950
2299
  * "foo.(bar.baz).moo".
2300
+ * @name UninterpretedOption_NamePartAmino
2301
+ * @package google.protobuf
2302
+ * @see proto type: google.protobuf.UninterpretedOption_NamePart
1951
2303
  */
1952
2304
  export interface UninterpretedOption_NamePartAmino {
1953
2305
  name_part: string;
@@ -1964,6 +2316,9 @@ export interface UninterpretedOption_NamePartAminoMsg {
1964
2316
  * readability, but leave us very open to this scenario. A future feature will
1965
2317
  * be designed and implemented to handle this, hopefully before we ever hit a
1966
2318
  * conflict here.
2319
+ * @name FeatureSet
2320
+ * @package google.protobuf
2321
+ * @see proto type: google.protobuf.FeatureSet
1967
2322
  */
1968
2323
  export interface FeatureSet {
1969
2324
  fieldPresence: FeatureSet_FieldPresence;
@@ -1984,6 +2339,9 @@ export interface FeatureSetProtoMsg {
1984
2339
  * readability, but leave us very open to this scenario. A future feature will
1985
2340
  * be designed and implemented to handle this, hopefully before we ever hit a
1986
2341
  * conflict here.
2342
+ * @name FeatureSetAmino
2343
+ * @package google.protobuf
2344
+ * @see proto type: google.protobuf.FeatureSet
1987
2345
  */
1988
2346
  export interface FeatureSetAmino {
1989
2347
  field_presence: FeatureSet_FieldPresence;
@@ -2002,6 +2360,9 @@ export interface FeatureSetAminoMsg {
2002
2360
  * messages are generated from FeatureSet extensions and can be used to seed
2003
2361
  * feature resolution. The resolution with this object becomes a simple search
2004
2362
  * for the closest matching edition, followed by proto merges.
2363
+ * @name FeatureSetDefaults
2364
+ * @package google.protobuf
2365
+ * @see proto type: google.protobuf.FeatureSetDefaults
2005
2366
  */
2006
2367
  export interface FeatureSetDefaults {
2007
2368
  defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
@@ -2025,6 +2386,9 @@ export interface FeatureSetDefaultsProtoMsg {
2025
2386
  * messages are generated from FeatureSet extensions and can be used to seed
2026
2387
  * feature resolution. The resolution with this object becomes a simple search
2027
2388
  * for the closest matching edition, followed by proto merges.
2389
+ * @name FeatureSetDefaultsAmino
2390
+ * @package google.protobuf
2391
+ * @see proto type: google.protobuf.FeatureSetDefaults
2028
2392
  */
2029
2393
  export interface FeatureSetDefaultsAmino {
2030
2394
  defaults: FeatureSetDefaults_FeatureSetEditionDefaultAmino[];
@@ -2048,12 +2412,19 @@ export interface FeatureSetDefaultsAminoMsg {
2048
2412
  * defaults. Not all editions may be contained here. For a given edition,
2049
2413
  * the defaults at the closest matching edition ordered at or before it should
2050
2414
  * be used. This field must be in strict ascending order by edition.
2415
+ * @name FeatureSetDefaults_FeatureSetEditionDefault
2416
+ * @package google.protobuf
2417
+ * @see proto type: google.protobuf.FeatureSetEditionDefault
2051
2418
  */
2052
2419
  export interface FeatureSetDefaults_FeatureSetEditionDefault {
2053
2420
  edition: Edition;
2054
- /** Defaults of features that can be overridden in this edition. */
2421
+ /**
2422
+ * Defaults of features that can be overridden in this edition.
2423
+ */
2055
2424
  overridableFeatures?: FeatureSet;
2056
- /** Defaults of features that can't be overridden in this edition. */
2425
+ /**
2426
+ * Defaults of features that can't be overridden in this edition.
2427
+ */
2057
2428
  fixedFeatures?: FeatureSet;
2058
2429
  }
2059
2430
  export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
@@ -2065,12 +2436,19 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
2065
2436
  * defaults. Not all editions may be contained here. For a given edition,
2066
2437
  * the defaults at the closest matching edition ordered at or before it should
2067
2438
  * be used. This field must be in strict ascending order by edition.
2439
+ * @name FeatureSetDefaults_FeatureSetEditionDefaultAmino
2440
+ * @package google.protobuf
2441
+ * @see proto type: google.protobuf.FeatureSetDefaults_FeatureSetEditionDefault
2068
2442
  */
2069
2443
  export interface FeatureSetDefaults_FeatureSetEditionDefaultAmino {
2070
2444
  edition: Edition;
2071
- /** Defaults of features that can be overridden in this edition. */
2445
+ /**
2446
+ * Defaults of features that can be overridden in this edition.
2447
+ */
2072
2448
  overridable_features?: FeatureSetAmino;
2073
- /** Defaults of features that can't be overridden in this edition. */
2449
+ /**
2450
+ * Defaults of features that can't be overridden in this edition.
2451
+ */
2074
2452
  fixed_features?: FeatureSetAmino;
2075
2453
  }
2076
2454
  export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
@@ -2080,6 +2458,9 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
2080
2458
  /**
2081
2459
  * Encapsulates information about the original source file from which a
2082
2460
  * FileDescriptorProto was generated.
2461
+ * @name SourceCodeInfo
2462
+ * @package google.protobuf
2463
+ * @see proto type: google.protobuf.SourceCodeInfo
2083
2464
  */
2084
2465
  export interface SourceCodeInfo {
2085
2466
  /**
@@ -2136,6 +2517,9 @@ export interface SourceCodeInfoProtoMsg {
2136
2517
  /**
2137
2518
  * Encapsulates information about the original source file from which a
2138
2519
  * FileDescriptorProto was generated.
2520
+ * @name SourceCodeInfoAmino
2521
+ * @package google.protobuf
2522
+ * @see proto type: google.protobuf.SourceCodeInfo
2139
2523
  */
2140
2524
  export interface SourceCodeInfoAmino {
2141
2525
  /**
@@ -2189,6 +2573,11 @@ export interface SourceCodeInfoAminoMsg {
2189
2573
  type: "/google.protobuf.SourceCodeInfo";
2190
2574
  value: SourceCodeInfoAmino;
2191
2575
  }
2576
+ /**
2577
+ * @name SourceCodeInfo_Location
2578
+ * @package google.protobuf
2579
+ * @see proto type: google.protobuf.Location
2580
+ */
2192
2581
  export interface SourceCodeInfo_Location {
2193
2582
  /**
2194
2583
  * Identifies which part of the FileDescriptorProto was defined at this
@@ -2281,6 +2670,11 @@ export interface SourceCodeInfo_LocationProtoMsg {
2281
2670
  typeUrl: "/google.protobuf.Location";
2282
2671
  value: Uint8Array;
2283
2672
  }
2673
+ /**
2674
+ * @name SourceCodeInfo_LocationAmino
2675
+ * @package google.protobuf
2676
+ * @see proto type: google.protobuf.SourceCodeInfo_Location
2677
+ */
2284
2678
  export interface SourceCodeInfo_LocationAmino {
2285
2679
  /**
2286
2680
  * Identifies which part of the FileDescriptorProto was defined at this
@@ -2377,6 +2771,9 @@ export interface SourceCodeInfo_LocationAminoMsg {
2377
2771
  * Describes the relationship between generated code and its original source
2378
2772
  * file. A GeneratedCodeInfo message is associated with only one generated
2379
2773
  * source file, but may contain references to different source .proto files.
2774
+ * @name GeneratedCodeInfo
2775
+ * @package google.protobuf
2776
+ * @see proto type: google.protobuf.GeneratedCodeInfo
2380
2777
  */
2381
2778
  export interface GeneratedCodeInfo {
2382
2779
  /**
@@ -2393,6 +2790,9 @@ export interface GeneratedCodeInfoProtoMsg {
2393
2790
  * Describes the relationship between generated code and its original source
2394
2791
  * file. A GeneratedCodeInfo message is associated with only one generated
2395
2792
  * source file, but may contain references to different source .proto files.
2793
+ * @name GeneratedCodeInfoAmino
2794
+ * @package google.protobuf
2795
+ * @see proto type: google.protobuf.GeneratedCodeInfo
2396
2796
  */
2397
2797
  export interface GeneratedCodeInfoAmino {
2398
2798
  /**
@@ -2405,13 +2805,20 @@ export interface GeneratedCodeInfoAminoMsg {
2405
2805
  type: "/google.protobuf.GeneratedCodeInfo";
2406
2806
  value: GeneratedCodeInfoAmino;
2407
2807
  }
2808
+ /**
2809
+ * @name GeneratedCodeInfo_Annotation
2810
+ * @package google.protobuf
2811
+ * @see proto type: google.protobuf.Annotation
2812
+ */
2408
2813
  export interface GeneratedCodeInfo_Annotation {
2409
2814
  /**
2410
2815
  * Identifies the element in the original source .proto file. This field
2411
2816
  * is formatted the same as SourceCodeInfo.Location.path.
2412
2817
  */
2413
2818
  path: number[];
2414
- /** Identifies the filesystem path to the original source .proto. */
2819
+ /**
2820
+ * Identifies the filesystem path to the original source .proto.
2821
+ */
2415
2822
  sourceFile: string;
2416
2823
  /**
2417
2824
  * Identifies the starting offset in bytes in the generated code
@@ -2430,13 +2837,20 @@ export interface GeneratedCodeInfo_AnnotationProtoMsg {
2430
2837
  typeUrl: "/google.protobuf.Annotation";
2431
2838
  value: Uint8Array;
2432
2839
  }
2840
+ /**
2841
+ * @name GeneratedCodeInfo_AnnotationAmino
2842
+ * @package google.protobuf
2843
+ * @see proto type: google.protobuf.GeneratedCodeInfo_Annotation
2844
+ */
2433
2845
  export interface GeneratedCodeInfo_AnnotationAmino {
2434
2846
  /**
2435
2847
  * Identifies the element in the original source .proto file. This field
2436
2848
  * is formatted the same as SourceCodeInfo.Location.path.
2437
2849
  */
2438
2850
  path: number[];
2439
- /** Identifies the filesystem path to the original source .proto. */
2851
+ /**
2852
+ * Identifies the filesystem path to the original source .proto.
2853
+ */
2440
2854
  source_file: string;
2441
2855
  /**
2442
2856
  * Identifies the starting offset in bytes in the generated code
@@ -2455,6 +2869,13 @@ export interface GeneratedCodeInfo_AnnotationAminoMsg {
2455
2869
  type: "/google.protobuf.Annotation";
2456
2870
  value: GeneratedCodeInfo_AnnotationAmino;
2457
2871
  }
2872
+ /**
2873
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
2874
+ * files it parses.
2875
+ * @name FileDescriptorSet
2876
+ * @package google.protobuf
2877
+ * @see proto type: google.protobuf.FileDescriptorSet
2878
+ */
2458
2879
  export declare const FileDescriptorSet: {
2459
2880
  typeUrl: string;
2460
2881
  is(o: any): o is FileDescriptorSet;
@@ -2470,6 +2891,12 @@ export declare const FileDescriptorSet: {
2470
2891
  toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg;
2471
2892
  registerTypeUrl(): void;
2472
2893
  };
2894
+ /**
2895
+ * Describes a complete .proto file.
2896
+ * @name FileDescriptorProto
2897
+ * @package google.protobuf
2898
+ * @see proto type: google.protobuf.FileDescriptorProto
2899
+ */
2473
2900
  export declare const FileDescriptorProto: {
2474
2901
  typeUrl: string;
2475
2902
  is(o: any): o is FileDescriptorProto;
@@ -2485,6 +2912,12 @@ export declare const FileDescriptorProto: {
2485
2912
  toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg;
2486
2913
  registerTypeUrl(): void;
2487
2914
  };
2915
+ /**
2916
+ * Describes a message type.
2917
+ * @name DescriptorProto
2918
+ * @package google.protobuf
2919
+ * @see proto type: google.protobuf.DescriptorProto
2920
+ */
2488
2921
  export declare const DescriptorProto: {
2489
2922
  typeUrl: string;
2490
2923
  is(o: any): o is DescriptorProto;
@@ -2500,6 +2933,11 @@ export declare const DescriptorProto: {
2500
2933
  toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg;
2501
2934
  registerTypeUrl(): void;
2502
2935
  };
2936
+ /**
2937
+ * @name DescriptorProto_ExtensionRange
2938
+ * @package google.protobuf
2939
+ * @see proto type: google.protobuf.ExtensionRange
2940
+ */
2503
2941
  export declare const DescriptorProto_ExtensionRange: {
2504
2942
  typeUrl: string;
2505
2943
  is(o: any): o is DescriptorProto_ExtensionRange;
@@ -2515,6 +2953,14 @@ export declare const DescriptorProto_ExtensionRange: {
2515
2953
  toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg;
2516
2954
  registerTypeUrl(): void;
2517
2955
  };
2956
+ /**
2957
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
2958
+ * fields or extension ranges in the same message. Reserved ranges may
2959
+ * not overlap.
2960
+ * @name DescriptorProto_ReservedRange
2961
+ * @package google.protobuf
2962
+ * @see proto type: google.protobuf.ReservedRange
2963
+ */
2518
2964
  export declare const DescriptorProto_ReservedRange: {
2519
2965
  typeUrl: string;
2520
2966
  is(o: any): o is DescriptorProto_ReservedRange;
@@ -2530,6 +2976,11 @@ export declare const DescriptorProto_ReservedRange: {
2530
2976
  toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg;
2531
2977
  registerTypeUrl(): void;
2532
2978
  };
2979
+ /**
2980
+ * @name ExtensionRangeOptions
2981
+ * @package google.protobuf
2982
+ * @see proto type: google.protobuf.ExtensionRangeOptions
2983
+ */
2533
2984
  export declare const ExtensionRangeOptions: {
2534
2985
  typeUrl: string;
2535
2986
  is(o: any): o is ExtensionRangeOptions;
@@ -2545,6 +2996,11 @@ export declare const ExtensionRangeOptions: {
2545
2996
  toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg;
2546
2997
  registerTypeUrl(): void;
2547
2998
  };
2999
+ /**
3000
+ * @name ExtensionRangeOptions_Declaration
3001
+ * @package google.protobuf
3002
+ * @see proto type: google.protobuf.Declaration
3003
+ */
2548
3004
  export declare const ExtensionRangeOptions_Declaration: {
2549
3005
  typeUrl: string;
2550
3006
  is(o: any): o is ExtensionRangeOptions_Declaration;
@@ -2560,6 +3016,12 @@ export declare const ExtensionRangeOptions_Declaration: {
2560
3016
  toProtoMsg(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationProtoMsg;
2561
3017
  registerTypeUrl(): void;
2562
3018
  };
3019
+ /**
3020
+ * Describes a field within a message.
3021
+ * @name FieldDescriptorProto
3022
+ * @package google.protobuf
3023
+ * @see proto type: google.protobuf.FieldDescriptorProto
3024
+ */
2563
3025
  export declare const FieldDescriptorProto: {
2564
3026
  typeUrl: string;
2565
3027
  is(o: any): o is FieldDescriptorProto;
@@ -2575,6 +3037,12 @@ export declare const FieldDescriptorProto: {
2575
3037
  toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg;
2576
3038
  registerTypeUrl(): void;
2577
3039
  };
3040
+ /**
3041
+ * Describes a oneof.
3042
+ * @name OneofDescriptorProto
3043
+ * @package google.protobuf
3044
+ * @see proto type: google.protobuf.OneofDescriptorProto
3045
+ */
2578
3046
  export declare const OneofDescriptorProto: {
2579
3047
  typeUrl: string;
2580
3048
  is(o: any): o is OneofDescriptorProto;
@@ -2590,6 +3058,12 @@ export declare const OneofDescriptorProto: {
2590
3058
  toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg;
2591
3059
  registerTypeUrl(): void;
2592
3060
  };
3061
+ /**
3062
+ * Describes an enum type.
3063
+ * @name EnumDescriptorProto
3064
+ * @package google.protobuf
3065
+ * @see proto type: google.protobuf.EnumDescriptorProto
3066
+ */
2593
3067
  export declare const EnumDescriptorProto: {
2594
3068
  typeUrl: string;
2595
3069
  is(o: any): o is EnumDescriptorProto;
@@ -2605,6 +3079,17 @@ export declare const EnumDescriptorProto: {
2605
3079
  toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg;
2606
3080
  registerTypeUrl(): void;
2607
3081
  };
3082
+ /**
3083
+ * Range of reserved numeric values. Reserved values may not be used by
3084
+ * entries in the same enum. Reserved ranges may not overlap.
3085
+ *
3086
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
3087
+ * is inclusive such that it can appropriately represent the entire int32
3088
+ * domain.
3089
+ * @name EnumDescriptorProto_EnumReservedRange
3090
+ * @package google.protobuf
3091
+ * @see proto type: google.protobuf.EnumReservedRange
3092
+ */
2608
3093
  export declare const EnumDescriptorProto_EnumReservedRange: {
2609
3094
  typeUrl: string;
2610
3095
  is(o: any): o is EnumDescriptorProto_EnumReservedRange;
@@ -2620,6 +3105,12 @@ export declare const EnumDescriptorProto_EnumReservedRange: {
2620
3105
  toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg;
2621
3106
  registerTypeUrl(): void;
2622
3107
  };
3108
+ /**
3109
+ * Describes a value within an enum.
3110
+ * @name EnumValueDescriptorProto
3111
+ * @package google.protobuf
3112
+ * @see proto type: google.protobuf.EnumValueDescriptorProto
3113
+ */
2623
3114
  export declare const EnumValueDescriptorProto: {
2624
3115
  typeUrl: string;
2625
3116
  is(o: any): o is EnumValueDescriptorProto;
@@ -2635,6 +3126,12 @@ export declare const EnumValueDescriptorProto: {
2635
3126
  toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg;
2636
3127
  registerTypeUrl(): void;
2637
3128
  };
3129
+ /**
3130
+ * Describes a service.
3131
+ * @name ServiceDescriptorProto
3132
+ * @package google.protobuf
3133
+ * @see proto type: google.protobuf.ServiceDescriptorProto
3134
+ */
2638
3135
  export declare const ServiceDescriptorProto: {
2639
3136
  typeUrl: string;
2640
3137
  is(o: any): o is ServiceDescriptorProto;
@@ -2650,6 +3147,12 @@ export declare const ServiceDescriptorProto: {
2650
3147
  toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
2651
3148
  registerTypeUrl(): void;
2652
3149
  };
3150
+ /**
3151
+ * Describes a method of a service.
3152
+ * @name MethodDescriptorProto
3153
+ * @package google.protobuf
3154
+ * @see proto type: google.protobuf.MethodDescriptorProto
3155
+ */
2653
3156
  export declare const MethodDescriptorProto: {
2654
3157
  typeUrl: string;
2655
3158
  is(o: any): o is MethodDescriptorProto;
@@ -2665,6 +3168,11 @@ export declare const MethodDescriptorProto: {
2665
3168
  toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg;
2666
3169
  registerTypeUrl(): void;
2667
3170
  };
3171
+ /**
3172
+ * @name FileOptions
3173
+ * @package google.protobuf
3174
+ * @see proto type: google.protobuf.FileOptions
3175
+ */
2668
3176
  export declare const FileOptions: {
2669
3177
  typeUrl: string;
2670
3178
  is(o: any): o is FileOptions;
@@ -2680,6 +3188,11 @@ export declare const FileOptions: {
2680
3188
  toProtoMsg(message: FileOptions): FileOptionsProtoMsg;
2681
3189
  registerTypeUrl(): void;
2682
3190
  };
3191
+ /**
3192
+ * @name MessageOptions
3193
+ * @package google.protobuf
3194
+ * @see proto type: google.protobuf.MessageOptions
3195
+ */
2683
3196
  export declare const MessageOptions: {
2684
3197
  typeUrl: string;
2685
3198
  is(o: any): o is MessageOptions;
@@ -2695,6 +3208,11 @@ export declare const MessageOptions: {
2695
3208
  toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg;
2696
3209
  registerTypeUrl(): void;
2697
3210
  };
3211
+ /**
3212
+ * @name FieldOptions
3213
+ * @package google.protobuf
3214
+ * @see proto type: google.protobuf.FieldOptions
3215
+ */
2698
3216
  export declare const FieldOptions: {
2699
3217
  typeUrl: string;
2700
3218
  is(o: any): o is FieldOptions;
@@ -2710,6 +3228,11 @@ export declare const FieldOptions: {
2710
3228
  toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg;
2711
3229
  registerTypeUrl(): void;
2712
3230
  };
3231
+ /**
3232
+ * @name FieldOptions_EditionDefault
3233
+ * @package google.protobuf
3234
+ * @see proto type: google.protobuf.EditionDefault
3235
+ */
2713
3236
  export declare const FieldOptions_EditionDefault: {
2714
3237
  typeUrl: string;
2715
3238
  is(o: any): o is FieldOptions_EditionDefault;
@@ -2725,6 +3248,12 @@ export declare const FieldOptions_EditionDefault: {
2725
3248
  toProtoMsg(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultProtoMsg;
2726
3249
  registerTypeUrl(): void;
2727
3250
  };
3251
+ /**
3252
+ * Information about the support window of a feature.
3253
+ * @name FieldOptions_FeatureSupport
3254
+ * @package google.protobuf
3255
+ * @see proto type: google.protobuf.FeatureSupport
3256
+ */
2728
3257
  export declare const FieldOptions_FeatureSupport: {
2729
3258
  typeUrl: string;
2730
3259
  is(o: any): o is FieldOptions_FeatureSupport;
@@ -2740,6 +3269,11 @@ export declare const FieldOptions_FeatureSupport: {
2740
3269
  toProtoMsg(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportProtoMsg;
2741
3270
  registerTypeUrl(): void;
2742
3271
  };
3272
+ /**
3273
+ * @name OneofOptions
3274
+ * @package google.protobuf
3275
+ * @see proto type: google.protobuf.OneofOptions
3276
+ */
2743
3277
  export declare const OneofOptions: {
2744
3278
  typeUrl: string;
2745
3279
  is(o: any): o is OneofOptions;
@@ -2755,6 +3289,11 @@ export declare const OneofOptions: {
2755
3289
  toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg;
2756
3290
  registerTypeUrl(): void;
2757
3291
  };
3292
+ /**
3293
+ * @name EnumOptions
3294
+ * @package google.protobuf
3295
+ * @see proto type: google.protobuf.EnumOptions
3296
+ */
2758
3297
  export declare const EnumOptions: {
2759
3298
  typeUrl: string;
2760
3299
  is(o: any): o is EnumOptions;
@@ -2770,6 +3309,11 @@ export declare const EnumOptions: {
2770
3309
  toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg;
2771
3310
  registerTypeUrl(): void;
2772
3311
  };
3312
+ /**
3313
+ * @name EnumValueOptions
3314
+ * @package google.protobuf
3315
+ * @see proto type: google.protobuf.EnumValueOptions
3316
+ */
2773
3317
  export declare const EnumValueOptions: {
2774
3318
  typeUrl: string;
2775
3319
  is(o: any): o is EnumValueOptions;
@@ -2785,6 +3329,11 @@ export declare const EnumValueOptions: {
2785
3329
  toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg;
2786
3330
  registerTypeUrl(): void;
2787
3331
  };
3332
+ /**
3333
+ * @name ServiceOptions
3334
+ * @package google.protobuf
3335
+ * @see proto type: google.protobuf.ServiceOptions
3336
+ */
2788
3337
  export declare const ServiceOptions: {
2789
3338
  typeUrl: string;
2790
3339
  is(o: any): o is ServiceOptions;
@@ -2800,6 +3349,11 @@ export declare const ServiceOptions: {
2800
3349
  toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
2801
3350
  registerTypeUrl(): void;
2802
3351
  };
3352
+ /**
3353
+ * @name MethodOptions
3354
+ * @package google.protobuf
3355
+ * @see proto type: google.protobuf.MethodOptions
3356
+ */
2803
3357
  export declare const MethodOptions: {
2804
3358
  typeUrl: string;
2805
3359
  is(o: any): o is MethodOptions;
@@ -2815,6 +3369,17 @@ export declare const MethodOptions: {
2815
3369
  toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg;
2816
3370
  registerTypeUrl(): void;
2817
3371
  };
3372
+ /**
3373
+ * A message representing a option the parser does not recognize. This only
3374
+ * appears in options protos created by the compiler::Parser class.
3375
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
3376
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
3377
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
3378
+ * in them.
3379
+ * @name UninterpretedOption
3380
+ * @package google.protobuf
3381
+ * @see proto type: google.protobuf.UninterpretedOption
3382
+ */
2818
3383
  export declare const UninterpretedOption: {
2819
3384
  typeUrl: string;
2820
3385
  is(o: any): o is UninterpretedOption;
@@ -2830,6 +3395,16 @@ export declare const UninterpretedOption: {
2830
3395
  toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg;
2831
3396
  registerTypeUrl(): void;
2832
3397
  };
3398
+ /**
3399
+ * The name of the uninterpreted option. Each string represents a segment in
3400
+ * a dot-separated name. is_extension is true iff a segment represents an
3401
+ * extension (denoted with parentheses in options specs in .proto files).
3402
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
3403
+ * "foo.(bar.baz).moo".
3404
+ * @name UninterpretedOption_NamePart
3405
+ * @package google.protobuf
3406
+ * @see proto type: google.protobuf.NamePart
3407
+ */
2833
3408
  export declare const UninterpretedOption_NamePart: {
2834
3409
  typeUrl: string;
2835
3410
  is(o: any): o is UninterpretedOption_NamePart;
@@ -2845,6 +3420,17 @@ export declare const UninterpretedOption_NamePart: {
2845
3420
  toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg;
2846
3421
  registerTypeUrl(): void;
2847
3422
  };
3423
+ /**
3424
+ * TODO Enums in C++ gencode (and potentially other languages) are
3425
+ * not well scoped. This means that each of the feature enums below can clash
3426
+ * with each other. The short names we've chosen maximize call-site
3427
+ * readability, but leave us very open to this scenario. A future feature will
3428
+ * be designed and implemented to handle this, hopefully before we ever hit a
3429
+ * conflict here.
3430
+ * @name FeatureSet
3431
+ * @package google.protobuf
3432
+ * @see proto type: google.protobuf.FeatureSet
3433
+ */
2848
3434
  export declare const FeatureSet: {
2849
3435
  typeUrl: string;
2850
3436
  is(o: any): o is FeatureSet;
@@ -2860,6 +3446,15 @@ export declare const FeatureSet: {
2860
3446
  toProtoMsg(message: FeatureSet): FeatureSetProtoMsg;
2861
3447
  registerTypeUrl(): void;
2862
3448
  };
3449
+ /**
3450
+ * A compiled specification for the defaults of a set of features. These
3451
+ * messages are generated from FeatureSet extensions and can be used to seed
3452
+ * feature resolution. The resolution with this object becomes a simple search
3453
+ * for the closest matching edition, followed by proto merges.
3454
+ * @name FeatureSetDefaults
3455
+ * @package google.protobuf
3456
+ * @see proto type: google.protobuf.FeatureSetDefaults
3457
+ */
2863
3458
  export declare const FeatureSetDefaults: {
2864
3459
  typeUrl: string;
2865
3460
  is(o: any): o is FeatureSetDefaults;
@@ -2875,6 +3470,15 @@ export declare const FeatureSetDefaults: {
2875
3470
  toProtoMsg(message: FeatureSetDefaults): FeatureSetDefaultsProtoMsg;
2876
3471
  registerTypeUrl(): void;
2877
3472
  };
3473
+ /**
3474
+ * A map from every known edition with a unique set of defaults to its
3475
+ * defaults. Not all editions may be contained here. For a given edition,
3476
+ * the defaults at the closest matching edition ordered at or before it should
3477
+ * be used. This field must be in strict ascending order by edition.
3478
+ * @name FeatureSetDefaults_FeatureSetEditionDefault
3479
+ * @package google.protobuf
3480
+ * @see proto type: google.protobuf.FeatureSetEditionDefault
3481
+ */
2878
3482
  export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
2879
3483
  typeUrl: string;
2880
3484
  is(o: any): o is FeatureSetDefaults_FeatureSetEditionDefault;
@@ -2890,6 +3494,13 @@ export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
2890
3494
  toProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg;
2891
3495
  registerTypeUrl(): void;
2892
3496
  };
3497
+ /**
3498
+ * Encapsulates information about the original source file from which a
3499
+ * FileDescriptorProto was generated.
3500
+ * @name SourceCodeInfo
3501
+ * @package google.protobuf
3502
+ * @see proto type: google.protobuf.SourceCodeInfo
3503
+ */
2893
3504
  export declare const SourceCodeInfo: {
2894
3505
  typeUrl: string;
2895
3506
  is(o: any): o is SourceCodeInfo;
@@ -2905,6 +3516,11 @@ export declare const SourceCodeInfo: {
2905
3516
  toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
2906
3517
  registerTypeUrl(): void;
2907
3518
  };
3519
+ /**
3520
+ * @name SourceCodeInfo_Location
3521
+ * @package google.protobuf
3522
+ * @see proto type: google.protobuf.Location
3523
+ */
2908
3524
  export declare const SourceCodeInfo_Location: {
2909
3525
  typeUrl: string;
2910
3526
  is(o: any): o is SourceCodeInfo_Location;
@@ -2920,6 +3536,14 @@ export declare const SourceCodeInfo_Location: {
2920
3536
  toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg;
2921
3537
  registerTypeUrl(): void;
2922
3538
  };
3539
+ /**
3540
+ * Describes the relationship between generated code and its original source
3541
+ * file. A GeneratedCodeInfo message is associated with only one generated
3542
+ * source file, but may contain references to different source .proto files.
3543
+ * @name GeneratedCodeInfo
3544
+ * @package google.protobuf
3545
+ * @see proto type: google.protobuf.GeneratedCodeInfo
3546
+ */
2923
3547
  export declare const GeneratedCodeInfo: {
2924
3548
  typeUrl: string;
2925
3549
  is(o: any): o is GeneratedCodeInfo;
@@ -2935,6 +3559,11 @@ export declare const GeneratedCodeInfo: {
2935
3559
  toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg;
2936
3560
  registerTypeUrl(): void;
2937
3561
  };
3562
+ /**
3563
+ * @name GeneratedCodeInfo_Annotation
3564
+ * @package google.protobuf
3565
+ * @see proto type: google.protobuf.Annotation
3566
+ */
2938
3567
  export declare const GeneratedCodeInfo_Annotation: {
2939
3568
  typeUrl: string;
2940
3569
  is(o: any): o is GeneratedCodeInfo_Annotation;