@dashevo/dapi-grpc 4.2.0-beta.1 → 4.2.0-beta.3
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/build.rs +10 -2
- package/clients/drive/v0/nodejs/drive_pbjs.js +7081 -218
- package/clients/platform/v0/nodejs/platform_pbjs.js +7081 -218
- package/clients/platform/v0/nodejs/platform_protoc.js +6901 -4
- package/clients/platform/v0/web/platform_pb.d.ts +901 -0
- package/clients/platform/v0/web/platform_pb.js +6901 -4
- package/clients/platform/v0/web/platform_pb_service.d.ts +76 -0
- package/clients/platform/v0/web/platform_pb_service.js +160 -0
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +212 -0
package/build.rs
CHANGED
|
@@ -86,7 +86,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
86
86
|
// Derive features for versioned messages
|
|
87
87
|
//
|
|
88
88
|
// "GetConsensusParamsRequest" is excluded as this message does not support proofs
|
|
89
|
-
const VERSIONED_REQUESTS: [&str;
|
|
89
|
+
const VERSIONED_REQUESTS: [&str; 66] = [
|
|
90
|
+
"GetContractModerationStatusRequest",
|
|
91
|
+
"GetContractModerationEntriesRequest",
|
|
92
|
+
"GetContractDocumentRemovalsRequest",
|
|
93
|
+
"GetContractFeePotsRequest",
|
|
90
94
|
"GetContractGroupInfoRequest",
|
|
91
95
|
"GetContractGroupMembersRequest",
|
|
92
96
|
"GetContractGroupsForContractRequest",
|
|
@@ -163,7 +167,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
|
|
|
163
167
|
// - "GetIdentityByNonUniquePublicKeyHashResponse"
|
|
164
168
|
//
|
|
165
169
|
// "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
|
|
166
|
-
const VERSIONED_RESPONSES: [&str;
|
|
170
|
+
const VERSIONED_RESPONSES: [&str; 63] = [
|
|
171
|
+
"GetContractModerationStatusResponse",
|
|
172
|
+
"GetContractModerationEntriesResponse",
|
|
173
|
+
"GetContractDocumentRemovalsResponse",
|
|
174
|
+
"GetContractFeePotsResponse",
|
|
167
175
|
"GetContractGroupInfoResponse",
|
|
168
176
|
"GetContractGroupMembersResponse",
|
|
169
177
|
"GetContractGroupsForContractResponse",
|