change proto

This commit is contained in:
Pasha 2025-07-22 14:41:00 +03:00
parent 7b82cb8b5d
commit 9416d90d23

@ -13,6 +13,7 @@ service TreasurerService {
rpc GetPaymentLinkSberbankB2B(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {}
rpc GetPaymentLinkSBP(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {}
rpc GetPaymentLinkSberPay(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {}
rpc GetPaymentLinkAlchemy(GetPaymentLinkRequest) returns (GetPaymentLinkResponse) {}
rpc DeleteSavedPaymentMethods(DeleteSavedPaymentMethodsRequest) returns (google.protobuf.Empty) {}
}
@ -50,6 +51,10 @@ message MainPaymentSettings {
repeated Item Items = 8;
bool Auto = 9;
bool Recurrent = 10;
// Для крипто-платежей:
string from_wallet_address = 11;
string to_wallet_address = 12;
double crypto_amount = 13;
}
message Customer {