@dashevo/dapi-grpc 1.0.0-pr.1694.4 → 1.0.0-pr.1694.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  name = "dapi-grpc"
3
3
  description = "GRPC client for Dash Platform"
4
- version = "1.0.0-pr.1694.4"
4
+ version = "1.0.0-pr.1694.5"
5
5
  authors = [
6
6
  "Samuel Westrich <sam@dash.org>",
7
7
  "Igor Markin <igor.markin@dash.org>",
@@ -9736,6 +9736,7 @@ $root.org = (function() {
9736
9736
  case 0:
9737
9737
  case 1:
9738
9738
  case 2:
9739
+ case 3:
9739
9740
  break;
9740
9741
  }
9741
9742
  return null;
@@ -9771,6 +9772,10 @@ $root.org = (function() {
9771
9772
  case 2:
9772
9773
  message.requestType = 2;
9773
9774
  break;
9775
+ case "REVISION":
9776
+ case 3:
9777
+ message.requestType = 3;
9778
+ break;
9774
9779
  }
9775
9780
  return message;
9776
9781
  };
@@ -9823,12 +9828,14 @@ $root.org = (function() {
9823
9828
  * @property {number} FULL_IDENTITY=0 FULL_IDENTITY value
9824
9829
  * @property {number} BALANCE=1 BALANCE value
9825
9830
  * @property {number} KEYS=2 KEYS value
9831
+ * @property {number} REVISION=3 REVISION value
9826
9832
  */
9827
9833
  IdentityRequest.Type = (function() {
9828
9834
  var valuesById = {}, values = Object.create(valuesById);
9829
9835
  values[valuesById[0] = "FULL_IDENTITY"] = 0;
9830
9836
  values[valuesById[1] = "BALANCE"] = 1;
9831
9837
  values[valuesById[2] = "KEYS"] = 2;
9838
+ values[valuesById[3] = "REVISION"] = 3;
9832
9839
  return values;
9833
9840
  })();
9834
9841
 
@@ -10055,7 +10055,8 @@ proto.org.dash.platform.dapi.v0.GetProofsRequest.GetProofsRequestV0.IdentityRequ
10055
10055
  proto.org.dash.platform.dapi.v0.GetProofsRequest.GetProofsRequestV0.IdentityRequest.Type = {
10056
10056
  FULL_IDENTITY: 0,
10057
10057
  BALANCE: 1,
10058
- KEYS: 2
10058
+ KEYS: 2,
10059
+ REVISION: 3
10059
10060
  };
10060
10061
 
10061
10062
  /**
@@ -1164,6 +1164,7 @@ export namespace GetProofsRequest {
1164
1164
  FULL_IDENTITY: 0;
1165
1165
  BALANCE: 1;
1166
1166
  KEYS: 2;
1167
+ REVISION: 3;
1167
1168
  }
1168
1169
 
1169
1170
  export const Type: TypeMap;
@@ -10055,7 +10055,8 @@ proto.org.dash.platform.dapi.v0.GetProofsRequest.GetProofsRequestV0.IdentityRequ
10055
10055
  proto.org.dash.platform.dapi.v0.GetProofsRequest.GetProofsRequestV0.IdentityRequest.Type = {
10056
10056
  FULL_IDENTITY: 0,
10057
10057
  BALANCE: 1,
10058
- KEYS: 2
10058
+ KEYS: 2,
10059
+ REVISION: 3
10059
10060
  };
10060
10061
 
10061
10062
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashevo/dapi-grpc",
3
- "version": "1.0.0-pr.1694.4",
3
+ "version": "1.0.0-pr.1694.5",
4
4
  "description": "DAPI GRPC definition file and generated clients",
5
5
  "browser": "browser.js",
6
6
  "main": "node.js",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "homepage": "https://github.com/dashevo/dapi-grpc#readme",
47
47
  "dependencies": {
48
- "@dashevo/grpc-common": "1.0.0-pr.1694.4",
48
+ "@dashevo/grpc-common": "1.0.0-pr.1694.5",
49
49
  "@dashevo/protobufjs": "6.10.5",
50
50
  "@grpc/grpc-js": "1.4.4",
51
51
  "@improbable-eng/grpc-web": "^0.15.0",
@@ -234,6 +234,7 @@ message GetProofsRequest {
234
234
  FULL_IDENTITY = 0;
235
235
  BALANCE = 1;
236
236
  KEYS = 2;
237
+ REVISION = 3;
237
238
  }
238
239
  bytes identity_id = 1;
239
240
  Type request_type = 2;
@@ -727,6 +727,7 @@ pub mod get_proofs_request {
727
727
  FullIdentity = 0,
728
728
  Balance = 1,
729
729
  Keys = 2,
730
+ Revision = 3,
730
731
  }
731
732
  impl Type {
732
733
  /// String value of the enum field names used in the ProtoBuf definition.
@@ -738,6 +739,7 @@ pub mod get_proofs_request {
738
739
  Type::FullIdentity => "FULL_IDENTITY",
739
740
  Type::Balance => "BALANCE",
740
741
  Type::Keys => "KEYS",
742
+ Type::Revision => "REVISION",
741
743
  }
742
744
  }
743
745
  /// Creates an enum from field names used in the ProtoBuf definition.
@@ -746,6 +748,7 @@ pub mod get_proofs_request {
746
748
  "FULL_IDENTITY" => Some(Self::FullIdentity),
747
749
  "BALANCE" => Some(Self::Balance),
748
750
  "KEYS" => Some(Self::Keys),
751
+ "REVISION" => Some(Self::Revision),
749
752
  _ => None,
750
753
  }
751
754
  }