@dashevo/dapi-grpc 2.0.0-rc.14 → 2.0.0-rc.16
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 +2003 -0
- package/clients/platform/v0/nodejs/platform_pbjs.js +2003 -0
- package/clients/platform/v0/nodejs/platform_protoc.js +1902 -0
- package/clients/platform/v0/web/platform_pb.d.ts +251 -0
- package/clients/platform/v0/web/platform_pb.js +1902 -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 +64 -0
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; 44] = [
|
|
77
77
|
"GetDataContractHistoryRequest",
|
|
78
78
|
"GetDataContractRequest",
|
|
79
79
|
"GetDataContractsRequest",
|
|
@@ -117,6 +117,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
117
117
|
"GetGroupInfosRequest",
|
|
118
118
|
"GetGroupActionsRequest",
|
|
119
119
|
"GetGroupActionSignersRequest",
|
|
120
|
+
"GetFinalizedEpochInfosRequest",
|
|
120
121
|
];
|
|
121
122
|
|
|
122
123
|
// The following responses are excluded as they don't support proofs:
|
|
@@ -127,7 +128,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
127
128
|
// - "GetIdentityByNonUniquePublicKeyHashResponse"
|
|
128
129
|
//
|
|
129
130
|
// "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
|
|
130
|
-
const VERSIONED_RESPONSES: [&str;
|
|
131
|
+
const VERSIONED_RESPONSES: [&str; 42] = [
|
|
131
132
|
"GetDataContractHistoryResponse",
|
|
132
133
|
"GetDataContractResponse",
|
|
133
134
|
"GetDataContractsResponse",
|
|
@@ -169,6 +170,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
169
170
|
"GetGroupInfosResponse",
|
|
170
171
|
"GetGroupActionsResponse",
|
|
171
172
|
"GetGroupActionSignersResponse",
|
|
173
|
+
"GetFinalizedEpochInfosResponse",
|
|
172
174
|
];
|
|
173
175
|
|
|
174
176
|
check_unique(&VERSIONED_REQUESTS).expect("VERSIONED_REQUESTS");
|