@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/dist/generated/kapital/catalogs/v1/catalogs.d.ts +26 -0
- package/dist/generated/kapital/catalogs/v1/catalogs.js +127 -1
- package/dist/generated/kapital/catalogs/v1/catalogs.js.map +1 -1
- package/dist/generated/kapital/payments_methods/v1/payments_methods.d.ts +7 -0
- package/dist/generated/kapital/payments_methods/v1/payments_methods.js +90 -1
- package/dist/generated/kapital/payments_methods/v1/payments_methods.js.map +1 -1
- package/package.json +1 -1
- package/proto/kapital/catalogs/v1/catalogs.proto +14 -0
- package/proto/kapital/payments_methods/v1/payments_methods.proto +518 -511
package/package.json
CHANGED
|
@@ -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
|
+
}
|