@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -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 +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- 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 +27 -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 +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- 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 +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -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 +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -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 +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -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 +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- 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 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -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 +6 -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 +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- 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 +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- 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 +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- 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 +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -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 +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- 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 +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -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/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -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/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- 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/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 +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -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 +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -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/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- 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 +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- 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/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -1116,6 +1116,13 @@ function createBaseFileDescriptorSet() {
|
|
|
1116
1116
|
file: []
|
|
1117
1117
|
};
|
|
1118
1118
|
}
|
|
1119
|
+
/**
|
|
1120
|
+
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
1121
|
+
* files it parses.
|
|
1122
|
+
* @name FileDescriptorSet
|
|
1123
|
+
* @package google.protobuf
|
|
1124
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
1125
|
+
*/
|
|
1119
1126
|
exports.FileDescriptorSet = {
|
|
1120
1127
|
typeUrl: "/google.protobuf.FileDescriptorSet",
|
|
1121
1128
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1195,6 +1202,12 @@ function createBaseFileDescriptorProto() {
|
|
|
1195
1202
|
edition: 1
|
|
1196
1203
|
};
|
|
1197
1204
|
}
|
|
1205
|
+
/**
|
|
1206
|
+
* Describes a complete .proto file.
|
|
1207
|
+
* @name FileDescriptorProto
|
|
1208
|
+
* @package google.protobuf
|
|
1209
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
1210
|
+
*/
|
|
1198
1211
|
exports.FileDescriptorProto = {
|
|
1199
1212
|
typeUrl: "/google.protobuf.FileDescriptorProto",
|
|
1200
1213
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1455,6 +1468,12 @@ function createBaseDescriptorProto() {
|
|
|
1455
1468
|
visibility: 1
|
|
1456
1469
|
};
|
|
1457
1470
|
}
|
|
1471
|
+
/**
|
|
1472
|
+
* Describes a message type.
|
|
1473
|
+
* @name DescriptorProto
|
|
1474
|
+
* @package google.protobuf
|
|
1475
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
1476
|
+
*/
|
|
1458
1477
|
exports.DescriptorProto = {
|
|
1459
1478
|
typeUrl: "/google.protobuf.DescriptorProto",
|
|
1460
1479
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1654,6 +1673,11 @@ function createBaseDescriptorProto_ExtensionRange() {
|
|
|
1654
1673
|
options: undefined
|
|
1655
1674
|
};
|
|
1656
1675
|
}
|
|
1676
|
+
/**
|
|
1677
|
+
* @name DescriptorProto_ExtensionRange
|
|
1678
|
+
* @package google.protobuf
|
|
1679
|
+
* @see proto type: google.protobuf.ExtensionRange
|
|
1680
|
+
*/
|
|
1657
1681
|
exports.DescriptorProto_ExtensionRange = {
|
|
1658
1682
|
typeUrl: "/google.protobuf.ExtensionRange",
|
|
1659
1683
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1740,6 +1764,14 @@ function createBaseDescriptorProto_ReservedRange() {
|
|
|
1740
1764
|
end: 0
|
|
1741
1765
|
};
|
|
1742
1766
|
}
|
|
1767
|
+
/**
|
|
1768
|
+
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
1769
|
+
* fields or extension ranges in the same message. Reserved ranges may
|
|
1770
|
+
* not overlap.
|
|
1771
|
+
* @name DescriptorProto_ReservedRange
|
|
1772
|
+
* @package google.protobuf
|
|
1773
|
+
* @see proto type: google.protobuf.ReservedRange
|
|
1774
|
+
*/
|
|
1743
1775
|
exports.DescriptorProto_ReservedRange = {
|
|
1744
1776
|
typeUrl: "/google.protobuf.ReservedRange",
|
|
1745
1777
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1817,6 +1849,11 @@ function createBaseExtensionRangeOptions() {
|
|
|
1817
1849
|
verification: 1
|
|
1818
1850
|
};
|
|
1819
1851
|
}
|
|
1852
|
+
/**
|
|
1853
|
+
* @name ExtensionRangeOptions
|
|
1854
|
+
* @package google.protobuf
|
|
1855
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
1856
|
+
*/
|
|
1820
1857
|
exports.ExtensionRangeOptions = {
|
|
1821
1858
|
typeUrl: "/google.protobuf.ExtensionRangeOptions",
|
|
1822
1859
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1923,6 +1960,11 @@ function createBaseExtensionRangeOptions_Declaration() {
|
|
|
1923
1960
|
repeated: false
|
|
1924
1961
|
};
|
|
1925
1962
|
}
|
|
1963
|
+
/**
|
|
1964
|
+
* @name ExtensionRangeOptions_Declaration
|
|
1965
|
+
* @package google.protobuf
|
|
1966
|
+
* @see proto type: google.protobuf.Declaration
|
|
1967
|
+
*/
|
|
1926
1968
|
exports.ExtensionRangeOptions_Declaration = {
|
|
1927
1969
|
typeUrl: "/google.protobuf.Declaration",
|
|
1928
1970
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2040,6 +2082,12 @@ function createBaseFieldDescriptorProto() {
|
|
|
2040
2082
|
proto3Optional: false
|
|
2041
2083
|
};
|
|
2042
2084
|
}
|
|
2085
|
+
/**
|
|
2086
|
+
* Describes a field within a message.
|
|
2087
|
+
* @name FieldDescriptorProto
|
|
2088
|
+
* @package google.protobuf
|
|
2089
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
2090
|
+
*/
|
|
2043
2091
|
exports.FieldDescriptorProto = {
|
|
2044
2092
|
typeUrl: "/google.protobuf.FieldDescriptorProto",
|
|
2045
2093
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2214,6 +2262,12 @@ function createBaseOneofDescriptorProto() {
|
|
|
2214
2262
|
options: undefined
|
|
2215
2263
|
};
|
|
2216
2264
|
}
|
|
2265
|
+
/**
|
|
2266
|
+
* Describes a oneof.
|
|
2267
|
+
* @name OneofDescriptorProto
|
|
2268
|
+
* @package google.protobuf
|
|
2269
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
2270
|
+
*/
|
|
2217
2271
|
exports.OneofDescriptorProto = {
|
|
2218
2272
|
typeUrl: "/google.protobuf.OneofDescriptorProto",
|
|
2219
2273
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2293,6 +2347,12 @@ function createBaseEnumDescriptorProto() {
|
|
|
2293
2347
|
visibility: 1
|
|
2294
2348
|
};
|
|
2295
2349
|
}
|
|
2350
|
+
/**
|
|
2351
|
+
* Describes an enum type.
|
|
2352
|
+
* @name EnumDescriptorProto
|
|
2353
|
+
* @package google.protobuf
|
|
2354
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
2355
|
+
*/
|
|
2296
2356
|
exports.EnumDescriptorProto = {
|
|
2297
2357
|
typeUrl: "/google.protobuf.EnumDescriptorProto",
|
|
2298
2358
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2421,6 +2481,17 @@ function createBaseEnumDescriptorProto_EnumReservedRange() {
|
|
|
2421
2481
|
end: 0
|
|
2422
2482
|
};
|
|
2423
2483
|
}
|
|
2484
|
+
/**
|
|
2485
|
+
* Range of reserved numeric values. Reserved values may not be used by
|
|
2486
|
+
* entries in the same enum. Reserved ranges may not overlap.
|
|
2487
|
+
*
|
|
2488
|
+
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
2489
|
+
* is inclusive such that it can appropriately represent the entire int32
|
|
2490
|
+
* domain.
|
|
2491
|
+
* @name EnumDescriptorProto_EnumReservedRange
|
|
2492
|
+
* @package google.protobuf
|
|
2493
|
+
* @see proto type: google.protobuf.EnumReservedRange
|
|
2494
|
+
*/
|
|
2424
2495
|
exports.EnumDescriptorProto_EnumReservedRange = {
|
|
2425
2496
|
typeUrl: "/google.protobuf.EnumReservedRange",
|
|
2426
2497
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2497,6 +2568,12 @@ function createBaseEnumValueDescriptorProto() {
|
|
|
2497
2568
|
options: undefined
|
|
2498
2569
|
};
|
|
2499
2570
|
}
|
|
2571
|
+
/**
|
|
2572
|
+
* Describes a value within an enum.
|
|
2573
|
+
* @name EnumValueDescriptorProto
|
|
2574
|
+
* @package google.protobuf
|
|
2575
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
2576
|
+
*/
|
|
2500
2577
|
exports.EnumValueDescriptorProto = {
|
|
2501
2578
|
typeUrl: "/google.protobuf.EnumValueDescriptorProto",
|
|
2502
2579
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2584,6 +2661,12 @@ function createBaseServiceDescriptorProto() {
|
|
|
2584
2661
|
options: undefined
|
|
2585
2662
|
};
|
|
2586
2663
|
}
|
|
2664
|
+
/**
|
|
2665
|
+
* Describes a service.
|
|
2666
|
+
* @name ServiceDescriptorProto
|
|
2667
|
+
* @package google.protobuf
|
|
2668
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
2669
|
+
*/
|
|
2587
2670
|
exports.ServiceDescriptorProto = {
|
|
2588
2671
|
typeUrl: "/google.protobuf.ServiceDescriptorProto",
|
|
2589
2672
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2677,6 +2760,12 @@ function createBaseMethodDescriptorProto() {
|
|
|
2677
2760
|
serverStreaming: false
|
|
2678
2761
|
};
|
|
2679
2762
|
}
|
|
2763
|
+
/**
|
|
2764
|
+
* Describes a method of a service.
|
|
2765
|
+
* @name MethodDescriptorProto
|
|
2766
|
+
* @package google.protobuf
|
|
2767
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
2768
|
+
*/
|
|
2680
2769
|
exports.MethodDescriptorProto = {
|
|
2681
2770
|
typeUrl: "/google.protobuf.MethodDescriptorProto",
|
|
2682
2771
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -2815,6 +2904,11 @@ function createBaseFileOptions() {
|
|
|
2815
2904
|
uninterpretedOption: []
|
|
2816
2905
|
};
|
|
2817
2906
|
}
|
|
2907
|
+
/**
|
|
2908
|
+
* @name FileOptions
|
|
2909
|
+
* @package google.protobuf
|
|
2910
|
+
* @see proto type: google.protobuf.FileOptions
|
|
2911
|
+
*/
|
|
2818
2912
|
exports.FileOptions = {
|
|
2819
2913
|
typeUrl: "/google.protobuf.FileOptions",
|
|
2820
2914
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3107,6 +3201,11 @@ function createBaseMessageOptions() {
|
|
|
3107
3201
|
uninterpretedOption: []
|
|
3108
3202
|
};
|
|
3109
3203
|
}
|
|
3204
|
+
/**
|
|
3205
|
+
* @name MessageOptions
|
|
3206
|
+
* @package google.protobuf
|
|
3207
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
3208
|
+
*/
|
|
3110
3209
|
exports.MessageOptions = {
|
|
3111
3210
|
typeUrl: "/google.protobuf.MessageOptions",
|
|
3112
3211
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3252,6 +3351,11 @@ function createBaseFieldOptions() {
|
|
|
3252
3351
|
uninterpretedOption: []
|
|
3253
3352
|
};
|
|
3254
3353
|
}
|
|
3354
|
+
/**
|
|
3355
|
+
* @name FieldOptions
|
|
3356
|
+
* @package google.protobuf
|
|
3357
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
3358
|
+
*/
|
|
3255
3359
|
exports.FieldOptions = {
|
|
3256
3360
|
typeUrl: "/google.protobuf.FieldOptions",
|
|
3257
3361
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3478,6 +3582,11 @@ function createBaseFieldOptions_EditionDefault() {
|
|
|
3478
3582
|
value: ""
|
|
3479
3583
|
};
|
|
3480
3584
|
}
|
|
3585
|
+
/**
|
|
3586
|
+
* @name FieldOptions_EditionDefault
|
|
3587
|
+
* @package google.protobuf
|
|
3588
|
+
* @see proto type: google.protobuf.EditionDefault
|
|
3589
|
+
*/
|
|
3481
3590
|
exports.FieldOptions_EditionDefault = {
|
|
3482
3591
|
typeUrl: "/google.protobuf.EditionDefault",
|
|
3483
3592
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3555,6 +3664,12 @@ function createBaseFieldOptions_FeatureSupport() {
|
|
|
3555
3664
|
editionRemoved: 1
|
|
3556
3665
|
};
|
|
3557
3666
|
}
|
|
3667
|
+
/**
|
|
3668
|
+
* Information about the support window of a feature.
|
|
3669
|
+
* @name FieldOptions_FeatureSupport
|
|
3670
|
+
* @package google.protobuf
|
|
3671
|
+
* @see proto type: google.protobuf.FeatureSupport
|
|
3672
|
+
*/
|
|
3558
3673
|
exports.FieldOptions_FeatureSupport = {
|
|
3559
3674
|
typeUrl: "/google.protobuf.FeatureSupport",
|
|
3560
3675
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3652,6 +3767,11 @@ function createBaseOneofOptions() {
|
|
|
3652
3767
|
uninterpretedOption: []
|
|
3653
3768
|
};
|
|
3654
3769
|
}
|
|
3770
|
+
/**
|
|
3771
|
+
* @name OneofOptions
|
|
3772
|
+
* @package google.protobuf
|
|
3773
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
3774
|
+
*/
|
|
3655
3775
|
exports.OneofOptions = {
|
|
3656
3776
|
typeUrl: "/google.protobuf.OneofOptions",
|
|
3657
3777
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3733,6 +3853,11 @@ function createBaseEnumOptions() {
|
|
|
3733
3853
|
uninterpretedOption: []
|
|
3734
3854
|
};
|
|
3735
3855
|
}
|
|
3856
|
+
/**
|
|
3857
|
+
* @name EnumOptions
|
|
3858
|
+
* @package google.protobuf
|
|
3859
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
3860
|
+
*/
|
|
3736
3861
|
exports.EnumOptions = {
|
|
3737
3862
|
typeUrl: "/google.protobuf.EnumOptions",
|
|
3738
3863
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3847,6 +3972,11 @@ function createBaseEnumValueOptions() {
|
|
|
3847
3972
|
uninterpretedOption: []
|
|
3848
3973
|
};
|
|
3849
3974
|
}
|
|
3975
|
+
/**
|
|
3976
|
+
* @name EnumValueOptions
|
|
3977
|
+
* @package google.protobuf
|
|
3978
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
3979
|
+
*/
|
|
3850
3980
|
exports.EnumValueOptions = {
|
|
3851
3981
|
typeUrl: "/google.protobuf.EnumValueOptions",
|
|
3852
3982
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -3959,6 +4089,11 @@ function createBaseServiceOptions() {
|
|
|
3959
4089
|
uninterpretedOption: []
|
|
3960
4090
|
};
|
|
3961
4091
|
}
|
|
4092
|
+
/**
|
|
4093
|
+
* @name ServiceOptions
|
|
4094
|
+
* @package google.protobuf
|
|
4095
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
4096
|
+
*/
|
|
3962
4097
|
exports.ServiceOptions = {
|
|
3963
4098
|
typeUrl: "/google.protobuf.ServiceOptions",
|
|
3964
4099
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4050,6 +4185,11 @@ function createBaseMethodOptions() {
|
|
|
4050
4185
|
uninterpretedOption: []
|
|
4051
4186
|
};
|
|
4052
4187
|
}
|
|
4188
|
+
/**
|
|
4189
|
+
* @name MethodOptions
|
|
4190
|
+
* @package google.protobuf
|
|
4191
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
4192
|
+
*/
|
|
4053
4193
|
exports.MethodOptions = {
|
|
4054
4194
|
typeUrl: "/google.protobuf.MethodOptions",
|
|
4055
4195
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4155,6 +4295,17 @@ function createBaseUninterpretedOption() {
|
|
|
4155
4295
|
aggregateValue: ""
|
|
4156
4296
|
};
|
|
4157
4297
|
}
|
|
4298
|
+
/**
|
|
4299
|
+
* A message representing a option the parser does not recognize. This only
|
|
4300
|
+
* appears in options protos created by the compiler::Parser class.
|
|
4301
|
+
* DescriptorPool resolves these when building Descriptor objects. Therefore,
|
|
4302
|
+
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
4303
|
+
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
4304
|
+
* in them.
|
|
4305
|
+
* @name UninterpretedOption
|
|
4306
|
+
* @package google.protobuf
|
|
4307
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
4308
|
+
*/
|
|
4158
4309
|
exports.UninterpretedOption = {
|
|
4159
4310
|
typeUrl: "/google.protobuf.UninterpretedOption",
|
|
4160
4311
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4288,6 +4439,16 @@ function createBaseUninterpretedOption_NamePart() {
|
|
|
4288
4439
|
isExtension: false
|
|
4289
4440
|
};
|
|
4290
4441
|
}
|
|
4442
|
+
/**
|
|
4443
|
+
* The name of the uninterpreted option. Each string represents a segment in
|
|
4444
|
+
* a dot-separated name. is_extension is true iff a segment represents an
|
|
4445
|
+
* extension (denoted with parentheses in options specs in .proto files).
|
|
4446
|
+
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
4447
|
+
* "foo.(bar.baz).moo".
|
|
4448
|
+
* @name UninterpretedOption_NamePart
|
|
4449
|
+
* @package google.protobuf
|
|
4450
|
+
* @see proto type: google.protobuf.NamePart
|
|
4451
|
+
*/
|
|
4291
4452
|
exports.UninterpretedOption_NamePart = {
|
|
4292
4453
|
typeUrl: "/google.protobuf.NamePart",
|
|
4293
4454
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4368,6 +4529,17 @@ function createBaseFeatureSet() {
|
|
|
4368
4529
|
enforceNamingStyle: 1
|
|
4369
4530
|
};
|
|
4370
4531
|
}
|
|
4532
|
+
/**
|
|
4533
|
+
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
4534
|
+
* not well scoped. This means that each of the feature enums below can clash
|
|
4535
|
+
* with each other. The short names we've chosen maximize call-site
|
|
4536
|
+
* readability, but leave us very open to this scenario. A future feature will
|
|
4537
|
+
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
4538
|
+
* conflict here.
|
|
4539
|
+
* @name FeatureSet
|
|
4540
|
+
* @package google.protobuf
|
|
4541
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
4542
|
+
*/
|
|
4371
4543
|
exports.FeatureSet = {
|
|
4372
4544
|
typeUrl: "/google.protobuf.FeatureSet",
|
|
4373
4545
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4495,6 +4667,11 @@ exports.FeatureSet = {
|
|
|
4495
4667
|
function createBaseFeatureSet_VisibilityFeature() {
|
|
4496
4668
|
return {};
|
|
4497
4669
|
}
|
|
4670
|
+
/**
|
|
4671
|
+
* @name FeatureSet_VisibilityFeature
|
|
4672
|
+
* @package google.protobuf
|
|
4673
|
+
* @see proto type: google.protobuf.VisibilityFeature
|
|
4674
|
+
*/
|
|
4498
4675
|
exports.FeatureSet_VisibilityFeature = {
|
|
4499
4676
|
typeUrl: "/google.protobuf.VisibilityFeature",
|
|
4500
4677
|
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4549,6 +4726,15 @@ function createBaseFeatureSetDefaults() {
|
|
|
4549
4726
|
maximumEdition: 1
|
|
4550
4727
|
};
|
|
4551
4728
|
}
|
|
4729
|
+
/**
|
|
4730
|
+
* A compiled specification for the defaults of a set of features. These
|
|
4731
|
+
* messages are generated from FeatureSet extensions and can be used to seed
|
|
4732
|
+
* feature resolution. The resolution with this object becomes a simple search
|
|
4733
|
+
* for the closest matching edition, followed by proto merges.
|
|
4734
|
+
* @name FeatureSetDefaults
|
|
4735
|
+
* @package google.protobuf
|
|
4736
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
4737
|
+
*/
|
|
4552
4738
|
exports.FeatureSetDefaults = {
|
|
4553
4739
|
typeUrl: "/google.protobuf.FeatureSetDefaults",
|
|
4554
4740
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4639,6 +4825,15 @@ function createBaseFeatureSetDefaults_FeatureSetEditionDefault() {
|
|
|
4639
4825
|
fixedFeatures: undefined
|
|
4640
4826
|
};
|
|
4641
4827
|
}
|
|
4828
|
+
/**
|
|
4829
|
+
* A map from every known edition with a unique set of defaults to its
|
|
4830
|
+
* defaults. Not all editions may be contained here. For a given edition,
|
|
4831
|
+
* the defaults at the closest matching edition ordered at or before it should
|
|
4832
|
+
* be used. This field must be in strict ascending order by edition.
|
|
4833
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefault
|
|
4834
|
+
* @package google.protobuf
|
|
4835
|
+
* @see proto type: google.protobuf.FeatureSetEditionDefault
|
|
4836
|
+
*/
|
|
4642
4837
|
exports.FeatureSetDefaults_FeatureSetEditionDefault = {
|
|
4643
4838
|
typeUrl: "/google.protobuf.FeatureSetEditionDefault",
|
|
4644
4839
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4724,6 +4919,13 @@ function createBaseSourceCodeInfo() {
|
|
|
4724
4919
|
location: []
|
|
4725
4920
|
};
|
|
4726
4921
|
}
|
|
4922
|
+
/**
|
|
4923
|
+
* Encapsulates information about the original source file from which a
|
|
4924
|
+
* FileDescriptorProto was generated.
|
|
4925
|
+
* @name SourceCodeInfo
|
|
4926
|
+
* @package google.protobuf
|
|
4927
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
4928
|
+
*/
|
|
4727
4929
|
exports.SourceCodeInfo = {
|
|
4728
4930
|
typeUrl: "/google.protobuf.SourceCodeInfo",
|
|
4729
4931
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4794,6 +4996,11 @@ function createBaseSourceCodeInfo_Location() {
|
|
|
4794
4996
|
leadingDetachedComments: []
|
|
4795
4997
|
};
|
|
4796
4998
|
}
|
|
4999
|
+
/**
|
|
5000
|
+
* @name SourceCodeInfo_Location
|
|
5001
|
+
* @package google.protobuf
|
|
5002
|
+
* @see proto type: google.protobuf.Location
|
|
5003
|
+
*/
|
|
4797
5004
|
exports.SourceCodeInfo_Location = {
|
|
4798
5005
|
typeUrl: "/google.protobuf.Location",
|
|
4799
5006
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4930,6 +5137,14 @@ function createBaseGeneratedCodeInfo() {
|
|
|
4930
5137
|
annotation: []
|
|
4931
5138
|
};
|
|
4932
5139
|
}
|
|
5140
|
+
/**
|
|
5141
|
+
* Describes the relationship between generated code and its original source
|
|
5142
|
+
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
5143
|
+
* source file, but may contain references to different source .proto files.
|
|
5144
|
+
* @name GeneratedCodeInfo
|
|
5145
|
+
* @package google.protobuf
|
|
5146
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
5147
|
+
*/
|
|
4933
5148
|
exports.GeneratedCodeInfo = {
|
|
4934
5149
|
typeUrl: "/google.protobuf.GeneratedCodeInfo",
|
|
4935
5150
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -5000,6 +5215,11 @@ function createBaseGeneratedCodeInfo_Annotation() {
|
|
|
5000
5215
|
semantic: 1
|
|
5001
5216
|
};
|
|
5002
5217
|
}
|
|
5218
|
+
/**
|
|
5219
|
+
* @name GeneratedCodeInfo_Annotation
|
|
5220
|
+
* @package google.protobuf
|
|
5221
|
+
* @see proto type: google.protobuf.Annotation
|
|
5222
|
+
*/
|
|
5003
5223
|
exports.GeneratedCodeInfo_Annotation = {
|
|
5004
5224
|
typeUrl: "/google.protobuf.Annotation",
|
|
5005
5225
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -59,6 +59,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
59
59
|
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
60
60
|
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
61
61
|
* microsecond should be expressed in JSON format as "3.000001s".
|
|
62
|
+
* @name Duration
|
|
63
|
+
* @package google.protobuf
|
|
64
|
+
* @see proto type: google.protobuf.Duration
|
|
62
65
|
*/
|
|
63
66
|
export interface Duration {
|
|
64
67
|
/**
|
|
@@ -140,12 +143,78 @@ export interface DurationProtoMsg {
|
|
|
140
143
|
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
141
144
|
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
142
145
|
* microsecond should be expressed in JSON format as "3.000001s".
|
|
146
|
+
* @name DurationAmino
|
|
147
|
+
* @package google.protobuf
|
|
148
|
+
* @see proto type: google.protobuf.Duration
|
|
143
149
|
*/
|
|
144
150
|
export type DurationAmino = string;
|
|
145
151
|
export interface DurationAminoMsg {
|
|
146
152
|
type: "/google.protobuf.Duration";
|
|
147
153
|
value: DurationAmino;
|
|
148
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* A Duration represents a signed, fixed-length span of time represented
|
|
157
|
+
* as a count of seconds and fractions of seconds at nanosecond
|
|
158
|
+
* resolution. It is independent of any calendar and concepts like "day"
|
|
159
|
+
* or "month". It is related to Timestamp in that the difference between
|
|
160
|
+
* two Timestamp values is a Duration and it can be added or subtracted
|
|
161
|
+
* from a Timestamp. Range is approximately +-10,000 years.
|
|
162
|
+
*
|
|
163
|
+
* # Examples
|
|
164
|
+
*
|
|
165
|
+
* Example 1: Compute Duration from two Timestamps in pseudo code.
|
|
166
|
+
*
|
|
167
|
+
* Timestamp start = ...;
|
|
168
|
+
* Timestamp end = ...;
|
|
169
|
+
* Duration duration = ...;
|
|
170
|
+
*
|
|
171
|
+
* duration.seconds = end.seconds - start.seconds;
|
|
172
|
+
* duration.nanos = end.nanos - start.nanos;
|
|
173
|
+
*
|
|
174
|
+
* if (duration.seconds < 0 && duration.nanos > 0) {
|
|
175
|
+
* duration.seconds += 1;
|
|
176
|
+
* duration.nanos -= 1000000000;
|
|
177
|
+
* } else if (duration.seconds > 0 && duration.nanos < 0) {
|
|
178
|
+
* duration.seconds -= 1;
|
|
179
|
+
* duration.nanos += 1000000000;
|
|
180
|
+
* }
|
|
181
|
+
*
|
|
182
|
+
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
|
|
183
|
+
*
|
|
184
|
+
* Timestamp start = ...;
|
|
185
|
+
* Duration duration = ...;
|
|
186
|
+
* Timestamp end = ...;
|
|
187
|
+
*
|
|
188
|
+
* end.seconds = start.seconds + duration.seconds;
|
|
189
|
+
* end.nanos = start.nanos + duration.nanos;
|
|
190
|
+
*
|
|
191
|
+
* if (end.nanos < 0) {
|
|
192
|
+
* end.seconds -= 1;
|
|
193
|
+
* end.nanos += 1000000000;
|
|
194
|
+
* } else if (end.nanos >= 1000000000) {
|
|
195
|
+
* end.seconds += 1;
|
|
196
|
+
* end.nanos -= 1000000000;
|
|
197
|
+
* }
|
|
198
|
+
*
|
|
199
|
+
* Example 3: Compute Duration from datetime.timedelta in Python.
|
|
200
|
+
*
|
|
201
|
+
* td = datetime.timedelta(days=3, minutes=10)
|
|
202
|
+
* duration = Duration()
|
|
203
|
+
* duration.FromTimedelta(td)
|
|
204
|
+
*
|
|
205
|
+
* # JSON Mapping
|
|
206
|
+
*
|
|
207
|
+
* In JSON format, the Duration type is encoded as a string rather than an
|
|
208
|
+
* object, where the string ends in the suffix "s" (indicating seconds) and
|
|
209
|
+
* is preceded by the number of seconds, with nanoseconds expressed as
|
|
210
|
+
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be
|
|
211
|
+
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
212
|
+
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
213
|
+
* microsecond should be expressed in JSON format as "3.000001s".
|
|
214
|
+
* @name Duration
|
|
215
|
+
* @package google.protobuf
|
|
216
|
+
* @see proto type: google.protobuf.Duration
|
|
217
|
+
*/
|
|
149
218
|
export declare const Duration: {
|
|
150
219
|
typeUrl: string;
|
|
151
220
|
encode(message: Duration, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -9,6 +9,69 @@ function createBaseDuration() {
|
|
|
9
9
|
nanos: 0
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* A Duration represents a signed, fixed-length span of time represented
|
|
14
|
+
* as a count of seconds and fractions of seconds at nanosecond
|
|
15
|
+
* resolution. It is independent of any calendar and concepts like "day"
|
|
16
|
+
* or "month". It is related to Timestamp in that the difference between
|
|
17
|
+
* two Timestamp values is a Duration and it can be added or subtracted
|
|
18
|
+
* from a Timestamp. Range is approximately +-10,000 years.
|
|
19
|
+
*
|
|
20
|
+
* # Examples
|
|
21
|
+
*
|
|
22
|
+
* Example 1: Compute Duration from two Timestamps in pseudo code.
|
|
23
|
+
*
|
|
24
|
+
* Timestamp start = ...;
|
|
25
|
+
* Timestamp end = ...;
|
|
26
|
+
* Duration duration = ...;
|
|
27
|
+
*
|
|
28
|
+
* duration.seconds = end.seconds - start.seconds;
|
|
29
|
+
* duration.nanos = end.nanos - start.nanos;
|
|
30
|
+
*
|
|
31
|
+
* if (duration.seconds < 0 && duration.nanos > 0) {
|
|
32
|
+
* duration.seconds += 1;
|
|
33
|
+
* duration.nanos -= 1000000000;
|
|
34
|
+
* } else if (duration.seconds > 0 && duration.nanos < 0) {
|
|
35
|
+
* duration.seconds -= 1;
|
|
36
|
+
* duration.nanos += 1000000000;
|
|
37
|
+
* }
|
|
38
|
+
*
|
|
39
|
+
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
|
|
40
|
+
*
|
|
41
|
+
* Timestamp start = ...;
|
|
42
|
+
* Duration duration = ...;
|
|
43
|
+
* Timestamp end = ...;
|
|
44
|
+
*
|
|
45
|
+
* end.seconds = start.seconds + duration.seconds;
|
|
46
|
+
* end.nanos = start.nanos + duration.nanos;
|
|
47
|
+
*
|
|
48
|
+
* if (end.nanos < 0) {
|
|
49
|
+
* end.seconds -= 1;
|
|
50
|
+
* end.nanos += 1000000000;
|
|
51
|
+
* } else if (end.nanos >= 1000000000) {
|
|
52
|
+
* end.seconds += 1;
|
|
53
|
+
* end.nanos -= 1000000000;
|
|
54
|
+
* }
|
|
55
|
+
*
|
|
56
|
+
* Example 3: Compute Duration from datetime.timedelta in Python.
|
|
57
|
+
*
|
|
58
|
+
* td = datetime.timedelta(days=3, minutes=10)
|
|
59
|
+
* duration = Duration()
|
|
60
|
+
* duration.FromTimedelta(td)
|
|
61
|
+
*
|
|
62
|
+
* # JSON Mapping
|
|
63
|
+
*
|
|
64
|
+
* In JSON format, the Duration type is encoded as a string rather than an
|
|
65
|
+
* object, where the string ends in the suffix "s" (indicating seconds) and
|
|
66
|
+
* is preceded by the number of seconds, with nanoseconds expressed as
|
|
67
|
+
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be
|
|
68
|
+
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
69
|
+
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
70
|
+
* microsecond should be expressed in JSON format as "3.000001s".
|
|
71
|
+
* @name Duration
|
|
72
|
+
* @package google.protobuf
|
|
73
|
+
* @see proto type: google.protobuf.Duration
|
|
74
|
+
*/
|
|
12
75
|
exports.Duration = {
|
|
13
76
|
typeUrl: "/google.protobuf.Duration",
|
|
14
77
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|