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