@alexochihua/protos 1.0.41 → 1.0.43
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 +64 -1
- package/dist/generated/kapital/catalogs/v1/catalogs.js +280 -1
- package/dist/generated/kapital/catalogs/v1/catalogs.js.map +1 -1
- package/dist/generated/kapital/catalogs/v1/catalogs_types.d.ts +5 -0
- package/dist/generated/kapital/catalogs/v1/catalogs_types.js +53 -1
- package/dist/generated/kapital/catalogs/v1/catalogs_types.js.map +1 -1
- package/dist/generated/kapital/contracts/v1/contracts.d.ts +2 -2
- package/dist/generated/kapital/contracts/v1/contracts.js +14 -10
- package/dist/generated/kapital/contracts/v1/contracts.js.map +1 -1
- package/package.json +1 -1
- package/proto/kapital/catalogs/v1/catalogs.proto +24 -0
- package/proto/kapital/catalogs/v1/catalogs_types.proto +5 -0
- package/proto/kapital/contracts/v1/contracts.proto +2 -2
package/package.json
CHANGED
|
@@ -10,6 +10,9 @@ import "kapital/catalogs/v1/catalogs_types.proto";
|
|
|
10
10
|
service CatalogsService {
|
|
11
11
|
rpc GetCatBins(GetCatBinsRequest) returns (GetCatBinsResponse);
|
|
12
12
|
rpc GetCatGeoLocsByN(GetCatGeoLocsByNRequest) returns (GetCatGeoLocsByNResponse);
|
|
13
|
+
rpc GetCustomerStatus(GetCustomerStatusRequest) returns (GetCustomerStatusResponse);
|
|
14
|
+
rpc GetVirtualCardStatus(GetVirtualCardStatusRequest) returns (GetVirtualCardStatusResponse);
|
|
15
|
+
rpc GetPhysicalCardStatus(GetPhysicalCardStatusRequest) returns (GetPhysicalCardStatusResponse);
|
|
13
16
|
}
|
|
14
17
|
|
|
15
18
|
// ================== CreateContract ==================
|
|
@@ -31,3 +34,24 @@ message GetCatGeoLocsByNResponse {
|
|
|
31
34
|
optional string n = 3;
|
|
32
35
|
optional string value = 4;
|
|
33
36
|
}
|
|
37
|
+
|
|
38
|
+
message GetCustomerStatusRequest {}
|
|
39
|
+
|
|
40
|
+
message GetCustomerStatusResponse {
|
|
41
|
+
kapital.common.v1.ResponseMeta meta = 1;
|
|
42
|
+
repeated CatalogItem customer_status = 2;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message GetVirtualCardStatusRequest {}
|
|
46
|
+
|
|
47
|
+
message GetVirtualCardStatusResponse {
|
|
48
|
+
kapital.common.v1.ResponseMeta meta = 1;
|
|
49
|
+
repeated CatalogItem virtual_card_status = 2;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
message GetPhysicalCardStatusRequest {}
|
|
53
|
+
|
|
54
|
+
message GetPhysicalCardStatusResponse {
|
|
55
|
+
kapital.common.v1.ResponseMeta meta = 1;
|
|
56
|
+
repeated CatalogItem physical_card_status = 2;
|
|
57
|
+
}
|
|
@@ -183,8 +183,8 @@ message CreatePhysicalCardContractResponse {
|
|
|
183
183
|
|
|
184
184
|
repeated CIPFull cip = 5;
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
|
|
186
|
+
optional CardInfo card_virtual = 6;
|
|
187
|
+
optional CardInfo card_physical = 7;
|
|
188
188
|
string new_emboss_uuid = 8;
|
|
189
189
|
|
|
190
190
|
string expiry_date = 9;
|