@xpla/xpla-react 1.7.0 → 1.8.0-rc.1
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.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +36 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +10 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +7 -87
- package/helper-func-types.js +15 -24
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -261,6 +261,34 @@ export declare enum FeatureSet_JsonFormat {
|
|
|
261
261
|
export declare const FeatureSet_JsonFormatAmino: typeof FeatureSet_JsonFormat;
|
|
262
262
|
export declare function featureSet_JsonFormatFromJSON(object: any): FeatureSet_JsonFormat;
|
|
263
263
|
export declare function featureSet_JsonFormatToJSON(object: FeatureSet_JsonFormat): string;
|
|
264
|
+
export declare enum FeatureSet_EnforceNamingStyle {
|
|
265
|
+
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
266
|
+
STYLE2024 = 1,
|
|
267
|
+
STYLE_LEGACY = 2,
|
|
268
|
+
UNRECOGNIZED = -1
|
|
269
|
+
}
|
|
270
|
+
export declare const FeatureSet_EnforceNamingStyleAmino: typeof FeatureSet_EnforceNamingStyle;
|
|
271
|
+
export declare function featureSet_EnforceNamingStyleFromJSON(object: any): FeatureSet_EnforceNamingStyle;
|
|
272
|
+
export declare function featureSet_EnforceNamingStyleToJSON(object: FeatureSet_EnforceNamingStyle): string;
|
|
273
|
+
export declare enum FeatureSet_VisibilityFeature_DefaultSymbolVisibility {
|
|
274
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
275
|
+
/** EXPORT_ALL - Default pre-EDITION_2024, all UNSET visibility are export. */
|
|
276
|
+
EXPORT_ALL = 1,
|
|
277
|
+
/** EXPORT_TOP_LEVEL - All top-level symbols default to export, nested default to local. */
|
|
278
|
+
EXPORT_TOP_LEVEL = 2,
|
|
279
|
+
/** LOCAL_ALL - All symbols default to local. */
|
|
280
|
+
LOCAL_ALL = 3,
|
|
281
|
+
/**
|
|
282
|
+
* STRICT - All symbols local by default. Nested types cannot be exported.
|
|
283
|
+
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
284
|
+
* This is the recommended setting for new protos.
|
|
285
|
+
*/
|
|
286
|
+
STRICT = 4,
|
|
287
|
+
UNRECOGNIZED = -1
|
|
288
|
+
}
|
|
289
|
+
export declare const FeatureSet_VisibilityFeature_DefaultSymbolVisibilityAmino: typeof FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
290
|
+
export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object: any): FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
291
|
+
export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(object: FeatureSet_VisibilityFeature_DefaultSymbolVisibility): string;
|
|
264
292
|
/**
|
|
265
293
|
* Represents the identified object's effect on the element in the original
|
|
266
294
|
* .proto file.
|
|
@@ -277,9 +305,28 @@ export declare enum GeneratedCodeInfo_Annotation_Semantic {
|
|
|
277
305
|
export declare const GeneratedCodeInfo_Annotation_SemanticAmino: typeof GeneratedCodeInfo_Annotation_Semantic;
|
|
278
306
|
export declare function generatedCodeInfo_Annotation_SemanticFromJSON(object: any): GeneratedCodeInfo_Annotation_Semantic;
|
|
279
307
|
export declare function generatedCodeInfo_Annotation_SemanticToJSON(object: GeneratedCodeInfo_Annotation_Semantic): string;
|
|
308
|
+
/**
|
|
309
|
+
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
310
|
+
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
311
|
+
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
312
|
+
* on `message` and `enum` as they are the only types available to be referenced
|
|
313
|
+
* from other files.
|
|
314
|
+
*/
|
|
315
|
+
export declare enum SymbolVisibility {
|
|
316
|
+
VISIBILITY_UNSET = 0,
|
|
317
|
+
VISIBILITY_LOCAL = 1,
|
|
318
|
+
VISIBILITY_EXPORT = 2,
|
|
319
|
+
UNRECOGNIZED = -1
|
|
320
|
+
}
|
|
321
|
+
export declare const SymbolVisibilityAmino: typeof SymbolVisibility;
|
|
322
|
+
export declare function symbolVisibilityFromJSON(object: any): SymbolVisibility;
|
|
323
|
+
export declare function symbolVisibilityToJSON(object: SymbolVisibility): string;
|
|
280
324
|
/**
|
|
281
325
|
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
282
326
|
* files it parses.
|
|
327
|
+
* @name FileDescriptorSet
|
|
328
|
+
* @package google.protobuf
|
|
329
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
283
330
|
*/
|
|
284
331
|
export interface FileDescriptorSet {
|
|
285
332
|
file: FileDescriptorProto[];
|
|
@@ -291,6 +338,9 @@ export interface FileDescriptorSetProtoMsg {
|
|
|
291
338
|
/**
|
|
292
339
|
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
293
340
|
* files it parses.
|
|
341
|
+
* @name FileDescriptorSetAmino
|
|
342
|
+
* @package google.protobuf
|
|
343
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
294
344
|
*/
|
|
295
345
|
export interface FileDescriptorSetAmino {
|
|
296
346
|
file: FileDescriptorProtoAmino[];
|
|
@@ -299,22 +349,42 @@ export interface FileDescriptorSetAminoMsg {
|
|
|
299
349
|
type: "/google.protobuf.FileDescriptorSet";
|
|
300
350
|
value: FileDescriptorSetAmino;
|
|
301
351
|
}
|
|
302
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* Describes a complete .proto file.
|
|
354
|
+
* @name FileDescriptorProto
|
|
355
|
+
* @package google.protobuf
|
|
356
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
357
|
+
*/
|
|
303
358
|
export interface FileDescriptorProto {
|
|
304
|
-
/**
|
|
359
|
+
/**
|
|
360
|
+
* file name, relative to root of source tree
|
|
361
|
+
*/
|
|
305
362
|
name: string;
|
|
306
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* e.g. "foo", "foo.bar", etc.
|
|
365
|
+
*/
|
|
307
366
|
package: string;
|
|
308
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* Names of files imported by this file.
|
|
369
|
+
*/
|
|
309
370
|
dependency: string[];
|
|
310
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* Indexes of the public imported files in the dependency list above.
|
|
373
|
+
*/
|
|
311
374
|
publicDependency: number[];
|
|
312
375
|
/**
|
|
313
376
|
* Indexes of the weak imported files in the dependency list.
|
|
314
377
|
* For Google-internal migration only. Do not use.
|
|
315
378
|
*/
|
|
316
379
|
weakDependency: number[];
|
|
317
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* Names of files imported by this file purely for the purpose of providing
|
|
382
|
+
* option extensions. These are excluded from the dependency list above.
|
|
383
|
+
*/
|
|
384
|
+
optionDependency: string[];
|
|
385
|
+
/**
|
|
386
|
+
* All top-level definitions in this file.
|
|
387
|
+
*/
|
|
318
388
|
messageType: DescriptorProto[];
|
|
319
389
|
enumType: EnumDescriptorProto[];
|
|
320
390
|
service: ServiceDescriptorProto[];
|
|
@@ -349,22 +419,42 @@ export interface FileDescriptorProtoProtoMsg {
|
|
|
349
419
|
typeUrl: "/google.protobuf.FileDescriptorProto";
|
|
350
420
|
value: Uint8Array;
|
|
351
421
|
}
|
|
352
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* Describes a complete .proto file.
|
|
424
|
+
* @name FileDescriptorProtoAmino
|
|
425
|
+
* @package google.protobuf
|
|
426
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
427
|
+
*/
|
|
353
428
|
export interface FileDescriptorProtoAmino {
|
|
354
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* file name, relative to root of source tree
|
|
431
|
+
*/
|
|
355
432
|
name: string;
|
|
356
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* e.g. "foo", "foo.bar", etc.
|
|
435
|
+
*/
|
|
357
436
|
package: string;
|
|
358
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* Names of files imported by this file.
|
|
439
|
+
*/
|
|
359
440
|
dependency: string[];
|
|
360
|
-
/**
|
|
441
|
+
/**
|
|
442
|
+
* Indexes of the public imported files in the dependency list above.
|
|
443
|
+
*/
|
|
361
444
|
public_dependency: number[];
|
|
362
445
|
/**
|
|
363
446
|
* Indexes of the weak imported files in the dependency list.
|
|
364
447
|
* For Google-internal migration only. Do not use.
|
|
365
448
|
*/
|
|
366
449
|
weak_dependency: number[];
|
|
367
|
-
/**
|
|
450
|
+
/**
|
|
451
|
+
* Names of files imported by this file purely for the purpose of providing
|
|
452
|
+
* option extensions. These are excluded from the dependency list above.
|
|
453
|
+
*/
|
|
454
|
+
option_dependency: string[];
|
|
455
|
+
/**
|
|
456
|
+
* All top-level definitions in this file.
|
|
457
|
+
*/
|
|
368
458
|
message_type: DescriptorProtoAmino[];
|
|
369
459
|
enum_type: EnumDescriptorProtoAmino[];
|
|
370
460
|
service: ServiceDescriptorProtoAmino[];
|
|
@@ -399,7 +489,12 @@ export interface FileDescriptorProtoAminoMsg {
|
|
|
399
489
|
type: "/google.protobuf.FileDescriptorProto";
|
|
400
490
|
value: FileDescriptorProtoAmino;
|
|
401
491
|
}
|
|
402
|
-
/**
|
|
492
|
+
/**
|
|
493
|
+
* Describes a message type.
|
|
494
|
+
* @name DescriptorProto
|
|
495
|
+
* @package google.protobuf
|
|
496
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
497
|
+
*/
|
|
403
498
|
export interface DescriptorProto {
|
|
404
499
|
name: string;
|
|
405
500
|
field: FieldDescriptorProto[];
|
|
@@ -415,12 +510,21 @@ export interface DescriptorProto {
|
|
|
415
510
|
* A given name may only be reserved once.
|
|
416
511
|
*/
|
|
417
512
|
reservedName: string[];
|
|
513
|
+
/**
|
|
514
|
+
* Support for `export` and `local` keywords on enums.
|
|
515
|
+
*/
|
|
516
|
+
visibility: SymbolVisibility;
|
|
418
517
|
}
|
|
419
518
|
export interface DescriptorProtoProtoMsg {
|
|
420
519
|
typeUrl: "/google.protobuf.DescriptorProto";
|
|
421
520
|
value: Uint8Array;
|
|
422
521
|
}
|
|
423
|
-
/**
|
|
522
|
+
/**
|
|
523
|
+
* Describes a message type.
|
|
524
|
+
* @name DescriptorProtoAmino
|
|
525
|
+
* @package google.protobuf
|
|
526
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
527
|
+
*/
|
|
424
528
|
export interface DescriptorProtoAmino {
|
|
425
529
|
name: string;
|
|
426
530
|
field: FieldDescriptorProtoAmino[];
|
|
@@ -436,15 +540,28 @@ export interface DescriptorProtoAmino {
|
|
|
436
540
|
* A given name may only be reserved once.
|
|
437
541
|
*/
|
|
438
542
|
reserved_name: string[];
|
|
543
|
+
/**
|
|
544
|
+
* Support for `export` and `local` keywords on enums.
|
|
545
|
+
*/
|
|
546
|
+
visibility: SymbolVisibility;
|
|
439
547
|
}
|
|
440
548
|
export interface DescriptorProtoAminoMsg {
|
|
441
549
|
type: "/google.protobuf.DescriptorProto";
|
|
442
550
|
value: DescriptorProtoAmino;
|
|
443
551
|
}
|
|
552
|
+
/**
|
|
553
|
+
* @name DescriptorProto_ExtensionRange
|
|
554
|
+
* @package google.protobuf
|
|
555
|
+
* @see proto type: google.protobuf.ExtensionRange
|
|
556
|
+
*/
|
|
444
557
|
export interface DescriptorProto_ExtensionRange {
|
|
445
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* Inclusive.
|
|
560
|
+
*/
|
|
446
561
|
start: number;
|
|
447
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* Exclusive.
|
|
564
|
+
*/
|
|
448
565
|
end: number;
|
|
449
566
|
options?: ExtensionRangeOptions;
|
|
450
567
|
}
|
|
@@ -452,10 +569,19 @@ export interface DescriptorProto_ExtensionRangeProtoMsg {
|
|
|
452
569
|
typeUrl: "/google.protobuf.ExtensionRange";
|
|
453
570
|
value: Uint8Array;
|
|
454
571
|
}
|
|
572
|
+
/**
|
|
573
|
+
* @name DescriptorProto_ExtensionRangeAmino
|
|
574
|
+
* @package google.protobuf
|
|
575
|
+
* @see proto type: google.protobuf.DescriptorProto_ExtensionRange
|
|
576
|
+
*/
|
|
455
577
|
export interface DescriptorProto_ExtensionRangeAmino {
|
|
456
|
-
/**
|
|
578
|
+
/**
|
|
579
|
+
* Inclusive.
|
|
580
|
+
*/
|
|
457
581
|
start: number;
|
|
458
|
-
/**
|
|
582
|
+
/**
|
|
583
|
+
* Exclusive.
|
|
584
|
+
*/
|
|
459
585
|
end: number;
|
|
460
586
|
options?: ExtensionRangeOptionsAmino;
|
|
461
587
|
}
|
|
@@ -467,11 +593,18 @@ export interface DescriptorProto_ExtensionRangeAminoMsg {
|
|
|
467
593
|
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
468
594
|
* fields or extension ranges in the same message. Reserved ranges may
|
|
469
595
|
* not overlap.
|
|
596
|
+
* @name DescriptorProto_ReservedRange
|
|
597
|
+
* @package google.protobuf
|
|
598
|
+
* @see proto type: google.protobuf.ReservedRange
|
|
470
599
|
*/
|
|
471
600
|
export interface DescriptorProto_ReservedRange {
|
|
472
|
-
/**
|
|
601
|
+
/**
|
|
602
|
+
* Inclusive.
|
|
603
|
+
*/
|
|
473
604
|
start: number;
|
|
474
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* Exclusive.
|
|
607
|
+
*/
|
|
475
608
|
end: number;
|
|
476
609
|
}
|
|
477
610
|
export interface DescriptorProto_ReservedRangeProtoMsg {
|
|
@@ -482,19 +615,33 @@ export interface DescriptorProto_ReservedRangeProtoMsg {
|
|
|
482
615
|
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
483
616
|
* fields or extension ranges in the same message. Reserved ranges may
|
|
484
617
|
* not overlap.
|
|
618
|
+
* @name DescriptorProto_ReservedRangeAmino
|
|
619
|
+
* @package google.protobuf
|
|
620
|
+
* @see proto type: google.protobuf.DescriptorProto_ReservedRange
|
|
485
621
|
*/
|
|
486
622
|
export interface DescriptorProto_ReservedRangeAmino {
|
|
487
|
-
/**
|
|
623
|
+
/**
|
|
624
|
+
* Inclusive.
|
|
625
|
+
*/
|
|
488
626
|
start: number;
|
|
489
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* Exclusive.
|
|
629
|
+
*/
|
|
490
630
|
end: number;
|
|
491
631
|
}
|
|
492
632
|
export interface DescriptorProto_ReservedRangeAminoMsg {
|
|
493
633
|
type: "/google.protobuf.ReservedRange";
|
|
494
634
|
value: DescriptorProto_ReservedRangeAmino;
|
|
495
635
|
}
|
|
636
|
+
/**
|
|
637
|
+
* @name ExtensionRangeOptions
|
|
638
|
+
* @package google.protobuf
|
|
639
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
640
|
+
*/
|
|
496
641
|
export interface ExtensionRangeOptions {
|
|
497
|
-
/**
|
|
642
|
+
/**
|
|
643
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
644
|
+
*/
|
|
498
645
|
uninterpretedOption: UninterpretedOption[];
|
|
499
646
|
/**
|
|
500
647
|
* For external users: DO NOT USE. We are in the process of open sourcing
|
|
@@ -502,7 +649,9 @@ export interface ExtensionRangeOptions {
|
|
|
502
649
|
* used externally.
|
|
503
650
|
*/
|
|
504
651
|
declaration: ExtensionRangeOptions_Declaration[];
|
|
505
|
-
/**
|
|
652
|
+
/**
|
|
653
|
+
* Any features defined in the specific edition.
|
|
654
|
+
*/
|
|
506
655
|
features?: FeatureSet;
|
|
507
656
|
/**
|
|
508
657
|
* The verification state of the range.
|
|
@@ -515,8 +664,15 @@ export interface ExtensionRangeOptionsProtoMsg {
|
|
|
515
664
|
typeUrl: "/google.protobuf.ExtensionRangeOptions";
|
|
516
665
|
value: Uint8Array;
|
|
517
666
|
}
|
|
667
|
+
/**
|
|
668
|
+
* @name ExtensionRangeOptionsAmino
|
|
669
|
+
* @package google.protobuf
|
|
670
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
671
|
+
*/
|
|
518
672
|
export interface ExtensionRangeOptionsAmino {
|
|
519
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
675
|
+
*/
|
|
520
676
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
521
677
|
/**
|
|
522
678
|
* For external users: DO NOT USE. We are in the process of open sourcing
|
|
@@ -524,7 +680,9 @@ export interface ExtensionRangeOptionsAmino {
|
|
|
524
680
|
* used externally.
|
|
525
681
|
*/
|
|
526
682
|
declaration: ExtensionRangeOptions_DeclarationAmino[];
|
|
527
|
-
/**
|
|
683
|
+
/**
|
|
684
|
+
* Any features defined in the specific edition.
|
|
685
|
+
*/
|
|
528
686
|
features?: FeatureSetAmino;
|
|
529
687
|
/**
|
|
530
688
|
* The verification state of the range.
|
|
@@ -537,8 +695,15 @@ export interface ExtensionRangeOptionsAminoMsg {
|
|
|
537
695
|
type: "/google.protobuf.ExtensionRangeOptions";
|
|
538
696
|
value: ExtensionRangeOptionsAmino;
|
|
539
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
* @name ExtensionRangeOptions_Declaration
|
|
700
|
+
* @package google.protobuf
|
|
701
|
+
* @see proto type: google.protobuf.Declaration
|
|
702
|
+
*/
|
|
540
703
|
export interface ExtensionRangeOptions_Declaration {
|
|
541
|
-
/**
|
|
704
|
+
/**
|
|
705
|
+
* The extension number declared within the extension range.
|
|
706
|
+
*/
|
|
542
707
|
number: number;
|
|
543
708
|
/**
|
|
544
709
|
* The fully-qualified name of the extension field. There must be a leading
|
|
@@ -567,8 +732,15 @@ export interface ExtensionRangeOptions_DeclarationProtoMsg {
|
|
|
567
732
|
typeUrl: "/google.protobuf.Declaration";
|
|
568
733
|
value: Uint8Array;
|
|
569
734
|
}
|
|
735
|
+
/**
|
|
736
|
+
* @name ExtensionRangeOptions_DeclarationAmino
|
|
737
|
+
* @package google.protobuf
|
|
738
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions_Declaration
|
|
739
|
+
*/
|
|
570
740
|
export interface ExtensionRangeOptions_DeclarationAmino {
|
|
571
|
-
/**
|
|
741
|
+
/**
|
|
742
|
+
* The extension number declared within the extension range.
|
|
743
|
+
*/
|
|
572
744
|
number: number;
|
|
573
745
|
/**
|
|
574
746
|
* The fully-qualified name of the extension field. There must be a leading
|
|
@@ -597,7 +769,12 @@ export interface ExtensionRangeOptions_DeclarationAminoMsg {
|
|
|
597
769
|
type: "/google.protobuf.Declaration";
|
|
598
770
|
value: ExtensionRangeOptions_DeclarationAmino;
|
|
599
771
|
}
|
|
600
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* Describes a field within a message.
|
|
774
|
+
* @name FieldDescriptorProto
|
|
775
|
+
* @package google.protobuf
|
|
776
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
777
|
+
*/
|
|
601
778
|
export interface FieldDescriptorProto {
|
|
602
779
|
name: string;
|
|
603
780
|
number: number;
|
|
@@ -669,7 +846,12 @@ export interface FieldDescriptorProtoProtoMsg {
|
|
|
669
846
|
typeUrl: "/google.protobuf.FieldDescriptorProto";
|
|
670
847
|
value: Uint8Array;
|
|
671
848
|
}
|
|
672
|
-
/**
|
|
849
|
+
/**
|
|
850
|
+
* Describes a field within a message.
|
|
851
|
+
* @name FieldDescriptorProtoAmino
|
|
852
|
+
* @package google.protobuf
|
|
853
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
854
|
+
*/
|
|
673
855
|
export interface FieldDescriptorProtoAmino {
|
|
674
856
|
name: string;
|
|
675
857
|
number: number;
|
|
@@ -741,7 +923,12 @@ export interface FieldDescriptorProtoAminoMsg {
|
|
|
741
923
|
type: "/google.protobuf.FieldDescriptorProto";
|
|
742
924
|
value: FieldDescriptorProtoAmino;
|
|
743
925
|
}
|
|
744
|
-
/**
|
|
926
|
+
/**
|
|
927
|
+
* Describes a oneof.
|
|
928
|
+
* @name OneofDescriptorProto
|
|
929
|
+
* @package google.protobuf
|
|
930
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
931
|
+
*/
|
|
745
932
|
export interface OneofDescriptorProto {
|
|
746
933
|
name: string;
|
|
747
934
|
options?: OneofOptions;
|
|
@@ -750,7 +937,12 @@ export interface OneofDescriptorProtoProtoMsg {
|
|
|
750
937
|
typeUrl: "/google.protobuf.OneofDescriptorProto";
|
|
751
938
|
value: Uint8Array;
|
|
752
939
|
}
|
|
753
|
-
/**
|
|
940
|
+
/**
|
|
941
|
+
* Describes a oneof.
|
|
942
|
+
* @name OneofDescriptorProtoAmino
|
|
943
|
+
* @package google.protobuf
|
|
944
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
945
|
+
*/
|
|
754
946
|
export interface OneofDescriptorProtoAmino {
|
|
755
947
|
name: string;
|
|
756
948
|
options?: OneofOptionsAmino;
|
|
@@ -759,7 +951,12 @@ export interface OneofDescriptorProtoAminoMsg {
|
|
|
759
951
|
type: "/google.protobuf.OneofDescriptorProto";
|
|
760
952
|
value: OneofDescriptorProtoAmino;
|
|
761
953
|
}
|
|
762
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Describes an enum type.
|
|
956
|
+
* @name EnumDescriptorProto
|
|
957
|
+
* @package google.protobuf
|
|
958
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
959
|
+
*/
|
|
763
960
|
export interface EnumDescriptorProto {
|
|
764
961
|
name: string;
|
|
765
962
|
value: EnumValueDescriptorProto[];
|
|
@@ -775,12 +972,21 @@ export interface EnumDescriptorProto {
|
|
|
775
972
|
* be reserved once.
|
|
776
973
|
*/
|
|
777
974
|
reservedName: string[];
|
|
975
|
+
/**
|
|
976
|
+
* Support for `export` and `local` keywords on enums.
|
|
977
|
+
*/
|
|
978
|
+
visibility: SymbolVisibility;
|
|
778
979
|
}
|
|
779
980
|
export interface EnumDescriptorProtoProtoMsg {
|
|
780
981
|
typeUrl: "/google.protobuf.EnumDescriptorProto";
|
|
781
982
|
value: Uint8Array;
|
|
782
983
|
}
|
|
783
|
-
/**
|
|
984
|
+
/**
|
|
985
|
+
* Describes an enum type.
|
|
986
|
+
* @name EnumDescriptorProtoAmino
|
|
987
|
+
* @package google.protobuf
|
|
988
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
989
|
+
*/
|
|
784
990
|
export interface EnumDescriptorProtoAmino {
|
|
785
991
|
name: string;
|
|
786
992
|
value: EnumValueDescriptorProtoAmino[];
|
|
@@ -796,6 +1002,10 @@ export interface EnumDescriptorProtoAmino {
|
|
|
796
1002
|
* be reserved once.
|
|
797
1003
|
*/
|
|
798
1004
|
reserved_name: string[];
|
|
1005
|
+
/**
|
|
1006
|
+
* Support for `export` and `local` keywords on enums.
|
|
1007
|
+
*/
|
|
1008
|
+
visibility: SymbolVisibility;
|
|
799
1009
|
}
|
|
800
1010
|
export interface EnumDescriptorProtoAminoMsg {
|
|
801
1011
|
type: "/google.protobuf.EnumDescriptorProto";
|
|
@@ -808,11 +1018,18 @@ export interface EnumDescriptorProtoAminoMsg {
|
|
|
808
1018
|
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
809
1019
|
* is inclusive such that it can appropriately represent the entire int32
|
|
810
1020
|
* domain.
|
|
1021
|
+
* @name EnumDescriptorProto_EnumReservedRange
|
|
1022
|
+
* @package google.protobuf
|
|
1023
|
+
* @see proto type: google.protobuf.EnumReservedRange
|
|
811
1024
|
*/
|
|
812
1025
|
export interface EnumDescriptorProto_EnumReservedRange {
|
|
813
|
-
/**
|
|
1026
|
+
/**
|
|
1027
|
+
* Inclusive.
|
|
1028
|
+
*/
|
|
814
1029
|
start: number;
|
|
815
|
-
/**
|
|
1030
|
+
/**
|
|
1031
|
+
* Inclusive.
|
|
1032
|
+
*/
|
|
816
1033
|
end: number;
|
|
817
1034
|
}
|
|
818
1035
|
export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
|
|
@@ -826,18 +1043,30 @@ export interface EnumDescriptorProto_EnumReservedRangeProtoMsg {
|
|
|
826
1043
|
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
827
1044
|
* is inclusive such that it can appropriately represent the entire int32
|
|
828
1045
|
* domain.
|
|
1046
|
+
* @name EnumDescriptorProto_EnumReservedRangeAmino
|
|
1047
|
+
* @package google.protobuf
|
|
1048
|
+
* @see proto type: google.protobuf.EnumDescriptorProto_EnumReservedRange
|
|
829
1049
|
*/
|
|
830
1050
|
export interface EnumDescriptorProto_EnumReservedRangeAmino {
|
|
831
|
-
/**
|
|
1051
|
+
/**
|
|
1052
|
+
* Inclusive.
|
|
1053
|
+
*/
|
|
832
1054
|
start: number;
|
|
833
|
-
/**
|
|
1055
|
+
/**
|
|
1056
|
+
* Inclusive.
|
|
1057
|
+
*/
|
|
834
1058
|
end: number;
|
|
835
1059
|
}
|
|
836
1060
|
export interface EnumDescriptorProto_EnumReservedRangeAminoMsg {
|
|
837
1061
|
type: "/google.protobuf.EnumReservedRange";
|
|
838
1062
|
value: EnumDescriptorProto_EnumReservedRangeAmino;
|
|
839
1063
|
}
|
|
840
|
-
/**
|
|
1064
|
+
/**
|
|
1065
|
+
* Describes a value within an enum.
|
|
1066
|
+
* @name EnumValueDescriptorProto
|
|
1067
|
+
* @package google.protobuf
|
|
1068
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
1069
|
+
*/
|
|
841
1070
|
export interface EnumValueDescriptorProto {
|
|
842
1071
|
name: string;
|
|
843
1072
|
number: number;
|
|
@@ -847,7 +1076,12 @@ export interface EnumValueDescriptorProtoProtoMsg {
|
|
|
847
1076
|
typeUrl: "/google.protobuf.EnumValueDescriptorProto";
|
|
848
1077
|
value: Uint8Array;
|
|
849
1078
|
}
|
|
850
|
-
/**
|
|
1079
|
+
/**
|
|
1080
|
+
* Describes a value within an enum.
|
|
1081
|
+
* @name EnumValueDescriptorProtoAmino
|
|
1082
|
+
* @package google.protobuf
|
|
1083
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
1084
|
+
*/
|
|
851
1085
|
export interface EnumValueDescriptorProtoAmino {
|
|
852
1086
|
name: string;
|
|
853
1087
|
number: number;
|
|
@@ -857,7 +1091,12 @@ export interface EnumValueDescriptorProtoAminoMsg {
|
|
|
857
1091
|
type: "/google.protobuf.EnumValueDescriptorProto";
|
|
858
1092
|
value: EnumValueDescriptorProtoAmino;
|
|
859
1093
|
}
|
|
860
|
-
/**
|
|
1094
|
+
/**
|
|
1095
|
+
* Describes a service.
|
|
1096
|
+
* @name ServiceDescriptorProto
|
|
1097
|
+
* @package google.protobuf
|
|
1098
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
1099
|
+
*/
|
|
861
1100
|
export interface ServiceDescriptorProto {
|
|
862
1101
|
name: string;
|
|
863
1102
|
method: MethodDescriptorProto[];
|
|
@@ -867,7 +1106,12 @@ export interface ServiceDescriptorProtoProtoMsg {
|
|
|
867
1106
|
typeUrl: "/google.protobuf.ServiceDescriptorProto";
|
|
868
1107
|
value: Uint8Array;
|
|
869
1108
|
}
|
|
870
|
-
/**
|
|
1109
|
+
/**
|
|
1110
|
+
* Describes a service.
|
|
1111
|
+
* @name ServiceDescriptorProtoAmino
|
|
1112
|
+
* @package google.protobuf
|
|
1113
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
1114
|
+
*/
|
|
871
1115
|
export interface ServiceDescriptorProtoAmino {
|
|
872
1116
|
name: string;
|
|
873
1117
|
method: MethodDescriptorProtoAmino[];
|
|
@@ -877,7 +1121,12 @@ export interface ServiceDescriptorProtoAminoMsg {
|
|
|
877
1121
|
type: "/google.protobuf.ServiceDescriptorProto";
|
|
878
1122
|
value: ServiceDescriptorProtoAmino;
|
|
879
1123
|
}
|
|
880
|
-
/**
|
|
1124
|
+
/**
|
|
1125
|
+
* Describes a method of a service.
|
|
1126
|
+
* @name MethodDescriptorProto
|
|
1127
|
+
* @package google.protobuf
|
|
1128
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
1129
|
+
*/
|
|
881
1130
|
export interface MethodDescriptorProto {
|
|
882
1131
|
name: string;
|
|
883
1132
|
/**
|
|
@@ -887,16 +1136,25 @@ export interface MethodDescriptorProto {
|
|
|
887
1136
|
inputType: string;
|
|
888
1137
|
outputType: string;
|
|
889
1138
|
options?: MethodOptions;
|
|
890
|
-
/**
|
|
1139
|
+
/**
|
|
1140
|
+
* Identifies if client streams multiple client messages
|
|
1141
|
+
*/
|
|
891
1142
|
clientStreaming: boolean;
|
|
892
|
-
/**
|
|
1143
|
+
/**
|
|
1144
|
+
* Identifies if server streams multiple server messages
|
|
1145
|
+
*/
|
|
893
1146
|
serverStreaming: boolean;
|
|
894
1147
|
}
|
|
895
1148
|
export interface MethodDescriptorProtoProtoMsg {
|
|
896
1149
|
typeUrl: "/google.protobuf.MethodDescriptorProto";
|
|
897
1150
|
value: Uint8Array;
|
|
898
1151
|
}
|
|
899
|
-
/**
|
|
1152
|
+
/**
|
|
1153
|
+
* Describes a method of a service.
|
|
1154
|
+
* @name MethodDescriptorProtoAmino
|
|
1155
|
+
* @package google.protobuf
|
|
1156
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
1157
|
+
*/
|
|
900
1158
|
export interface MethodDescriptorProtoAmino {
|
|
901
1159
|
name: string;
|
|
902
1160
|
/**
|
|
@@ -906,15 +1164,24 @@ export interface MethodDescriptorProtoAmino {
|
|
|
906
1164
|
input_type: string;
|
|
907
1165
|
output_type: string;
|
|
908
1166
|
options?: MethodOptionsAmino;
|
|
909
|
-
/**
|
|
1167
|
+
/**
|
|
1168
|
+
* Identifies if client streams multiple client messages
|
|
1169
|
+
*/
|
|
910
1170
|
client_streaming: boolean;
|
|
911
|
-
/**
|
|
1171
|
+
/**
|
|
1172
|
+
* Identifies if server streams multiple server messages
|
|
1173
|
+
*/
|
|
912
1174
|
server_streaming: boolean;
|
|
913
1175
|
}
|
|
914
1176
|
export interface MethodDescriptorProtoAminoMsg {
|
|
915
1177
|
type: "/google.protobuf.MethodDescriptorProto";
|
|
916
1178
|
value: MethodDescriptorProtoAmino;
|
|
917
1179
|
}
|
|
1180
|
+
/**
|
|
1181
|
+
* @name FileOptions
|
|
1182
|
+
* @package google.protobuf
|
|
1183
|
+
* @see proto type: google.protobuf.FileOptions
|
|
1184
|
+
*/
|
|
918
1185
|
export interface FileOptions {
|
|
919
1186
|
/**
|
|
920
1187
|
* Sets the Java package where classes generated from this .proto will be
|
|
@@ -940,8 +1207,10 @@ export interface FileOptions {
|
|
|
940
1207
|
* top-level extensions defined in the file.
|
|
941
1208
|
*/
|
|
942
1209
|
javaMultipleFiles: boolean;
|
|
943
|
-
/**
|
|
944
|
-
|
|
1210
|
+
/**
|
|
1211
|
+
* This option does nothing.
|
|
1212
|
+
* @deprecated
|
|
1213
|
+
*/
|
|
945
1214
|
javaGenerateEqualsAndHash: boolean;
|
|
946
1215
|
/**
|
|
947
1216
|
* A proto2 file can set this to true to opt in to UTF-8 checking for Java,
|
|
@@ -997,7 +1266,9 @@ export interface FileOptions {
|
|
|
997
1266
|
* generated classes from this .proto. There is no default.
|
|
998
1267
|
*/
|
|
999
1268
|
objcClassPrefix: string;
|
|
1000
|
-
/**
|
|
1269
|
+
/**
|
|
1270
|
+
* Namespace for generated classes; defaults to the package.
|
|
1271
|
+
*/
|
|
1001
1272
|
csharpNamespace: string;
|
|
1002
1273
|
/**
|
|
1003
1274
|
* By default Swift generators will take the proto package and CamelCase it
|
|
@@ -1046,6 +1317,11 @@ export interface FileOptionsProtoMsg {
|
|
|
1046
1317
|
typeUrl: "/google.protobuf.FileOptions";
|
|
1047
1318
|
value: Uint8Array;
|
|
1048
1319
|
}
|
|
1320
|
+
/**
|
|
1321
|
+
* @name FileOptionsAmino
|
|
1322
|
+
* @package google.protobuf
|
|
1323
|
+
* @see proto type: google.protobuf.FileOptions
|
|
1324
|
+
*/
|
|
1049
1325
|
export interface FileOptionsAmino {
|
|
1050
1326
|
/**
|
|
1051
1327
|
* Sets the Java package where classes generated from this .proto will be
|
|
@@ -1071,8 +1347,10 @@ export interface FileOptionsAmino {
|
|
|
1071
1347
|
* top-level extensions defined in the file.
|
|
1072
1348
|
*/
|
|
1073
1349
|
java_multiple_files: boolean;
|
|
1074
|
-
/**
|
|
1075
|
-
|
|
1350
|
+
/**
|
|
1351
|
+
* This option does nothing.
|
|
1352
|
+
* @deprecated
|
|
1353
|
+
*/
|
|
1076
1354
|
java_generate_equals_and_hash: boolean;
|
|
1077
1355
|
/**
|
|
1078
1356
|
* A proto2 file can set this to true to opt in to UTF-8 checking for Java,
|
|
@@ -1128,7 +1406,9 @@ export interface FileOptionsAmino {
|
|
|
1128
1406
|
* generated classes from this .proto. There is no default.
|
|
1129
1407
|
*/
|
|
1130
1408
|
objc_class_prefix: string;
|
|
1131
|
-
/**
|
|
1409
|
+
/**
|
|
1410
|
+
* Namespace for generated classes; defaults to the package.
|
|
1411
|
+
*/
|
|
1132
1412
|
csharp_namespace: string;
|
|
1133
1413
|
/**
|
|
1134
1414
|
* By default Swift generators will take the proto package and CamelCase it
|
|
@@ -1177,6 +1457,11 @@ export interface FileOptionsAminoMsg {
|
|
|
1177
1457
|
type: "/google.protobuf.FileOptions";
|
|
1178
1458
|
value: FileOptionsAmino;
|
|
1179
1459
|
}
|
|
1460
|
+
/**
|
|
1461
|
+
* @name MessageOptions
|
|
1462
|
+
* @package google.protobuf
|
|
1463
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
1464
|
+
*/
|
|
1180
1465
|
export interface MessageOptions {
|
|
1181
1466
|
/**
|
|
1182
1467
|
* Set true to use the old proto1 MessageSet wire format for extensions.
|
|
@@ -1247,8 +1532,8 @@ export interface MessageOptions {
|
|
|
1247
1532
|
*
|
|
1248
1533
|
* TODO This is legacy behavior we plan to remove once downstream
|
|
1249
1534
|
* teams have had time to migrate.
|
|
1535
|
+
* @deprecated
|
|
1250
1536
|
*/
|
|
1251
|
-
/** @deprecated */
|
|
1252
1537
|
deprecatedLegacyJsonFieldConflicts: boolean;
|
|
1253
1538
|
/**
|
|
1254
1539
|
* Any features defined in the specific edition.
|
|
@@ -1257,13 +1542,20 @@ export interface MessageOptions {
|
|
|
1257
1542
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1258
1543
|
*/
|
|
1259
1544
|
features?: FeatureSet;
|
|
1260
|
-
/**
|
|
1545
|
+
/**
|
|
1546
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
1547
|
+
*/
|
|
1261
1548
|
uninterpretedOption: UninterpretedOption[];
|
|
1262
1549
|
}
|
|
1263
1550
|
export interface MessageOptionsProtoMsg {
|
|
1264
1551
|
typeUrl: "/google.protobuf.MessageOptions";
|
|
1265
1552
|
value: Uint8Array;
|
|
1266
1553
|
}
|
|
1554
|
+
/**
|
|
1555
|
+
* @name MessageOptionsAmino
|
|
1556
|
+
* @package google.protobuf
|
|
1557
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
1558
|
+
*/
|
|
1267
1559
|
export interface MessageOptionsAmino {
|
|
1268
1560
|
/**
|
|
1269
1561
|
* Set true to use the old proto1 MessageSet wire format for extensions.
|
|
@@ -1334,8 +1626,8 @@ export interface MessageOptionsAmino {
|
|
|
1334
1626
|
*
|
|
1335
1627
|
* TODO This is legacy behavior we plan to remove once downstream
|
|
1336
1628
|
* teams have had time to migrate.
|
|
1629
|
+
* @deprecated
|
|
1337
1630
|
*/
|
|
1338
|
-
/** @deprecated */
|
|
1339
1631
|
deprecated_legacy_json_field_conflicts: boolean;
|
|
1340
1632
|
/**
|
|
1341
1633
|
* Any features defined in the specific edition.
|
|
@@ -1344,13 +1636,20 @@ export interface MessageOptionsAmino {
|
|
|
1344
1636
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1345
1637
|
*/
|
|
1346
1638
|
features?: FeatureSetAmino;
|
|
1347
|
-
/**
|
|
1639
|
+
/**
|
|
1640
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
1641
|
+
*/
|
|
1348
1642
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1349
1643
|
}
|
|
1350
1644
|
export interface MessageOptionsAminoMsg {
|
|
1351
1645
|
type: "/google.protobuf.MessageOptions";
|
|
1352
1646
|
value: MessageOptionsAmino;
|
|
1353
1647
|
}
|
|
1648
|
+
/**
|
|
1649
|
+
* @name FieldOptions
|
|
1650
|
+
* @package google.protobuf
|
|
1651
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
1652
|
+
*/
|
|
1354
1653
|
export interface FieldOptions {
|
|
1355
1654
|
/**
|
|
1356
1655
|
* NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
|
|
@@ -1424,7 +1723,11 @@ export interface FieldOptions {
|
|
|
1424
1723
|
* is a formalization for deprecating fields.
|
|
1425
1724
|
*/
|
|
1426
1725
|
deprecated: boolean;
|
|
1427
|
-
/**
|
|
1726
|
+
/**
|
|
1727
|
+
* DEPRECATED. DO NOT USE!
|
|
1728
|
+
* For Google-internal migration only. Do not use.
|
|
1729
|
+
* @deprecated
|
|
1730
|
+
*/
|
|
1428
1731
|
weak: boolean;
|
|
1429
1732
|
/**
|
|
1430
1733
|
* Indicate that the field value should not be printed out when using debug
|
|
@@ -1442,13 +1745,20 @@ export interface FieldOptions {
|
|
|
1442
1745
|
*/
|
|
1443
1746
|
features?: FeatureSet;
|
|
1444
1747
|
featureSupport?: FieldOptions_FeatureSupport;
|
|
1445
|
-
/**
|
|
1748
|
+
/**
|
|
1749
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
1750
|
+
*/
|
|
1446
1751
|
uninterpretedOption: UninterpretedOption[];
|
|
1447
1752
|
}
|
|
1448
1753
|
export interface FieldOptionsProtoMsg {
|
|
1449
1754
|
typeUrl: "/google.protobuf.FieldOptions";
|
|
1450
1755
|
value: Uint8Array;
|
|
1451
1756
|
}
|
|
1757
|
+
/**
|
|
1758
|
+
* @name FieldOptionsAmino
|
|
1759
|
+
* @package google.protobuf
|
|
1760
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
1761
|
+
*/
|
|
1452
1762
|
export interface FieldOptionsAmino {
|
|
1453
1763
|
/**
|
|
1454
1764
|
* NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
|
|
@@ -1522,7 +1832,11 @@ export interface FieldOptionsAmino {
|
|
|
1522
1832
|
* is a formalization for deprecating fields.
|
|
1523
1833
|
*/
|
|
1524
1834
|
deprecated: boolean;
|
|
1525
|
-
/**
|
|
1835
|
+
/**
|
|
1836
|
+
* DEPRECATED. DO NOT USE!
|
|
1837
|
+
* For Google-internal migration only. Do not use.
|
|
1838
|
+
* @deprecated
|
|
1839
|
+
*/
|
|
1526
1840
|
weak: boolean;
|
|
1527
1841
|
/**
|
|
1528
1842
|
* Indicate that the field value should not be printed out when using debug
|
|
@@ -1540,32 +1854,53 @@ export interface FieldOptionsAmino {
|
|
|
1540
1854
|
*/
|
|
1541
1855
|
features?: FeatureSetAmino;
|
|
1542
1856
|
feature_support?: FieldOptions_FeatureSupportAmino;
|
|
1543
|
-
/**
|
|
1857
|
+
/**
|
|
1858
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
1859
|
+
*/
|
|
1544
1860
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1545
1861
|
}
|
|
1546
1862
|
export interface FieldOptionsAminoMsg {
|
|
1547
1863
|
type: "/google.protobuf.FieldOptions";
|
|
1548
1864
|
value: FieldOptionsAmino;
|
|
1549
1865
|
}
|
|
1866
|
+
/**
|
|
1867
|
+
* @name FieldOptions_EditionDefault
|
|
1868
|
+
* @package google.protobuf
|
|
1869
|
+
* @see proto type: google.protobuf.EditionDefault
|
|
1870
|
+
*/
|
|
1550
1871
|
export interface FieldOptions_EditionDefault {
|
|
1551
1872
|
edition: Edition;
|
|
1552
|
-
/**
|
|
1873
|
+
/**
|
|
1874
|
+
* Textproto value.
|
|
1875
|
+
*/
|
|
1553
1876
|
value: string;
|
|
1554
1877
|
}
|
|
1555
1878
|
export interface FieldOptions_EditionDefaultProtoMsg {
|
|
1556
1879
|
typeUrl: "/google.protobuf.EditionDefault";
|
|
1557
1880
|
value: Uint8Array;
|
|
1558
1881
|
}
|
|
1882
|
+
/**
|
|
1883
|
+
* @name FieldOptions_EditionDefaultAmino
|
|
1884
|
+
* @package google.protobuf
|
|
1885
|
+
* @see proto type: google.protobuf.FieldOptions_EditionDefault
|
|
1886
|
+
*/
|
|
1559
1887
|
export interface FieldOptions_EditionDefaultAmino {
|
|
1560
1888
|
edition: Edition;
|
|
1561
|
-
/**
|
|
1889
|
+
/**
|
|
1890
|
+
* Textproto value.
|
|
1891
|
+
*/
|
|
1562
1892
|
value: string;
|
|
1563
1893
|
}
|
|
1564
1894
|
export interface FieldOptions_EditionDefaultAminoMsg {
|
|
1565
1895
|
type: "/google.protobuf.EditionDefault";
|
|
1566
1896
|
value: FieldOptions_EditionDefaultAmino;
|
|
1567
1897
|
}
|
|
1568
|
-
/**
|
|
1898
|
+
/**
|
|
1899
|
+
* Information about the support window of a feature.
|
|
1900
|
+
* @name FieldOptions_FeatureSupport
|
|
1901
|
+
* @package google.protobuf
|
|
1902
|
+
* @see proto type: google.protobuf.FeatureSupport
|
|
1903
|
+
*/
|
|
1569
1904
|
export interface FieldOptions_FeatureSupport {
|
|
1570
1905
|
/**
|
|
1571
1906
|
* The edition that this feature was first available in. In editions
|
|
@@ -1594,7 +1929,12 @@ export interface FieldOptions_FeatureSupportProtoMsg {
|
|
|
1594
1929
|
typeUrl: "/google.protobuf.FeatureSupport";
|
|
1595
1930
|
value: Uint8Array;
|
|
1596
1931
|
}
|
|
1597
|
-
/**
|
|
1932
|
+
/**
|
|
1933
|
+
* Information about the support window of a feature.
|
|
1934
|
+
* @name FieldOptions_FeatureSupportAmino
|
|
1935
|
+
* @package google.protobuf
|
|
1936
|
+
* @see proto type: google.protobuf.FieldOptions_FeatureSupport
|
|
1937
|
+
*/
|
|
1598
1938
|
export interface FieldOptions_FeatureSupportAmino {
|
|
1599
1939
|
/**
|
|
1600
1940
|
* The edition that this feature was first available in. In editions
|
|
@@ -1623,6 +1963,11 @@ export interface FieldOptions_FeatureSupportAminoMsg {
|
|
|
1623
1963
|
type: "/google.protobuf.FeatureSupport";
|
|
1624
1964
|
value: FieldOptions_FeatureSupportAmino;
|
|
1625
1965
|
}
|
|
1966
|
+
/**
|
|
1967
|
+
* @name OneofOptions
|
|
1968
|
+
* @package google.protobuf
|
|
1969
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
1970
|
+
*/
|
|
1626
1971
|
export interface OneofOptions {
|
|
1627
1972
|
/**
|
|
1628
1973
|
* Any features defined in the specific edition.
|
|
@@ -1631,13 +1976,20 @@ export interface OneofOptions {
|
|
|
1631
1976
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1632
1977
|
*/
|
|
1633
1978
|
features?: FeatureSet;
|
|
1634
|
-
/**
|
|
1979
|
+
/**
|
|
1980
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
1981
|
+
*/
|
|
1635
1982
|
uninterpretedOption: UninterpretedOption[];
|
|
1636
1983
|
}
|
|
1637
1984
|
export interface OneofOptionsProtoMsg {
|
|
1638
1985
|
typeUrl: "/google.protobuf.OneofOptions";
|
|
1639
1986
|
value: Uint8Array;
|
|
1640
1987
|
}
|
|
1988
|
+
/**
|
|
1989
|
+
* @name OneofOptionsAmino
|
|
1990
|
+
* @package google.protobuf
|
|
1991
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
1992
|
+
*/
|
|
1641
1993
|
export interface OneofOptionsAmino {
|
|
1642
1994
|
/**
|
|
1643
1995
|
* Any features defined in the specific edition.
|
|
@@ -1646,13 +1998,20 @@ export interface OneofOptionsAmino {
|
|
|
1646
1998
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1647
1999
|
*/
|
|
1648
2000
|
features?: FeatureSetAmino;
|
|
1649
|
-
/**
|
|
2001
|
+
/**
|
|
2002
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2003
|
+
*/
|
|
1650
2004
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1651
2005
|
}
|
|
1652
2006
|
export interface OneofOptionsAminoMsg {
|
|
1653
2007
|
type: "/google.protobuf.OneofOptions";
|
|
1654
2008
|
value: OneofOptionsAmino;
|
|
1655
2009
|
}
|
|
2010
|
+
/**
|
|
2011
|
+
* @name EnumOptions
|
|
2012
|
+
* @package google.protobuf
|
|
2013
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
2014
|
+
*/
|
|
1656
2015
|
export interface EnumOptions {
|
|
1657
2016
|
/**
|
|
1658
2017
|
* Set this option to true to allow mapping different tag names to the same
|
|
@@ -1673,8 +2032,8 @@ export interface EnumOptions {
|
|
|
1673
2032
|
* well.
|
|
1674
2033
|
* TODO Remove this legacy behavior once downstream teams have
|
|
1675
2034
|
* had time to migrate.
|
|
2035
|
+
* @deprecated
|
|
1676
2036
|
*/
|
|
1677
|
-
/** @deprecated */
|
|
1678
2037
|
deprecatedLegacyJsonFieldConflicts: boolean;
|
|
1679
2038
|
/**
|
|
1680
2039
|
* Any features defined in the specific edition.
|
|
@@ -1683,13 +2042,20 @@ export interface EnumOptions {
|
|
|
1683
2042
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1684
2043
|
*/
|
|
1685
2044
|
features?: FeatureSet;
|
|
1686
|
-
/**
|
|
2045
|
+
/**
|
|
2046
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2047
|
+
*/
|
|
1687
2048
|
uninterpretedOption: UninterpretedOption[];
|
|
1688
2049
|
}
|
|
1689
2050
|
export interface EnumOptionsProtoMsg {
|
|
1690
2051
|
typeUrl: "/google.protobuf.EnumOptions";
|
|
1691
2052
|
value: Uint8Array;
|
|
1692
2053
|
}
|
|
2054
|
+
/**
|
|
2055
|
+
* @name EnumOptionsAmino
|
|
2056
|
+
* @package google.protobuf
|
|
2057
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
2058
|
+
*/
|
|
1693
2059
|
export interface EnumOptionsAmino {
|
|
1694
2060
|
/**
|
|
1695
2061
|
* Set this option to true to allow mapping different tag names to the same
|
|
@@ -1710,8 +2076,8 @@ export interface EnumOptionsAmino {
|
|
|
1710
2076
|
* well.
|
|
1711
2077
|
* TODO Remove this legacy behavior once downstream teams have
|
|
1712
2078
|
* had time to migrate.
|
|
2079
|
+
* @deprecated
|
|
1713
2080
|
*/
|
|
1714
|
-
/** @deprecated */
|
|
1715
2081
|
deprecated_legacy_json_field_conflicts: boolean;
|
|
1716
2082
|
/**
|
|
1717
2083
|
* Any features defined in the specific edition.
|
|
@@ -1720,13 +2086,20 @@ export interface EnumOptionsAmino {
|
|
|
1720
2086
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1721
2087
|
*/
|
|
1722
2088
|
features?: FeatureSetAmino;
|
|
1723
|
-
/**
|
|
2089
|
+
/**
|
|
2090
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2091
|
+
*/
|
|
1724
2092
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1725
2093
|
}
|
|
1726
2094
|
export interface EnumOptionsAminoMsg {
|
|
1727
2095
|
type: "/google.protobuf.EnumOptions";
|
|
1728
2096
|
value: EnumOptionsAmino;
|
|
1729
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
* @name EnumValueOptions
|
|
2100
|
+
* @package google.protobuf
|
|
2101
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
2102
|
+
*/
|
|
1730
2103
|
export interface EnumValueOptions {
|
|
1731
2104
|
/**
|
|
1732
2105
|
* Is this enum value deprecated?
|
|
@@ -1748,15 +2121,24 @@ export interface EnumValueOptions {
|
|
|
1748
2121
|
* credentials.
|
|
1749
2122
|
*/
|
|
1750
2123
|
debugRedact: boolean;
|
|
1751
|
-
/**
|
|
2124
|
+
/**
|
|
2125
|
+
* Information about the support window of a feature value.
|
|
2126
|
+
*/
|
|
1752
2127
|
featureSupport?: FieldOptions_FeatureSupport;
|
|
1753
|
-
/**
|
|
2128
|
+
/**
|
|
2129
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2130
|
+
*/
|
|
1754
2131
|
uninterpretedOption: UninterpretedOption[];
|
|
1755
2132
|
}
|
|
1756
2133
|
export interface EnumValueOptionsProtoMsg {
|
|
1757
2134
|
typeUrl: "/google.protobuf.EnumValueOptions";
|
|
1758
2135
|
value: Uint8Array;
|
|
1759
2136
|
}
|
|
2137
|
+
/**
|
|
2138
|
+
* @name EnumValueOptionsAmino
|
|
2139
|
+
* @package google.protobuf
|
|
2140
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
2141
|
+
*/
|
|
1760
2142
|
export interface EnumValueOptionsAmino {
|
|
1761
2143
|
/**
|
|
1762
2144
|
* Is this enum value deprecated?
|
|
@@ -1778,15 +2160,24 @@ export interface EnumValueOptionsAmino {
|
|
|
1778
2160
|
* credentials.
|
|
1779
2161
|
*/
|
|
1780
2162
|
debug_redact: boolean;
|
|
1781
|
-
/**
|
|
2163
|
+
/**
|
|
2164
|
+
* Information about the support window of a feature value.
|
|
2165
|
+
*/
|
|
1782
2166
|
feature_support?: FieldOptions_FeatureSupportAmino;
|
|
1783
|
-
/**
|
|
2167
|
+
/**
|
|
2168
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2169
|
+
*/
|
|
1784
2170
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1785
2171
|
}
|
|
1786
2172
|
export interface EnumValueOptionsAminoMsg {
|
|
1787
2173
|
type: "/google.protobuf.EnumValueOptions";
|
|
1788
2174
|
value: EnumValueOptionsAmino;
|
|
1789
2175
|
}
|
|
2176
|
+
/**
|
|
2177
|
+
* @name ServiceOptions
|
|
2178
|
+
* @package google.protobuf
|
|
2179
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
2180
|
+
*/
|
|
1790
2181
|
export interface ServiceOptions {
|
|
1791
2182
|
/**
|
|
1792
2183
|
* Any features defined in the specific edition.
|
|
@@ -1802,13 +2193,20 @@ export interface ServiceOptions {
|
|
|
1802
2193
|
* this is a formalization for deprecating services.
|
|
1803
2194
|
*/
|
|
1804
2195
|
deprecated: boolean;
|
|
1805
|
-
/**
|
|
2196
|
+
/**
|
|
2197
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2198
|
+
*/
|
|
1806
2199
|
uninterpretedOption: UninterpretedOption[];
|
|
1807
2200
|
}
|
|
1808
2201
|
export interface ServiceOptionsProtoMsg {
|
|
1809
2202
|
typeUrl: "/google.protobuf.ServiceOptions";
|
|
1810
2203
|
value: Uint8Array;
|
|
1811
2204
|
}
|
|
2205
|
+
/**
|
|
2206
|
+
* @name ServiceOptionsAmino
|
|
2207
|
+
* @package google.protobuf
|
|
2208
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
2209
|
+
*/
|
|
1812
2210
|
export interface ServiceOptionsAmino {
|
|
1813
2211
|
/**
|
|
1814
2212
|
* Any features defined in the specific edition.
|
|
@@ -1824,13 +2222,20 @@ export interface ServiceOptionsAmino {
|
|
|
1824
2222
|
* this is a formalization for deprecating services.
|
|
1825
2223
|
*/
|
|
1826
2224
|
deprecated: boolean;
|
|
1827
|
-
/**
|
|
2225
|
+
/**
|
|
2226
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2227
|
+
*/
|
|
1828
2228
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1829
2229
|
}
|
|
1830
2230
|
export interface ServiceOptionsAminoMsg {
|
|
1831
2231
|
type: "/google.protobuf.ServiceOptions";
|
|
1832
2232
|
value: ServiceOptionsAmino;
|
|
1833
2233
|
}
|
|
2234
|
+
/**
|
|
2235
|
+
* @name MethodOptions
|
|
2236
|
+
* @package google.protobuf
|
|
2237
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
2238
|
+
*/
|
|
1834
2239
|
export interface MethodOptions {
|
|
1835
2240
|
/**
|
|
1836
2241
|
* Is this method deprecated?
|
|
@@ -1847,13 +2252,20 @@ export interface MethodOptions {
|
|
|
1847
2252
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1848
2253
|
*/
|
|
1849
2254
|
features?: FeatureSet;
|
|
1850
|
-
/**
|
|
2255
|
+
/**
|
|
2256
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2257
|
+
*/
|
|
1851
2258
|
uninterpretedOption: UninterpretedOption[];
|
|
1852
2259
|
}
|
|
1853
2260
|
export interface MethodOptionsProtoMsg {
|
|
1854
2261
|
typeUrl: "/google.protobuf.MethodOptions";
|
|
1855
2262
|
value: Uint8Array;
|
|
1856
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* @name MethodOptionsAmino
|
|
2266
|
+
* @package google.protobuf
|
|
2267
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
2268
|
+
*/
|
|
1857
2269
|
export interface MethodOptionsAmino {
|
|
1858
2270
|
/**
|
|
1859
2271
|
* Is this method deprecated?
|
|
@@ -1870,7 +2282,9 @@ export interface MethodOptionsAmino {
|
|
|
1870
2282
|
* developers should rely on the protoreflect APIs for their client language.
|
|
1871
2283
|
*/
|
|
1872
2284
|
features?: FeatureSetAmino;
|
|
1873
|
-
/**
|
|
2285
|
+
/**
|
|
2286
|
+
* The parser stores options it doesn't recognize here. See above.
|
|
2287
|
+
*/
|
|
1874
2288
|
uninterpreted_option: UninterpretedOptionAmino[];
|
|
1875
2289
|
}
|
|
1876
2290
|
export interface MethodOptionsAminoMsg {
|
|
@@ -1884,6 +2298,9 @@ export interface MethodOptionsAminoMsg {
|
|
|
1884
2298
|
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
1885
2299
|
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
1886
2300
|
* in them.
|
|
2301
|
+
* @name UninterpretedOption
|
|
2302
|
+
* @package google.protobuf
|
|
2303
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
1887
2304
|
*/
|
|
1888
2305
|
export interface UninterpretedOption {
|
|
1889
2306
|
name: UninterpretedOption_NamePart[];
|
|
@@ -1909,6 +2326,9 @@ export interface UninterpretedOptionProtoMsg {
|
|
|
1909
2326
|
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
1910
2327
|
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
1911
2328
|
* in them.
|
|
2329
|
+
* @name UninterpretedOptionAmino
|
|
2330
|
+
* @package google.protobuf
|
|
2331
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
1912
2332
|
*/
|
|
1913
2333
|
export interface UninterpretedOptionAmino {
|
|
1914
2334
|
name: UninterpretedOption_NamePartAmino[];
|
|
@@ -1933,6 +2353,9 @@ export interface UninterpretedOptionAminoMsg {
|
|
|
1933
2353
|
* extension (denoted with parentheses in options specs in .proto files).
|
|
1934
2354
|
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
1935
2355
|
* "foo.(bar.baz).moo".
|
|
2356
|
+
* @name UninterpretedOption_NamePart
|
|
2357
|
+
* @package google.protobuf
|
|
2358
|
+
* @see proto type: google.protobuf.NamePart
|
|
1936
2359
|
*/
|
|
1937
2360
|
export interface UninterpretedOption_NamePart {
|
|
1938
2361
|
namePart: string;
|
|
@@ -1948,6 +2371,9 @@ export interface UninterpretedOption_NamePartProtoMsg {
|
|
|
1948
2371
|
* extension (denoted with parentheses in options specs in .proto files).
|
|
1949
2372
|
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
1950
2373
|
* "foo.(bar.baz).moo".
|
|
2374
|
+
* @name UninterpretedOption_NamePartAmino
|
|
2375
|
+
* @package google.protobuf
|
|
2376
|
+
* @see proto type: google.protobuf.UninterpretedOption_NamePart
|
|
1951
2377
|
*/
|
|
1952
2378
|
export interface UninterpretedOption_NamePartAmino {
|
|
1953
2379
|
name_part: string;
|
|
@@ -1964,6 +2390,9 @@ export interface UninterpretedOption_NamePartAminoMsg {
|
|
|
1964
2390
|
* readability, but leave us very open to this scenario. A future feature will
|
|
1965
2391
|
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
1966
2392
|
* conflict here.
|
|
2393
|
+
* @name FeatureSet
|
|
2394
|
+
* @package google.protobuf
|
|
2395
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
1967
2396
|
*/
|
|
1968
2397
|
export interface FeatureSet {
|
|
1969
2398
|
fieldPresence: FeatureSet_FieldPresence;
|
|
@@ -1972,6 +2401,7 @@ export interface FeatureSet {
|
|
|
1972
2401
|
utf8Validation: FeatureSet_Utf8Validation;
|
|
1973
2402
|
messageEncoding: FeatureSet_MessageEncoding;
|
|
1974
2403
|
jsonFormat: FeatureSet_JsonFormat;
|
|
2404
|
+
enforceNamingStyle: FeatureSet_EnforceNamingStyle;
|
|
1975
2405
|
}
|
|
1976
2406
|
export interface FeatureSetProtoMsg {
|
|
1977
2407
|
typeUrl: "/google.protobuf.FeatureSet";
|
|
@@ -1984,6 +2414,9 @@ export interface FeatureSetProtoMsg {
|
|
|
1984
2414
|
* readability, but leave us very open to this scenario. A future feature will
|
|
1985
2415
|
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
1986
2416
|
* conflict here.
|
|
2417
|
+
* @name FeatureSetAmino
|
|
2418
|
+
* @package google.protobuf
|
|
2419
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
1987
2420
|
*/
|
|
1988
2421
|
export interface FeatureSetAmino {
|
|
1989
2422
|
field_presence: FeatureSet_FieldPresence;
|
|
@@ -1992,16 +2425,42 @@ export interface FeatureSetAmino {
|
|
|
1992
2425
|
utf8_validation: FeatureSet_Utf8Validation;
|
|
1993
2426
|
message_encoding: FeatureSet_MessageEncoding;
|
|
1994
2427
|
json_format: FeatureSet_JsonFormat;
|
|
2428
|
+
enforce_naming_style: FeatureSet_EnforceNamingStyle;
|
|
1995
2429
|
}
|
|
1996
2430
|
export interface FeatureSetAminoMsg {
|
|
1997
2431
|
type: "/google.protobuf.FeatureSet";
|
|
1998
2432
|
value: FeatureSetAmino;
|
|
1999
2433
|
}
|
|
2434
|
+
/**
|
|
2435
|
+
* @name FeatureSet_VisibilityFeature
|
|
2436
|
+
* @package google.protobuf
|
|
2437
|
+
* @see proto type: google.protobuf.VisibilityFeature
|
|
2438
|
+
*/
|
|
2439
|
+
export interface FeatureSet_VisibilityFeature {
|
|
2440
|
+
}
|
|
2441
|
+
export interface FeatureSet_VisibilityFeatureProtoMsg {
|
|
2442
|
+
typeUrl: "/google.protobuf.VisibilityFeature";
|
|
2443
|
+
value: Uint8Array;
|
|
2444
|
+
}
|
|
2445
|
+
/**
|
|
2446
|
+
* @name FeatureSet_VisibilityFeatureAmino
|
|
2447
|
+
* @package google.protobuf
|
|
2448
|
+
* @see proto type: google.protobuf.FeatureSet_VisibilityFeature
|
|
2449
|
+
*/
|
|
2450
|
+
export interface FeatureSet_VisibilityFeatureAmino {
|
|
2451
|
+
}
|
|
2452
|
+
export interface FeatureSet_VisibilityFeatureAminoMsg {
|
|
2453
|
+
type: "/google.protobuf.VisibilityFeature";
|
|
2454
|
+
value: FeatureSet_VisibilityFeatureAmino;
|
|
2455
|
+
}
|
|
2000
2456
|
/**
|
|
2001
2457
|
* A compiled specification for the defaults of a set of features. These
|
|
2002
2458
|
* messages are generated from FeatureSet extensions and can be used to seed
|
|
2003
2459
|
* feature resolution. The resolution with this object becomes a simple search
|
|
2004
2460
|
* for the closest matching edition, followed by proto merges.
|
|
2461
|
+
* @name FeatureSetDefaults
|
|
2462
|
+
* @package google.protobuf
|
|
2463
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
2005
2464
|
*/
|
|
2006
2465
|
export interface FeatureSetDefaults {
|
|
2007
2466
|
defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
|
|
@@ -2025,6 +2484,9 @@ export interface FeatureSetDefaultsProtoMsg {
|
|
|
2025
2484
|
* messages are generated from FeatureSet extensions and can be used to seed
|
|
2026
2485
|
* feature resolution. The resolution with this object becomes a simple search
|
|
2027
2486
|
* for the closest matching edition, followed by proto merges.
|
|
2487
|
+
* @name FeatureSetDefaultsAmino
|
|
2488
|
+
* @package google.protobuf
|
|
2489
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
2028
2490
|
*/
|
|
2029
2491
|
export interface FeatureSetDefaultsAmino {
|
|
2030
2492
|
defaults: FeatureSetDefaults_FeatureSetEditionDefaultAmino[];
|
|
@@ -2048,12 +2510,19 @@ export interface FeatureSetDefaultsAminoMsg {
|
|
|
2048
2510
|
* defaults. Not all editions may be contained here. For a given edition,
|
|
2049
2511
|
* the defaults at the closest matching edition ordered at or before it should
|
|
2050
2512
|
* be used. This field must be in strict ascending order by edition.
|
|
2513
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefault
|
|
2514
|
+
* @package google.protobuf
|
|
2515
|
+
* @see proto type: google.protobuf.FeatureSetEditionDefault
|
|
2051
2516
|
*/
|
|
2052
2517
|
export interface FeatureSetDefaults_FeatureSetEditionDefault {
|
|
2053
2518
|
edition: Edition;
|
|
2054
|
-
/**
|
|
2519
|
+
/**
|
|
2520
|
+
* Defaults of features that can be overridden in this edition.
|
|
2521
|
+
*/
|
|
2055
2522
|
overridableFeatures?: FeatureSet;
|
|
2056
|
-
/**
|
|
2523
|
+
/**
|
|
2524
|
+
* Defaults of features that can't be overridden in this edition.
|
|
2525
|
+
*/
|
|
2057
2526
|
fixedFeatures?: FeatureSet;
|
|
2058
2527
|
}
|
|
2059
2528
|
export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
|
|
@@ -2065,12 +2534,19 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg {
|
|
|
2065
2534
|
* defaults. Not all editions may be contained here. For a given edition,
|
|
2066
2535
|
* the defaults at the closest matching edition ordered at or before it should
|
|
2067
2536
|
* be used. This field must be in strict ascending order by edition.
|
|
2537
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefaultAmino
|
|
2538
|
+
* @package google.protobuf
|
|
2539
|
+
* @see proto type: google.protobuf.FeatureSetDefaults_FeatureSetEditionDefault
|
|
2068
2540
|
*/
|
|
2069
2541
|
export interface FeatureSetDefaults_FeatureSetEditionDefaultAmino {
|
|
2070
2542
|
edition: Edition;
|
|
2071
|
-
/**
|
|
2543
|
+
/**
|
|
2544
|
+
* Defaults of features that can be overridden in this edition.
|
|
2545
|
+
*/
|
|
2072
2546
|
overridable_features?: FeatureSetAmino;
|
|
2073
|
-
/**
|
|
2547
|
+
/**
|
|
2548
|
+
* Defaults of features that can't be overridden in this edition.
|
|
2549
|
+
*/
|
|
2074
2550
|
fixed_features?: FeatureSetAmino;
|
|
2075
2551
|
}
|
|
2076
2552
|
export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
|
|
@@ -2080,6 +2556,9 @@ export interface FeatureSetDefaults_FeatureSetEditionDefaultAminoMsg {
|
|
|
2080
2556
|
/**
|
|
2081
2557
|
* Encapsulates information about the original source file from which a
|
|
2082
2558
|
* FileDescriptorProto was generated.
|
|
2559
|
+
* @name SourceCodeInfo
|
|
2560
|
+
* @package google.protobuf
|
|
2561
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
2083
2562
|
*/
|
|
2084
2563
|
export interface SourceCodeInfo {
|
|
2085
2564
|
/**
|
|
@@ -2136,6 +2615,9 @@ export interface SourceCodeInfoProtoMsg {
|
|
|
2136
2615
|
/**
|
|
2137
2616
|
* Encapsulates information about the original source file from which a
|
|
2138
2617
|
* FileDescriptorProto was generated.
|
|
2618
|
+
* @name SourceCodeInfoAmino
|
|
2619
|
+
* @package google.protobuf
|
|
2620
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
2139
2621
|
*/
|
|
2140
2622
|
export interface SourceCodeInfoAmino {
|
|
2141
2623
|
/**
|
|
@@ -2189,6 +2671,11 @@ export interface SourceCodeInfoAminoMsg {
|
|
|
2189
2671
|
type: "/google.protobuf.SourceCodeInfo";
|
|
2190
2672
|
value: SourceCodeInfoAmino;
|
|
2191
2673
|
}
|
|
2674
|
+
/**
|
|
2675
|
+
* @name SourceCodeInfo_Location
|
|
2676
|
+
* @package google.protobuf
|
|
2677
|
+
* @see proto type: google.protobuf.Location
|
|
2678
|
+
*/
|
|
2192
2679
|
export interface SourceCodeInfo_Location {
|
|
2193
2680
|
/**
|
|
2194
2681
|
* Identifies which part of the FileDescriptorProto was defined at this
|
|
@@ -2281,6 +2768,11 @@ export interface SourceCodeInfo_LocationProtoMsg {
|
|
|
2281
2768
|
typeUrl: "/google.protobuf.Location";
|
|
2282
2769
|
value: Uint8Array;
|
|
2283
2770
|
}
|
|
2771
|
+
/**
|
|
2772
|
+
* @name SourceCodeInfo_LocationAmino
|
|
2773
|
+
* @package google.protobuf
|
|
2774
|
+
* @see proto type: google.protobuf.SourceCodeInfo_Location
|
|
2775
|
+
*/
|
|
2284
2776
|
export interface SourceCodeInfo_LocationAmino {
|
|
2285
2777
|
/**
|
|
2286
2778
|
* Identifies which part of the FileDescriptorProto was defined at this
|
|
@@ -2377,6 +2869,9 @@ export interface SourceCodeInfo_LocationAminoMsg {
|
|
|
2377
2869
|
* Describes the relationship between generated code and its original source
|
|
2378
2870
|
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
2379
2871
|
* source file, but may contain references to different source .proto files.
|
|
2872
|
+
* @name GeneratedCodeInfo
|
|
2873
|
+
* @package google.protobuf
|
|
2874
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
2380
2875
|
*/
|
|
2381
2876
|
export interface GeneratedCodeInfo {
|
|
2382
2877
|
/**
|
|
@@ -2393,6 +2888,9 @@ export interface GeneratedCodeInfoProtoMsg {
|
|
|
2393
2888
|
* Describes the relationship between generated code and its original source
|
|
2394
2889
|
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
2395
2890
|
* source file, but may contain references to different source .proto files.
|
|
2891
|
+
* @name GeneratedCodeInfoAmino
|
|
2892
|
+
* @package google.protobuf
|
|
2893
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
2396
2894
|
*/
|
|
2397
2895
|
export interface GeneratedCodeInfoAmino {
|
|
2398
2896
|
/**
|
|
@@ -2405,13 +2903,20 @@ export interface GeneratedCodeInfoAminoMsg {
|
|
|
2405
2903
|
type: "/google.protobuf.GeneratedCodeInfo";
|
|
2406
2904
|
value: GeneratedCodeInfoAmino;
|
|
2407
2905
|
}
|
|
2906
|
+
/**
|
|
2907
|
+
* @name GeneratedCodeInfo_Annotation
|
|
2908
|
+
* @package google.protobuf
|
|
2909
|
+
* @see proto type: google.protobuf.Annotation
|
|
2910
|
+
*/
|
|
2408
2911
|
export interface GeneratedCodeInfo_Annotation {
|
|
2409
2912
|
/**
|
|
2410
2913
|
* Identifies the element in the original source .proto file. This field
|
|
2411
2914
|
* is formatted the same as SourceCodeInfo.Location.path.
|
|
2412
2915
|
*/
|
|
2413
2916
|
path: number[];
|
|
2414
|
-
/**
|
|
2917
|
+
/**
|
|
2918
|
+
* Identifies the filesystem path to the original source .proto.
|
|
2919
|
+
*/
|
|
2415
2920
|
sourceFile: string;
|
|
2416
2921
|
/**
|
|
2417
2922
|
* Identifies the starting offset in bytes in the generated code
|
|
@@ -2430,13 +2935,20 @@ export interface GeneratedCodeInfo_AnnotationProtoMsg {
|
|
|
2430
2935
|
typeUrl: "/google.protobuf.Annotation";
|
|
2431
2936
|
value: Uint8Array;
|
|
2432
2937
|
}
|
|
2938
|
+
/**
|
|
2939
|
+
* @name GeneratedCodeInfo_AnnotationAmino
|
|
2940
|
+
* @package google.protobuf
|
|
2941
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo_Annotation
|
|
2942
|
+
*/
|
|
2433
2943
|
export interface GeneratedCodeInfo_AnnotationAmino {
|
|
2434
2944
|
/**
|
|
2435
2945
|
* Identifies the element in the original source .proto file. This field
|
|
2436
2946
|
* is formatted the same as SourceCodeInfo.Location.path.
|
|
2437
2947
|
*/
|
|
2438
2948
|
path: number[];
|
|
2439
|
-
/**
|
|
2949
|
+
/**
|
|
2950
|
+
* Identifies the filesystem path to the original source .proto.
|
|
2951
|
+
*/
|
|
2440
2952
|
source_file: string;
|
|
2441
2953
|
/**
|
|
2442
2954
|
* Identifies the starting offset in bytes in the generated code
|
|
@@ -2455,6 +2967,13 @@ export interface GeneratedCodeInfo_AnnotationAminoMsg {
|
|
|
2455
2967
|
type: "/google.protobuf.Annotation";
|
|
2456
2968
|
value: GeneratedCodeInfo_AnnotationAmino;
|
|
2457
2969
|
}
|
|
2970
|
+
/**
|
|
2971
|
+
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
2972
|
+
* files it parses.
|
|
2973
|
+
* @name FileDescriptorSet
|
|
2974
|
+
* @package google.protobuf
|
|
2975
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
2976
|
+
*/
|
|
2458
2977
|
export declare const FileDescriptorSet: {
|
|
2459
2978
|
typeUrl: string;
|
|
2460
2979
|
is(o: any): o is FileDescriptorSet;
|
|
@@ -2470,6 +2989,12 @@ export declare const FileDescriptorSet: {
|
|
|
2470
2989
|
toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg;
|
|
2471
2990
|
registerTypeUrl(): void;
|
|
2472
2991
|
};
|
|
2992
|
+
/**
|
|
2993
|
+
* Describes a complete .proto file.
|
|
2994
|
+
* @name FileDescriptorProto
|
|
2995
|
+
* @package google.protobuf
|
|
2996
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
2997
|
+
*/
|
|
2473
2998
|
export declare const FileDescriptorProto: {
|
|
2474
2999
|
typeUrl: string;
|
|
2475
3000
|
is(o: any): o is FileDescriptorProto;
|
|
@@ -2485,6 +3010,12 @@ export declare const FileDescriptorProto: {
|
|
|
2485
3010
|
toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg;
|
|
2486
3011
|
registerTypeUrl(): void;
|
|
2487
3012
|
};
|
|
3013
|
+
/**
|
|
3014
|
+
* Describes a message type.
|
|
3015
|
+
* @name DescriptorProto
|
|
3016
|
+
* @package google.protobuf
|
|
3017
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
3018
|
+
*/
|
|
2488
3019
|
export declare const DescriptorProto: {
|
|
2489
3020
|
typeUrl: string;
|
|
2490
3021
|
is(o: any): o is DescriptorProto;
|
|
@@ -2500,6 +3031,11 @@ export declare const DescriptorProto: {
|
|
|
2500
3031
|
toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg;
|
|
2501
3032
|
registerTypeUrl(): void;
|
|
2502
3033
|
};
|
|
3034
|
+
/**
|
|
3035
|
+
* @name DescriptorProto_ExtensionRange
|
|
3036
|
+
* @package google.protobuf
|
|
3037
|
+
* @see proto type: google.protobuf.ExtensionRange
|
|
3038
|
+
*/
|
|
2503
3039
|
export declare const DescriptorProto_ExtensionRange: {
|
|
2504
3040
|
typeUrl: string;
|
|
2505
3041
|
is(o: any): o is DescriptorProto_ExtensionRange;
|
|
@@ -2515,6 +3051,14 @@ export declare const DescriptorProto_ExtensionRange: {
|
|
|
2515
3051
|
toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg;
|
|
2516
3052
|
registerTypeUrl(): void;
|
|
2517
3053
|
};
|
|
3054
|
+
/**
|
|
3055
|
+
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
3056
|
+
* fields or extension ranges in the same message. Reserved ranges may
|
|
3057
|
+
* not overlap.
|
|
3058
|
+
* @name DescriptorProto_ReservedRange
|
|
3059
|
+
* @package google.protobuf
|
|
3060
|
+
* @see proto type: google.protobuf.ReservedRange
|
|
3061
|
+
*/
|
|
2518
3062
|
export declare const DescriptorProto_ReservedRange: {
|
|
2519
3063
|
typeUrl: string;
|
|
2520
3064
|
is(o: any): o is DescriptorProto_ReservedRange;
|
|
@@ -2530,6 +3074,11 @@ export declare const DescriptorProto_ReservedRange: {
|
|
|
2530
3074
|
toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg;
|
|
2531
3075
|
registerTypeUrl(): void;
|
|
2532
3076
|
};
|
|
3077
|
+
/**
|
|
3078
|
+
* @name ExtensionRangeOptions
|
|
3079
|
+
* @package google.protobuf
|
|
3080
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
3081
|
+
*/
|
|
2533
3082
|
export declare const ExtensionRangeOptions: {
|
|
2534
3083
|
typeUrl: string;
|
|
2535
3084
|
is(o: any): o is ExtensionRangeOptions;
|
|
@@ -2545,6 +3094,11 @@ export declare const ExtensionRangeOptions: {
|
|
|
2545
3094
|
toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg;
|
|
2546
3095
|
registerTypeUrl(): void;
|
|
2547
3096
|
};
|
|
3097
|
+
/**
|
|
3098
|
+
* @name ExtensionRangeOptions_Declaration
|
|
3099
|
+
* @package google.protobuf
|
|
3100
|
+
* @see proto type: google.protobuf.Declaration
|
|
3101
|
+
*/
|
|
2548
3102
|
export declare const ExtensionRangeOptions_Declaration: {
|
|
2549
3103
|
typeUrl: string;
|
|
2550
3104
|
is(o: any): o is ExtensionRangeOptions_Declaration;
|
|
@@ -2560,6 +3114,12 @@ export declare const ExtensionRangeOptions_Declaration: {
|
|
|
2560
3114
|
toProtoMsg(message: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_DeclarationProtoMsg;
|
|
2561
3115
|
registerTypeUrl(): void;
|
|
2562
3116
|
};
|
|
3117
|
+
/**
|
|
3118
|
+
* Describes a field within a message.
|
|
3119
|
+
* @name FieldDescriptorProto
|
|
3120
|
+
* @package google.protobuf
|
|
3121
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
3122
|
+
*/
|
|
2563
3123
|
export declare const FieldDescriptorProto: {
|
|
2564
3124
|
typeUrl: string;
|
|
2565
3125
|
is(o: any): o is FieldDescriptorProto;
|
|
@@ -2575,6 +3135,12 @@ export declare const FieldDescriptorProto: {
|
|
|
2575
3135
|
toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg;
|
|
2576
3136
|
registerTypeUrl(): void;
|
|
2577
3137
|
};
|
|
3138
|
+
/**
|
|
3139
|
+
* Describes a oneof.
|
|
3140
|
+
* @name OneofDescriptorProto
|
|
3141
|
+
* @package google.protobuf
|
|
3142
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
3143
|
+
*/
|
|
2578
3144
|
export declare const OneofDescriptorProto: {
|
|
2579
3145
|
typeUrl: string;
|
|
2580
3146
|
is(o: any): o is OneofDescriptorProto;
|
|
@@ -2590,6 +3156,12 @@ export declare const OneofDescriptorProto: {
|
|
|
2590
3156
|
toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg;
|
|
2591
3157
|
registerTypeUrl(): void;
|
|
2592
3158
|
};
|
|
3159
|
+
/**
|
|
3160
|
+
* Describes an enum type.
|
|
3161
|
+
* @name EnumDescriptorProto
|
|
3162
|
+
* @package google.protobuf
|
|
3163
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
3164
|
+
*/
|
|
2593
3165
|
export declare const EnumDescriptorProto: {
|
|
2594
3166
|
typeUrl: string;
|
|
2595
3167
|
is(o: any): o is EnumDescriptorProto;
|
|
@@ -2605,6 +3177,17 @@ export declare const EnumDescriptorProto: {
|
|
|
2605
3177
|
toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg;
|
|
2606
3178
|
registerTypeUrl(): void;
|
|
2607
3179
|
};
|
|
3180
|
+
/**
|
|
3181
|
+
* Range of reserved numeric values. Reserved values may not be used by
|
|
3182
|
+
* entries in the same enum. Reserved ranges may not overlap.
|
|
3183
|
+
*
|
|
3184
|
+
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
3185
|
+
* is inclusive such that it can appropriately represent the entire int32
|
|
3186
|
+
* domain.
|
|
3187
|
+
* @name EnumDescriptorProto_EnumReservedRange
|
|
3188
|
+
* @package google.protobuf
|
|
3189
|
+
* @see proto type: google.protobuf.EnumReservedRange
|
|
3190
|
+
*/
|
|
2608
3191
|
export declare const EnumDescriptorProto_EnumReservedRange: {
|
|
2609
3192
|
typeUrl: string;
|
|
2610
3193
|
is(o: any): o is EnumDescriptorProto_EnumReservedRange;
|
|
@@ -2620,6 +3203,12 @@ export declare const EnumDescriptorProto_EnumReservedRange: {
|
|
|
2620
3203
|
toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg;
|
|
2621
3204
|
registerTypeUrl(): void;
|
|
2622
3205
|
};
|
|
3206
|
+
/**
|
|
3207
|
+
* Describes a value within an enum.
|
|
3208
|
+
* @name EnumValueDescriptorProto
|
|
3209
|
+
* @package google.protobuf
|
|
3210
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
3211
|
+
*/
|
|
2623
3212
|
export declare const EnumValueDescriptorProto: {
|
|
2624
3213
|
typeUrl: string;
|
|
2625
3214
|
is(o: any): o is EnumValueDescriptorProto;
|
|
@@ -2635,6 +3224,12 @@ export declare const EnumValueDescriptorProto: {
|
|
|
2635
3224
|
toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg;
|
|
2636
3225
|
registerTypeUrl(): void;
|
|
2637
3226
|
};
|
|
3227
|
+
/**
|
|
3228
|
+
* Describes a service.
|
|
3229
|
+
* @name ServiceDescriptorProto
|
|
3230
|
+
* @package google.protobuf
|
|
3231
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
3232
|
+
*/
|
|
2638
3233
|
export declare const ServiceDescriptorProto: {
|
|
2639
3234
|
typeUrl: string;
|
|
2640
3235
|
is(o: any): o is ServiceDescriptorProto;
|
|
@@ -2650,6 +3245,12 @@ export declare const ServiceDescriptorProto: {
|
|
|
2650
3245
|
toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
|
|
2651
3246
|
registerTypeUrl(): void;
|
|
2652
3247
|
};
|
|
3248
|
+
/**
|
|
3249
|
+
* Describes a method of a service.
|
|
3250
|
+
* @name MethodDescriptorProto
|
|
3251
|
+
* @package google.protobuf
|
|
3252
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
3253
|
+
*/
|
|
2653
3254
|
export declare const MethodDescriptorProto: {
|
|
2654
3255
|
typeUrl: string;
|
|
2655
3256
|
is(o: any): o is MethodDescriptorProto;
|
|
@@ -2665,6 +3266,11 @@ export declare const MethodDescriptorProto: {
|
|
|
2665
3266
|
toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg;
|
|
2666
3267
|
registerTypeUrl(): void;
|
|
2667
3268
|
};
|
|
3269
|
+
/**
|
|
3270
|
+
* @name FileOptions
|
|
3271
|
+
* @package google.protobuf
|
|
3272
|
+
* @see proto type: google.protobuf.FileOptions
|
|
3273
|
+
*/
|
|
2668
3274
|
export declare const FileOptions: {
|
|
2669
3275
|
typeUrl: string;
|
|
2670
3276
|
is(o: any): o is FileOptions;
|
|
@@ -2680,6 +3286,11 @@ export declare const FileOptions: {
|
|
|
2680
3286
|
toProtoMsg(message: FileOptions): FileOptionsProtoMsg;
|
|
2681
3287
|
registerTypeUrl(): void;
|
|
2682
3288
|
};
|
|
3289
|
+
/**
|
|
3290
|
+
* @name MessageOptions
|
|
3291
|
+
* @package google.protobuf
|
|
3292
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
3293
|
+
*/
|
|
2683
3294
|
export declare const MessageOptions: {
|
|
2684
3295
|
typeUrl: string;
|
|
2685
3296
|
is(o: any): o is MessageOptions;
|
|
@@ -2695,6 +3306,11 @@ export declare const MessageOptions: {
|
|
|
2695
3306
|
toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg;
|
|
2696
3307
|
registerTypeUrl(): void;
|
|
2697
3308
|
};
|
|
3309
|
+
/**
|
|
3310
|
+
* @name FieldOptions
|
|
3311
|
+
* @package google.protobuf
|
|
3312
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
3313
|
+
*/
|
|
2698
3314
|
export declare const FieldOptions: {
|
|
2699
3315
|
typeUrl: string;
|
|
2700
3316
|
is(o: any): o is FieldOptions;
|
|
@@ -2710,6 +3326,11 @@ export declare const FieldOptions: {
|
|
|
2710
3326
|
toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg;
|
|
2711
3327
|
registerTypeUrl(): void;
|
|
2712
3328
|
};
|
|
3329
|
+
/**
|
|
3330
|
+
* @name FieldOptions_EditionDefault
|
|
3331
|
+
* @package google.protobuf
|
|
3332
|
+
* @see proto type: google.protobuf.EditionDefault
|
|
3333
|
+
*/
|
|
2713
3334
|
export declare const FieldOptions_EditionDefault: {
|
|
2714
3335
|
typeUrl: string;
|
|
2715
3336
|
is(o: any): o is FieldOptions_EditionDefault;
|
|
@@ -2725,6 +3346,12 @@ export declare const FieldOptions_EditionDefault: {
|
|
|
2725
3346
|
toProtoMsg(message: FieldOptions_EditionDefault): FieldOptions_EditionDefaultProtoMsg;
|
|
2726
3347
|
registerTypeUrl(): void;
|
|
2727
3348
|
};
|
|
3349
|
+
/**
|
|
3350
|
+
* Information about the support window of a feature.
|
|
3351
|
+
* @name FieldOptions_FeatureSupport
|
|
3352
|
+
* @package google.protobuf
|
|
3353
|
+
* @see proto type: google.protobuf.FeatureSupport
|
|
3354
|
+
*/
|
|
2728
3355
|
export declare const FieldOptions_FeatureSupport: {
|
|
2729
3356
|
typeUrl: string;
|
|
2730
3357
|
is(o: any): o is FieldOptions_FeatureSupport;
|
|
@@ -2740,6 +3367,11 @@ export declare const FieldOptions_FeatureSupport: {
|
|
|
2740
3367
|
toProtoMsg(message: FieldOptions_FeatureSupport): FieldOptions_FeatureSupportProtoMsg;
|
|
2741
3368
|
registerTypeUrl(): void;
|
|
2742
3369
|
};
|
|
3370
|
+
/**
|
|
3371
|
+
* @name OneofOptions
|
|
3372
|
+
* @package google.protobuf
|
|
3373
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
3374
|
+
*/
|
|
2743
3375
|
export declare const OneofOptions: {
|
|
2744
3376
|
typeUrl: string;
|
|
2745
3377
|
is(o: any): o is OneofOptions;
|
|
@@ -2755,6 +3387,11 @@ export declare const OneofOptions: {
|
|
|
2755
3387
|
toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg;
|
|
2756
3388
|
registerTypeUrl(): void;
|
|
2757
3389
|
};
|
|
3390
|
+
/**
|
|
3391
|
+
* @name EnumOptions
|
|
3392
|
+
* @package google.protobuf
|
|
3393
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
3394
|
+
*/
|
|
2758
3395
|
export declare const EnumOptions: {
|
|
2759
3396
|
typeUrl: string;
|
|
2760
3397
|
is(o: any): o is EnumOptions;
|
|
@@ -2770,6 +3407,11 @@ export declare const EnumOptions: {
|
|
|
2770
3407
|
toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg;
|
|
2771
3408
|
registerTypeUrl(): void;
|
|
2772
3409
|
};
|
|
3410
|
+
/**
|
|
3411
|
+
* @name EnumValueOptions
|
|
3412
|
+
* @package google.protobuf
|
|
3413
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
3414
|
+
*/
|
|
2773
3415
|
export declare const EnumValueOptions: {
|
|
2774
3416
|
typeUrl: string;
|
|
2775
3417
|
is(o: any): o is EnumValueOptions;
|
|
@@ -2785,6 +3427,11 @@ export declare const EnumValueOptions: {
|
|
|
2785
3427
|
toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg;
|
|
2786
3428
|
registerTypeUrl(): void;
|
|
2787
3429
|
};
|
|
3430
|
+
/**
|
|
3431
|
+
* @name ServiceOptions
|
|
3432
|
+
* @package google.protobuf
|
|
3433
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
3434
|
+
*/
|
|
2788
3435
|
export declare const ServiceOptions: {
|
|
2789
3436
|
typeUrl: string;
|
|
2790
3437
|
is(o: any): o is ServiceOptions;
|
|
@@ -2800,6 +3447,11 @@ export declare const ServiceOptions: {
|
|
|
2800
3447
|
toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
|
|
2801
3448
|
registerTypeUrl(): void;
|
|
2802
3449
|
};
|
|
3450
|
+
/**
|
|
3451
|
+
* @name MethodOptions
|
|
3452
|
+
* @package google.protobuf
|
|
3453
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
3454
|
+
*/
|
|
2803
3455
|
export declare const MethodOptions: {
|
|
2804
3456
|
typeUrl: string;
|
|
2805
3457
|
is(o: any): o is MethodOptions;
|
|
@@ -2815,6 +3467,17 @@ export declare const MethodOptions: {
|
|
|
2815
3467
|
toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg;
|
|
2816
3468
|
registerTypeUrl(): void;
|
|
2817
3469
|
};
|
|
3470
|
+
/**
|
|
3471
|
+
* A message representing a option the parser does not recognize. This only
|
|
3472
|
+
* appears in options protos created by the compiler::Parser class.
|
|
3473
|
+
* DescriptorPool resolves these when building Descriptor objects. Therefore,
|
|
3474
|
+
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
3475
|
+
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
3476
|
+
* in them.
|
|
3477
|
+
* @name UninterpretedOption
|
|
3478
|
+
* @package google.protobuf
|
|
3479
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
3480
|
+
*/
|
|
2818
3481
|
export declare const UninterpretedOption: {
|
|
2819
3482
|
typeUrl: string;
|
|
2820
3483
|
is(o: any): o is UninterpretedOption;
|
|
@@ -2830,6 +3493,16 @@ export declare const UninterpretedOption: {
|
|
|
2830
3493
|
toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg;
|
|
2831
3494
|
registerTypeUrl(): void;
|
|
2832
3495
|
};
|
|
3496
|
+
/**
|
|
3497
|
+
* The name of the uninterpreted option. Each string represents a segment in
|
|
3498
|
+
* a dot-separated name. is_extension is true iff a segment represents an
|
|
3499
|
+
* extension (denoted with parentheses in options specs in .proto files).
|
|
3500
|
+
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
3501
|
+
* "foo.(bar.baz).moo".
|
|
3502
|
+
* @name UninterpretedOption_NamePart
|
|
3503
|
+
* @package google.protobuf
|
|
3504
|
+
* @see proto type: google.protobuf.NamePart
|
|
3505
|
+
*/
|
|
2833
3506
|
export declare const UninterpretedOption_NamePart: {
|
|
2834
3507
|
typeUrl: string;
|
|
2835
3508
|
is(o: any): o is UninterpretedOption_NamePart;
|
|
@@ -2845,6 +3518,17 @@ export declare const UninterpretedOption_NamePart: {
|
|
|
2845
3518
|
toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg;
|
|
2846
3519
|
registerTypeUrl(): void;
|
|
2847
3520
|
};
|
|
3521
|
+
/**
|
|
3522
|
+
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
3523
|
+
* not well scoped. This means that each of the feature enums below can clash
|
|
3524
|
+
* with each other. The short names we've chosen maximize call-site
|
|
3525
|
+
* readability, but leave us very open to this scenario. A future feature will
|
|
3526
|
+
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
3527
|
+
* conflict here.
|
|
3528
|
+
* @name FeatureSet
|
|
3529
|
+
* @package google.protobuf
|
|
3530
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
3531
|
+
*/
|
|
2848
3532
|
export declare const FeatureSet: {
|
|
2849
3533
|
typeUrl: string;
|
|
2850
3534
|
is(o: any): o is FeatureSet;
|
|
@@ -2860,6 +3544,35 @@ export declare const FeatureSet: {
|
|
|
2860
3544
|
toProtoMsg(message: FeatureSet): FeatureSetProtoMsg;
|
|
2861
3545
|
registerTypeUrl(): void;
|
|
2862
3546
|
};
|
|
3547
|
+
/**
|
|
3548
|
+
* @name FeatureSet_VisibilityFeature
|
|
3549
|
+
* @package google.protobuf
|
|
3550
|
+
* @see proto type: google.protobuf.VisibilityFeature
|
|
3551
|
+
*/
|
|
3552
|
+
export declare const FeatureSet_VisibilityFeature: {
|
|
3553
|
+
typeUrl: string;
|
|
3554
|
+
is(o: any): o is FeatureSet_VisibilityFeature;
|
|
3555
|
+
isAmino(o: any): o is FeatureSet_VisibilityFeatureAmino;
|
|
3556
|
+
encode(_: FeatureSet_VisibilityFeature, writer?: BinaryWriter): BinaryWriter;
|
|
3557
|
+
decode(input: BinaryReader | Uint8Array, length?: number): FeatureSet_VisibilityFeature;
|
|
3558
|
+
fromPartial(_: DeepPartial<FeatureSet_VisibilityFeature>): FeatureSet_VisibilityFeature;
|
|
3559
|
+
fromAmino(_: FeatureSet_VisibilityFeatureAmino): FeatureSet_VisibilityFeature;
|
|
3560
|
+
toAmino(_: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeatureAmino;
|
|
3561
|
+
fromAminoMsg(object: FeatureSet_VisibilityFeatureAminoMsg): FeatureSet_VisibilityFeature;
|
|
3562
|
+
fromProtoMsg(message: FeatureSet_VisibilityFeatureProtoMsg): FeatureSet_VisibilityFeature;
|
|
3563
|
+
toProto(message: FeatureSet_VisibilityFeature): Uint8Array;
|
|
3564
|
+
toProtoMsg(message: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeatureProtoMsg;
|
|
3565
|
+
registerTypeUrl(): void;
|
|
3566
|
+
};
|
|
3567
|
+
/**
|
|
3568
|
+
* A compiled specification for the defaults of a set of features. These
|
|
3569
|
+
* messages are generated from FeatureSet extensions and can be used to seed
|
|
3570
|
+
* feature resolution. The resolution with this object becomes a simple search
|
|
3571
|
+
* for the closest matching edition, followed by proto merges.
|
|
3572
|
+
* @name FeatureSetDefaults
|
|
3573
|
+
* @package google.protobuf
|
|
3574
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
3575
|
+
*/
|
|
2863
3576
|
export declare const FeatureSetDefaults: {
|
|
2864
3577
|
typeUrl: string;
|
|
2865
3578
|
is(o: any): o is FeatureSetDefaults;
|
|
@@ -2875,6 +3588,15 @@ export declare const FeatureSetDefaults: {
|
|
|
2875
3588
|
toProtoMsg(message: FeatureSetDefaults): FeatureSetDefaultsProtoMsg;
|
|
2876
3589
|
registerTypeUrl(): void;
|
|
2877
3590
|
};
|
|
3591
|
+
/**
|
|
3592
|
+
* A map from every known edition with a unique set of defaults to its
|
|
3593
|
+
* defaults. Not all editions may be contained here. For a given edition,
|
|
3594
|
+
* the defaults at the closest matching edition ordered at or before it should
|
|
3595
|
+
* be used. This field must be in strict ascending order by edition.
|
|
3596
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefault
|
|
3597
|
+
* @package google.protobuf
|
|
3598
|
+
* @see proto type: google.protobuf.FeatureSetEditionDefault
|
|
3599
|
+
*/
|
|
2878
3600
|
export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
|
|
2879
3601
|
typeUrl: string;
|
|
2880
3602
|
is(o: any): o is FeatureSetDefaults_FeatureSetEditionDefault;
|
|
@@ -2890,6 +3612,13 @@ export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
|
|
|
2890
3612
|
toProtoMsg(message: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefaultProtoMsg;
|
|
2891
3613
|
registerTypeUrl(): void;
|
|
2892
3614
|
};
|
|
3615
|
+
/**
|
|
3616
|
+
* Encapsulates information about the original source file from which a
|
|
3617
|
+
* FileDescriptorProto was generated.
|
|
3618
|
+
* @name SourceCodeInfo
|
|
3619
|
+
* @package google.protobuf
|
|
3620
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
3621
|
+
*/
|
|
2893
3622
|
export declare const SourceCodeInfo: {
|
|
2894
3623
|
typeUrl: string;
|
|
2895
3624
|
is(o: any): o is SourceCodeInfo;
|
|
@@ -2905,6 +3634,11 @@ export declare const SourceCodeInfo: {
|
|
|
2905
3634
|
toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
|
|
2906
3635
|
registerTypeUrl(): void;
|
|
2907
3636
|
};
|
|
3637
|
+
/**
|
|
3638
|
+
* @name SourceCodeInfo_Location
|
|
3639
|
+
* @package google.protobuf
|
|
3640
|
+
* @see proto type: google.protobuf.Location
|
|
3641
|
+
*/
|
|
2908
3642
|
export declare const SourceCodeInfo_Location: {
|
|
2909
3643
|
typeUrl: string;
|
|
2910
3644
|
is(o: any): o is SourceCodeInfo_Location;
|
|
@@ -2920,6 +3654,14 @@ export declare const SourceCodeInfo_Location: {
|
|
|
2920
3654
|
toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg;
|
|
2921
3655
|
registerTypeUrl(): void;
|
|
2922
3656
|
};
|
|
3657
|
+
/**
|
|
3658
|
+
* Describes the relationship between generated code and its original source
|
|
3659
|
+
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
3660
|
+
* source file, but may contain references to different source .proto files.
|
|
3661
|
+
* @name GeneratedCodeInfo
|
|
3662
|
+
* @package google.protobuf
|
|
3663
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
3664
|
+
*/
|
|
2923
3665
|
export declare const GeneratedCodeInfo: {
|
|
2924
3666
|
typeUrl: string;
|
|
2925
3667
|
is(o: any): o is GeneratedCodeInfo;
|
|
@@ -2935,6 +3677,11 @@ export declare const GeneratedCodeInfo: {
|
|
|
2935
3677
|
toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg;
|
|
2936
3678
|
registerTypeUrl(): void;
|
|
2937
3679
|
};
|
|
3680
|
+
/**
|
|
3681
|
+
* @name GeneratedCodeInfo_Annotation
|
|
3682
|
+
* @package google.protobuf
|
|
3683
|
+
* @see proto type: google.protobuf.Annotation
|
|
3684
|
+
*/
|
|
2938
3685
|
export declare const GeneratedCodeInfo_Annotation: {
|
|
2939
3686
|
typeUrl: string;
|
|
2940
3687
|
is(o: any): o is GeneratedCodeInfo_Annotation;
|