@dashevo/dapi-grpc 2.0.0-rc.1 → 2.0.0-rc.10
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/Cargo.toml +1 -1
- package/build.rs +4 -2
- package/clients/drive/v0/nodejs/drive_pbjs.js +1536 -0
- package/clients/platform/v0/nodejs/platform_pbjs.js +1536 -0
- package/clients/platform/v0/nodejs/platform_protoc.js +1584 -0
- package/clients/platform/v0/web/platform_pb.d.ts +212 -0
- package/clients/platform/v0/web/platform_pb.js +1584 -0
- package/clients/platform/v0/web/platform_pb_service.d.ts +19 -0
- package/clients/platform/v0/web/platform_pb_service.js +40 -0
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +55 -1
- package/src/deserialization.rs +1 -1
package/Cargo.toml
CHANGED
package/build.rs
CHANGED
|
@@ -73,7 +73,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
73
73
|
// Derive features for versioned messages
|
|
74
74
|
//
|
|
75
75
|
// "GetConsensusParamsRequest" is excluded as this message does not support proofs
|
|
76
|
-
const VERSIONED_REQUESTS: [&str;
|
|
76
|
+
const VERSIONED_REQUESTS: [&str; 42] = [
|
|
77
77
|
"GetDataContractHistoryRequest",
|
|
78
78
|
"GetDataContractRequest",
|
|
79
79
|
"GetDataContractsRequest",
|
|
@@ -106,6 +106,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
106
106
|
"GetStatusRequest",
|
|
107
107
|
"GetIdentityTokenBalancesRequest",
|
|
108
108
|
"GetIdentitiesTokenBalancesRequest",
|
|
109
|
+
"GetTokenPerpetualDistributionLastClaimRequest",
|
|
109
110
|
"GetIdentityTokenInfosRequest",
|
|
110
111
|
"GetIdentitiesTokenInfosRequest",
|
|
111
112
|
"GetTokenDirectPurchasePricesRequest",
|
|
@@ -125,7 +126,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
125
126
|
// - "GetIdentityByNonUniquePublicKeyHashResponse"
|
|
126
127
|
//
|
|
127
128
|
// "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
|
|
128
|
-
const VERSIONED_RESPONSES: [&str;
|
|
129
|
+
const VERSIONED_RESPONSES: [&str; 40] = [
|
|
129
130
|
"GetDataContractHistoryResponse",
|
|
130
131
|
"GetDataContractResponse",
|
|
131
132
|
"GetDataContractsResponse",
|
|
@@ -156,6 +157,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
156
157
|
"GetEvonodesProposedEpochBlocksResponse",
|
|
157
158
|
"GetIdentityTokenBalancesResponse",
|
|
158
159
|
"GetIdentitiesTokenBalancesResponse",
|
|
160
|
+
"GetTokenPerpetualDistributionLastClaimResponse",
|
|
159
161
|
"GetIdentityTokenInfosResponse",
|
|
160
162
|
"GetIdentitiesTokenInfosResponse",
|
|
161
163
|
"GetTokenDirectPurchasePricesResponse",
|