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
@@ -9,6 +9,14 @@ function createBaseHttp() {
9
9
  fullyDecodeReservedExpansion: false
10
10
  };
11
11
  }
12
+ /**
13
+ * Defines the HTTP configuration for an API service. It contains a list of
14
+ * [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method
15
+ * to one or more HTTP REST API methods.
16
+ * @name Http
17
+ * @package google.api
18
+ * @see proto type: google.api.Http
19
+ */
12
20
  exports.Http = {
13
21
  typeUrl: "/google.api.Http",
14
22
  is(o) {
@@ -107,6 +115,275 @@ function createBaseHttpRule() {
107
115
  additionalBindings: []
108
116
  };
109
117
  }
118
+ /**
119
+ * gRPC Transcoding
120
+ *
121
+ * gRPC Transcoding is a feature for mapping between a gRPC method and one or
122
+ * more HTTP REST endpoints. It allows developers to build a single API service
123
+ * that supports both gRPC APIs and REST APIs. Many systems, including [Google
124
+ * APIs](https://github.com/googleapis/googleapis),
125
+ * [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC
126
+ * Gateway](https://github.com/grpc-ecosystem/grpc-gateway),
127
+ * and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature
128
+ * and use it for large scale production services.
129
+ *
130
+ * `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies
131
+ * how different portions of the gRPC request message are mapped to the URL
132
+ * path, URL query parameters, and HTTP request body. It also controls how the
133
+ * gRPC response message is mapped to the HTTP response body. `HttpRule` is
134
+ * typically specified as an `google.api.http` annotation on the gRPC method.
135
+ *
136
+ * Each mapping specifies a URL path template and an HTTP method. The path
137
+ * template may refer to one or more fields in the gRPC request message, as long
138
+ * as each field is a non-repeated field with a primitive (non-message) type.
139
+ * The path template controls how fields of the request message are mapped to
140
+ * the URL path.
141
+ *
142
+ * Example:
143
+ *
144
+ * service Messaging {
145
+ * rpc GetMessage(GetMessageRequest) returns (Message) {
146
+ * option (google.api.http) = {
147
+ * get: "/v1/{name=messages/*}"
148
+ * };
149
+ * }
150
+ * }
151
+ * message GetMessageRequest {
152
+ * string name = 1; // Mapped to URL path.
153
+ * }
154
+ * message Message {
155
+ * string text = 1; // The resource content.
156
+ * }
157
+ *
158
+ * This enables an HTTP REST to gRPC mapping as below:
159
+ *
160
+ * - HTTP: `GET /v1/messages/123456`
161
+ * - gRPC: `GetMessage(name: "messages/123456")`
162
+ *
163
+ * Any fields in the request message which are not bound by the path template
164
+ * automatically become HTTP query parameters if there is no HTTP request body.
165
+ * For example:
166
+ *
167
+ * service Messaging {
168
+ * rpc GetMessage(GetMessageRequest) returns (Message) {
169
+ * option (google.api.http) = {
170
+ * get:"/v1/messages/{message_id}"
171
+ * };
172
+ * }
173
+ * }
174
+ * message GetMessageRequest {
175
+ * message SubMessage {
176
+ * string subfield = 1;
177
+ * }
178
+ * string message_id = 1; // Mapped to URL path.
179
+ * int64 revision = 2; // Mapped to URL query parameter `revision`.
180
+ * SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.
181
+ * }
182
+ *
183
+ * This enables a HTTP JSON to RPC mapping as below:
184
+ *
185
+ * - HTTP: `GET /v1/messages/123456?revision=2&sub.subfield=foo`
186
+ * - gRPC: `GetMessage(message_id: "123456" revision: 2 sub:
187
+ * SubMessage(subfield: "foo"))`
188
+ *
189
+ * Note that fields which are mapped to URL query parameters must have a
190
+ * primitive type or a repeated primitive type or a non-repeated message type.
191
+ * In the case of a repeated type, the parameter can be repeated in the URL
192
+ * as `...?param=A&param=B`. In the case of a message type, each field of the
193
+ * message is mapped to a separate parameter, such as
194
+ * `...?foo.a=A&foo.b=B&foo.c=C`.
195
+ *
196
+ * For HTTP methods that allow a request body, the `body` field
197
+ * specifies the mapping. Consider a REST update method on the
198
+ * message resource collection:
199
+ *
200
+ * service Messaging {
201
+ * rpc UpdateMessage(UpdateMessageRequest) returns (Message) {
202
+ * option (google.api.http) = {
203
+ * patch: "/v1/messages/{message_id}"
204
+ * body: "message"
205
+ * };
206
+ * }
207
+ * }
208
+ * message UpdateMessageRequest {
209
+ * string message_id = 1; // mapped to the URL
210
+ * Message message = 2; // mapped to the body
211
+ * }
212
+ *
213
+ * The following HTTP JSON to RPC mapping is enabled, where the
214
+ * representation of the JSON in the request body is determined by
215
+ * protos JSON encoding:
216
+ *
217
+ * - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }`
218
+ * - gRPC: `UpdateMessage(message_id: "123456" message { text: "Hi!" })`
219
+ *
220
+ * The special name `*` can be used in the body mapping to define that
221
+ * every field not bound by the path template should be mapped to the
222
+ * request body. This enables the following alternative definition of
223
+ * the update method:
224
+ *
225
+ * service Messaging {
226
+ * rpc UpdateMessage(Message) returns (Message) {
227
+ * option (google.api.http) = {
228
+ * patch: "/v1/messages/{message_id}"
229
+ * body: "*"
230
+ * };
231
+ * }
232
+ * }
233
+ * message Message {
234
+ * string message_id = 1;
235
+ * string text = 2;
236
+ * }
237
+ *
238
+ *
239
+ * The following HTTP JSON to RPC mapping is enabled:
240
+ *
241
+ * - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }`
242
+ * - gRPC: `UpdateMessage(message_id: "123456" text: "Hi!")`
243
+ *
244
+ * Note that when using `*` in the body mapping, it is not possible to
245
+ * have HTTP parameters, as all fields not bound by the path end in
246
+ * the body. This makes this option more rarely used in practice when
247
+ * defining REST APIs. The common usage of `*` is in custom methods
248
+ * which don't use the URL at all for transferring data.
249
+ *
250
+ * It is possible to define multiple HTTP methods for one RPC by using
251
+ * the `additional_bindings` option. Example:
252
+ *
253
+ * service Messaging {
254
+ * rpc GetMessage(GetMessageRequest) returns (Message) {
255
+ * option (google.api.http) = {
256
+ * get: "/v1/messages/{message_id}"
257
+ * additional_bindings {
258
+ * get: "/v1/users/{user_id}/messages/{message_id}"
259
+ * }
260
+ * };
261
+ * }
262
+ * }
263
+ * message GetMessageRequest {
264
+ * string message_id = 1;
265
+ * string user_id = 2;
266
+ * }
267
+ *
268
+ * This enables the following two alternative HTTP JSON to RPC mappings:
269
+ *
270
+ * - HTTP: `GET /v1/messages/123456`
271
+ * - gRPC: `GetMessage(message_id: "123456")`
272
+ *
273
+ * - HTTP: `GET /v1/users/me/messages/123456`
274
+ * - gRPC: `GetMessage(user_id: "me" message_id: "123456")`
275
+ *
276
+ * Rules for HTTP mapping
277
+ *
278
+ * 1. Leaf request fields (recursive expansion nested messages in the request
279
+ * message) are classified into three categories:
280
+ * - Fields referred by the path template. They are passed via the URL path.
281
+ * - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They
282
+ * are passed via the HTTP
283
+ * request body.
284
+ * - All other fields are passed via the URL query parameters, and the
285
+ * parameter name is the field path in the request message. A repeated
286
+ * field can be represented as multiple query parameters under the same
287
+ * name.
288
+ * 2. If [HttpRule.body][google.api.HttpRule.body] is "*", there is no URL
289
+ * query parameter, all fields
290
+ * are passed via URL path and HTTP request body.
291
+ * 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP
292
+ * request body, all
293
+ * fields are passed via URL path and URL query parameters.
294
+ *
295
+ * Path template syntax
296
+ *
297
+ * Template = "/" Segments [ Verb ] ;
298
+ * Segments = Segment { "/" Segment } ;
299
+ * Segment = "*" | "**" | LITERAL | Variable ;
300
+ * Variable = "{" FieldPath [ "=" Segments ] "}" ;
301
+ * FieldPath = IDENT { "." IDENT } ;
302
+ * Verb = ":" LITERAL ;
303
+ *
304
+ * The syntax `*` matches a single URL path segment. The syntax `**` matches
305
+ * zero or more URL path segments, which must be the last part of the URL path
306
+ * except the `Verb`.
307
+ *
308
+ * The syntax `Variable` matches part of the URL path as specified by its
309
+ * template. A variable template must not contain other variables. If a variable
310
+ * matches a single path segment, its template may be omitted, e.g. `{var}`
311
+ * is equivalent to `{var=*}`.
312
+ *
313
+ * The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`
314
+ * contains any reserved character, such characters should be percent-encoded
315
+ * before the matching.
316
+ *
317
+ * If a variable contains exactly one path segment, such as `"{var}"` or
318
+ * `"{var=*}"`, when such a variable is expanded into a URL path on the client
319
+ * side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The
320
+ * server side does the reverse decoding. Such variables show up in the
321
+ * [Discovery
322
+ * Document](https://developers.google.com/discovery/v1/reference/apis) as
323
+ * `{var}`.
324
+ *
325
+ * If a variable contains multiple path segments, such as `"{var=foo/*}"`
326
+ * or `"{var=**}"`, when such a variable is expanded into a URL path on the
327
+ * client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.
328
+ * The server side does the reverse decoding, except "%2F" and "%2f" are left
329
+ * unchanged. Such variables show up in the
330
+ * [Discovery
331
+ * Document](https://developers.google.com/discovery/v1/reference/apis) as
332
+ * `{+var}`.
333
+ *
334
+ * Using gRPC API Service Configuration
335
+ *
336
+ * gRPC API Service Configuration (service config) is a configuration language
337
+ * for configuring a gRPC service to become a user-facing product. The
338
+ * service config is simply the YAML representation of the `google.api.Service`
339
+ * proto message.
340
+ *
341
+ * As an alternative to annotating your proto file, you can configure gRPC
342
+ * transcoding in your service config YAML files. You do this by specifying a
343
+ * `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same
344
+ * effect as the proto annotation. This can be particularly useful if you
345
+ * have a proto that is reused in multiple services. Note that any transcoding
346
+ * specified in the service config will override any matching transcoding
347
+ * configuration in the proto.
348
+ *
349
+ * The following example selects a gRPC method and applies an `HttpRule` to it:
350
+ *
351
+ * http:
352
+ * rules:
353
+ * - selector: example.v1.Messaging.GetMessage
354
+ * get: /v1/messages/{message_id}/{sub.subfield}
355
+ *
356
+ * Special notes
357
+ *
358
+ * When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the
359
+ * proto to JSON conversion must follow the [proto3
360
+ * specification](https://developers.google.com/protocol-buffers/docs/proto3#json).
361
+ *
362
+ * While the single segment variable follows the semantics of
363
+ * [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
364
+ * Expansion, the multi segment variable **does not** follow RFC 6570 Section
365
+ * 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion
366
+ * does not expand special characters like `?` and `#`, which would lead
367
+ * to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
368
+ * for multi segment variables.
369
+ *
370
+ * The path variables **must not** refer to any repeated or mapped field,
371
+ * because client libraries are not capable of handling such variable expansion.
372
+ *
373
+ * The path variables **must not** capture the leading "/" character. The reason
374
+ * is that the most common use case "{var}" does not capture the leading "/"
375
+ * character. For consistency, all path variables must share the same behavior.
376
+ *
377
+ * Repeated message fields must not be mapped to URL query parameters, because
378
+ * no client library can support such complicated mapping.
379
+ *
380
+ * If an API needs to use a JSON array for request or response body, it can map
381
+ * the request or response body to a repeated field. However, some gRPC
382
+ * Transcoding implementations may not support this feature.
383
+ * @name HttpRule
384
+ * @package google.api
385
+ * @see proto type: google.api.HttpRule
386
+ */
110
387
  exports.HttpRule = {
111
388
  typeUrl: "/google.api.HttpRule",
112
389
  is(o) {
@@ -286,6 +563,12 @@ function createBaseCustomHttpPattern() {
286
563
  path: ""
287
564
  };
288
565
  }
566
+ /**
567
+ * A custom pattern is used for defining custom HTTP verb.
568
+ * @name CustomHttpPattern
569
+ * @package google.api
570
+ * @see proto type: google.api.CustomHttpPattern
571
+ */
289
572
  exports.CustomHttpPattern = {
290
573
  typeUrl: "/google.api.CustomHttpPattern",
291
574
  is(o) {
@@ -86,6 +86,9 @@ import { DeepPartial } from "../../helpers";
86
86
  * "@type": "type.googleapis.com/google.protobuf.Duration",
87
87
  * "value": "1.212s"
88
88
  * }
89
+ * @name Any
90
+ * @package google.protobuf
91
+ * @see proto type: google.protobuf.Any
89
92
  */
90
93
  export interface Any {
91
94
  /**
@@ -119,7 +122,9 @@ export interface Any {
119
122
  * used with implementation specific semantics.
120
123
  */
121
124
  typeUrl: string;
122
- /** Must be a valid serialized protocol buffer of the above specified type. */
125
+ /**
126
+ * Must be a valid serialized protocol buffer of the above specified type.
127
+ */
123
128
  value: Uint8Array;
124
129
  }
125
130
  export interface AnyProtoMsg {
@@ -212,6 +217,9 @@ export interface AnyProtoMsg {
212
217
  * "@type": "type.googleapis.com/google.protobuf.Duration",
213
218
  * "value": "1.212s"
214
219
  * }
220
+ * @name AnyAmino
221
+ * @package google.protobuf
222
+ * @see proto type: google.protobuf.Any
215
223
  */
216
224
  export interface AnyAmino {
217
225
  /**
@@ -245,13 +253,105 @@ export interface AnyAmino {
245
253
  * used with implementation specific semantics.
246
254
  */
247
255
  type: string;
248
- /** Must be a valid serialized protocol buffer of the above specified type. */
256
+ /**
257
+ * Must be a valid serialized protocol buffer of the above specified type.
258
+ */
249
259
  value: any;
250
260
  }
251
261
  export interface AnyAminoMsg {
252
262
  type: string;
253
263
  value: AnyAmino;
254
264
  }
265
+ /**
266
+ * `Any` contains an arbitrary serialized protocol buffer message along with a
267
+ * URL that describes the type of the serialized message.
268
+ *
269
+ * Protobuf library provides support to pack/unpack Any values in the form
270
+ * of utility functions or additional generated methods of the Any type.
271
+ *
272
+ * Example 1: Pack and unpack a message in C++.
273
+ *
274
+ * Foo foo = ...;
275
+ * Any any;
276
+ * any.PackFrom(foo);
277
+ * ...
278
+ * if (any.UnpackTo(&foo)) {
279
+ * ...
280
+ * }
281
+ *
282
+ * Example 2: Pack and unpack a message in Java.
283
+ *
284
+ * Foo foo = ...;
285
+ * Any any = Any.pack(foo);
286
+ * ...
287
+ * if (any.is(Foo.class)) {
288
+ * foo = any.unpack(Foo.class);
289
+ * }
290
+ * // or ...
291
+ * if (any.isSameTypeAs(Foo.getDefaultInstance())) {
292
+ * foo = any.unpack(Foo.getDefaultInstance());
293
+ * }
294
+ *
295
+ * Example 3: Pack and unpack a message in Python.
296
+ *
297
+ * foo = Foo(...)
298
+ * any = Any()
299
+ * any.Pack(foo)
300
+ * ...
301
+ * if any.Is(Foo.DESCRIPTOR):
302
+ * any.Unpack(foo)
303
+ * ...
304
+ *
305
+ * Example 4: Pack and unpack a message in Go
306
+ *
307
+ * foo := &pb.Foo{...}
308
+ * any, err := anypb.New(foo)
309
+ * if err != nil {
310
+ * ...
311
+ * }
312
+ * ...
313
+ * foo := &pb.Foo{}
314
+ * if err := any.UnmarshalTo(foo); err != nil {
315
+ * ...
316
+ * }
317
+ *
318
+ * The pack methods provided by protobuf library will by default use
319
+ * 'type.googleapis.com/full.type.name' as the type URL and the unpack
320
+ * methods only use the fully qualified type name after the last '/'
321
+ * in the type URL, for example "foo.bar.com/x/y.z" will yield type
322
+ * name "y.z".
323
+ *
324
+ * JSON
325
+ * ====
326
+ * The JSON representation of an `Any` value uses the regular
327
+ * representation of the deserialized, embedded message, with an
328
+ * additional field `@type` which contains the type URL. Example:
329
+ *
330
+ * package google.profile;
331
+ * message Person {
332
+ * string first_name = 1;
333
+ * string last_name = 2;
334
+ * }
335
+ *
336
+ * {
337
+ * "@type": "type.googleapis.com/google.profile.Person",
338
+ * "firstName": <string>,
339
+ * "lastName": <string>
340
+ * }
341
+ *
342
+ * If the embedded message type is well-known and has a custom JSON
343
+ * representation, that representation will be embedded adding a field
344
+ * `value` which holds the custom JSON in addition to the `@type`
345
+ * field. Example (for message [google.protobuf.Duration][]):
346
+ *
347
+ * {
348
+ * "@type": "type.googleapis.com/google.protobuf.Duration",
349
+ * "value": "1.212s"
350
+ * }
351
+ * @name Any
352
+ * @package google.protobuf
353
+ * @see proto type: google.protobuf.Any
354
+ */
255
355
  export declare const Any: {
256
356
  typeUrl: string;
257
357
  is(o: any): o is Any;
@@ -8,6 +8,96 @@ function createBaseAny() {
8
8
  value: new Uint8Array()
9
9
  };
10
10
  }
11
+ /**
12
+ * `Any` contains an arbitrary serialized protocol buffer message along with a
13
+ * URL that describes the type of the serialized message.
14
+ *
15
+ * Protobuf library provides support to pack/unpack Any values in the form
16
+ * of utility functions or additional generated methods of the Any type.
17
+ *
18
+ * Example 1: Pack and unpack a message in C++.
19
+ *
20
+ * Foo foo = ...;
21
+ * Any any;
22
+ * any.PackFrom(foo);
23
+ * ...
24
+ * if (any.UnpackTo(&foo)) {
25
+ * ...
26
+ * }
27
+ *
28
+ * Example 2: Pack and unpack a message in Java.
29
+ *
30
+ * Foo foo = ...;
31
+ * Any any = Any.pack(foo);
32
+ * ...
33
+ * if (any.is(Foo.class)) {
34
+ * foo = any.unpack(Foo.class);
35
+ * }
36
+ * // or ...
37
+ * if (any.isSameTypeAs(Foo.getDefaultInstance())) {
38
+ * foo = any.unpack(Foo.getDefaultInstance());
39
+ * }
40
+ *
41
+ * Example 3: Pack and unpack a message in Python.
42
+ *
43
+ * foo = Foo(...)
44
+ * any = Any()
45
+ * any.Pack(foo)
46
+ * ...
47
+ * if any.Is(Foo.DESCRIPTOR):
48
+ * any.Unpack(foo)
49
+ * ...
50
+ *
51
+ * Example 4: Pack and unpack a message in Go
52
+ *
53
+ * foo := &pb.Foo{...}
54
+ * any, err := anypb.New(foo)
55
+ * if err != nil {
56
+ * ...
57
+ * }
58
+ * ...
59
+ * foo := &pb.Foo{}
60
+ * if err := any.UnmarshalTo(foo); err != nil {
61
+ * ...
62
+ * }
63
+ *
64
+ * The pack methods provided by protobuf library will by default use
65
+ * 'type.googleapis.com/full.type.name' as the type URL and the unpack
66
+ * methods only use the fully qualified type name after the last '/'
67
+ * in the type URL, for example "foo.bar.com/x/y.z" will yield type
68
+ * name "y.z".
69
+ *
70
+ * JSON
71
+ * ====
72
+ * The JSON representation of an `Any` value uses the regular
73
+ * representation of the deserialized, embedded message, with an
74
+ * additional field `@type` which contains the type URL. Example:
75
+ *
76
+ * package google.profile;
77
+ * message Person {
78
+ * string first_name = 1;
79
+ * string last_name = 2;
80
+ * }
81
+ *
82
+ * {
83
+ * "@type": "type.googleapis.com/google.profile.Person",
84
+ * "firstName": <string>,
85
+ * "lastName": <string>
86
+ * }
87
+ *
88
+ * If the embedded message type is well-known and has a custom JSON
89
+ * representation, that representation will be embedded adding a field
90
+ * `value` which holds the custom JSON in addition to the `@type`
91
+ * field. Example (for message [google.protobuf.Duration][]):
92
+ *
93
+ * {
94
+ * "@type": "type.googleapis.com/google.protobuf.Duration",
95
+ * "value": "1.212s"
96
+ * }
97
+ * @name Any
98
+ * @package google.protobuf
99
+ * @see proto type: google.protobuf.Any
100
+ */
11
101
  exports.Any = {
12
102
  typeUrl: "/google.protobuf.Any",
13
103
  is(o) {