protobuf-platform 1.2.385 → 1.2.388
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 +15 -0
- package/payment/payment_pb.js +935 -186
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -321,6 +321,16 @@ message GetDepositRequest {
|
|
|
321
321
|
optional int32 maker_id = 3;
|
|
322
322
|
optional string reason = 4;
|
|
323
323
|
}
|
|
324
|
+
message CryptoDepositInstructions {
|
|
325
|
+
optional string address = 1;
|
|
326
|
+
optional string memo = 2;
|
|
327
|
+
optional string memo_type = 3;
|
|
328
|
+
optional string asset = 4;
|
|
329
|
+
optional string network = 5;
|
|
330
|
+
optional string qr_payload = 6;
|
|
331
|
+
optional string provider_payment_id = 7;
|
|
332
|
+
optional float min_deposit = 8;
|
|
333
|
+
}
|
|
324
334
|
message DepositResponse {
|
|
325
335
|
int32 id = 1;
|
|
326
336
|
optional int32 user_id = 2;
|
|
@@ -335,6 +345,7 @@ message DepositResponse {
|
|
|
335
345
|
optional string payment_redirect_url = 11;
|
|
336
346
|
optional string country = 12;
|
|
337
347
|
optional string processing_type = 13;
|
|
348
|
+
optional CryptoDepositInstructions crypto_instructions = 14;
|
|
338
349
|
}
|
|
339
350
|
message DepositItem {
|
|
340
351
|
int32 id = 1;
|
|
@@ -565,6 +576,10 @@ message UserPaymentMethodItem {
|
|
|
565
576
|
optional bool sdk_enabled = 12;
|
|
566
577
|
optional string processing_type = 13;
|
|
567
578
|
optional string currency_type = 14;
|
|
579
|
+
optional string crypto_asset = 15;
|
|
580
|
+
optional string crypto_network = 16;
|
|
581
|
+
optional string provider_payment_id = 17;
|
|
582
|
+
optional string flow_type = 18;
|
|
568
583
|
}
|
|
569
584
|
message UserPaymentMethodsResponse {
|
|
570
585
|
repeated UserPaymentMethodItem items = 1;
|