protobuf-platform 1.2.479 → 1.2.482
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 +26 -0
- package/payment/payment_pb.js +1324 -130
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -441,6 +441,29 @@ message AttemptWithdrawalRequest {
|
|
|
441
441
|
optional string destination_type = 14;
|
|
442
442
|
optional string destination_details = 15;
|
|
443
443
|
optional string token_id = 16;
|
|
444
|
+
optional string user_birthday = 17;
|
|
445
|
+
optional string card_number = 18;
|
|
446
|
+
optional string card_holder = 19;
|
|
447
|
+
optional string card_expire_month = 20;
|
|
448
|
+
optional string card_expire_year = 21;
|
|
449
|
+
optional string country = 22;
|
|
450
|
+
optional string phone_number = 23;
|
|
451
|
+
optional string country_code = 24;
|
|
452
|
+
optional string zip_code = 25;
|
|
453
|
+
optional string document_id = 26;
|
|
454
|
+
optional string nationality = 27;
|
|
455
|
+
optional string address = 28;
|
|
456
|
+
optional string city = 29;
|
|
457
|
+
optional string state = 30;
|
|
458
|
+
optional string beneficiary_name = 31;
|
|
459
|
+
optional string bank_name = 32;
|
|
460
|
+
optional string bank_account = 33;
|
|
461
|
+
optional string iban = 34;
|
|
462
|
+
optional string bank_code = 35;
|
|
463
|
+
optional string bank_branch = 36;
|
|
464
|
+
optional string ifsc = 37;
|
|
465
|
+
optional string crypto_wallet = 38;
|
|
466
|
+
optional string request_currency = 39;
|
|
444
467
|
}
|
|
445
468
|
message GetWithdrawalRequest {
|
|
446
469
|
int32 id = 1;
|
|
@@ -640,6 +663,9 @@ message UserPaymentMethodItem {
|
|
|
640
663
|
optional string flow_type = 18;
|
|
641
664
|
repeated CashierFieldItem cashier_fields = 19;
|
|
642
665
|
optional string provider_currency = 20;
|
|
666
|
+
string input_currency = 21;
|
|
667
|
+
string preview_currency = 22;
|
|
668
|
+
bool conversion_required = 23;
|
|
643
669
|
}
|
|
644
670
|
message UserPaymentMethodsResponse {
|
|
645
671
|
repeated UserPaymentMethodItem items = 1;
|