protobuf-platform 1.2.404 → 1.2.406
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 +1 -1
- package/payment/payment.proto +28 -0
- package/payment/payment_pb.js +1606 -218
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -208,6 +208,10 @@ message MethodItemsResponse {
|
|
|
208
208
|
message PoorMethodsRequest {
|
|
209
209
|
repeated int32 method_ids = 1;
|
|
210
210
|
}
|
|
211
|
+
message CashierFieldItem {
|
|
212
|
+
string code = 1;
|
|
213
|
+
optional string title = 2;
|
|
214
|
+
}
|
|
211
215
|
message PaymentMethodConfigRequest {
|
|
212
216
|
int32 method_id = 1;
|
|
213
217
|
string country = 2;
|
|
@@ -219,6 +223,7 @@ message PaymentMethodConfigRequest {
|
|
|
219
223
|
optional string config = 8;
|
|
220
224
|
optional string sdk_provider = 9;
|
|
221
225
|
optional int32 sdk_enabled = 10;
|
|
226
|
+
repeated CashierFieldItem cashier_fields = 11;
|
|
222
227
|
}
|
|
223
228
|
message PaymentMethodConfigResponse {
|
|
224
229
|
int32 method_id = 1;
|
|
@@ -231,6 +236,7 @@ message PaymentMethodConfigResponse {
|
|
|
231
236
|
optional string config = 8;
|
|
232
237
|
optional string sdk_provider = 9;
|
|
233
238
|
optional bool sdk_enabled = 10;
|
|
239
|
+
repeated CashierFieldItem cashier_fields = 11;
|
|
234
240
|
}
|
|
235
241
|
//Operations
|
|
236
242
|
message OperationItem {
|
|
@@ -316,6 +322,27 @@ message AttemptDepositRequest {
|
|
|
316
322
|
optional string accept_language = 22;
|
|
317
323
|
optional string accept_header = 23;
|
|
318
324
|
optional string user_birthday = 24;
|
|
325
|
+
optional string card_number = 25;
|
|
326
|
+
optional string card_holder = 26;
|
|
327
|
+
optional string card_expire_month = 27;
|
|
328
|
+
optional string card_expire_year = 28;
|
|
329
|
+
optional string country = 29;
|
|
330
|
+
optional string phone_number = 30;
|
|
331
|
+
optional string country_code = 31;
|
|
332
|
+
optional string zip_code = 32;
|
|
333
|
+
optional string document_id = 33;
|
|
334
|
+
optional string nationality = 34;
|
|
335
|
+
optional string address = 35;
|
|
336
|
+
optional string city = 36;
|
|
337
|
+
optional string state = 37;
|
|
338
|
+
optional string beneficiary_name = 38;
|
|
339
|
+
optional string bank_name = 39;
|
|
340
|
+
optional string bank_account = 40;
|
|
341
|
+
optional string iban = 41;
|
|
342
|
+
optional string bank_code = 42;
|
|
343
|
+
optional string bank_branch = 43;
|
|
344
|
+
optional string ifsc = 44;
|
|
345
|
+
optional string crypto_wallet = 45;
|
|
319
346
|
}
|
|
320
347
|
message GetDepositRequest {
|
|
321
348
|
int32 id = 1;
|
|
@@ -582,6 +609,7 @@ message UserPaymentMethodItem {
|
|
|
582
609
|
optional string crypto_network = 16;
|
|
583
610
|
optional string provider_payment_id = 17;
|
|
584
611
|
optional string flow_type = 18;
|
|
612
|
+
repeated CashierFieldItem cashier_fields = 19;
|
|
585
613
|
}
|
|
586
614
|
message UserPaymentMethodsResponse {
|
|
587
615
|
repeated UserPaymentMethodItem items = 1;
|