protobuf-platform 1.2.594 → 1.2.596
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/game/game.proto +44 -0
- package/game/game_grpc_pb.js +66 -0
- package/game/game_pb.js +1631 -0
- package/package.json +1 -1
- package/payment/payment.proto +20 -0
- package/payment/payment_pb.js +1023 -63
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -464,6 +464,11 @@ message DepositResponse {
|
|
|
464
464
|
optional string country = 12;
|
|
465
465
|
optional string processing_type = 13;
|
|
466
466
|
optional CryptoDepositInstructions crypto_instructions = 14;
|
|
467
|
+
optional float credited_amount = 15;
|
|
468
|
+
optional string credited_currency = 16;
|
|
469
|
+
optional float provider_amount_attempt = 17;
|
|
470
|
+
optional float provider_amount_paid = 18;
|
|
471
|
+
optional string provider_currency = 19;
|
|
467
472
|
}
|
|
468
473
|
message DepositItem {
|
|
469
474
|
int32 id = 1;
|
|
@@ -488,6 +493,11 @@ message DepositItem {
|
|
|
488
493
|
optional string completed = 20;
|
|
489
494
|
optional string payment_method_image = 21;
|
|
490
495
|
optional string external_transaction_id = 22;
|
|
496
|
+
optional float credited_amount = 23;
|
|
497
|
+
optional string credited_currency = 24;
|
|
498
|
+
optional float provider_amount_attempt = 25;
|
|
499
|
+
optional float provider_amount_paid = 26;
|
|
500
|
+
optional string provider_currency = 27;
|
|
491
501
|
}
|
|
492
502
|
message DepositItemsResponse {
|
|
493
503
|
repeated DepositItem items = 1;
|
|
@@ -675,6 +685,11 @@ message UserDepositItem {
|
|
|
675
685
|
optional int32 status_id = 10;
|
|
676
686
|
optional string created = 11;
|
|
677
687
|
optional string status = 12;
|
|
688
|
+
optional float credited_amount = 13;
|
|
689
|
+
optional string credited_currency = 14;
|
|
690
|
+
optional float provider_amount_attempt = 15;
|
|
691
|
+
optional float provider_amount_paid = 16;
|
|
692
|
+
optional string provider_currency = 17;
|
|
678
693
|
}
|
|
679
694
|
message UserDepositItemsResponse {
|
|
680
695
|
repeated UserDepositItem items = 1;
|
|
@@ -723,6 +738,11 @@ message UserPaymentHistoryItem {
|
|
|
723
738
|
optional string external_ref = 17;
|
|
724
739
|
optional float destination_amount = 18;
|
|
725
740
|
optional string destination_currency = 19;
|
|
741
|
+
optional float credited_amount = 20;
|
|
742
|
+
optional string credited_currency = 21;
|
|
743
|
+
optional float provider_amount_attempt = 22;
|
|
744
|
+
optional float provider_amount_paid = 23;
|
|
745
|
+
optional string provider_currency = 24;
|
|
726
746
|
}
|
|
727
747
|
message UserPaymentHistoryItemsResponse {
|
|
728
748
|
repeated UserPaymentHistoryItem items = 1;
|