injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -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/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- 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/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- 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 +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -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/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -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/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -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/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -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/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -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/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -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
|
@@ -969,6 +969,13 @@ function createBaseFileDescriptorSet() {
|
|
|
969
969
|
file: []
|
|
970
970
|
};
|
|
971
971
|
}
|
|
972
|
+
/**
|
|
973
|
+
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
974
|
+
* files it parses.
|
|
975
|
+
* @name FileDescriptorSet
|
|
976
|
+
* @package google.protobuf
|
|
977
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
978
|
+
*/
|
|
972
979
|
exports.FileDescriptorSet = {
|
|
973
980
|
typeUrl: "/google.protobuf.FileDescriptorSet",
|
|
974
981
|
is(o) {
|
|
@@ -1059,6 +1066,12 @@ function createBaseFileDescriptorProto() {
|
|
|
1059
1066
|
edition: 1
|
|
1060
1067
|
};
|
|
1061
1068
|
}
|
|
1069
|
+
/**
|
|
1070
|
+
* Describes a complete .proto file.
|
|
1071
|
+
* @name FileDescriptorProto
|
|
1072
|
+
* @package google.protobuf
|
|
1073
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
1074
|
+
*/
|
|
1062
1075
|
exports.FileDescriptorProto = {
|
|
1063
1076
|
typeUrl: "/google.protobuf.FileDescriptorProto",
|
|
1064
1077
|
is(o) {
|
|
@@ -1321,6 +1334,12 @@ function createBaseDescriptorProto() {
|
|
|
1321
1334
|
reservedName: []
|
|
1322
1335
|
};
|
|
1323
1336
|
}
|
|
1337
|
+
/**
|
|
1338
|
+
* Describes a message type.
|
|
1339
|
+
* @name DescriptorProto
|
|
1340
|
+
* @package google.protobuf
|
|
1341
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
1342
|
+
*/
|
|
1324
1343
|
exports.DescriptorProto = {
|
|
1325
1344
|
typeUrl: "/google.protobuf.DescriptorProto",
|
|
1326
1345
|
is(o) {
|
|
@@ -1527,6 +1546,11 @@ function createBaseDescriptorProto_ExtensionRange() {
|
|
|
1527
1546
|
options: undefined
|
|
1528
1547
|
};
|
|
1529
1548
|
}
|
|
1549
|
+
/**
|
|
1550
|
+
* @name DescriptorProto_ExtensionRange
|
|
1551
|
+
* @package google.protobuf
|
|
1552
|
+
* @see proto type: google.protobuf.ExtensionRange
|
|
1553
|
+
*/
|
|
1530
1554
|
exports.DescriptorProto_ExtensionRange = {
|
|
1531
1555
|
typeUrl: "/google.protobuf.ExtensionRange",
|
|
1532
1556
|
is(o) {
|
|
@@ -1625,6 +1649,14 @@ function createBaseDescriptorProto_ReservedRange() {
|
|
|
1625
1649
|
end: 0
|
|
1626
1650
|
};
|
|
1627
1651
|
}
|
|
1652
|
+
/**
|
|
1653
|
+
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
1654
|
+
* fields or extension ranges in the same message. Reserved ranges may
|
|
1655
|
+
* not overlap.
|
|
1656
|
+
* @name DescriptorProto_ReservedRange
|
|
1657
|
+
* @package google.protobuf
|
|
1658
|
+
* @see proto type: google.protobuf.ReservedRange
|
|
1659
|
+
*/
|
|
1628
1660
|
exports.DescriptorProto_ReservedRange = {
|
|
1629
1661
|
typeUrl: "/google.protobuf.ReservedRange",
|
|
1630
1662
|
is(o) {
|
|
@@ -1709,6 +1741,11 @@ function createBaseExtensionRangeOptions() {
|
|
|
1709
1741
|
verification: 1
|
|
1710
1742
|
};
|
|
1711
1743
|
}
|
|
1744
|
+
/**
|
|
1745
|
+
* @name ExtensionRangeOptions
|
|
1746
|
+
* @package google.protobuf
|
|
1747
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
1748
|
+
*/
|
|
1712
1749
|
exports.ExtensionRangeOptions = {
|
|
1713
1750
|
typeUrl: "/google.protobuf.ExtensionRangeOptions",
|
|
1714
1751
|
is(o) {
|
|
@@ -1829,6 +1866,11 @@ function createBaseExtensionRangeOptions_Declaration() {
|
|
|
1829
1866
|
repeated: false
|
|
1830
1867
|
};
|
|
1831
1868
|
}
|
|
1869
|
+
/**
|
|
1870
|
+
* @name ExtensionRangeOptions_Declaration
|
|
1871
|
+
* @package google.protobuf
|
|
1872
|
+
* @see proto type: google.protobuf.Declaration
|
|
1873
|
+
*/
|
|
1832
1874
|
exports.ExtensionRangeOptions_Declaration = {
|
|
1833
1875
|
typeUrl: "/google.protobuf.Declaration",
|
|
1834
1876
|
is(o) {
|
|
@@ -1953,6 +1995,12 @@ function createBaseFieldDescriptorProto() {
|
|
|
1953
1995
|
proto3Optional: false
|
|
1954
1996
|
};
|
|
1955
1997
|
}
|
|
1998
|
+
/**
|
|
1999
|
+
* Describes a field within a message.
|
|
2000
|
+
* @name FieldDescriptorProto
|
|
2001
|
+
* @package google.protobuf
|
|
2002
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
2003
|
+
*/
|
|
1956
2004
|
exports.FieldDescriptorProto = {
|
|
1957
2005
|
typeUrl: "/google.protobuf.FieldDescriptorProto",
|
|
1958
2006
|
is(o) {
|
|
@@ -2139,6 +2187,12 @@ function createBaseOneofDescriptorProto() {
|
|
|
2139
2187
|
options: undefined
|
|
2140
2188
|
};
|
|
2141
2189
|
}
|
|
2190
|
+
/**
|
|
2191
|
+
* Describes a oneof.
|
|
2192
|
+
* @name OneofDescriptorProto
|
|
2193
|
+
* @package google.protobuf
|
|
2194
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
2195
|
+
*/
|
|
2142
2196
|
exports.OneofDescriptorProto = {
|
|
2143
2197
|
typeUrl: "/google.protobuf.OneofDescriptorProto",
|
|
2144
2198
|
is(o) {
|
|
@@ -2229,6 +2283,12 @@ function createBaseEnumDescriptorProto() {
|
|
|
2229
2283
|
reservedName: []
|
|
2230
2284
|
};
|
|
2231
2285
|
}
|
|
2286
|
+
/**
|
|
2287
|
+
* Describes an enum type.
|
|
2288
|
+
* @name EnumDescriptorProto
|
|
2289
|
+
* @package google.protobuf
|
|
2290
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
2291
|
+
*/
|
|
2232
2292
|
exports.EnumDescriptorProto = {
|
|
2233
2293
|
typeUrl: "/google.protobuf.EnumDescriptorProto",
|
|
2234
2294
|
is(o) {
|
|
@@ -2360,6 +2420,17 @@ function createBaseEnumDescriptorProto_EnumReservedRange() {
|
|
|
2360
2420
|
end: 0
|
|
2361
2421
|
};
|
|
2362
2422
|
}
|
|
2423
|
+
/**
|
|
2424
|
+
* Range of reserved numeric values. Reserved values may not be used by
|
|
2425
|
+
* entries in the same enum. Reserved ranges may not overlap.
|
|
2426
|
+
*
|
|
2427
|
+
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
2428
|
+
* is inclusive such that it can appropriately represent the entire int32
|
|
2429
|
+
* domain.
|
|
2430
|
+
* @name EnumDescriptorProto_EnumReservedRange
|
|
2431
|
+
* @package google.protobuf
|
|
2432
|
+
* @see proto type: google.protobuf.EnumReservedRange
|
|
2433
|
+
*/
|
|
2363
2434
|
exports.EnumDescriptorProto_EnumReservedRange = {
|
|
2364
2435
|
typeUrl: "/google.protobuf.EnumReservedRange",
|
|
2365
2436
|
is(o) {
|
|
@@ -2443,6 +2514,12 @@ function createBaseEnumValueDescriptorProto() {
|
|
|
2443
2514
|
options: undefined
|
|
2444
2515
|
};
|
|
2445
2516
|
}
|
|
2517
|
+
/**
|
|
2518
|
+
* Describes a value within an enum.
|
|
2519
|
+
* @name EnumValueDescriptorProto
|
|
2520
|
+
* @package google.protobuf
|
|
2521
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
2522
|
+
*/
|
|
2446
2523
|
exports.EnumValueDescriptorProto = {
|
|
2447
2524
|
typeUrl: "/google.protobuf.EnumValueDescriptorProto",
|
|
2448
2525
|
is(o) {
|
|
@@ -2542,6 +2619,12 @@ function createBaseServiceDescriptorProto() {
|
|
|
2542
2619
|
options: undefined
|
|
2543
2620
|
};
|
|
2544
2621
|
}
|
|
2622
|
+
/**
|
|
2623
|
+
* Describes a service.
|
|
2624
|
+
* @name ServiceDescriptorProto
|
|
2625
|
+
* @package google.protobuf
|
|
2626
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
2627
|
+
*/
|
|
2545
2628
|
exports.ServiceDescriptorProto = {
|
|
2546
2629
|
typeUrl: "/google.protobuf.ServiceDescriptorProto",
|
|
2547
2630
|
is(o) {
|
|
@@ -2648,6 +2731,12 @@ function createBaseMethodDescriptorProto() {
|
|
|
2648
2731
|
serverStreaming: false
|
|
2649
2732
|
};
|
|
2650
2733
|
}
|
|
2734
|
+
/**
|
|
2735
|
+
* Describes a method of a service.
|
|
2736
|
+
* @name MethodDescriptorProto
|
|
2737
|
+
* @package google.protobuf
|
|
2738
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
2739
|
+
*/
|
|
2651
2740
|
exports.MethodDescriptorProto = {
|
|
2652
2741
|
typeUrl: "/google.protobuf.MethodDescriptorProto",
|
|
2653
2742
|
is(o) {
|
|
@@ -2798,6 +2887,11 @@ function createBaseFileOptions() {
|
|
|
2798
2887
|
uninterpretedOption: []
|
|
2799
2888
|
};
|
|
2800
2889
|
}
|
|
2890
|
+
/**
|
|
2891
|
+
* @name FileOptions
|
|
2892
|
+
* @package google.protobuf
|
|
2893
|
+
* @see proto type: google.protobuf.FileOptions
|
|
2894
|
+
*/
|
|
2801
2895
|
exports.FileOptions = {
|
|
2802
2896
|
typeUrl: "/google.protobuf.FileOptions",
|
|
2803
2897
|
is(o) {
|
|
@@ -3103,6 +3197,11 @@ function createBaseMessageOptions() {
|
|
|
3103
3197
|
uninterpretedOption: []
|
|
3104
3198
|
};
|
|
3105
3199
|
}
|
|
3200
|
+
/**
|
|
3201
|
+
* @name MessageOptions
|
|
3202
|
+
* @package google.protobuf
|
|
3203
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
3204
|
+
*/
|
|
3106
3205
|
exports.MessageOptions = {
|
|
3107
3206
|
typeUrl: "/google.protobuf.MessageOptions",
|
|
3108
3207
|
is(o) {
|
|
@@ -3261,6 +3360,11 @@ function createBaseFieldOptions() {
|
|
|
3261
3360
|
uninterpretedOption: []
|
|
3262
3361
|
};
|
|
3263
3362
|
}
|
|
3363
|
+
/**
|
|
3364
|
+
* @name FieldOptions
|
|
3365
|
+
* @package google.protobuf
|
|
3366
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
3367
|
+
*/
|
|
3264
3368
|
exports.FieldOptions = {
|
|
3265
3369
|
typeUrl: "/google.protobuf.FieldOptions",
|
|
3266
3370
|
is(o) {
|
|
@@ -3502,6 +3606,11 @@ function createBaseFieldOptions_EditionDefault() {
|
|
|
3502
3606
|
value: ""
|
|
3503
3607
|
};
|
|
3504
3608
|
}
|
|
3609
|
+
/**
|
|
3610
|
+
* @name FieldOptions_EditionDefault
|
|
3611
|
+
* @package google.protobuf
|
|
3612
|
+
* @see proto type: google.protobuf.EditionDefault
|
|
3613
|
+
*/
|
|
3505
3614
|
exports.FieldOptions_EditionDefault = {
|
|
3506
3615
|
typeUrl: "/google.protobuf.EditionDefault",
|
|
3507
3616
|
is(o) {
|
|
@@ -3586,6 +3695,12 @@ function createBaseFieldOptions_FeatureSupport() {
|
|
|
3586
3695
|
editionRemoved: 1
|
|
3587
3696
|
};
|
|
3588
3697
|
}
|
|
3698
|
+
/**
|
|
3699
|
+
* Information about the support window of a feature.
|
|
3700
|
+
* @name FieldOptions_FeatureSupport
|
|
3701
|
+
* @package google.protobuf
|
|
3702
|
+
* @see proto type: google.protobuf.FeatureSupport
|
|
3703
|
+
*/
|
|
3589
3704
|
exports.FieldOptions_FeatureSupport = {
|
|
3590
3705
|
typeUrl: "/google.protobuf.FeatureSupport",
|
|
3591
3706
|
is(o) {
|
|
@@ -3690,6 +3805,11 @@ function createBaseOneofOptions() {
|
|
|
3690
3805
|
uninterpretedOption: []
|
|
3691
3806
|
};
|
|
3692
3807
|
}
|
|
3808
|
+
/**
|
|
3809
|
+
* @name OneofOptions
|
|
3810
|
+
* @package google.protobuf
|
|
3811
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
3812
|
+
*/
|
|
3693
3813
|
exports.OneofOptions = {
|
|
3694
3814
|
typeUrl: "/google.protobuf.OneofOptions",
|
|
3695
3815
|
is(o) {
|
|
@@ -3784,6 +3904,11 @@ function createBaseEnumOptions() {
|
|
|
3784
3904
|
uninterpretedOption: []
|
|
3785
3905
|
};
|
|
3786
3906
|
}
|
|
3907
|
+
/**
|
|
3908
|
+
* @name EnumOptions
|
|
3909
|
+
* @package google.protobuf
|
|
3910
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
3911
|
+
*/
|
|
3787
3912
|
exports.EnumOptions = {
|
|
3788
3913
|
typeUrl: "/google.protobuf.EnumOptions",
|
|
3789
3914
|
is(o) {
|
|
@@ -3911,6 +4036,11 @@ function createBaseEnumValueOptions() {
|
|
|
3911
4036
|
uninterpretedOption: []
|
|
3912
4037
|
};
|
|
3913
4038
|
}
|
|
4039
|
+
/**
|
|
4040
|
+
* @name EnumValueOptions
|
|
4041
|
+
* @package google.protobuf
|
|
4042
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
4043
|
+
*/
|
|
3914
4044
|
exports.EnumValueOptions = {
|
|
3915
4045
|
typeUrl: "/google.protobuf.EnumValueOptions",
|
|
3916
4046
|
is(o) {
|
|
@@ -4037,6 +4167,11 @@ function createBaseServiceOptions() {
|
|
|
4037
4167
|
uninterpretedOption: []
|
|
4038
4168
|
};
|
|
4039
4169
|
}
|
|
4170
|
+
/**
|
|
4171
|
+
* @name ServiceOptions
|
|
4172
|
+
* @package google.protobuf
|
|
4173
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
4174
|
+
*/
|
|
4040
4175
|
exports.ServiceOptions = {
|
|
4041
4176
|
typeUrl: "/google.protobuf.ServiceOptions",
|
|
4042
4177
|
is(o) {
|
|
@@ -4141,6 +4276,11 @@ function createBaseMethodOptions() {
|
|
|
4141
4276
|
uninterpretedOption: []
|
|
4142
4277
|
};
|
|
4143
4278
|
}
|
|
4279
|
+
/**
|
|
4280
|
+
* @name MethodOptions
|
|
4281
|
+
* @package google.protobuf
|
|
4282
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
4283
|
+
*/
|
|
4144
4284
|
exports.MethodOptions = {
|
|
4145
4285
|
typeUrl: "/google.protobuf.MethodOptions",
|
|
4146
4286
|
is(o) {
|
|
@@ -4259,6 +4399,17 @@ function createBaseUninterpretedOption() {
|
|
|
4259
4399
|
aggregateValue: ""
|
|
4260
4400
|
};
|
|
4261
4401
|
}
|
|
4402
|
+
/**
|
|
4403
|
+
* A message representing a option the parser does not recognize. This only
|
|
4404
|
+
* appears in options protos created by the compiler::Parser class.
|
|
4405
|
+
* DescriptorPool resolves these when building Descriptor objects. Therefore,
|
|
4406
|
+
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
4407
|
+
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
4408
|
+
* in them.
|
|
4409
|
+
* @name UninterpretedOption
|
|
4410
|
+
* @package google.protobuf
|
|
4411
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
4412
|
+
*/
|
|
4262
4413
|
exports.UninterpretedOption = {
|
|
4263
4414
|
typeUrl: "/google.protobuf.UninterpretedOption",
|
|
4264
4415
|
is(o) {
|
|
@@ -4404,6 +4555,16 @@ function createBaseUninterpretedOption_NamePart() {
|
|
|
4404
4555
|
isExtension: false
|
|
4405
4556
|
};
|
|
4406
4557
|
}
|
|
4558
|
+
/**
|
|
4559
|
+
* The name of the uninterpreted option. Each string represents a segment in
|
|
4560
|
+
* a dot-separated name. is_extension is true iff a segment represents an
|
|
4561
|
+
* extension (denoted with parentheses in options specs in .proto files).
|
|
4562
|
+
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
4563
|
+
* "foo.(bar.baz).moo".
|
|
4564
|
+
* @name UninterpretedOption_NamePart
|
|
4565
|
+
* @package google.protobuf
|
|
4566
|
+
* @see proto type: google.protobuf.NamePart
|
|
4567
|
+
*/
|
|
4407
4568
|
exports.UninterpretedOption_NamePart = {
|
|
4408
4569
|
typeUrl: "/google.protobuf.NamePart",
|
|
4409
4570
|
is(o) {
|
|
@@ -4490,6 +4651,17 @@ function createBaseFeatureSet() {
|
|
|
4490
4651
|
jsonFormat: 1
|
|
4491
4652
|
};
|
|
4492
4653
|
}
|
|
4654
|
+
/**
|
|
4655
|
+
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
4656
|
+
* not well scoped. This means that each of the feature enums below can clash
|
|
4657
|
+
* with each other. The short names we've chosen maximize call-site
|
|
4658
|
+
* readability, but leave us very open to this scenario. A future feature will
|
|
4659
|
+
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
4660
|
+
* conflict here.
|
|
4661
|
+
* @name FeatureSet
|
|
4662
|
+
* @package google.protobuf
|
|
4663
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
4664
|
+
*/
|
|
4493
4665
|
exports.FeatureSet = {
|
|
4494
4666
|
typeUrl: "/google.protobuf.FeatureSet",
|
|
4495
4667
|
is(o) {
|
|
@@ -4617,6 +4789,15 @@ function createBaseFeatureSetDefaults() {
|
|
|
4617
4789
|
maximumEdition: 1
|
|
4618
4790
|
};
|
|
4619
4791
|
}
|
|
4792
|
+
/**
|
|
4793
|
+
* A compiled specification for the defaults of a set of features. These
|
|
4794
|
+
* messages are generated from FeatureSet extensions and can be used to seed
|
|
4795
|
+
* feature resolution. The resolution with this object becomes a simple search
|
|
4796
|
+
* for the closest matching edition, followed by proto merges.
|
|
4797
|
+
* @name FeatureSetDefaults
|
|
4798
|
+
* @package google.protobuf
|
|
4799
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
4800
|
+
*/
|
|
4620
4801
|
exports.FeatureSetDefaults = {
|
|
4621
4802
|
typeUrl: "/google.protobuf.FeatureSetDefaults",
|
|
4622
4803
|
is(o) {
|
|
@@ -4719,6 +4900,15 @@ function createBaseFeatureSetDefaults_FeatureSetEditionDefault() {
|
|
|
4719
4900
|
fixedFeatures: undefined
|
|
4720
4901
|
};
|
|
4721
4902
|
}
|
|
4903
|
+
/**
|
|
4904
|
+
* A map from every known edition with a unique set of defaults to its
|
|
4905
|
+
* defaults. Not all editions may be contained here. For a given edition,
|
|
4906
|
+
* the defaults at the closest matching edition ordered at or before it should
|
|
4907
|
+
* be used. This field must be in strict ascending order by edition.
|
|
4908
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefault
|
|
4909
|
+
* @package google.protobuf
|
|
4910
|
+
* @see proto type: google.protobuf.FeatureSetEditionDefault
|
|
4911
|
+
*/
|
|
4722
4912
|
exports.FeatureSetDefaults_FeatureSetEditionDefault = {
|
|
4723
4913
|
typeUrl: "/google.protobuf.FeatureSetEditionDefault",
|
|
4724
4914
|
is(o) {
|
|
@@ -4816,6 +5006,13 @@ function createBaseSourceCodeInfo() {
|
|
|
4816
5006
|
location: []
|
|
4817
5007
|
};
|
|
4818
5008
|
}
|
|
5009
|
+
/**
|
|
5010
|
+
* Encapsulates information about the original source file from which a
|
|
5011
|
+
* FileDescriptorProto was generated.
|
|
5012
|
+
* @name SourceCodeInfo
|
|
5013
|
+
* @package google.protobuf
|
|
5014
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
5015
|
+
*/
|
|
4819
5016
|
exports.SourceCodeInfo = {
|
|
4820
5017
|
typeUrl: "/google.protobuf.SourceCodeInfo",
|
|
4821
5018
|
is(o) {
|
|
@@ -4898,6 +5095,11 @@ function createBaseSourceCodeInfo_Location() {
|
|
|
4898
5095
|
leadingDetachedComments: []
|
|
4899
5096
|
};
|
|
4900
5097
|
}
|
|
5098
|
+
/**
|
|
5099
|
+
* @name SourceCodeInfo_Location
|
|
5100
|
+
* @package google.protobuf
|
|
5101
|
+
* @see proto type: google.protobuf.Location
|
|
5102
|
+
*/
|
|
4901
5103
|
exports.SourceCodeInfo_Location = {
|
|
4902
5104
|
typeUrl: "/google.protobuf.Location",
|
|
4903
5105
|
is(o) {
|
|
@@ -5041,6 +5243,14 @@ function createBaseGeneratedCodeInfo() {
|
|
|
5041
5243
|
annotation: []
|
|
5042
5244
|
};
|
|
5043
5245
|
}
|
|
5246
|
+
/**
|
|
5247
|
+
* Describes the relationship between generated code and its original source
|
|
5248
|
+
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
5249
|
+
* source file, but may contain references to different source .proto files.
|
|
5250
|
+
* @name GeneratedCodeInfo
|
|
5251
|
+
* @package google.protobuf
|
|
5252
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
5253
|
+
*/
|
|
5044
5254
|
exports.GeneratedCodeInfo = {
|
|
5045
5255
|
typeUrl: "/google.protobuf.GeneratedCodeInfo",
|
|
5046
5256
|
is(o) {
|
|
@@ -5123,6 +5333,11 @@ function createBaseGeneratedCodeInfo_Annotation() {
|
|
|
5123
5333
|
semantic: 1
|
|
5124
5334
|
};
|
|
5125
5335
|
}
|
|
5336
|
+
/**
|
|
5337
|
+
* @name GeneratedCodeInfo_Annotation
|
|
5338
|
+
* @package google.protobuf
|
|
5339
|
+
* @see proto type: google.protobuf.Annotation
|
|
5340
|
+
*/
|
|
5126
5341
|
exports.GeneratedCodeInfo_Annotation = {
|
|
5127
5342
|
typeUrl: "/google.protobuf.Annotation",
|
|
5128
5343
|
is(o) {
|
|
@@ -59,6 +59,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
59
59
|
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
60
60
|
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
61
61
|
* microsecond should be expressed in JSON format as "3.000001s".
|
|
62
|
+
* @name Duration
|
|
63
|
+
* @package google.protobuf
|
|
64
|
+
* @see proto type: google.protobuf.Duration
|
|
62
65
|
*/
|
|
63
66
|
export interface Duration {
|
|
64
67
|
/**
|
|
@@ -140,12 +143,78 @@ export interface DurationProtoMsg {
|
|
|
140
143
|
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
141
144
|
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
142
145
|
* microsecond should be expressed in JSON format as "3.000001s".
|
|
146
|
+
* @name DurationAmino
|
|
147
|
+
* @package google.protobuf
|
|
148
|
+
* @see proto type: google.protobuf.Duration
|
|
143
149
|
*/
|
|
144
150
|
export type DurationAmino = string;
|
|
145
151
|
export interface DurationAminoMsg {
|
|
146
152
|
type: "/google.protobuf.Duration";
|
|
147
153
|
value: DurationAmino;
|
|
148
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* A Duration represents a signed, fixed-length span of time represented
|
|
157
|
+
* as a count of seconds and fractions of seconds at nanosecond
|
|
158
|
+
* resolution. It is independent of any calendar and concepts like "day"
|
|
159
|
+
* or "month". It is related to Timestamp in that the difference between
|
|
160
|
+
* two Timestamp values is a Duration and it can be added or subtracted
|
|
161
|
+
* from a Timestamp. Range is approximately +-10,000 years.
|
|
162
|
+
*
|
|
163
|
+
* # Examples
|
|
164
|
+
*
|
|
165
|
+
* Example 1: Compute Duration from two Timestamps in pseudo code.
|
|
166
|
+
*
|
|
167
|
+
* Timestamp start = ...;
|
|
168
|
+
* Timestamp end = ...;
|
|
169
|
+
* Duration duration = ...;
|
|
170
|
+
*
|
|
171
|
+
* duration.seconds = end.seconds - start.seconds;
|
|
172
|
+
* duration.nanos = end.nanos - start.nanos;
|
|
173
|
+
*
|
|
174
|
+
* if (duration.seconds < 0 && duration.nanos > 0) {
|
|
175
|
+
* duration.seconds += 1;
|
|
176
|
+
* duration.nanos -= 1000000000;
|
|
177
|
+
* } else if (duration.seconds > 0 && duration.nanos < 0) {
|
|
178
|
+
* duration.seconds -= 1;
|
|
179
|
+
* duration.nanos += 1000000000;
|
|
180
|
+
* }
|
|
181
|
+
*
|
|
182
|
+
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
|
|
183
|
+
*
|
|
184
|
+
* Timestamp start = ...;
|
|
185
|
+
* Duration duration = ...;
|
|
186
|
+
* Timestamp end = ...;
|
|
187
|
+
*
|
|
188
|
+
* end.seconds = start.seconds + duration.seconds;
|
|
189
|
+
* end.nanos = start.nanos + duration.nanos;
|
|
190
|
+
*
|
|
191
|
+
* if (end.nanos < 0) {
|
|
192
|
+
* end.seconds -= 1;
|
|
193
|
+
* end.nanos += 1000000000;
|
|
194
|
+
* } else if (end.nanos >= 1000000000) {
|
|
195
|
+
* end.seconds += 1;
|
|
196
|
+
* end.nanos -= 1000000000;
|
|
197
|
+
* }
|
|
198
|
+
*
|
|
199
|
+
* Example 3: Compute Duration from datetime.timedelta in Python.
|
|
200
|
+
*
|
|
201
|
+
* td = datetime.timedelta(days=3, minutes=10)
|
|
202
|
+
* duration = Duration()
|
|
203
|
+
* duration.FromTimedelta(td)
|
|
204
|
+
*
|
|
205
|
+
* # JSON Mapping
|
|
206
|
+
*
|
|
207
|
+
* In JSON format, the Duration type is encoded as a string rather than an
|
|
208
|
+
* object, where the string ends in the suffix "s" (indicating seconds) and
|
|
209
|
+
* is preceded by the number of seconds, with nanoseconds expressed as
|
|
210
|
+
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be
|
|
211
|
+
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
212
|
+
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
213
|
+
* microsecond should be expressed in JSON format as "3.000001s".
|
|
214
|
+
* @name Duration
|
|
215
|
+
* @package google.protobuf
|
|
216
|
+
* @see proto type: google.protobuf.Duration
|
|
217
|
+
*/
|
|
149
218
|
export declare const Duration: {
|
|
150
219
|
typeUrl: string;
|
|
151
220
|
is(o: any): o is Duration;
|
|
@@ -8,6 +8,69 @@ function createBaseDuration() {
|
|
|
8
8
|
nanos: 0
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* A Duration represents a signed, fixed-length span of time represented
|
|
13
|
+
* as a count of seconds and fractions of seconds at nanosecond
|
|
14
|
+
* resolution. It is independent of any calendar and concepts like "day"
|
|
15
|
+
* or "month". It is related to Timestamp in that the difference between
|
|
16
|
+
* two Timestamp values is a Duration and it can be added or subtracted
|
|
17
|
+
* from a Timestamp. Range is approximately +-10,000 years.
|
|
18
|
+
*
|
|
19
|
+
* # Examples
|
|
20
|
+
*
|
|
21
|
+
* Example 1: Compute Duration from two Timestamps in pseudo code.
|
|
22
|
+
*
|
|
23
|
+
* Timestamp start = ...;
|
|
24
|
+
* Timestamp end = ...;
|
|
25
|
+
* Duration duration = ...;
|
|
26
|
+
*
|
|
27
|
+
* duration.seconds = end.seconds - start.seconds;
|
|
28
|
+
* duration.nanos = end.nanos - start.nanos;
|
|
29
|
+
*
|
|
30
|
+
* if (duration.seconds < 0 && duration.nanos > 0) {
|
|
31
|
+
* duration.seconds += 1;
|
|
32
|
+
* duration.nanos -= 1000000000;
|
|
33
|
+
* } else if (duration.seconds > 0 && duration.nanos < 0) {
|
|
34
|
+
* duration.seconds -= 1;
|
|
35
|
+
* duration.nanos += 1000000000;
|
|
36
|
+
* }
|
|
37
|
+
*
|
|
38
|
+
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
|
|
39
|
+
*
|
|
40
|
+
* Timestamp start = ...;
|
|
41
|
+
* Duration duration = ...;
|
|
42
|
+
* Timestamp end = ...;
|
|
43
|
+
*
|
|
44
|
+
* end.seconds = start.seconds + duration.seconds;
|
|
45
|
+
* end.nanos = start.nanos + duration.nanos;
|
|
46
|
+
*
|
|
47
|
+
* if (end.nanos < 0) {
|
|
48
|
+
* end.seconds -= 1;
|
|
49
|
+
* end.nanos += 1000000000;
|
|
50
|
+
* } else if (end.nanos >= 1000000000) {
|
|
51
|
+
* end.seconds += 1;
|
|
52
|
+
* end.nanos -= 1000000000;
|
|
53
|
+
* }
|
|
54
|
+
*
|
|
55
|
+
* Example 3: Compute Duration from datetime.timedelta in Python.
|
|
56
|
+
*
|
|
57
|
+
* td = datetime.timedelta(days=3, minutes=10)
|
|
58
|
+
* duration = Duration()
|
|
59
|
+
* duration.FromTimedelta(td)
|
|
60
|
+
*
|
|
61
|
+
* # JSON Mapping
|
|
62
|
+
*
|
|
63
|
+
* In JSON format, the Duration type is encoded as a string rather than an
|
|
64
|
+
* object, where the string ends in the suffix "s" (indicating seconds) and
|
|
65
|
+
* is preceded by the number of seconds, with nanoseconds expressed as
|
|
66
|
+
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be
|
|
67
|
+
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
|
|
68
|
+
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
|
69
|
+
* microsecond should be expressed in JSON format as "3.000001s".
|
|
70
|
+
* @name Duration
|
|
71
|
+
* @package google.protobuf
|
|
72
|
+
* @see proto type: google.protobuf.Duration
|
|
73
|
+
*/
|
|
11
74
|
exports.Duration = {
|
|
12
75
|
typeUrl: "/google.protobuf.Duration",
|
|
13
76
|
is(o) {
|