@dashevo/dapi-grpc 3.1.0-dev.8 → 4.0.0-beta.1

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 CHANGED
@@ -84,10 +84,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
84
84
  // Derive features for versioned messages
85
85
  //
86
86
  // "GetConsensusParamsRequest" is excluded as this message does not support proofs
87
- const VERSIONED_REQUESTS: [&str; 56] = [
87
+ const VERSIONED_REQUESTS: [&str; 58] = [
88
88
  "GetDataContractHistoryRequest",
89
89
  "GetDataContractRequest",
90
90
  "GetDataContractsRequest",
91
+ "GetDocumentHistoryRequest",
91
92
  "GetDocumentsRequest",
92
93
  "GetIdentitiesByPublicKeyHashesRequest",
93
94
  "GetIdentitiesRequest",
@@ -138,6 +139,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
138
139
  "GetShieldedAnchorsRequest",
139
140
  "GetMostRecentShieldedAnchorRequest",
140
141
  "GetShieldedPoolStateRequest",
142
+ "GetShieldedNotesCountRequest",
141
143
  "GetShieldedNullifiersRequest",
142
144
  "GetRecentNullifierChangesRequest",
143
145
  "GetRecentCompactedNullifierChangesRequest",
@@ -161,10 +163,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
161
163
  // - "GetIdentityByNonUniquePublicKeyHashResponse"
162
164
  //
163
165
  // "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
164
- const VERSIONED_RESPONSES: [&str; 54] = [
166
+ const VERSIONED_RESPONSES: [&str; 56] = [
165
167
  "GetDataContractHistoryResponse",
166
168
  "GetDataContractResponse",
167
169
  "GetDataContractsResponse",
170
+ "GetDocumentHistoryResponse",
168
171
  "GetDocumentsResponse",
169
172
  "GetIdentitiesByPublicKeyHashesResponse",
170
173
  "GetIdentitiesResponse",
@@ -213,6 +216,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
213
216
  "GetShieldedAnchorsResponse",
214
217
  "GetMostRecentShieldedAnchorResponse",
215
218
  "GetShieldedPoolStateResponse",
219
+ "GetShieldedNotesCountResponse",
216
220
  "GetShieldedNullifiersResponse",
217
221
  "GetRecentNullifierChangesResponse",
218
222
  "GetRecentCompactedNullifierChangesResponse",