protobuf-platform 1.2.95 → 1.2.96

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.
@@ -29,6 +29,7 @@ service Config {
29
29
  rpc updateMirror(ModifyMirrorRequest) returns (MirrorResponse);
30
30
  rpc getMirrorsList(PaginationRequest) returns (MirrorItemsResponse);
31
31
  rpc deleteSingleMirror(GetZoneRequest) returns (MirrorStatusResponse);
32
+ rpc enableSingleMirror(GetZoneRequest) returns (MirrorStatusResponse);
32
33
  rpc syncActivatedMirrors(GetZoneRequest) returns (ActivatedMirrorsResponse);
33
34
  }
34
35
 
@@ -531,6 +531,17 @@ getZonesList: {
531
531
  responseSerialize: serialize_config_MirrorStatusResponse,
532
532
  responseDeserialize: deserialize_config_MirrorStatusResponse,
533
533
  },
534
+ enableSingleMirror: {
535
+ path: '/config.Config/enableSingleMirror',
536
+ requestStream: false,
537
+ responseStream: false,
538
+ requestType: config_pb.GetZoneRequest,
539
+ responseType: config_pb.MirrorStatusResponse,
540
+ requestSerialize: serialize_config_GetZoneRequest,
541
+ requestDeserialize: deserialize_config_GetZoneRequest,
542
+ responseSerialize: serialize_config_MirrorStatusResponse,
543
+ responseDeserialize: deserialize_config_MirrorStatusResponse,
544
+ },
534
545
  syncActivatedMirrors: {
535
546
  path: '/config.Config/syncActivatedMirrors',
536
547
  requestStream: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.95",
3
+ "version": "1.2.96",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {