@alexochihua/protos 1.0.21 → 1.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexochihua/protos",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "private": false,
5
5
  "description": "Shared gRPC contracts and generated clients for Kapital services.",
6
6
  "license": "UNLICENSED",
@@ -9,11 +9,25 @@ import "kapital/catalogs/v1/catalogs_types.proto";
9
9
 
10
10
  service CatalogsService {
11
11
  rpc GetCatBins(GetCatBinsRequest) returns (GetCatBinsResponse);
12
+ rpc GetCatGeoLocsByN(GetCatGeoLocsByNRequest) returns (GetCatGeoLocsByNResponse);
12
13
  }
13
14
 
15
+ // ================== CreateContract ==================
14
16
  message GetCatBinsRequest {}
15
17
 
16
18
  message GetCatBinsResponse {
17
19
  kapital.common.v1.ResponseMeta meta = 1;
18
20
  repeated CatBin bins = 2;
19
21
  }
22
+
23
+ // ================== GetCatGeoLocsByN ==================
24
+ message GetCatGeoLocsByNRequest {
25
+ string n = 1;
26
+ }
27
+
28
+ message GetCatGeoLocsByNResponse {
29
+ kapital.common.v1.ResponseMeta meta = 1;
30
+ optional string id = 2;
31
+ optional string n = 3;
32
+ optional string value = 4;
33
+ }